Mercurial > audlegacy-plugins
annotate src/streambrowser/gui/streambrowser_win.h @ 3198:83b1a4e5f453
alsa-ng: Keep mixer open even when playback stopped.
author | John Lindgren <john.lindgren@tds.net> |
---|---|
date | Wed, 22 Jul 2009 16:42:16 -0400 |
parents | fbb32674bfd2 |
children |
rev | line source |
---|---|
2735 | 1 |
2 #ifndef STREAMBROWSER_WIN_H | |
3 #define STREAMBROWSER_WIN_H | |
4 | |
5 #include "../streamdir.h" | |
6 | |
7 | |
8 void streambrowser_win_init(); | |
9 void streambrowser_win_done(); | |
10 void streambrowser_win_show(); | |
11 void streambrowser_win_hide(); | |
12 | |
13 void streambrowser_win_set_streamdir(streamdir_t *streamdir, gchar *icon_filename); | |
14 void streambrowser_win_set_category(streamdir_t *streamdir, category_t *category); | |
2848
fbb32674bfd2
click on a stream updates; more comments; more proper stream icons
Calin Crisan ccrisan@gmail.com
parents:
2797
diff
changeset
|
15 void streambrowser_win_set_streaminfo(streamdir_t *streamdir, category_t *category, streaminfo_t *streaminfo); |
fbb32674bfd2
click on a stream updates; more comments; more proper stream icons
Calin Crisan ccrisan@gmail.com
parents:
2797
diff
changeset
|
16 |
fbb32674bfd2
click on a stream updates; more comments; more proper stream icons
Calin Crisan ccrisan@gmail.com
parents:
2797
diff
changeset
|
17 void streambrowser_win_set_update_function(void (* update_function) (streamdir_t *streamdir, category_t *category, streaminfo_t *streaminfo, gboolean add_to_playlist)); |
2790
c156102069ae
background fetching of streaming info is now indicated in gui
Calin Crisan ccrisan@gmail.com
parents:
2735
diff
changeset
|
18 void streambrowser_win_set_category_state(streamdir_t *streamdir, category_t *category, gboolean fetching); |
2797
11fb1503ee4b
double click adds stream to playlist; visual feedback when adding streams
Calin Crisan ccrisan@gmail.com
parents:
2790
diff
changeset
|
19 void streambrowser_win_set_streaminfo_state(streamdir_t *streamdir, category_t *category, streaminfo_t *streaminfo, gboolean fetching); |
2735 | 20 |
21 | |
22 #endif // STREAMBROWSER_WIN_H | |
23 |