aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/uzbl-core.h
diff options
context:
space:
mode:
authorGravatar Brendan Taylor <whateley@gmail.com>2011-01-06 16:41:30 -0700
committerGravatar Brendan Taylor <whateley@gmail.com>2011-01-06 16:42:32 -0700
commitb869e6a8e127ff674600a1141fc2bae9b77067cb (patch)
tree3260ef60a088fe9a116a40df5386cefe95a0a178 /src/uzbl-core.h
parent0e40979506f1c82e6cc9182416962370d787e9b3 (diff)
split the status bar into left-aligned and right-aligned parts (thanks k0ral)
Diffstat (limited to 'src/uzbl-core.h')
-rw-r--r--src/uzbl-core.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/uzbl-core.h b/src/uzbl-core.h
index 7076095..f81722d 100644
--- a/src/uzbl-core.h
+++ b/src/uzbl-core.h
@@ -51,8 +51,12 @@ typedef struct {
GtkPlug* plug;
GtkWidget* scrolled_win;
GtkWidget* vbox;
+
+ /* Mainbar */
GtkWidget* mainbar;
- GtkWidget* mainbar_label;
+ GtkWidget* mainbar_label_left;
+ GtkWidget* mainbar_label_right;
+
GtkScrollbar* scbar_v; // Horizontal and Vertical Scrollbar
GtkScrollbar* scbar_h; // (These are still hidden)
GtkAdjustment* bar_v; // Information about document length
@@ -119,10 +123,15 @@ typedef struct {
/* behaviour */
typedef struct {
+ /* Status bar */
gchar* status_format;
+ gchar* status_format_right;
+ gchar* status_background;
+
+ /* Window title */
gchar* title_format_short;
gchar* title_format_long;
- gchar* status_background;
+
gchar* fifo_dir;
gchar* socket_dir;
gchar* cookie_handler;