glibmm 2.83.1
|
|
strong |
AsciiType operator|(AsciiType, AsciiType)
AsciiType operator&(AsciiType, AsciiType)
AsciiType operator^(AsciiType, AsciiType)
AsciiType operator~(AsciiType)
AsciiType& operator|=(AsciiType&, AsciiType)
AsciiType& operator&=(AsciiType&, AsciiType)
AsciiType& operator^=(AsciiType&, AsciiType)
Enumerator | |
---|---|
ALNUM | |
ALPHA | |
CNTRL | |
DIGIT | |
GRAPH | |
LOWER | |
PUNCT | |
SPACE | |
UPPER | |
XDIGIT |
|
strong |
Flags specifying compile-time options.
Regex::CompileFlags operator|(Regex::CompileFlags, Regex::CompileFlags)
Regex::CompileFlags operator&(Regex::CompileFlags, Regex::CompileFlags)
Regex::CompileFlags operator^(Regex::CompileFlags, Regex::CompileFlags)
Regex::CompileFlags operator~(Regex::CompileFlags)
Regex::CompileFlags& operator|=(Regex::CompileFlags&, Regex::CompileFlags)
Regex::CompileFlags& operator&=(Regex::CompileFlags&, Regex::CompileFlags)
Regex::CompileFlags& operator^=(Regex::CompileFlags&, Regex::CompileFlags)
Enumerator | |
---|---|
DEFAULT | No special options set. |
CASELESS | Letters in the pattern match both upper- and lowercase letters. This option can be changed within a pattern by a "(?i)" option setting. |
MULTILINE | By default, GRegex treats the strings as consisting of a single line of characters (even if it actually contains newlines). The "start of line" metacharacter ("^") matches only at the start of the string, while the "end of line" metacharacter ("$") matches only at the end of the string, or before a terminating newline (unless Glib::Regex::CompileFlags::DOLLAR_ENDONLY is set). When Glib::Regex::CompileFlags::MULTILINE is set, the "start of line" and "end of line" constructs match immediately following or immediately before any newline in the string, respectively, as well as at the very start and end. This can be changed within a pattern by a "(?m)" option setting. |
DOTALL | A dot metacharacter (".") in the pattern matches all characters, including newlines. Without it, newlines are excluded. This option can be changed within a pattern by a ("?s") option setting. |
EXTENDED | Whitespace data characters in the pattern are totally ignored except when escaped or inside a character class. Whitespace does not include the VT character (code 11). In addition, characters between an unescaped "#" outside a character class and the next newline character, inclusive, are also ignored. This can be changed within a pattern by a "(?x)" option setting. |
ANCHORED | The pattern is forced to be "anchored", that is, it is constrained to match only at the first matching point in the string that is being searched. This effect can also be achieved by appropriate constructs in the pattern itself such as the "^" metacharacter. |
DOLLAR_ENDONLY | A dollar metacharacter ("$") in the pattern matches only at the end of the string. Without this option, a dollar also matches immediately before the final character if it is a newline (but not before any other newlines). This option is ignored if Glib::Regex::CompileFlags::MULTILINE is set. |
UNGREEDY | Inverts the "greediness" of the quantifiers so that they are not greedy by default, but become greedy if followed by "?". It can also be set by a "(?U)" option setting within the pattern. |
RAW | Usually strings must be valid UTF-8 strings, using this flag they are considered as a raw sequence of bytes. |
NO_AUTO_CAPTURE | Disables the use of numbered capturing parentheses in the pattern. Any opening parenthesis that is not followed by "?" behaves as if it were followed by "?:" but named parentheses can still be used for capturing (and they acquire numbers in the usual way). |
OPTIMIZE | Since 2.74 and the port to pcre2, requests JIT compilation, which, if the just-in-time compiler is available, further processes a compiled pattern into machine code that executes much faster. However, it comes at the cost of extra processing before the match is performed, so it is most beneficial to use this when the same compiled pattern is used for matching many times. Before 2.74 this option used the built-in non-JIT optimizations in pcre1. |
FIRSTLINE | Limits an unanchored pattern to match before (or at) the first newline. |
DUPNAMES | Names used to identify capturing subpatterns need not be unique. This can be helpful for certain types of pattern when it is known that only one instance of the named subpattern can ever be matched. |
NEWLINE_CR | Usually any newline character or character sequence is recognized. If this option is set, the only recognized newline character is '\r'. |
NEWLINE_LF | Usually any newline character or character sequence is recognized. If this option is set, the only recognized newline character is '\n'. |
NEWLINE_CRLF | Usually any newline character or character sequence is recognized. If this option is set, the only recognized newline character sequence is '\r\n'. |
NEWLINE_ANYCRLF | Usually any newline character or character sequence is recognized. If this option is set, the only recognized newline character sequences are '\r', '\n', and '\r\n'. |
BSR_ANYCRLF | Usually any newline character or character sequence is recognised. If this option is set, then "\\R" only recognizes the newline characters '\r', '\n' and '\r\n'. |
JAVASCRIPT_COMPAT | Changes behaviour so that it is compatible with JavaScript rather than PCRE. Since GLib 2.74 this is no longer supported, as libpcre2 does not support it.
|
|
strong |
|
strong |
A test to perform on a file using g_file_test().
FileTest operator|(FileTest, FileTest)
FileTest operator&(FileTest, FileTest)
FileTest operator^(FileTest, FileTest)
FileTest operator~(FileTest)
FileTest& operator|=(FileTest&, FileTest)
FileTest& operator&=(FileTest&, FileTest)
FileTest& operator^=(FileTest&, FileTest)
|
strong |
Flags to be passed to g_object_bind_property() or g_object_bind_property_full().
This enumeration can be extended at later date.
Binding::Flags operator|(Binding::Flags, Binding::Flags)
Binding::Flags operator&(Binding::Flags, Binding::Flags)
Binding::Flags operator^(Binding::Flags, Binding::Flags)
Binding::Flags operator~(Binding::Flags)
Binding::Flags& operator|=(Binding::Flags&, Binding::Flags)
Binding::Flags& operator&=(Binding::Flags&, Binding::Flags)
Binding::Flags& operator^=(Binding::Flags&, Binding::Flags)
Enumerator | |
---|---|
DEFAULT | The default binding; if the source property changes, the target property is updated with its value. |
BIDIRECTIONAL | Bidirectional binding; if either the property of the source or the property of the target changes, the other is updated. |
SYNC_CREATE | Synchronize the values of the source and target properties when creating the binding; the direction of the synchronization is always from the source to the target. |
INVERT_BOOLEAN | If the two properties being bound are booleans, setting one to This flag will only work for boolean properties, and cannot be used when passing custom transformation functions to g_object_bind_property_full(). |
|
strong |
Flags which influence the parsing.
KeyFile::Flags operator|(KeyFile::Flags, KeyFile::Flags)
KeyFile::Flags operator&(KeyFile::Flags, KeyFile::Flags)
KeyFile::Flags operator^(KeyFile::Flags, KeyFile::Flags)
KeyFile::Flags operator~(KeyFile::Flags)
KeyFile::Flags& operator|=(KeyFile::Flags&, KeyFile::Flags)
KeyFile::Flags& operator&=(KeyFile::Flags&, KeyFile::Flags)
KeyFile::Flags& operator^=(KeyFile::Flags&, KeyFile::Flags)
|
strong |
Flags passed to g_module_open().
Note that these flags are not supported on all platforms.
Module::Flags operator|(Module::Flags, Module::Flags)
Module::Flags operator&(Module::Flags, Module::Flags)
Module::Flags operator^(Module::Flags, Module::Flags)
Module::Flags operator~(Module::Flags)
Module::Flags& operator|=(Module::Flags&, Module::Flags)
Module::Flags& operator&=(Module::Flags&, Module::Flags)
Module::Flags& operator^=(Module::Flags&, Module::Flags)
|
strong |
Flags which modify individual options.
OptionEntry::Flags operator|(OptionEntry::Flags, OptionEntry::Flags)
OptionEntry::Flags operator&(OptionEntry::Flags, OptionEntry::Flags)
OptionEntry::Flags operator^(OptionEntry::Flags, OptionEntry::Flags)
OptionEntry::Flags operator~(OptionEntry::Flags)
OptionEntry::Flags& operator|=(OptionEntry::Flags&, OptionEntry::Flags)
OptionEntry::Flags& operator&=(OptionEntry::Flags&, OptionEntry::Flags)
OptionEntry::Flags& operator^=(OptionEntry::Flags&, OptionEntry::Flags)
|
strong |
Flags to modify the format of the string returned by g_format_size_full().
FormatSizeFlags operator|(FormatSizeFlags, FormatSizeFlags)
FormatSizeFlags operator&(FormatSizeFlags, FormatSizeFlags)
FormatSizeFlags operator^(FormatSizeFlags, FormatSizeFlags)
FormatSizeFlags operator~(FormatSizeFlags)
FormatSizeFlags& operator|=(FormatSizeFlags&, FormatSizeFlags)
FormatSizeFlags& operator&=(FormatSizeFlags&, FormatSizeFlags)
FormatSizeFlags& operator^=(FormatSizeFlags&, FormatSizeFlags)
Enumerator | |
---|---|
DEFAULT | Behave the same as g_format_size(). |
LONG_FORMAT | Include the exact number of bytes as part of the returned string. For example, "45.6 kB (45,612 bytes)". |
IEC_UNITS | Use IEC (base 1024) units with "KiB"-style suffixes. IEC units should only be used for reporting things with a strong "power of 2" basis, like RAM sizes or RAID stripe sizes. Network and storage sizes should be reported in the normal SI units. |
BITS | Set the size as a quantity in bits, rather than bytes, and return units in bits. For example, ‘Mbit’ rather than ‘MB’. |
ONLY_VALUE | Return only value, without unit; this should not be used together with G_FORMAT_SIZE_LONG_FORMAT nor G_FORMAT_SIZE_ONLY_UNIT. |
ONLY_UNIT | Return only unit, without value; this should not be used together with G_FORMAT_SIZE_LONG_FORMAT nor G_FORMAT_SIZE_ONLY_VALUE. |
|
strong |
A bitwise combination representing a condition to watch for on an event source.
A bitwise combination representing an I/O condition to watch for on an event source.
IOCondition operator|(IOCondition, IOCondition)
IOCondition operator&(IOCondition, IOCondition)
IOCondition operator^(IOCondition, IOCondition)
IOCondition operator~(IOCondition)
IOCondition& operator|=(IOCondition&, IOCondition)
IOCondition& operator&=(IOCondition&, IOCondition)
IOCondition& operator^=(IOCondition&, IOCondition)
The flags correspond to those used by the poll()
system call on UNIX (see man 2 poll
). To test for individual flags, do something like this:
Enumerator | |
---|---|
IO_IN | There is data to read. |
IO_OUT | Data can be written (without blocking). |
IO_PRI | There is urgent data to read. |
IO_ERR | Error condition. |
IO_HUP | Hung up (the connection has been broken, usually for pipes and sockets). |
IO_NVAL | Invalid request. The file descriptor is not open. |
|
strong |
Specifies properties of a IOChannel.
Some of the flags can only be read with g_io_channel_get_flags(), but not changed with g_io_channel_set_flags().
IOFlags operator|(IOFlags, IOFlags)
IOFlags operator&(IOFlags, IOFlags)
IOFlags operator^(IOFlags, IOFlags)
IOFlags operator~(IOFlags)
IOFlags& operator|=(IOFlags&, IOFlags)
IOFlags& operator&=(IOFlags&, IOFlags)
IOFlags& operator^=(IOFlags&, IOFlags)
Enumerator | |
---|---|
NONE | No special flags set. |
APPEND | Turns on append mode, corresponds to O_APPEND (see the documentation of the UNIX open() syscall). |
NONBLOCK | Turns on nonblocking mode, corresponds to O_NONBLOCK/O_NDELAY (see the documentation of the UNIX open() syscall). |
IS_READABLE | Indicates that the io channel is readable. This flag cannot be changed. |
IS_WRITABLE | Indicates that the io channel is writable. This flag cannot be changed. |
IS_WRITEABLE | A misspelled version of G_IO_FLAG_IS_WRITABLE that existed before the spelling was fixed in GLib 2.30. It is kept here for compatibility reasons. Deprecated since 2.30. |
IS_SEEKABLE | Indicates that the io channel is seekable, i.e. that g_io_channel_seek_position() can be used on it. This flag cannot be changed. |
MASK | The mask that specifies all the valid flags. |
GET_MASK | The mask of the flags that are returned from g_io_channel_get_flags(). |
SET_MASK | The mask of the flags that the user can modify with g_io_channel_set_flags(). |
|
strong |
|
strong |
Flags to pass to Glib::MainContext::new_with_flags() which affect the behaviour of a Glib::MainContext.
MainContextFlags operator|(MainContextFlags, MainContextFlags)
MainContextFlags operator&(MainContextFlags, MainContextFlags)
MainContextFlags operator^(MainContextFlags, MainContextFlags)
MainContextFlags operator~(MainContextFlags)
MainContextFlags& operator|=(MainContextFlags&, MainContextFlags)
MainContextFlags& operator&=(MainContextFlags&, MainContextFlags)
MainContextFlags& operator^=(MainContextFlags&, MainContextFlags)
|
strong |
Flags specifying match-time options.
Regex::MatchFlags operator|(Regex::MatchFlags, Regex::MatchFlags)
Regex::MatchFlags operator&(Regex::MatchFlags, Regex::MatchFlags)
Regex::MatchFlags operator^(Regex::MatchFlags, Regex::MatchFlags)
Regex::MatchFlags operator~(Regex::MatchFlags)
Regex::MatchFlags& operator|=(Regex::MatchFlags&, Regex::MatchFlags)
Regex::MatchFlags& operator&=(Regex::MatchFlags&, Regex::MatchFlags)
Regex::MatchFlags& operator^=(Regex::MatchFlags&, Regex::MatchFlags)
Enumerator | |
---|---|
DEFAULT | No special options set. |
ANCHORED | The pattern is forced to be "anchored", that is, it is constrained to match only at the first matching point in the string that is being searched. This effect can also be achieved by appropriate constructs in the pattern itself such as the "^" metacharacter. |
NOTBOL | Specifies that first character of the string is not the beginning of a line, so the circumflex metacharacter should not match before it. Setting this without Glib::Regex::CompileFlags::MULTILINE (at compile time) causes circumflex never to match. This option affects only the behaviour of the circumflex metacharacter, it does not affect "\\A". |
NOTEOL | Specifies that the end of the subject string is not the end of a line, so the dollar metacharacter should not match it nor (except in multiline mode) a newline immediately before it. Setting this without Glib::Regex::CompileFlags::MULTILINE (at compile time) causes dollar never to match. This option affects only the behaviour of the dollar metacharacter, it does not affect "\\Z" or "\\z". |
NOTEMPTY | An empty string is not considered to be a valid match if this option is set. If there are alternatives in the pattern, they are tried. If all the alternatives match the empty string, the entire match fails. For example, if the pattern "a?b?" is applied to a string not beginning with "a" or "b", it matches the empty string at the start of the string. With this flag set, this match is not valid, so GRegex searches further into the string for occurrences of "a" or "b". |
PARTIAL | Turns on the partial matching feature, for more documentation on partial matching see g_match_info_is_partial_match(). |
NEWLINE_CR | Overrides the newline definition set when creating a new Regex, setting the '\r' character as line terminator. |
NEWLINE_LF | Overrides the newline definition set when creating a new Regex, setting the '\n' character as line terminator. |
NEWLINE_CRLF | Overrides the newline definition set when creating a new Regex, setting the '\r\n' characters sequence as line terminator. |
NEWLINE_ANY | Overrides the newline definition set when creating a new Regex, any Unicode newline sequence is recognised as a newline. These are '\r', '\n' and '\rn', and the single characters U+000B LINE TABULATION, U+000C FORM FEED (FF), U+0085 NEXT LINE (NEL), U+2028 LINE SEPARATOR and U+2029 PARAGRAPH SEPARATOR. |
NEWLINE_ANYCRLF | Overrides the newline definition set when creating a new Regex; any '\r', '\n', or '\r\n' character sequence is recognized as a newline. |
BSR_ANYCRLF | Overrides the newline definition for "\\R" set when creating a new Regex; only '\r', '\n', or '\r\n' character sequences are recognized as a newline by "\\R". |
BSR_ANY | Overrides the newline definition for "\\R" set when creating a new Regex; any Unicode newline character or character sequence are recognized as a newline by "\\R". These are '\r', '\n' and '\rn', and the single characters U+000B LINE TABULATION, U+000C FORM FEED (FF), U+0085 NEXT LINE (NEL), U+2028 LINE SEPARATOR and U+2029 PARAGRAPH SEPARATOR. |
PARTIAL_SOFT | An alias for Glib::Regex::MatchFlags::PARTIAL. |
PARTIAL_HARD | Turns on the partial matching feature. In contrast to to Glib::Regex::MatchFlags::PARTIAL_SOFT, this stops matching as soon as a partial match is found, without continuing to search for a possible complete match. See g_match_info_is_partial_match() for more information. |
NOTEMPTY_ATSTART | Like Glib::Regex::MatchFlags::NOTEMPTY, but only applied to the start of the matched string. For anchored patterns this can only happen for pattern containing "\\K". |
|
strong |
Enumeration representing a month; values are Glib::Date::JANUARY, Glib::Date::FEBRUARY, etc.
Glib::Date::BAD_MONTH is the invalid value.
|
strong |
Defines how a Unicode string is transformed in a canonical form, standardizing such issues as whether a character with an accent is represented as a base character and combining accent or as a single precomposed character.
Unicode strings should generally be normalized before comparing them.
Enumerator | |
---|---|
DEFAULT | Standardize differences that do not affect the text content, such as the above-mentioned accent representation. |
NFD | Another name for Glib::NormalizeMode::DEFAULT. |
DEFAULT_COMPOSE | Like Glib::NormalizeMode::DEFAULT, but with composed forms rather than a maximally decomposed form. |
NFC | Another name for Glib::NormalizeMode::DEFAULT_COMPOSE. |
ALL | Beyond Glib::NormalizeMode::DEFAULT also standardize the "compatibility" characters in Unicode, such as SUPERSCRIPT THREE to the standard forms (in this case DIGIT THREE). Formatting information may be lost but for most text operations such characters should be considered the same. |
NFKD | Another name for Glib::NormalizeMode::ALL. |
ALL_COMPOSE | Like Glib::NormalizeMode::ALL, but with composed forms rather than a maximally decomposed form. |
NFKC | Another name for Glib::NormalizeMode::ALL_COMPOSE. |
The OptionType enum values determine the expected type of a command line option.
If an option expects an extra argument, it can be specified in several ways; with a short option: "-x arg", with a long option: "--name arg" or combined in a single argument: "--name=arg". All option types except OptionType::BOOL expect an extra argument. OptionType::STRING_VECTOR and OptionType::FILENAME_VECTOR accept more than one extra argument.
The descriptions of the enum values show what type of Glib::Variant<> is stored in a Glib::VariantDict.
Enumerator | |
---|---|
BOOL | bool |
STRING | |
INT | gint32 |
FILENAME | |
STRING_VECTOR | |
FILENAME_VECTOR | |
DOUBLE | double |
INT64 | gint64 |
|
strong |
Through the ParamFlags flag values, certain aspects of parameters can be configured.
See also: G_PARAM_STATIC_STRINGS
ParamFlags operator|(ParamFlags, ParamFlags)
ParamFlags operator&(ParamFlags, ParamFlags)
ParamFlags operator^(ParamFlags, ParamFlags)
ParamFlags operator~(ParamFlags)
ParamFlags& operator|=(ParamFlags&, ParamFlags)
ParamFlags& operator&=(ParamFlags&, ParamFlags)
ParamFlags& operator^=(ParamFlags&, ParamFlags)
Enumerator | |
---|---|
READABLE | The parameter is readable. |
WRITABLE | The parameter is writable. |
READWRITE | Alias for Glib::ParamFlags::READABLE | Glib::ParamFlags::WRITABLE. |
CONSTRUCT | The parameter will be set upon object construction. See G::Object::constructed_vfunc() for more details. |
CONSTRUCT_ONLY | The parameter can only be set upon object construction. See G::Object::constructed_vfunc() for more details. |
LAX_VALIDATION | Upon parameter conversion (see g_param_value_convert()) strict validation is not required. |
STATIC_NAME | The string used as name when constructing the parameter is guaranteed to remain valid and unmodified for the lifetime of the parameter. |
PRIVATE | Internal. |
STATIC_NICK | The string used as nick when constructing the parameter is guaranteed to remain valid and unmmodified for the lifetime of the parameter. |
STATIC_BLURB | The string used as blurb when constructing the parameter is guaranteed to remain valid and unmodified for the lifetime of the parameter. |
EXPLICIT_NOTIFY | Calls to g_object_set_property() for this property will not automatically result in a "notify" signal being emitted: the implementation must call g_object_notify() themselves in case the property actually changes. |
DEPRECATED | The parameter is deprecated and will be removed in a future version. A warning will be generated if it is used while running with G_ENABLE_DIAGNOSTIC=1. |
|
strong |
Flags that affect the behaviour of the parser.
ParseFlags operator|(ParseFlags, ParseFlags)
ParseFlags operator&(ParseFlags, ParseFlags)
ParseFlags operator^(ParseFlags, ParseFlags)
ParseFlags operator~(ParseFlags)
ParseFlags& operator|=(ParseFlags&, ParseFlags)
ParseFlags& operator&=(ParseFlags&, ParseFlags)
ParseFlags& operator^=(ParseFlags&, ParseFlags)
|
strong |
An enumeration specifying the base position for a g_io_channel_seek_position() operation.
Enumerator | |
---|---|
CUR | The current position in the file. |
SET | The start of the file. |
END | The end of the file. |
|
strong |
Flags passed to g_spawn_sync(), g_spawn_async() and g_spawn_async_with_pipes().
SpawnFlags operator|(SpawnFlags, SpawnFlags)
SpawnFlags operator&(SpawnFlags, SpawnFlags)
SpawnFlags operator^(SpawnFlags, SpawnFlags)
SpawnFlags operator~(SpawnFlags)
SpawnFlags& operator|=(SpawnFlags&, SpawnFlags)
SpawnFlags& operator&=(SpawnFlags&, SpawnFlags)
SpawnFlags& operator^=(SpawnFlags&, SpawnFlags)
Enumerator | |
---|---|
DEFAULT | No flags, default behaviour. |
LEAVE_DESCRIPTORS_OPEN | The parent's open file descriptors will be inherited by the child; otherwise all descriptors except stdin, stdout and stderr will be closed before calling exec() in the child. |
DO_NOT_REAP_CHILD | The child will not be automatically reaped; you must use g_child_watch_add() yourself (or call waitpid() or handle |
SEARCH_PATH |
|
STDOUT_TO_DEV_NULL | The child's standard output will be discarded, instead of going to the same location as the parent's standard output. |
STDERR_TO_DEV_NULL | The child's standard error will be discarded. |
CHILD_INHERITS_STDIN | The child will inherit the parent's standard input (by default, the child's standard input is attached to |
FILE_AND_ARGV_ZERO | The first element of Normally g_spawn_async_with_pipes() uses |
SEARCH_PATH_FROM_ENVP | If |
CLOEXEC_PIPES | Create all pipes with the |
CHILD_INHERITS_STDOUT | The child will inherit the parent's standard output. |
CHILD_INHERITS_STDERR | The child will inherit the parent's standard error. |
STDIN_FROM_DEV_NULL | The child's standard input is attached to |
|
strong |
Disambiguates a given time in two ways.
First, specifies if the given time is in universal or local time.
Second, if the time is in local time, specifies if it is local standard time or local daylight time. This is important for the case where the same local time occurs twice (during daylight savings time transitions, for example).
Enumerator | |
---|---|
STANDARD | The time is in local standard time. |
DAYLIGHT | The time is in local daylight time. |
UNIVERSAL | The time is in UTC. |
|
strong |
Specifies which nodes are visited during several of the NodeTree methods, including traverse() and find().
Enumerator | |
---|---|
LEAVES | Only leaf nodes should be visited. |
NON_LEAVES | Only non-leaf nodes should be visited. |
ALL | All nodes should be visited. |
MASK | A mask of all traverse flags. |
|
strong |
Specifies the type of traversal performed by g_tree_traverse(), g_node_traverse() and g_node_find().
The different orders are illustrated here:
|
strong |
The hashing algorithm to be used by Checksum when performing the digest of some data.
Note that the Glib::Checksum::Type enumeration may be extended at a later date to include new hashing algorithm types.
|
strong |
These are the possible line break classifications.
Since new Unicode versions may add new types here, applications should be ready to handle unknown values. They may be regarded as Glib::UnicodeBreakType::UNKNOWN.
See Unicode Line Breaking Algorithm.
Enumerator | |
---|---|
MANDATORY | Mandatory Break (BK). |
CARRIAGE_RETURN | Carriage Return (CR). |
LINE_FEED | Line Feed (LF). |
COMBINING_MARK | Attached Characters and Combining Marks (CM). |
SURROGATE | Surrogates (SG). |
ZERO_WIDTH_SPACE | Zero Width Space (ZW). |
INSEPARABLE | Inseparable (IN). |
NON_BREAKING_GLUE | Non-breaking ("Glue") (GL). |
CONTINGENT | Contingent Break Opportunity (CB). |
SPACE | Space (SP). |
AFTER | Break Opportunity After (BA). |
BEFORE | Break Opportunity Before (BB). |
BEFORE_AND_AFTER | Break Opportunity Before and After (B2). |
HYPHEN | Hyphen (HY). |
NON_STARTER | Nonstarter (NS). |
OPEN_PUNCTUATION | Opening Punctuation (OP). |
CLOSE_PUNCTUATION | Closing Punctuation (CL). |
QUOTATION | Ambiguous Quotation (QU). |
EXCLAMATION | Exclamation/Interrogation (EX). |
IDEOGRAPHIC | Ideographic (ID). |
NUMERIC | Numeric (NU). |
INFIX_SEPARATOR | Infix Separator (Numeric) (IS). |
SYMBOL | Symbols Allowing Break After (SY). |
ALPHABETIC | Ordinary Alphabetic and Symbol Characters (AL). |
PREFIX | Prefix (Numeric) (PR). |
POSTFIX | Postfix (Numeric) (PO). |
COMPLEX_CONTEXT | Complex Content Dependent (South East Asian) (SA). |
AMBIGUOUS | Ambiguous (Alphabetic or Ideographic) (AI). |
UNKNOWN | Unknown (XX). |
NEXT_LINE | Next Line (NL). |
WORD_JOINER | Word Joiner (WJ). |
HANGUL_L_JAMO | Hangul L Jamo (JL). |
HANGUL_V_JAMO | Hangul V Jamo (JV). |
HANGUL_T_JAMO | Hangul T Jamo (JT). |
HANGUL_LV_SYLLABLE | Hangul LV Syllable (H2). |
HANGUL_LVT_SYLLABLE | Hangul LVT Syllable (H3). |
CLOSE_PARANTHESIS | Closing Parenthesis (CP).
|
CLOSE_PARENTHESIS | Closing Parenthesis (CP). |
CONDITIONAL_JAPANESE_STARTER | Conditional Japanese Starter (CJ). |
HEBREW_LETTER | Hebrew Letter (HL). |
REGIONAL_INDICATOR | Regional Indicator (RI). |
EMOJI_BASE | Emoji Base (EB). |
EMOJI_MODIFIER | Emoji Modifier (EM). |
ZERO_WIDTH_JOINER | Zero Width Joiner (ZWJ). |
AKSARA | Aksara (AK). |
AKSARA_PRE_BASE | Aksara Pre-Base (AP). |
AKSARA_START | Aksara Start (AS). |
VIRAMA_FINAL | Virama Final (VF). |
VIRAMA | Virama (VI). |
|
strong |
These are the possible character classifications from the Unicode specification.
See Unicode Character Database.
|
strong |
These are logical ids for special directories which are defined depending on the platform used.
You should use g_get_user_special_dir() to retrieve the full path associated to the logical id.
The UserDirectory enumeration can be extended at later date. Not every platform has a directory for every logical id in this enumeration.
|
strong |
Enumeration representing a day of the week; Glib::Date::MONDAY, Glib::Date::TUESDAY, etc.
Glib::Date::BAD_WEEKDAY is an invalid weekday.
Enumerator | |
---|---|
BAD_WEEKDAY | Invalid value. |
MONDAY | Monday. |
TUESDAY | Tuesday. |
WEDNESDAY | Wednesday. |
THURSDAY | Thursday. |
FRIDAY | Friday. |
SATURDAY | Saturday. |
SUNDAY | Sunday. |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inlineprotected |
|
inlineprotected |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inlineprotected |
|
inlineprotected |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inlineprotected |
|
inlineprotected |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inlineprotected |
|
inlineprotected |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inlineprotected |
|
inlineprotected |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inlineprotected |
|
inlineprotected |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inlineprotected |
|
inlineprotected |
|
inline |