summaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/openbox/openbox.c40
-rw-r--r--engines/openbox/openbox.h9
-rw-r--r--engines/openbox/theme.c15
3 files changed, 54 insertions, 10 deletions
diff --git a/engines/openbox/openbox.c b/engines/openbox/openbox.c
index fdab22a3..80e9e812 100644
--- a/engines/openbox/openbox.c
+++ b/engines/openbox/openbox.c
@@ -6,12 +6,13 @@
#include "../../kernel/frame.h"
#include "../../render/render.h"
#include "../../render/color.h"
+#include "../../render/font.h"
#include <X11/Xlib.h>
#include <glib.h>
-#define TITLE_HEIGHT (s_font_height + s_bevel * 2)
-#define LABEL_HEIGHT (s_font_height)
+#define TITLE_HEIGHT (s_winfont_height + s_bevel * 2)
+#define LABEL_HEIGHT (s_winfont_height)
#define HANDLE_Y(f) (f->innersize.top + f->frame.client->area.height + \
f->cbwidth)
#define BUTTON_SIZE (LABEL_HEIGHT - 2)
@@ -22,7 +23,6 @@
#define FRAME_EVENTMASK (EnterWindowMask | LeaveWindowMask)
/* style settings - geometry */
-int s_font_height;
int s_bevel;
int s_handle_height;
int s_bwidth;
@@ -31,6 +31,13 @@ int s_cbwidth;
color_rgb *s_b_color;
color_rgb *s_cb_focused_color;
color_rgb *s_cb_unfocused_color;
+color_rgb *s_title_focused_color;
+color_rgb *s_title_unfocused_color;
+/* style settings - fonts */
+int s_winfont_height;
+int s_winfont_shadow;
+int s_winfont_shadow_offset;
+ObFont *s_winfont;
/* global appearances */
Appearance *a_focused_unpressed_max;
@@ -128,6 +135,7 @@ gboolean startup()
g_quark_from_string("close");
s_b_color = s_cb_unfocused_color = s_cb_focused_color = NULL;
+ s_winfont = NULL;
a_focused_unpressed_max = appearance_new(Surface_Planar, 0);//1);
a_focused_pressed_max = appearance_new(Surface_Planar, 0);//1);
@@ -149,12 +157,24 @@ gboolean startup()
a_unfocused_grip = appearance_new(Surface_Planar, 0);
a_focused_title = appearance_new(Surface_Planar, 0);
a_unfocused_title = appearance_new(Surface_Planar, 0);
- a_focused_label = appearance_new(Surface_Planar, 0);//1);
- a_unfocused_label = appearance_new(Surface_Planar, 0);//1);
+ a_focused_label = appearance_new(Surface_Planar, 1);
+ a_unfocused_label = appearance_new(Surface_Planar, 1);
a_icon = appearance_new(Surface_Planar, 0);//1);
a_focused_handle = appearance_new(Surface_Planar, 0);
a_unfocused_handle = appearance_new(Surface_Planar, 0);
+ a_focused_label->texture[0].type = Text;
+ a_focused_label->texture[0].data.text.font = s_winfont;
+ a_focused_label->texture[0].data.text.shadow = s_winfont_shadow;
+ a_focused_label->texture[0].data.text.offset = s_winfont_shadow_offset;
+ a_focused_label->texture[0].data.text.color = s_title_focused_color;
+
+ a_unfocused_label->texture[0].type = Text;
+ a_unfocused_label->texture[0].data.text.font = s_winfont;
+ a_unfocused_label->texture[0].data.text.shadow = s_winfont_shadow;
+ a_unfocused_label->texture[0].data.text.offset = s_winfont_shadow_offset;
+ a_unfocused_label->texture[0].data.text.color = s_title_unfocused_color;
+
return load();
}
@@ -164,6 +184,8 @@ void shutdown()
if (s_cb_unfocused_color != NULL) color_free(s_cb_unfocused_color);
if (s_cb_focused_color != NULL) color_free(s_cb_focused_color);
+ if (s_winfont != NULL) font_close(s_winfont);
+
appearance_free(a_focused_unpressed_max);
appearance_free(a_focused_pressed_max);
appearance_free(a_unfocused_unpressed_max);
@@ -602,7 +624,8 @@ static void layout_title(ObFrame *self)
}
if (self->label_width < 1) self->label_width = 1;
- XResizeWindow(ob_display, self->label, self->label_width, s_font_height);
+ XResizeWindow(ob_display, self->label, self->label_width,
+ s_winfont_height);
if (!n) {
self->frame.client->decorations &= ~Decor_Icon;
@@ -726,7 +749,10 @@ static void render_label(ObFrame *self)
{
if (self->label_x < 0) return;
- /* XXX set the texture's text! */
+ /* set the texture's text! */
+ self->a_focused_label->texture[0].data.text.string =
+ self->frame.client->title;
+
paint(self->label, (self->frame.client->focused ?
self->a_focused_label :
self->a_unfocused_label),
diff --git a/engines/openbox/openbox.h b/engines/openbox/openbox.h
index f072a6e0..3a3b1904 100644
--- a/engines/openbox/openbox.h
+++ b/engines/openbox/openbox.h
@@ -3,8 +3,8 @@
#include "../../render/render.h"
#include "../../render/color.h"
+#include "../../render/font.h"
-extern int s_font_height;
extern int s_bevel;
extern int s_handle_height;
extern int s_bwidth;
@@ -13,6 +13,13 @@ extern int s_cbwidth;
extern color_rgb *s_b_color;
extern color_rgb *s_cb_focused_color;
extern color_rgb *s_cb_unfocused_color;
+extern color_rgb *s_title_focused_color;
+extern color_rgb *s_title_unfocused_color;
+
+extern int s_winfont_height;
+extern int s_winfont_shadow;
+extern int s_winfont_shadow_offset;
+extern ObFont *s_winfont;
extern Appearance *a_focused_unpressed_max;
extern Appearance *a_focused_pressed_max;
diff --git a/engines/openbox/theme.c b/engines/openbox/theme.c
index 2c96224f..b5e4b982 100644
--- a/engines/openbox/theme.c
+++ b/engines/openbox/theme.c
@@ -250,8 +250,12 @@ gboolean load()
}
}
- /* XXX load the font, not from the theme file tho, its in themerc_font */
- s_font_height = 10;
+ /* load the font, not from the theme file tho, its in themerc_font */
+ s_winfont_shadow = 1; /* XXX read from themrc */
+ s_winfont_shadow_offset = 2; /* XXX read from themerc */
+ s_winfont = font_open(themerc_font);
+ s_winfont_height = font_height(s_winfont, s_winfont_shadow,
+ s_winfont_shadow_offset);
if (!read_int(db, "handleWidth", &s_handle_height) ||
s_handle_height < 0 || s_handle_height > 100) s_handle_height = 6;
@@ -268,6 +272,12 @@ gboolean load()
s_cb_focused_color = color_new(0xff, 0xff, 0xff);
if (!read_color(db, "window.frame.unfocusColor", &s_cb_unfocused_color))
s_cb_unfocused_color = color_new(0xff, 0xff, 0xff);
+ if (!read_color(db, "window.label.focus.textColor",
+ &s_title_focused_color))
+ s_title_focused_color = color_new(0xff, 0xff, 0xff);
+ if (!read_color(db, "window.label.unfocus.textColor",
+ &s_title_unfocused_color))
+ s_title_unfocused_color = color_new(0xff, 0xff, 0xff);
if (!read_appearance(db, "window.title.focus", a_focused_title))
set_default_appearance(a_focused_title);
@@ -318,6 +328,7 @@ gboolean load()
a_icon->surface.data.planar.grad = Background_ParentRelative;
+
/* XXX load the button masks */
XrmDestroyDatabase(db);