| Guifications Library Reference Manual |
|---|
GfThemeOptionsGfThemeOptions — GfThemeOptions Object API |
GfThemeOptions;
GfThemeOptions* gf_theme_options_new (void);
void gf_theme_options_set_date_format
(GfThemeOptions *theme_options,
const gchar *date_format);
const gchar* gf_theme_options_get_date_format
(const GfThemeOptions *theme_options);
void gf_theme_options_set_time_format
(GfThemeOptions *theme_options,
const gchar *time_format);
const gchar* gf_theme_options_get_time_format
(const GfThemeOptions *theme_options);
void gf_theme_options_set_ellipsis_text
(GfThemeOptions *theme_options,
const gchar *ellipsis_text);
const gchar* gf_theme_options_get_ellipsis_text
(const GfThemeOptions *theme_options);
"date-format" gchararray : Read / Write "ellipsis-text" gchararray : Read / Write "time-format" gchararray : Read / Write
typedef struct _GfThemeOptions GfThemeOptions;
GfThemeOptions is an opaque structure that should not be used directly.
GfThemeOptions* gf_theme_options_new (void);
Creates a new GfThemeOptions instance.
| Returns : | The new GfThemeOptions instance. |
void gf_theme_options_set_date_format
(GfThemeOptions *theme_options,
const gchar *date_format);
Sets the date format for theme_options.
theme_options : |
The GfThemeOptions instance. |
date_format : |
The new date format. |
const gchar* gf_theme_options_get_date_format
(const GfThemeOptions *theme_options);
Gets the date format from theme_options.
theme_options : |
The GfThemeOptions instance. |
| Returns : | The date format from theme_options.
|
void gf_theme_options_set_time_format
(GfThemeOptions *theme_options,
const gchar *time_format);
Sets the time format for theme_options.
theme_options : |
The GfThemeOptions instance. |
time_format : |
The new time format. |
const gchar* gf_theme_options_get_time_format
(const GfThemeOptions *theme_options);
Gets the time format from theme_options.
theme_options : |
The GfThemeOptions instance. |
| Returns : | The time format from theme_options.
|
void gf_theme_options_set_ellipsis_text
(GfThemeOptions *theme_options,
const gchar *ellipsis_text);
Sets the ellipsis text for theme_options.
theme_options : |
The GfThemeOptions instance. |
ellipsis_text : |
The new ellipsis_text. |
const gchar* gf_theme_options_get_ellipsis_text
(const GfThemeOptions *theme_options);
Gets the ellipsis text from theme_options.
theme_options : |
The GfThemeOptions instance. |
| Returns : | The ellipsis text from theme_options.
|
| << GfTheme | GfThemeInfo >> |