diff options
author | Bert Münnich <be.muennich@gmail.com> | 2013-02-11 23:05:26 +0100 |
---|---|---|
committer | Bert Münnich <be.muennich@gmail.com> | 2013-03-19 21:13:44 +0100 |
commit | f3298400e6704844aeb1d3e0951e84b4236d2302 (patch) | |
tree | e2d85c993d65966555e2fbdb5c3ea37a1aa42e5e /window.h | |
parent | 9ee34477f81dc9630e902e8059e56fa665ad007b (diff) |
Spawn and read from info script without blocking
Diffstat (limited to 'window.h')
-rw-r--r-- | window.h | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -24,6 +24,11 @@ #include "types.h" +enum { + BAR_L_LEN = 512, + BAR_R_LEN = 64 +}; + typedef struct { Display *dpy; int scr; @@ -55,8 +60,8 @@ typedef struct { struct { unsigned int h; - char *l; - char *r; + char l[BAR_L_LEN]; + char r[BAR_R_LEN]; unsigned long bgcol; unsigned long fgcol; } bar; @@ -80,10 +85,11 @@ void win_draw(win_t*); void win_draw_rect(win_t*, Pixmap, int, int, int, int, bool, int, unsigned long); +void win_update_bar(win_t*); + int win_textwidth(const char*, unsigned int, bool); void win_set_title(win_t*, const char*); -void win_set_bar_info(win_t*, char*, char*); void win_set_cursor(win_t*, cursor_t); #endif /* WINDOW_H */ |