ncmpc  0.29
status_bar.h
Go to the documentation of this file.
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  */
19 
20 #ifndef NCMPC_STATUS_BAR_H
21 #define NCMPC_STATUS_BAR_H
22 
23 #include "window.h"
24 
25 #ifndef NCMPC_MINI
26 #include "hscroll.h"
27 #endif
28 
29 #include <glib.h>
30 
31 struct mpd_status;
32 struct mpd_song;
33 
34 struct status_bar {
35  struct window window;
36 
38 
39 #ifndef NCMPC_MINI
40  struct hscroll hscroll;
41 
42  const struct mpd_status *prev_status;
43  const struct mpd_song *prev_song;
44 #endif
45 };
46 
47 void
48 status_bar_init(struct status_bar *p, unsigned width, int y, int x);
49 
50 void
51 status_bar_deinit(struct status_bar *p);
52 
53 void
54 status_bar_paint(struct status_bar *p, const struct mpd_status *status,
55  const struct mpd_song *song);
56 
57 void
58 status_bar_resize(struct status_bar *p, unsigned width, int y, int x);
59 
60 void
61 status_bar_message(struct status_bar *p, const char *msg);
62 
63 void
65 
66 #endif
void status_bar_resize(struct status_bar *p, unsigned width, int y, int x)
Definition: hscroll.h:34
void status_bar_message(struct status_bar *p, const char *msg)
void status_bar_init(struct status_bar *p, unsigned width, int y, int x)
Definition: status_bar.h:34
void status_bar_clear_message(struct status_bar *p)
guint message_source_id
Definition: status_bar.h:37
void status_bar_deinit(struct status_bar *p)
Definition: window.h:26
const struct mpd_song * prev_song
Definition: status_bar.h:43
void status_bar_paint(struct status_bar *p, const struct mpd_status *status, const struct mpd_song *song)
const struct mpd_status * prev_status
Definition: status_bar.h:42