| Guifications Library Reference Manual |
|---|
GfThemeInfoGfThemeInfo — GfThemeInfo Object API |
GfThemeInfo;
GfThemeInfo* gf_theme_info_new (void);
void gf_theme_info_set_name (GfThemeInfo *theme_info,
const gchar *name);
const gchar* gf_theme_info_get_name (const GfThemeInfo *theme_info);
void gf_theme_info_set_version (GfThemeInfo *theme_info,
const gchar *version);
const gchar* gf_theme_info_get_version (const GfThemeInfo *theme_info);
void gf_theme_info_set_summary (GfThemeInfo *theme_info,
const gchar *summary);
const gchar* gf_theme_info_get_summary (const GfThemeInfo *theme_info);
void gf_theme_info_set_description (GfThemeInfo *theme_info,
const gchar *description);
const gchar* gf_theme_info_get_description (const GfThemeInfo *theme_info);
void gf_theme_info_set_author (GfThemeInfo *theme_info,
const gchar *author);
const gchar* gf_theme_info_get_author (const GfThemeInfo *theme_info);
void gf_theme_info_set_website (GfThemeInfo *theme_info,
const gchar *website);
const gchar* gf_theme_info_get_website (const GfThemeInfo *theme_info);
"author" gchararray : Read / Write "description" gchararray : Read / Write "name" gchararray : Read / Write "summary" gchararray : Read / Write "version" gchararray : Read / Write "website" gchararray : Read / Write
typedef struct _GfThemeInfo GfThemeInfo;
GfThemeInfo is an opaque structure that should not be used directly.
GfThemeInfo* gf_theme_info_new (void);
Creates a new GfThemeInfo instance.
| Returns : | The new GfThemeInfo instance. |
void gf_theme_info_set_name (GfThemeInfo *theme_info, const gchar *name);
Sets the name of theme_info.
theme_info : |
The GfThemeInfo instance. |
name : |
The new name. |
const gchar* gf_theme_info_get_name (const GfThemeInfo *theme_info);
Gets the name from theme_info.
theme_info : |
The GfThemeInfo instance. |
| Returns : | The name of theme_info.
|
void gf_theme_info_set_version (GfThemeInfo *theme_info, const gchar *version);
Sets the version of theme_info.
theme_info : |
The GfThemeInfo instance. |
version : |
The new version. |
const gchar* gf_theme_info_get_version (const GfThemeInfo *theme_info);
Gets the version from theme_info.
theme_info : |
The GfThemeInfo instance. |
| Returns : | The version from theme_info.
|
void gf_theme_info_set_summary (GfThemeInfo *theme_info, const gchar *summary);
Sets the summary for theme_info.
theme_info : |
The GfThemeInfo instance. |
summary : |
The new summary. |
const gchar* gf_theme_info_get_summary (const GfThemeInfo *theme_info);
Gets the summary from theme_info.
theme_info : |
The GfThemeInfo instance. |
| Returns : | The summary from theme_info.
|
void gf_theme_info_set_description (GfThemeInfo *theme_info, const gchar *description);
Sets the description for theme_info.
theme_info : |
The GfThemeInfo instance. |
description : |
The new description. |
const gchar* gf_theme_info_get_description (const GfThemeInfo *theme_info);
Gets the description from theme_info.
theme_info : |
The GfThemeInfo instance. |
| Returns : | The description of theme_info.
|
void gf_theme_info_set_author (GfThemeInfo *theme_info, const gchar *author);
Sets the author for theme_info.
theme_info : |
The GfThemeInfo instance. |
author : |
The new author. |
const gchar* gf_theme_info_get_author (const GfThemeInfo *theme_info);
Gets the author from theme_info.
theme_info : |
The GfThemeInfo instance. |
| Returns : | The author from theme_info.
|
void gf_theme_info_set_website (GfThemeInfo *theme_info, const gchar *website);
Sets the website for theme_info.
theme_info : |
The GfThemeInfo instance. |
website : |
The new website. |
const gchar* gf_theme_info_get_website (const GfThemeInfo *theme_info);
Gets the website from theme_info.
theme_info : |
The GfThemeInfo instance. |
| Returns : | The website from theme_info.
|
| << GfThemeOptions | GfNotification >> |