summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDom Lachowicz <doml@src.gnome.org>2004-12-01 16:13:06 +0000
committerDom Lachowicz <doml@src.gnome.org>2004-12-01 16:13:06 +0000
commit29ada43da25e23cb35d9fb4c7c5eb72cf3090370 (patch)
tree661ba41cc4b7b7afa7bf8b6d6e5163a2f3e4aca2
parent3bd8c449f4b0bd795269a1a600a8d89a9a90cbd7 (diff)
downloadgdk-pixbuf-29ada43da25e23cb35d9fb4c7c5eb72cf3090370.tar.gz
draw XP status bar grip, toolbar grip properly
-rw-r--r--ChangeLog2
-rw-r--r--ChangeLog.pre-2-102
-rw-r--r--ChangeLog.pre-2-62
-rw-r--r--ChangeLog.pre-2-82
-rwxr-xr-xmodules/engines/ms-windows/msw_style.c4
5 files changed, 10 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index f61f94a0b..bb77ac494 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index f61f94a0b..bb77ac494 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -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>
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index f61f94a0b..bb77ac494 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -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>
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index f61f94a0b..bb77ac494 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -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>
diff --git a/modules/engines/ms-windows/msw_style.c b/modules/engines/ms-windows/msw_style.c
index 76e7089c5..93052c596 100755
--- a/modules/engines/ms-windows/msw_style.c
+++ b/modules/engines/ms-windows/msw_style.c
@@ -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;