Add new Makefiles ditto Add keybindings dialog
2002-03-17 Jonathan Blandford <jrb@redhat.com> * Makefile.am: Add new Makefiles * configure.in: ditto * capplets/Makefile.am: Add keybindings dialog * capplets/keybindings/.cvsignore: shut up CVS * capplets/keybindings/Makefile.am: * capplets/keybindings/eggcellrendererkeys.c: * capplets/keybindings/eggcellrendererkeys.h: * capplets/keybindings/gnome-keybinding-properties.c: * capplets/keybindings/gnome-keybinding-properties.glade: * capplets/keybindings/keybinding.desktop.in: New properties dialog. Seems to work * schemas/.cvsignore: shut up CVS * schemas/Makefile.am: * schemas/apps_gnome_keybinding_properties.schemas: New schemas file for configuring the keybinding schemas. * schemas/background.schemas: Remove unneeded schemas files * schemas/peripherals.schemas: * schemas/screensaver.schemas:
This commit is contained in:
parent
ee92876cb3
commit
ac9331cf2b
28 changed files with 1703 additions and 382 deletions
20
capplets/common/theme-common.h
Normal file
20
capplets/common/theme-common.h
Normal file
|
@ -0,0 +1,20 @@
|
|||
|
||||
#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);
|
||||
|
||||
|
||||
#endif /* THEME_COMMON_H */
|
Loading…
Add table
Add a link
Reference in a new issue