Tue Apr 9 11:43:08 2002 Jonathan Blandford <jrb@gnome.org> * capplets/accessibility/keyboard/Makefile.am: Change gnome2-* to gnome-* * capplets/default-applications/Makefile.am: ditto * capplets/file-types/Makefile.am: ditto * capplets/font/Makefile.am: ditto * capplets/keyboard/Makefile.am: ditto * capplets/mouse/Makefile.am: ditto * capplets/sound/Makefile.am: ditto * capplets/theme-switcher/Makefile.am: ditto * capplets/ui-properties/Makefile.am: ditto * control-center/Makefile.am: ditto * gnome-settings-daemon/Makefile.am: ditto * gnome-keybinding-properties.c (setup_dialog): man, was this code silly. Also, themes are case sensitive. (is_metacity_running): Add support for metacity keybindings. This is off by default until I write code to actually detect metacity. Tue Apr 9 11:58:10 2002 Jonathan Blandford <jrb@gnome.org> * Makefile.am: Add commented out disk support until I finish the code.
22 lines
429 B
C
22 lines
429 B
C
|
|
#ifndef THEME_COMMON_H
|
|
#define THEME_COMMON_H
|
|
|
|
#include <glib.h>
|
|
|
|
typedef struct _ThemeInfo ThemeInfo;
|
|
struct _ThemeInfo
|
|
{
|
|
gchar *path;
|
|
gchar *name;
|
|
gboolean has_gtk;
|
|
gboolean has_keybinding;
|
|
};
|
|
|
|
GList *theme_common_get_list (void);
|
|
void theme_common_list_free (GList *list);
|
|
void theme_common_register_theme_change (GCallback func,
|
|
gpointer data);
|
|
|
|
|
|
#endif /* THEME_COMMON_H */
|