Code

release v0.29
[ncmpc.git] / src / status_bar.h
1 /* ncmpc (Ncurses MPD Client)
2  * (c) 2004-2017 The Music Player Daemon Project
3  * Project homepage: http://musicpd.org
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  */
20 #ifndef NCMPC_STATUS_BAR_H
21 #define NCMPC_STATUS_BAR_H
23 #include "window.h"
25 #ifndef NCMPC_MINI
26 #include "hscroll.h"
27 #endif
29 #include <glib.h>
31 struct mpd_status;
32 struct mpd_song;
34 struct status_bar {
35         struct window window;
37         guint message_source_id;
39 #ifndef NCMPC_MINI
40         struct hscroll hscroll;
42         const struct mpd_status *prev_status;
43         const struct mpd_song *prev_song;
44 #endif
45 };
47 void
48 status_bar_init(struct status_bar *p, unsigned width, int y, int x);
50 void
51 status_bar_deinit(struct status_bar *p);
53 void
54 status_bar_paint(struct status_bar *p, const struct mpd_status *status,
55                  const struct mpd_song *song);
57 void
58 status_bar_resize(struct status_bar *p, unsigned width, int y, int x);
60 void
61 status_bar_message(struct status_bar *p, const char *msg);
63 void
64 status_bar_clear_message(struct status_bar *p);
66 #endif