draw XP status bar grip, toolbar grip properly

This commit is contained in:
Dom Lachowicz 2004-12-01 16:13:06 +00:00
parent 3bd8c449f4
commit 29ada43da2
5 changed files with 10 additions and 2 deletions

View File

@ -11,6 +11,8 @@
2004-12-01 Dom Lachowicz <cinamod@hotmail.com>
* modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: use MS Windows button order, not Gnome HIG order
* modules/engines/ms-windows/msw_style.c (draw_handle): Draw XP toolbar grippie handle properly
(draw_resize_grip): Draw XP status bar grippie handle properly
2004-11-30 Dom Lachowicz <cinamod@hotmail.com>

View File

@ -11,6 +11,8 @@
2004-12-01 Dom Lachowicz <cinamod@hotmail.com>
* modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: use MS Windows button order, not Gnome HIG order
* modules/engines/ms-windows/msw_style.c (draw_handle): Draw XP toolbar grippie handle properly
(draw_resize_grip): Draw XP status bar grippie handle properly
2004-11-30 Dom Lachowicz <cinamod@hotmail.com>

View File

@ -11,6 +11,8 @@
2004-12-01 Dom Lachowicz <cinamod@hotmail.com>
* modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: use MS Windows button order, not Gnome HIG order
* modules/engines/ms-windows/msw_style.c (draw_handle): Draw XP toolbar grippie handle properly
(draw_resize_grip): Draw XP status bar grippie handle properly
2004-11-30 Dom Lachowicz <cinamod@hotmail.com>

View File

@ -11,6 +11,8 @@
2004-12-01 Dom Lachowicz <cinamod@hotmail.com>
* modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: use MS Windows button order, not Gnome HIG order
* modules/engines/ms-windows/msw_style.c (draw_handle): Draw XP toolbar grippie handle properly
(draw_resize_grip): Draw XP status bar grippie handle properly
2004-11-30 Dom Lachowicz <cinamod@hotmail.com>

View File

@ -1784,7 +1784,7 @@ draw_resize_grip (GtkStyle *style,
gint height)
{
if (detail && !strcmp(detail, "statusbar")) {
if (!xp_theme_draw(window, XP_THEME_ELEMENT_STATUS_GRIPPER, style, x, y, width, height,
if (xp_theme_draw(window, XP_THEME_ELEMENT_STATUS_GRIPPER, style, x, y, width, height,
state_type, area))
return;
}
@ -1807,7 +1807,7 @@ draw_handle (GtkStyle *style,
gint height,
GtkOrientation orientation)
{
if (GTK_IS_HANDLE_BOX (widget))
if (is_toolbar_child (widget))
{
XpThemeElement hndl;