Resource Files

Resource Files — Routines for handling resource files

Functions

Types and Values

Object Hierarchy

    GObject
    ╰── CtkRcStyle

Includes

#include <ctk/ctk.h>

Description

CTK+ provides resource file mechanism for configuring various aspects of the operation of a CTK+ program at runtime.

Default Files

An application can cause CTK+ to parse a specific RC file by calling ctk_rc_parse(). In addition to this, certain files will be read at the end of ctk_init(). Unless modified, the files looked for will be SYSCONFDIR/ctk-2.0/ctkrc and .ctkrc-3.0 in the users home directory. (SYSCONFDIR defaults to /usr/local/etc. It can be changed with the --prefix or --sysconfdir options when configuring CTK+.)

The set of these “default” files can be retrieved with ctk_rc_get_default_files() and modified with ctk_rc_add_default_file() and ctk_rc_set_default_files(). Additionally, the CTK2_RC_FILES environment variable can be set to a G_SEARCHPATH_SEPARATOR_S-separated list of files in order to overwrite the set of default files at runtime.


Locale Specific Files

For each RC file, in addition to the file itself, CTK+ will look for a locale-specific file that will be parsed after the main file. For instance, if LANG is set to ja_JP.ujis, when loading the default file ~/.ctkrc then CTK+ looks for ~/.ctkrc.ja_JP and ~/.ctkrc.ja, and parses the first of those that exists.


Pathnames and Patterns

A resource file defines a number of styles and key bindings and attaches them to particular widgets. The attachment is done by the widget, widget_class, and class declarations. As an example of such a statement:

1
widget "mywindow.*.CtkEntry" style "my-entry-class"

attaches the style "my-entry-class" to all widgets whose “widget path” matches the “pattern” "mywindow.*.CtkEntry". That is, all CtkEntry widgets which are part of a CtkWindow named "mywindow".

The patterns here are given in the standard shell glob syntax. The "?" wildcard matches any character, while "*" matches zero or more of any character. The three types of matching are against the widget path, the “class path” and the class hierarchy. Both the widget path and the class path consist of a "." separated list of all the parents of the widget and the widget itself from outermost to innermost. The difference is that in the widget path, the name assigned by ctk_widget_set_name() is used if present, otherwise the class name of the widget, while for the class path, the class name is always used.

Since CTK+ 2.10, widget_class paths can also contain <classname> substrings, which are matching the class with the given name and any derived classes. For instance,

1
widget_class "*<CtkMenuItem>.CtkLabel" style "my-style"

will match CtkLabel widgets which are contained in any kind of menu item.

So, if you have a CtkEntry named "myentry", inside of a horizontal box in a window named "mywindow", then the widget path is: "mywindow.CtkHBox.myentry" while the class path is: "CtkWindow.CtkHBox.CtkEntry".

Matching against class is a little different. The pattern match is done against all class names in the widgets class hierarchy (not the layout hierarchy) in sequence, so the pattern:

1
class "CtkButton" style "my-style"

will match not just CtkButton widgets, but also CtkToggleButton and CtkCheckButton widgets, since those classes derive from CtkButton.

Additionally, a priority can be specified for each pattern, and styles override other styles first by priority, then by pattern type and then by order of specification (later overrides earlier). The priorities that can be specified are (highest to lowest):

  • highest

  • rc

  • theme

  • application

  • ctk

  • lowest

rc is the default for styles read from an RC file, theme is the default for styles read from theme RC files, application should be used for styles an application sets up, and ctk is used for styles that CTK+ creates internally.


Theme ctkrc Files

Theme RC files are loaded first from under the ~/.themes/, then from the directory from ctk_rc_get_theme_dir(). The files looked at will be ctk-3.0/ctkrc.

When the application prefers dark themes (see the “ctk-application-prefer-dark-theme” property for details), ctk-3.0/ctkrc-dark will be loaded first, and if not present ctk-3.0/ctkrc will be loaded.


Optimizing RC Style Matches

Everytime a widget is created and added to the layout hierarchy of a CtkWindow ("anchored" to be exact), a list of matching RC styles out of all RC styles read in so far is composed. For this, every RC style is matched against the widgets class path, the widgets name path and widgets inheritance hierarchy. As a consequence, significant slowdown can be caused by utilization of many RC styles and by using RC style patterns that are slow or complicated to match against a given widget. The following ordered list provides a number of advices (prioritized by effectiveness) to reduce the performance overhead associated with RC style matches:

  1. Move RC styles for specific applications into RC files dedicated to those applications and parse application specific RC files only from applications that are affected by them. This reduces the overall amount of RC styles that have to be considered for a match across a group of applications.

  2. Merge multiple styles which use the same matching rule, for instance:

    1
    2
    3
    4
    style "Foo" { foo_content }
    class "X" style "Foo"
    style "Bar" { bar_content }
    class "X" style "Bar"

    is faster to match as:

    1
    2
    style "FooBar" { foo_content bar_content }
    class "X" style "FooBar"

  3. Use of wildcards should be avoided, this can reduce the individual RC style match to a single integer comparison in most cases.

  4. To avoid complex recursive matching, specification of full class names (for class matches) or full path names (for widget and widget_class matches) is to be preferred over shortened names containing "*" or "?".

  5. If at all necessary, wildcards should only be used at the tail or head of a pattern. This reduces the match complexity to a string comparison per RC style.

  6. When using wildcards, use of "?" should be preferred over "*". This can reduce the matching complexity from O(n^2) to O(n). For example "Ctk*Box" can be turned into "Ctk?Box" and will still match CtkHBox and CtkVBox.

  7. The use of "*" wildcards should be restricted as much as possible, because matching "A*B*C*RestString" can result in matching complexities of O(n^2) worst case.


Toplevel Declarations

An RC file is a text file which is composed of a sequence of declarations. “#” characters delimit comments and the portion of a line after a “#” is ignored when parsing an RC file.

The possible toplevel declarations are:

  • binding name { ... }

    Declares a binding set.

  • class pattern [ style | binding ][ : priority ] name

    Specifies a style or binding set for a particular branch of the inheritance hierarchy.

  • include filename

    Parses another file at this point. If filename is not an absolute filename, it is searched in the directories of the currently open RC files.

    CTK+ also tries to load a locale-specific variant of the included file.

  • module_path path

    Sets a path (a list of directories separated by colons) that will be searched for theme engines referenced in RC files.

  • pixmap_path path

    Sets a path (a list of directories separated by colons) that will be searched for pixmaps referenced in RC files.

  • im_module_file pathname

    Sets the pathname for the IM modules file.

  • style name [ = parent ] { ... }

    Declares a style.

  • widget pattern [ style | binding ][ : priority ] name

    Specifies a style or binding set for a particular group of widgets by matching on the widget pathname.

  • widget_class pattern [ style | binding ][ : priority ] name

    Specifies a style or binding set for a particular group of widgets by matching on the class pathname.

  • setting = value

    Specifies a value for a setting. Note that settings in RC files are overwritten by system-wide settings (which are managed by an XSettings manager on X11).


Styles

A RC style is specified by a style declaration in a RC file, and then bound to widgets with a widget, widget_class, or class declaration. All styles applying to a particular widget are composited together with widget declarations overriding widget_class declarations which, in turn, override class declarations. Within each type of declaration, later declarations override earlier ones.

Within a style declaration, the possible elements are:

  • bg[state] = color

    Sets the color used for the background of most widgets.

  • fg[state] = color

    Sets the color used for the foreground of most widgets.

  • base[state] = color

    Sets the color used for the background of widgets displaying editable text. This color is used for the background of, among others, CtkTextView, CtkEntry.

  • text[state] = color

    Sets the color used for foreground of widgets using base for the background color.

  • xthickness = number

    Sets the xthickness, which is used for various horizontal padding values in CTK+.

  • ythickness = number

    Sets the ythickness, which is used for various vertical padding values in CTK+.

  • bg_pixmap[state] = pixmap

    Sets a background pixmap to be used in place of the bg color (or for CtkText, in place of the base color. The special value "&lt;parent>" may be used to indicate that the widget should use the same background pixmap as its parent. The special value "&lt;none>" may be used to indicate no background pixmap.

  • font = font

    Starting with CTK+ 2.0, the “font” and “fontset” declarations are ignored; use “font_name” declarations instead.

  • fontset = font

    Starting with CTK+ 2.0, the “font” and “fontset” declarations are ignored; use “font_name” declarations instead.

  • font_name = font

    Sets the font for a widget. font must be a Pango font name, e.g. “Sans Italic 10” . For details about Pango font names, see pango_font_description_from_string().

  • stock["stock-id"] = { icon source specifications }

    Defines the icon for a stock item.

  • color["color-name"] = color specification

    Since 2.10, this element can be used to defines symbolic colors. See below for the syntax of color specifications.

  • engine "engine" { engine-specific settings }

    Defines the engine to be used when drawing with this style.

  • class::property = value

    Sets a style property for a widget class.

The colors and background pixmaps are specified as a function of the state of the widget. The states are:

  • NORMAL

    A color used for a widget in its normal state.

  • ACTIVE

    A variant of the NORMAL color used when the widget is in the CTK_STATE_ACTIVE state, and also for the trough of a ScrollBar, tabs of a NoteBook other than the current tab and similar areas. Frequently, this should be a darker variant of the NORMAL color.

  • PRELIGHT

    A color used for widgets in the CTK_STATE_PRELIGHT state. This state is the used for Buttons and MenuItems that have the mouse cursor over them, and for their children.

  • SELECTED

    A color used to highlight data selected by the user. for instance, the selected items in a list widget, and the selection in an editable widget.

  • INSENSITIVE

    A color used for the background of widgets that have been set insensitive with ctk_widget_set_sensitive().

Color Format

Colors can be specified as a string containing a color name (CTK+ knows all names from the X color database /usr/lib/X11/rgb.txt), in one of the hexadecimal forms #rrrrggggbbbb, #rrrgggbbb, #rrggbb, or #rgb, where r, g and b are hex digits, or they can be specified as a triplet { r, g, b}, where r, g and b are either integers in the range 0-65535 or floats in the range 0.0-1.0.

Since 2.10, colors can also be specified by refering to a symbolic color, as follows: @color-name, or by using expressions to combine colors. The following expressions are currently supported:

  • mix (factor, color1, color2)

    Computes a new color by mixing color1 and color2. The factor determines how close the new color is to color1. A factor of 1.0 gives pure color1, a factor of 0.0 gives pure color2.

  • shade (factor, color)

    Computes a lighter or darker variant of color. A factor of 1.0 leaves the color unchanged, smaller factors yield darker colors, larger factors yield lighter colors.

  • lighter (color)

    This is an abbreviation for shade (1.3, color).

  • darker (color)

    This is an abbreviation for shade (0.7, color).

Here are some examples of color expressions:

1
2
3
mix (0.5, "red", "blue")
shade (1.5, mix (0.3, "#0abbc0", { 0.3, 0.5, 0.9 }))
lighter (@foreground)

In a stock definition, icon sources are specified as a 4-tuple of image filename or icon name, text direction, widget state, and size, in that order. Each icon source specifies an image filename or icon name to use with a given direction, state, and size. Filenames are specified as a string such as "itemltr.png", while icon names (looked up in the current icon theme), are specified with a leading @, such as @"item-ltr". The * character can be used as a wildcard, and if direction/state/size are omitted they default to *. So for example, the following specifies different icons to use for left-to-right and right-to-left languages:

1
2
3
4
5
stock["my-stock-item"] =
{
  { "itemltr.png", LTR, *, * },
  { "itemrtl.png", RTL, *, * }
}

This could be abbreviated as follows:

1
2
3
4
5
stock["my-stock-item"] =
{
  { "itemltr.png", LTR },
  { "itemrtl.png", RTL }
}

You can specify custom icons for specific sizes, as follows:

1
2
3
4
5
6
stock["my-stock-item"] =
{
  { "itemmenusize.png", *, *, "ctk-menu" },
  { "itemtoolbarsize.png", *, *, "ctk-large-toolbar" }
  { "itemgeneric.png" } // implicit *, *, * as a fallback
}

The sizes that come with CTK+ itself are "ctk-menu", "ctk-small-toolbar", "ctk-large-toolbar", "ctk-button", "ctk-dialog". Applications can define other sizes.

It’s also possible to use custom icons for a given state, for example:

1
2
3
4
5
6
stock["my-stock-item"] =
{
  { "itemprelight.png", *, PRELIGHT },
  { "iteminsensitive.png", *, INSENSITIVE },
  { "itemgeneric.png" } // implicit *, *, * as a fallback
}

When selecting an icon source to use, CTK+ will consider text direction most important, state second, and size third. It will select the best match based on those criteria. If an attribute matches exactly (e.g. you specified PRELIGHT or specified the size), CTK+ won’t modify the image; if the attribute matches with a wildcard, CTK+ will scale or modify the image to match the state and size the user requested.


Key bindings

Key bindings allow the user to specify actions to be taken on particular key presses. The form of a binding set declaration is:

1
2
3
4
5
6
7
binding name {
  bind key {
    signalname (param, ...)
    ...
  }
  ...
}

key is a string consisting of a series of modifiers followed by the name of a key. The modifiers can be:

  • <alt>

  • <ctl>

  • <control>

  • <meta>

  • <hyper>

  • <super>

  • <mod1>

  • <mod2>

  • <mod3>

  • <mod4>

  • <mod5>

  • <release>

  • <shft>

  • <shift>

<shft> is an alias for <shift>, <ctl> is an alias for <control>, and <alt> is an alias for <mod1>.

The action that is bound to the key is a sequence of signal names (strings) followed by parameters for each signal. The signals must be action signals. (See g_signal_new()). Each parameter can be a float, integer, string, or unquoted string representing an enumeration value. The types of the parameters specified must match the types of the parameters of the signal.

Binding sets are connected to widgets in the same manner as styles, with one difference: Binding sets override other binding sets first by pattern type, then by priority and then by order of specification. The priorities that can be specified and their default values are the same as for styles.

Functions

ctk_rc_scanner_new ()

GScanner *
ctk_rc_scanner_new (void);

[skip]


ctk_rc_get_style ()

CtkStyle *
ctk_rc_get_style (CtkWidget *widget);

Finds all matching RC styles for a given widget, composites them together, and then creates a CtkStyle representing the composite appearance. (CTK+ actually keeps a cache of previously created styles, so a new style may not be created.)

Parameters

widget

a CtkWidget

 

Returns

the resulting style. No refcount is added to the returned style, so if you want to save this style around, you should add a reference yourself.

[transfer none]


ctk_rc_get_style_by_paths ()

CtkStyle *
ctk_rc_get_style_by_paths (CtkSettings *settings,
                           const char *widget_path,
                           const char *class_path,
                           GType type);

Creates up a CtkStyle from styles defined in a RC file by providing the raw components used in matching. This function may be useful when creating pseudo-widgets that should be themed like widgets but don’t actually have corresponding CTK+ widgets. An example of this would be items inside a GNOME canvas widget.

The action of ctk_rc_get_style() is similar to:

1
2
3
4
5
ctk_widget_path (widget, NULL, &path, NULL);
ctk_widget_class_path (widget, NULL, &class_path, NULL);
ctk_rc_get_style_by_paths (ctk_widget_get_settings (widget),
                           path, class_path,
                           G_OBJECT_TYPE (widget));

Parameters

settings

a CtkSettings object

 

widget_path

the widget path to use when looking up the style, or NULL if no matching against the widget path should be done.

[allow-none]

class_path

the class path to use when looking up the style, or NULL if no matching against the class path should be done.

[allow-none]

type

a type that will be used along with parent types of this type when matching against class styles, or G_TYPE_NONE

 

Returns

A style created by matching with the supplied paths, or NULL if nothing matching was specified and the default style should be used. The returned value is owned by CTK+ as part of an internal cache, so you must call g_object_ref() on the returned value if you want to keep a reference to it.

[nullable][transfer none]


ctk_rc_parse ()

void
ctk_rc_parse (const gchar *filename);

Parses a given resource file.

Parameters

filename

the filename of a file to parse. If filename is not absolute, it is searched in the current directory.

 

ctk_rc_parse_string ()

void
ctk_rc_parse_string (const gchar *rc_string);

Parses resource information directly from a string.

Parameters

rc_string

a string to parse.

 

ctk_rc_reparse_all ()

gboolean
ctk_rc_reparse_all (void);

If the modification time on any previously read file for the default CtkSettings has changed, discard all style information and then reread all previously read RC files.

Returns

TRUE if the files were reread.


ctk_rc_reparse_all_for_settings ()

gboolean
ctk_rc_reparse_all_for_settings (CtkSettings *settings,
                                 gboolean force_load);

If the modification time on any previously read file for the given CtkSettings has changed, discard all style information and then reread all previously read RC files.

Parameters

settings

a CtkSettings

 

force_load

load whether or not anything changed

 

Returns

TRUE if the files were reread.


ctk_rc_reset_styles ()

void
ctk_rc_reset_styles (CtkSettings *settings);

This function recomputes the styles for all widgets that use a particular CtkSettings object. (There is one CtkSettings object per CdkScreen, see ctk_settings_get_for_screen()); It is useful when some global parameter has changed that affects the appearance of all widgets, because when a widget gets a new style, it will both redraw and recompute any cached information about its appearance. As an example, it is used when the default font size set by the operating system changes. Note that this function doesn’t affect widgets that have a style set explicitly on them with ctk_widget_set_style().

Parameters

settings

a CtkSettings

 

Since: 2.4


ctk_rc_add_default_file ()

void
ctk_rc_add_default_file (const gchar *filename);

Adds a file to the list of files to be parsed at the end of ctk_init().

Parameters

filename

the pathname to the file. If filename is not absolute, it is searched in the current directory.

[type filename]

ctk_rc_get_default_files ()

gchar **
ctk_rc_get_default_files (void);

Retrieves the current list of RC files that will be parsed at the end of ctk_init().

Returns

A NULL-terminated array of filenames. This memory is owned by CTK+ and must not be freed by the application. If you want to store this information, you should make a copy.

[transfer none][array zero-terminated=1][element-type filename]


ctk_rc_set_default_files ()

void
ctk_rc_set_default_files (gchar **filenames);

Sets the list of files that CTK+ will read at the end of ctk_init().

Parameters

filenames

A NULL-terminated list of filenames.

[array zero-terminated=1][element-type filename]

ctk_rc_parse_color ()

guint
ctk_rc_parse_color (GScanner *scanner,
                    CdkColor *color);

Parses a color in the format expected in a RC file.

Note that theme engines should use ctk_rc_parse_color_full() in order to support symbolic colors.

Parameters

scanner

a GScanner

 

color

a pointer to a CdkColor in which to store the result.

[out]

Returns

G_TOKEN_NONE if parsing succeeded, otherwise the token that was expected but not found


ctk_rc_parse_color_full ()

guint
ctk_rc_parse_color_full (GScanner *scanner,
                         CtkRcStyle *style,
                         CdkColor *color);

Parses a color in the format expected in a RC file. If style is not NULL, it will be consulted to resolve references to symbolic colors.

Parameters

scanner

a GScanner

 

style

a CtkRcStyle, or NULL.

[allow-none]

color

a pointer to a CdkColor in which to store the result.

[out]

Returns

G_TOKEN_NONE if parsing succeeded, otherwise the token that was expected but not found

Since: 2.12


ctk_rc_parse_state ()

guint
ctk_rc_parse_state (GScanner *scanner,
                    CtkStateType *state);

Parses a CtkStateType variable from the format expected in a RC file.

Parameters

scanner

a GScanner (must be initialized for parsing an RC file)

 

state

A pointer to a CtkStateType variable in which to store the result.

[out]

Returns

G_TOKEN_NONE if parsing succeeded, otherwise the token that was expected but not found.


ctk_rc_parse_priority ()

guint
ctk_rc_parse_priority (GScanner *scanner,
                       CtkPathPriorityType *priority);

Parses a CtkPathPriorityType variable from the format expected in a RC file.

Parameters

scanner

a GScanner (must be initialized for parsing an RC file)

 

priority

A pointer to CtkPathPriorityType variable in which to store the result.

 

Returns

G_TOKEN_NONE if parsing succeeded, otherwise the token that was expected but not found.


ctk_rc_find_module_in_path ()

gchar *
ctk_rc_find_module_in_path (const gchar *module_file);

Searches for a theme engine in the CTK+ search path. This function is not useful for applications and should not be used.

Parameters

module_file

name of a theme engine

 

Returns

The filename, if found (must be freed with g_free()), otherwise NULL.

[type filename]


ctk_rc_find_pixmap_in_path ()

gchar *
ctk_rc_find_pixmap_in_path (CtkSettings *settings,
                            GScanner *scanner,
                            const gchar *pixmap_file);

Looks up a file in pixmap path for the specified CtkSettings. If the file is not found, it outputs a warning message using g_warning() and returns NULL.

Parameters

settings

a CtkSettings

 

scanner

Scanner used to get line number information for the warning message, or NULL

 

pixmap_file

name of the pixmap file to locate.

 

Returns

the filename.

[type filename]


ctk_rc_get_module_dir ()

gchar *
ctk_rc_get_module_dir (void);

Returns a directory in which CTK+ looks for theme engines. For full information about the search for theme engines, see the docs for CTK_PATH in Running CTK+ Applications.

Returns

the directory. (Must be freed with g_free()).

[type filename]


ctk_rc_get_im_module_path ()

gchar *
ctk_rc_get_im_module_path (void);

Obtains the path in which to look for IM modules. See the documentation of the CTK_PATH environment variable for more details about looking up modules. This function is useful solely for utilities supplied with CTK+ and should not be used by applications under normal circumstances.

Returns

a newly-allocated string containing the path in which to look for IM modules.

[type filename]


ctk_rc_get_im_module_file ()

gchar *
ctk_rc_get_im_module_file (void);

Obtains the path to the IM modules file. See the documentation of the CTK_IM_MODULE_FILE environment variable for more details.

Returns

a newly-allocated string containing the name of the file listing the IM modules available for loading.

[type filename]


ctk_rc_get_theme_dir ()

gchar *
ctk_rc_get_theme_dir (void);

Returns the standard directory in which themes should be installed. (CTK+ does not actually use this directory itself.)

Returns

The directory (must be freed with g_free()).


ctk_rc_style_new ()

CtkRcStyle *
ctk_rc_style_new (void);

Creates a new CtkRcStyle with no fields set and a reference count of 1.

Returns

the newly-created CtkRcStyle


ctk_rc_style_copy ()

CtkRcStyle *
ctk_rc_style_copy (CtkRcStyle *orig);

Makes a copy of the specified CtkRcStyle. This function will correctly copy an RC style that is a member of a class derived from CtkRcStyle.

Parameters

orig

the style to copy

 

Returns

the resulting CtkRcStyle.

[transfer full]

Types and Values

CtkRcStyle

typedef struct {
  gchar *name;
  gchar *bg_pixmap_name[5];
  PangoFontDescription *font_desc;

  CtkRcFlags color_flags[5];
  CdkColor   fg[5];
  CdkColor   bg[5];
  CdkColor   text[5];
  CdkColor   base[5];

  gint xthickness;
  gint ythickness;
} CtkRcStyle;

The CtkRcStyle is used to represent a set of information about the appearance of a widget. This can later be composited together with other CtkRcStyle<!-- -->s to form a CtkStyle.

Members

gchar *name;

Name

 

gchar *bg_pixmap_name[5];

Pixmap name

 

PangoFontDescription *font_desc;

A PangoFontDescription

 

CtkRcFlags color_flags[5];

CtkRcFlags

 

CdkColor fg[5];

Foreground colors

 

CdkColor bg[5];

Background colors

 

CdkColor text[5];

Text colors

 

CdkColor base[5];

Base colors

 

gint xthickness;

X thickness

 

gint ythickness;

Y thickness

 

struct CtkRcStyleClass

struct CtkRcStyleClass {
  GObjectClass parent_class;

  /* Create an empty RC style of the same type as this RC style.
   * The default implementation, which does
   * g_object_new (G_OBJECT_TYPE (style), NULL);
   * should work in most cases.
   */
  CtkRcStyle * (*create_rc_style) (CtkRcStyle *rc_style);

  /* Fill in engine specific parts of CtkRcStyle by parsing contents
   * of brackets. Returns G_TOKEN_NONE if successful, otherwise returns
   * the token it expected but didn't get.
   */
  guint     (*parse)  (CtkRcStyle   *rc_style,
                       CtkSettings  *settings,
                       GScanner     *scanner);

  /* Combine RC style data from src into dest. If overridden, this
   * function should chain to the parent.
   */
  void      (*merge)  (CtkRcStyle *dest,
                       CtkRcStyle *src);

  /* Create an empty style suitable to this RC style
   */
  CtkStyle * (*create_style) (CtkRcStyle *rc_style);
};

Members

create_rc_style ()

   

parse ()

   

merge ()

   

create_style ()

   

enum CtkRcFlags

Members


enum CtkRcTokenType

Members


enum CtkPathPriorityType

Members


enum CtkPathType

Members