grim/guifications3

59b11e0f9116
start of converting gflib-ui/tests/testcolor.c to gtester

refs #674
/*
* Guifications - The end-all, be-all notification framework
* Copyright (C) 2003-2009 Gary Kramlich <grim@reaperworld.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef GF_THEME_OPTIONS_H
#define GF_THEME_OPTIONS_H
#include <gflib/gf_object.h>
#define GF_TYPE_THEME_OPTIONS (gf_theme_options_get_gtype())
#define GF_THEME_OPTIONS(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GF_TYPE_THEME_OPTIONS, GfThemeOptions))
#define GF_THEME_OPTIONS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GF_TYPE_THEME_OPTIONS, GfThemeOptionsClass))
#define GF_IS_THEME_OPTIONS(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GF_TYPE_THEME_OPTIONS))
#define GF_IS_THEME_OPTIONS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), GF_TYPE_THEME_OPTIONS))
#define GF_THEME_OPTIONS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), GF_TYPE_THEME_OPTIONS, GfThemeOptionsClass))
typedef struct _GfThemeOptions GfThemeOptions;
typedef struct _GfThemeOptionsClass GfThemeOptionsClass;
struct _GfThemeOptions {
GfObject parent;
void (*_gf_reserved1)(void);
void (*_gf_reserved2)(void);
void (*_gf_reserved3)(void);
void (*_gf_reserved4)(void);
};
struct _GfThemeOptionsClass {
GfObjectClass parent;
void (*_gf_reserved1)(void);
void (*_gf_reserved2)(void);
void (*_gf_reserved3)(void);
void (*_gf_reserved4)(void);
};
G_BEGIN_DECLS
GType gf_theme_options_get_gtype(void);
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);
G_END_DECLS
#endif /* GF_THEME_OPTIONS_H */