Mercurial > audlegacy
annotate src/audacious/ui_main.h @ 3621:2d6106656276
Notify playlist manager of more changes
author | Kieran Clancy <clancy.kieran+audacious@gmail.com> |
---|---|
date | Tue, 25 Sep 2007 20:38:40 +0930 |
parents | 24ae9b303a9d |
children | 9e4edc01a0e3 |
rev | line source |
---|---|
2313 | 1 /* BMP - Cross-platform multimedia player |
2 * Copyright (C) 2003-2004 BMP development team. | |
3 * | |
4 * Based on XMMS: | |
5 * Copyright (C) 1998-2003 XMMS development team. | |
6 * | |
7 * This program is free software; you can redistribute it and/or modify | |
8 * it under the terms of the GNU General Public License as published by | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
3072
diff
changeset
|
9 * the Free Software Foundation; under version 3 of the License. |
2313 | 10 * |
11 * This program is distributed in the hope that it will be useful, | |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 * GNU General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU General Public License | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
3072
diff
changeset
|
17 * along with this program. If not, see <http://www.gnu.org/licenses>. |
3123
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
18 * |
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
19 * The Audacious team does not consider modular code linking to |
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
20 * Audacious or using our public API to be a derived work. |
2313 | 21 */ |
22 | |
23 #ifndef MAINWIN_H | |
24 #define MAINWIN_H | |
25 | |
26 #include <gtk/gtk.h> | |
27 | |
3020 | 28 #include "ui_vis.h" |
3054 | 29 #include "ui_svis.h" |
2313 | 30 |
31 /* yes, main window size is fixed */ | |
32 #define MAINWIN_WIDTH (gint)275 | |
33 #define MAINWIN_HEIGHT (gint)116 | |
34 #define MAINWIN_TITLEBAR_HEIGHT (gint)14 | |
35 #define MAINWIN_SHADED_WIDTH MAINWIN_WIDTH | |
36 #define MAINWIN_SHADED_HEIGHT MAINWIN_TITLEBAR_HEIGHT | |
37 | |
38 #define MAINWIN_UPDATE_INTERVAL 10 | |
39 | |
40 #define MAINWIN_DEFAULT_POS_X 20 | |
41 #define MAINWIN_DEFAULT_POS_Y 20 | |
42 | |
43 #define MAINWIN_DEFAULT_FONT "Sans Bold 9" | |
44 | |
45 | |
46 typedef enum { | |
47 TIMER_ELAPSED, | |
48 TIMER_REMAINING | |
49 } TimerMode; | |
50 | |
51 enum { | |
52 MAINWIN_GENERAL_ABOUT, | |
53 | |
54 MAINWIN_GENERAL_PLAYFILE, | |
55 MAINWIN_GENERAL_PLAYLOCATION, | |
56 | |
57 MAINWIN_GENERAL_FILEINFO, | |
58 MAINWIN_GENERAL_PREFS, | |
59 | |
60 MAINWIN_GENERAL_SHOWMWIN, | |
61 MAINWIN_GENERAL_SHOWPLWIN, | |
62 | |
63 MAINWIN_GENERAL_FOCUSMWIN, | |
64 MAINWIN_GENERAL_FOCUSPLWIN, | |
65 | |
66 MAINWIN_GENERAL_SHOWEQWIN, | |
67 MAINWIN_GENERAL_EXIT, | |
68 | |
69 MAINWIN_GENERAL_PREV, | |
70 MAINWIN_GENERAL_PLAY, | |
71 MAINWIN_GENERAL_PAUSE, | |
72 MAINWIN_GENERAL_STOP, | |
73 MAINWIN_GENERAL_NEXT, | |
74 MAINWIN_GENERAL_STOPFADE, | |
75 MAINWIN_GENERAL_BACK5SEC, | |
76 MAINWIN_GENERAL_FWD5SEC, | |
77 MAINWIN_GENERAL_START, | |
78 MAINWIN_GENERAL_BACK10, | |
79 MAINWIN_GENERAL_FWD10, | |
80 MAINWIN_GENERAL_JTT, | |
81 MAINWIN_GENERAL_JTF, | |
82 MAINWIN_GENERAL_QUEUE, | |
83 MAINWIN_GENERAL_CQUEUE, | |
84 MAINWIN_GENERAL_VOLUP, | |
85 MAINWIN_GENERAL_VOLDOWN, | |
86 MAINWIN_GENERAL_SETAB, | |
87 MAINWIN_GENERAL_CLEARAB, | |
88 | |
89 MAINWIN_GENERAL_NEXT_PL, | |
90 MAINWIN_GENERAL_PREV_PL, | |
2520
b210d1ea2084
[svn] ui_main.h:92: warning: comma at end of enumerator list
nenolod
parents:
2313
diff
changeset
|
91 MAINWIN_GENERAL_NEW_PL |
2313 | 92 }; |
93 | |
94 extern GtkWidget *mainwin; | |
95 extern GtkWidget *err; | |
96 | |
97 extern gboolean mainwin_moving; | |
98 extern gboolean mainwin_focus; | |
99 | |
100 extern GtkWidget *mainwin_jtf; | |
2853
bec320cfcc12
use UiSkinnedButton instead of PButton in equalizerwin
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
101 extern GtkWidget *mainwin_eq, *mainwin_pl; |
3565
21601ce39fa1
let mainwin_othertext use xfont when cfg.mainwin_use_xfont is TRUE
Tomasz Mon <desowin@gmail.com>
parents:
3366
diff
changeset
|
102 extern GtkWidget *mainwin_info, *mainwin_othertext; |
2313 | 103 |
2942
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2911
diff
changeset
|
104 extern GtkWidget *mainwin_stime_min, *mainwin_stime_sec; |
2313 | 105 |
3020 | 106 extern GtkWidget *mainwin_vis; |
3054 | 107 extern GtkWidget *mainwin_svis; |
2313 | 108 |
3072
84de3244aeaa
replace Playstatus with UiSkinnedPlaystatus
Tomasz Mon <desowin@gmail.com>
parents:
3054
diff
changeset
|
109 extern GtkWidget *mainwin_playstatus; |
2313 | 110 |
3001
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
2947
diff
changeset
|
111 extern GtkWidget *mainwin_minus_num, *mainwin_10min_num, *mainwin_min_num; |
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
2947
diff
changeset
|
112 extern GtkWidget *mainwin_10sec_num, *mainwin_sec_num; |
2313 | 113 |
3042
01ae56759d15
mainwin_sposition is now UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3040
diff
changeset
|
114 extern GtkWidget *mainwin_position, *mainwin_sposition; |
2313 | 115 |
116 void mainwin_create(void); | |
117 void read_volume(gint when); | |
118 | |
119 void mainwin_quit_cb(void); | |
120 void mainwin_lock_info_text(const gchar * text); | |
121 void mainwin_release_info_text(void); | |
122 void mainwin_play_pushed(void); | |
123 void mainwin_stop_pushed(void); | |
124 void mainwin_eject_pushed(void); | |
125 | |
126 void mainwin_rev_pushed(void); | |
127 void mainwin_rev_release(void); | |
128 void mainwin_fwd_pushed(void); | |
129 void mainwin_fwd_release(void); | |
130 | |
131 void mainwin_set_back_pixmap(void); | |
132 | |
133 void mainwin_adjust_volume_motion(gint v); | |
134 void mainwin_adjust_volume_release(void); | |
135 void mainwin_adjust_balance_motion(gint b); | |
136 void mainwin_adjust_balance_release(void); | |
137 void mainwin_set_volume_slider(gint percent); | |
138 void mainwin_set_balance_slider(gint percent); | |
139 | |
140 void mainwin_vis_set_type(VisType mode); | |
141 | |
3221
9583cd62231f
implement ui_skinned_window_expose
Tomasz Mon <desowin@gmail.com>
parents:
3169
diff
changeset
|
142 void mainwin_refresh_hints(void); |
2313 | 143 void mainwin_set_info_text(void); |
144 void mainwin_set_song_info(gint rate, gint freq, gint nch); | |
145 void mainwin_clear_song_info(void); | |
146 void mainwin_set_stopaftersong(gboolean stop); | |
2769
bf2d80abf76e
[svn] Implemented CMD_IS_ADVANCE and CMD_TOGGLE_ADVANCE. Added partial MPRIS support. Root is complete, Player is partially implemented, and TrackList has not been started.
magma
parents:
2651
diff
changeset
|
147 void mainwin_set_noplaylistadvance(gboolean no_advance); |
2313 | 148 |
149 void mainwin_set_always_on_top(gboolean always); | |
150 void mainwin_set_volume_diff(gint diff); | |
151 void mainwin_set_balance_diff(gint diff); | |
152 | |
153 void mainwin_show(gboolean); | |
154 void mainwin_real_show(void); | |
155 void mainwin_real_hide(void); | |
156 void mainwin_move(gint x, gint y); | |
157 void mainwin_shuffle_pushed(gboolean toggled); | |
158 void mainwin_repeat_pushed(gboolean toggled); | |
159 void mainwin_disable_seekbar(void); | |
160 void mainwin_set_title(const gchar * text); | |
161 void mainwin_show_add_url_window(void); | |
162 void mainwin_minimize_cb(void); | |
163 void mainwin_general_menu_callback(gpointer cb_data, | |
164 guint action, | |
165 GtkWidget * widget); | |
166 | |
167 void mainwin_attach_idle_func(void); | |
3018
6a9fdd5aee3a
Move timer updates out of the 100hz giant loop.
Daniel Drake <dsd@gentoo.org>
parents:
3001
diff
changeset
|
168 gboolean mainwin_update_song_info(void); |
2313 | 169 void mainwin_drag_data_received(GtkWidget * widget, |
170 GdkDragContext * context, | |
171 gint x, | |
172 gint y, | |
173 GtkSelectionData * selection_data, | |
174 guint info, | |
175 guint time, | |
176 gpointer user_data); | |
177 | |
178 void mainwin_setup_menus(void); | |
3366
ac752b5db631
introduce change_timer_mode_cb
Tomasz Mon <desowin@gmail.com>
parents:
3351
diff
changeset
|
179 gboolean change_timer_mode_cb(GtkWidget *widget, GdkEventButton *event); |
2313 | 180 |
181 void mainwin_jump_to_file(void); | |
182 void mainwin_jump_to_time(void); | |
183 | |
184 void mainwin_ewmh_activate(void); | |
185 | |
2651
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2525
diff
changeset
|
186 void mainwin_show_visibility_warning(void); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2525
diff
changeset
|
187 |
2313 | 188 /* FIXME: placed here for now */ |
189 void playback_get_sample_params(gint * bitrate, | |
190 gint * frequency, | |
191 gint * numchannels); | |
192 | |
193 #endif |