summaryrefslogtreecommitdiffstats
path: root/window.h
diff options
context:
space:
mode:
authormuennich <be.muennich@googlemail.com>2013-01-07 14:30:42 +0100
committerBert Münnich <be.muennich@gmail.com>2013-01-12 23:40:16 +0100
commitd6a475e4b1c0d5025806c4a6e47c68e46a3c31d9 (patch)
tree1051ef5506e5ee3bd71f4c5bc9ad22a82ca94abc /window.h
parent385ba28fd78a5e1454d46a09a05b8d10ef8e0c6f (diff)
downloadnsxiv-d6a475e4b1c0d5025806c4a6e47c68e46a3c31d9.tar.zst
Simplified status bar, filled by user script
Diffstat (limited to 'window.h')
-rw-r--r--window.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/window.h b/window.h
index 5e033e3..6bc6595 100644
--- a/window.h
+++ b/window.h
@@ -23,8 +23,6 @@
#include "types.h"
-#define BAR_SEPARATOR " | "
-
typedef struct {
Display *dpy;
int scr;
@@ -42,21 +40,23 @@ typedef struct {
unsigned long bgcol;
unsigned long fscol;
unsigned long selcol;
- unsigned long barbgcol;
- unsigned long barfgcol;
Pixmap pm;
int x;
int y;
unsigned int w;
unsigned int h; /* = win height - bar height */
- unsigned int barh;
unsigned int bw;
bool fullscreen;
- const char *lbar;
- const char *rbar;
+ struct {
+ unsigned int h;
+ char *l;
+ char *r;
+ unsigned long bgcol;
+ unsigned long fgcol;
+ } bar;
} win_t;
extern Atom wm_delete_win;
@@ -80,7 +80,7 @@ void win_draw_rect(win_t*, Pixmap, int, int, int, int, bool, int,
int win_textwidth(const char*, unsigned int, bool);
void win_set_title(win_t*, const char*);
-void win_set_bar_info(win_t*, const char*, const char*);
+void win_set_bar_info(win_t*, char*, char*);
void win_set_cursor(win_t*, cursor_t);
#endif /* WINDOW_H */