summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@comhem.se>2006-08-24 17:57:01 +0000
committerMikael Magnusson <mikachu@comhem.se>2006-08-24 17:57:01 +0000
commit766e7ae9bfeb1dc0454d7b5b37296b91859831cb (patch)
treefca0b58bd1df1c471511b8292e08590f0006653d
parentd9f14c1d010860e658f4a9adc6682e0264b410aa (diff)
rename osx to mirrorhorizontal and split to splitvertical, this will make all themes that used them not look right so update them
-rw-r--r--CHANGELOG5
-rw-r--r--render/gradient.c16
-rw-r--r--render/render.h4
-rw-r--r--render/theme.c8
-rw-r--r--themes/Natura/openbox-3/themerc6
-rw-r--r--themes/bear2/openbox-3/themerc4
6 files changed, 22 insertions, 21 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 238813f3..9e83b31f 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -4,8 +4,9 @@
* Fix incorrect handling of window properties on 64 bit arches.
* Fix pixelsize being the same as size for pango, now it is correct.
* Fix drawing of icons taller than wide, eg gimp.
- * Add a 'osx' gradient, like horizontal but mirrored in the center and
- 'split' which is like vertical but nonlinear in a fancy way.
+ * Add a 'mirrorhorizontal' gradient, like horizontal but mirrored in the
+ center and 'splitvertical' which is like vertical but nonlinear in a fancy
+ way.
* Translations for de, hr and zh_TW added.
* Add initial per-app settings support.
* Fix some outstanding issues with 64-bit support.
diff --git a/render/gradient.c b/render/gradient.c
index e4ec20a1..d2cb6814 100644
--- a/render/gradient.c
+++ b/render/gradient.c
@@ -25,10 +25,10 @@
static void highlight(RrPixel32 *x, RrPixel32 *y, gboolean raised);
static void gradient_solid(RrAppearance *l, gint w, gint h);
-static void gradient_split(RrAppearance *a, gint w, gint h);
+static void gradient_splitvertical(RrAppearance *a, gint w, gint h);
static void gradient_vertical(RrSurface *sf, gint w, gint h);
static void gradient_horizontal(RrSurface *sf, gint w, gint h);
-static void gradient_osx(RrSurface *sf, gint w, gint h);
+static void gradient_mirrorhorizontal(RrSurface *sf, gint w, gint h);
static void gradient_diagonal(RrSurface *sf, gint w, gint h);
static void gradient_crossdiagonal(RrSurface *sf, gint w, gint h);
static void gradient_pyramid(RrSurface *sf, gint inw, gint inh);
@@ -44,8 +44,8 @@ void RrRender(RrAppearance *a, gint w, gint h)
case RR_SURFACE_SOLID:
gradient_solid(a, w, h);
break;
- case RR_SURFACE_SPLIT:
- gradient_split(a, w, h);
+ case RR_SURFACE_SPLIT_VERTICAL:
+ gradient_splitvertical(a, w, h);
break;
case RR_SURFACE_VERTICAL:
gradient_vertical(&a->surface, w, h);
@@ -53,8 +53,8 @@ void RrRender(RrAppearance *a, gint w, gint h)
case RR_SURFACE_HORIZONTAL:
gradient_horizontal(&a->surface, w, h);
break;
- case RR_SURFACE_OSX:
- gradient_osx(&a->surface, w, h);
+ case RR_SURFACE_MIRROR_HORIZONTAL:
+ gradient_mirrorhorizontal(&a->surface, w, h);
break;
case RR_SURFACE_DIAGONAL:
gradient_diagonal(&a->surface, w, h);
@@ -363,7 +363,7 @@ static void gradient_solid(RrAppearance *l, gint w, gint h)
} \
}
-static void gradient_split(RrAppearance *a, gint w, gint h)
+static void gradient_splitvertical(RrAppearance *a, gint w, gint h)
{
gint x, y1, y3, r, g, b;
RrSurface *sf = &a->surface;
@@ -449,7 +449,7 @@ static void gradient_horizontal(RrSurface *sf, gint w, gint h)
*(data + y * w) = current;
}
-static void gradient_osx(RrSurface *sf, gint w, gint h)
+static void gradient_mirrorhorizontal(RrSurface *sf, gint w, gint h)
{
gint x, y;
RrPixel32 *data = sf->pixel_data, *datav;
diff --git a/render/render.h b/render/render.h
index 38bcdeb5..fda40607 100644
--- a/render/render.h
+++ b/render/render.h
@@ -62,13 +62,13 @@ typedef enum {
RR_SURFACE_NONE,
RR_SURFACE_PARENTREL,
RR_SURFACE_SOLID,
- RR_SURFACE_SPLIT,
+ RR_SURFACE_SPLIT_VERTICAL,
RR_SURFACE_HORIZONTAL,
RR_SURFACE_VERTICAL,
RR_SURFACE_DIAGONAL,
RR_SURFACE_CROSS_DIAGONAL,
RR_SURFACE_PYRAMID,
- RR_SURFACE_OSX
+ RR_SURFACE_MIRROR_HORIZONTAL,
} RrSurfaceColorType;
typedef enum {
diff --git a/render/theme.c b/render/theme.c
index 31ef3b1a..b1cce15b 100644
--- a/render/theme.c
+++ b/render/theme.c
@@ -1197,14 +1197,14 @@ static void parse_appearance(gchar *tex, RrSurfaceColorType *grad,
*grad = RR_SURFACE_CROSS_DIAGONAL;
else if (strstr(tex, "pyramid") != NULL)
*grad = RR_SURFACE_PYRAMID;
- else if (strstr(tex, "osx") != NULL)
- *grad = RR_SURFACE_OSX;
+ else if (strstr(tex, "mirrorhorizontal") != NULL)
+ *grad = RR_SURFACE_MIRROR_HORIZONTAL;
else if (strstr(tex, "horizontal") != NULL)
*grad = RR_SURFACE_HORIZONTAL;
else if (strstr(tex, "vertical") != NULL)
*grad = RR_SURFACE_VERTICAL;
- else if (strstr(tex, "split") != NULL)
- *grad = RR_SURFACE_SPLIT;
+ else if (strstr(tex, "splitvertical") != NULL)
+ *grad = RR_SURFACE_SPLIT_VERTICAL;
else
*grad = RR_SURFACE_DIAGONAL;
} else {
diff --git a/themes/Natura/openbox-3/themerc b/themes/Natura/openbox-3/themerc
index 99add829..10b30f17 100644
--- a/themes/Natura/openbox-3/themerc
+++ b/themes/Natura/openbox-3/themerc
@@ -14,7 +14,7 @@ window.*.client.color: #eeeeee
*.text.justify: left
!! Menu
-menu.title.bg: flat gradient split
+menu.title.bg: flat gradient splitvertical
menu.title.bg.color: #5c4e45
menu.title.bg.colorTo: #51443e
menu.title.text.color: #ffffff
@@ -25,13 +25,13 @@ menu.items.bg.color: #f9f2ee
menu.items.text.color: #000000
menu.items.disabled.text.color: #737573
-menu.items.active.bg: flat gradient split
+menu.items.active.bg: flat gradient splitvertical
menu.items.active.bg.color: #5c4e45
menu.items.active.bg.colorTo:#51443e
menu.items.active.text.color: #f9f2ee
!! Active Windows
-window.active.title.bg: flat gradient split
+window.active.title.bg: flat gradient splitvertical
window.active.title.bg.color: #5c4e45
window.active.title.bg.colorTo: #51443e
window.active.*.bg.border.color: #000000
diff --git a/themes/bear2/openbox-3/themerc b/themes/bear2/openbox-3/themerc
index 11f70634..b4c51d03 100644
--- a/themes/bear2/openbox-3/themerc
+++ b/themes/bear2/openbox-3/themerc
@@ -40,7 +40,7 @@ menu.items.active.bg.border.color: #416c98
!!Active
-window.active.title.bg: flat border gradient osx
+window.active.title.bg: flat border gradient mirrorhorizontal
window.active.title.bg.color: #3465A4
window.active.title.bg.colorTo: #407CCA
window.active.title.bg.border.color: #699acd
@@ -61,7 +61,7 @@ window.*.grip.bg: parentrelative
!!Inactive
-window.inactive.title.bg: flat border gradient osx
+window.inactive.title.bg: flat border gradient mirrorhorizontal
window.inactive.title.bg.color: #dcdcdc
window.inactive.title.bg.colorTo: #eeeeec
window.inactive.title.bg.border.color: #efefef