A tiling window manager
1/*
2 * functions for managing the program bar
3 * Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the Free
7 * Software Foundation; either version 2 of the License, or (at your option)
8 * any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
17 * Place, Suite 330, Boston, MA 02111-1307 USA.
18 */
19
20#ifndef _SDORFEHS_BAR_H
21#define _SDORFEHS_BAR_H 1
22
23int bar_mkfifo(void);
24void init_bar(void);
25void bar_reset_alarm(void);
26void redraw_sticky_bar_text(int force);
27void update_window_names(rp_screen *s, char *fmt);
28void update_vscreen_names(rp_screen *s);
29void update_bar(rp_screen *s);
30void show_bar(rp_screen *s, char *fmt);
31void show_vscreen_bar(rp_screen *s);
32void hide_bar(rp_screen *s, int force);
33int bar_y(rp_screen *s, int height);
34int bar_x(rp_screen *s, int width);
35int sticky_bar_height(rp_screen *s);
36
37void message(char *s);
38void marked_message(char *s, int mark_start, int mark_end, int bar_type);
39void marked_message_printf(int mark_start, int mark_end, char *fmt,...);
40void redraw_last_message(void);
41void show_last_message(void);
42void free_bar(void);
43
44void bar_handle_click(rp_screen *s, XButtonEvent *e);
45
46int bar_open_fifo(void);
47void bar_read_fifo(void);
48
49#endif /* ! _SDORFEHS_BAR_H */