gtk-engines r1361 - in trunk: . engines/clearlooks/src
- From: bberg svn gnome org
- To: svn-commits-list gnome org
- Subject: gtk-engines r1361 - in trunk: . engines/clearlooks/src
- Date: Sat, 11 Apr 2009 19:13:11 +0000 (UTC)
Author: bberg
Date: Sat Apr 11 19:13:11 2009
New Revision: 1361
URL: http://svn.gnome.org/viewvc/gtk-engines?rev=1361&view=rev
Log:
2009-04-11 Benjamin Berg <benjamin sipsolutions net>
* engines/clearlooks/src/clearlooks_draw*.c:
(clearlooks_*_draw_scrollbar_stepper):
Remove the steppers line, so that there is only one pixel if two
steppers are next to each other.
Modified:
trunk/ChangeLog
trunk/engines/clearlooks/src/clearlooks_draw.c
trunk/engines/clearlooks/src/clearlooks_draw_glossy.c
trunk/engines/clearlooks/src/clearlooks_draw_gummy.c
trunk/engines/clearlooks/src/clearlooks_draw_inverted.c
Modified: trunk/engines/clearlooks/src/clearlooks_draw.c
==============================================================================
--- trunk/engines/clearlooks/src/clearlooks_draw.c (original)
+++ trunk/engines/clearlooks/src/clearlooks_draw.c Sat Apr 11 19:13:11 2009
@@ -1743,6 +1743,16 @@
corners = CR_CORNER_TOPLEFT | CR_CORNER_BOTTOMLEFT;
else if (stepper->stepper == CL_STEPPER_D)
corners = CR_CORNER_TOPRIGHT | CR_CORNER_BOTTOMRIGHT;
+
+ if (stepper->stepper == CL_STEPPER_B)
+ {
+ x -= 1;
+ width += 1;
+ }
+ else if (stepper->stepper == CL_STEPPER_C)
+ {
+ width += 1;
+ }
}
else
{
@@ -1750,6 +1760,16 @@
corners = CR_CORNER_TOPLEFT | CR_CORNER_TOPRIGHT;
else if (stepper->stepper == CL_STEPPER_D)
corners = CR_CORNER_BOTTOMLEFT | CR_CORNER_BOTTOMRIGHT;
+
+ if (stepper->stepper == CL_STEPPER_B)
+ {
+ y -= 1;
+ height += 1;
+ }
+ else if (stepper->stepper == CL_STEPPER_C)
+ {
+ height += 1;
+ }
}
cairo_translate (cr, x, y);
Modified: trunk/engines/clearlooks/src/clearlooks_draw_glossy.c
==============================================================================
--- trunk/engines/clearlooks/src/clearlooks_draw_glossy.c (original)
+++ trunk/engines/clearlooks/src/clearlooks_draw_glossy.c Sat Apr 11 19:13:11 2009
@@ -932,6 +932,16 @@
corners = CR_CORNER_TOPLEFT | CR_CORNER_BOTTOMLEFT;
else if (stepper->stepper == CL_STEPPER_D)
corners = CR_CORNER_TOPRIGHT | CR_CORNER_BOTTOMRIGHT;
+
+ if (stepper->stepper == CL_STEPPER_B)
+ {
+ x -= 1;
+ width += 1;
+ }
+ else if (stepper->stepper == CL_STEPPER_C)
+ {
+ width += 1;
+ }
}
else
{
@@ -939,6 +949,16 @@
corners = CR_CORNER_TOPLEFT | CR_CORNER_TOPRIGHT;
else if (stepper->stepper == CL_STEPPER_D)
corners = CR_CORNER_BOTTOMLEFT | CR_CORNER_BOTTOMRIGHT;
+
+ if (stepper->stepper == CL_STEPPER_B)
+ {
+ y -= 1;
+ height += 1;
+ }
+ else if (stepper->stepper == CL_STEPPER_C)
+ {
+ height += 1;
+ }
}
cairo_translate (cr, x, y);
Modified: trunk/engines/clearlooks/src/clearlooks_draw_gummy.c
==============================================================================
--- trunk/engines/clearlooks/src/clearlooks_draw_gummy.c (original)
+++ trunk/engines/clearlooks/src/clearlooks_draw_gummy.c Sat Apr 11 19:13:11 2009
@@ -979,6 +979,16 @@
corners = CR_CORNER_TOPLEFT | CR_CORNER_BOTTOMLEFT;
else if (stepper->stepper == CL_STEPPER_D)
corners = CR_CORNER_TOPRIGHT | CR_CORNER_BOTTOMRIGHT;
+
+ if (stepper->stepper == CL_STEPPER_B)
+ {
+ x -= 1;
+ width += 1;
+ }
+ else if (stepper->stepper == CL_STEPPER_C)
+ {
+ width += 1;
+ }
}
else
{
@@ -986,6 +996,16 @@
corners = CR_CORNER_TOPLEFT | CR_CORNER_TOPRIGHT;
else if (stepper->stepper == CL_STEPPER_D)
corners = CR_CORNER_BOTTOMLEFT | CR_CORNER_BOTTOMRIGHT;
+
+ if (stepper->stepper == CL_STEPPER_B)
+ {
+ y -= 1;
+ height += 1;
+ }
+ else if (stepper->stepper == CL_STEPPER_C)
+ {
+ height += 1;
+ }
}
cairo_translate (cr, x, y);
Modified: trunk/engines/clearlooks/src/clearlooks_draw_inverted.c
==============================================================================
--- trunk/engines/clearlooks/src/clearlooks_draw_inverted.c (original)
+++ trunk/engines/clearlooks/src/clearlooks_draw_inverted.c Sat Apr 11 19:13:11 2009
@@ -772,6 +772,16 @@
corners = CR_CORNER_TOPLEFT | CR_CORNER_BOTTOMLEFT;
else if (stepper->stepper == CL_STEPPER_D)
corners = CR_CORNER_TOPRIGHT | CR_CORNER_BOTTOMRIGHT;
+
+ if (stepper->stepper == CL_STEPPER_B)
+ {
+ x -= 1;
+ width += 1;
+ }
+ else if (stepper->stepper == CL_STEPPER_C)
+ {
+ width += 1;
+ }
}
else
{
@@ -779,6 +789,16 @@
corners = CR_CORNER_TOPLEFT | CR_CORNER_TOPRIGHT;
else if (stepper->stepper == CL_STEPPER_D)
corners = CR_CORNER_BOTTOMLEFT | CR_CORNER_BOTTOMRIGHT;
+
+ if (stepper->stepper == CL_STEPPER_B)
+ {
+ y -= 1;
+ height += 1;
+ }
+ else if (stepper->stepper == CL_STEPPER_C)
+ {
+ height += 1;
+ }
}
cairo_translate (cr, x, y);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]