diff options
| author | Sam Ravnborg <sam@mars.ravnborg.org> | 2005-03-12 23:55:30 +0100 |
|---|---|---|
| committer | Sam Ravnborg <sam@mars.ravnborg.org> | 2005-03-12 23:55:30 +0100 |
| commit | 7a855b2eac6aa3d3b24e615809c4cb87b9e1487b (patch) | |
| tree | 006f58dfd84c76f3cea664f1d0867bb1bf84e850 /scripts | |
| parent | 12dd2ea4409a7b2829641b5af9ec14f68295d718 (diff) | |
kconfig: gconfig - define local icons
Define own icons for tree structure, allowing icons to match other icons.
This also makes gconfig independent on icons defined for xconfig.
Teached bk to ignore gconf executable
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/kconfig/gconf.c | 34 |
1 files changed, 33 insertions, 1 deletions
diff --git a/scripts/kconfig/gconf.c b/scripts/kconfig/gconf.c index ed4afa063fb6..32e2a1f7a1d6 100644 --- a/scripts/kconfig/gconf.c +++ b/scripts/kconfig/gconf.c @@ -11,7 +11,6 @@ #endif #include "lkc.h" -#include "images.c" #include <glade/glade.h> #include <gtk/gtk.h> @@ -1142,6 +1141,39 @@ on_treeview1_button_press_event(GtkWidget * widget, /* Conf management */ +static const char *xpm_menu[] = { +"12 12 2 1", +" c white", +". c black", +" ", +" ", +" . ", +" .. ", +" ... ", +" .... ", +" ..... ", +" .... ", +" ... ", +" .. ", +" . ", +" "}; + +static const char *xpm_void[] = { +"12 12 2 1", +" c white", +". c black", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; /* Fill a row of strings */ static gchar **fill_row(struct menu *menu) |
