diff options
author | Soeren Sandmann <sandmann@daimi.au.dk> | 2004-02-26 22:29:24 +0000 |
---|---|---|
committer | Søren Sandmann Pedersen <ssp@src.gnome.org> | 2004-02-26 22:29:24 +0000 |
commit | dc0718bd7e95bb93e1c1c0fe715d3827e79a6080 (patch) | |
tree | 4d6752cf63fc177832ccba2d19f66424785fb002 /gtk/gtkrc.c | |
parent | 211b6450571da88fe776f2dc0b8ae29f71e1af67 (diff) | |
download | gtk+-dc0718bd7e95bb93e1c1c0fe715d3827e79a6080.tar.gz |
New function. Use resize cursors for resize grips. (Bug #129621)
Thu Feb 26 23:26:00 2004 Soeren Sandmann <sandmann@daimi.au.dk>
* gtk/gtkstatusbar.c (set_grip_cursor): New function. Use resize
cursors for resize grips. (Bug #129621)
* gtk/gtktoolbar.c (gtk_toolbar_get_relief_style): Documentation
fix - patch by Torsten Schoenfeld.
* gtk/gtkmenubar.c (gtk_menu_bar_size_request): don't request
space between the items. (Bug #110775)
* gtk/gtkrc.c (_gtk_rc_init): Provide extra horizontal padding
inside menu items that are inside a menu bar. (Bug #110775)
* configure.in (HAVE_XCURSOR): Make XCurosr part of GDK_EXTRA_,
not GDK_PACKAGES, to prevent applications from getting linked to
it (Bug #119804)
* gtk/gtkmenubar.c (gtk_menu_bar_size_allocate): Put the vertical
ipadding inside the item. (Bug #61843)
Diffstat (limited to 'gtk/gtkrc.c')
-rw-r--r-- | gtk/gtkrc.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gtk/gtkrc.c b/gtk/gtkrc.c index 7626cb4587..e222174db1 100644 --- a/gtk/gtkrc.c +++ b/gtk/gtkrc.c @@ -673,6 +673,10 @@ _gtk_rc_init (void) " bg[NORMAL] = \"#bab5ab\"\n" "}\n" "\n" + "style \"gtk-default-menu-bar-item-style\" {\n" + " GtkMenuItem::horizontal_padding = 5\n" + "}\n" + "\n" "style \"gtk-default-menu-item-style\" {\n" " bg[PRELIGHT] = \"#4b6983\"\n" " fg[PRELIGHT] = \"#ffffff\"\n" @@ -689,6 +693,11 @@ _gtk_rc_init (void) "widget_class \"*.GtkCheckMenuItem.*\" style : gtk \"gtk-default-menu-item-style\"\n" "widget_class \"*.GtkImageMenuItem.*\" style : gtk \"gtk-default-menu-item-style\"\n" "widget_class \"*.GtkSeparatorMenuItem.*\" style : gtk \"gtk-default-menu-item-style\"\n" + "widget_class \"*GtkMenuBar*GtkMenuItem\" style : gtk \"gtk-default-menu-bar-item-style\"\n" + "widget_class \"*GtkMenuBar*GtkAccelMenuItem\" style : gtk \"gtk-default-menu-bar-item-style\"\n" + "widget_class \"*GtkMenuBar*GtkRadioMenuItem\" style : gtk \"gtk-default-menu-bar-item-style\"\n" + "widget_class \"*GtkMenuBar*GtkCheckMenuItem\" style : gtk \"gtk-default-menu-bar-item-style\"\n" + "widget_class \"*GtkMenuBar*GtkImageMenuItem\" style : gtk \"gtk-default-menu-bar-item-style\"\n" ); } |