Mercurial > audlegacy
annotate src/audacious/ui_main.h @ 3046:3be0cfac03cd
branch merge
author | Tomasz Mon <desowin@gmail.com> |
---|---|
date | Thu, 12 Jul 2007 13:41:34 +0200 |
parents | 01ae56759d15 |
children | 34f37c59e87b |
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 | |
9 * the Free Software Foundation; under version 2 of the License. | |
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 | |
17 * along with this program; if not, write to the Free Software | |
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
19 */ | |
20 | |
21 #ifndef MAINWIN_H | |
22 #define MAINWIN_H | |
23 | |
24 #include <gtk/gtk.h> | |
25 | |
26 #include "widgets/widgetcore.h" | |
3020 | 27 #include "ui_vis.h" |
2313 | 28 |
29 /* yes, main window size is fixed */ | |
30 #define MAINWIN_WIDTH (gint)275 | |
31 #define MAINWIN_HEIGHT (gint)116 | |
32 #define MAINWIN_TITLEBAR_HEIGHT (gint)14 | |
33 #define MAINWIN_SHADED_WIDTH MAINWIN_WIDTH | |
34 #define MAINWIN_SHADED_HEIGHT MAINWIN_TITLEBAR_HEIGHT | |
35 | |
36 #define MAINWIN_UPDATE_INTERVAL 10 | |
37 | |
38 #define MAINWIN_DEFAULT_POS_X 20 | |
39 #define MAINWIN_DEFAULT_POS_Y 20 | |
40 | |
41 #define MAINWIN_DEFAULT_FONT "Sans Bold 9" | |
42 | |
43 | |
44 typedef enum { | |
45 TIMER_ELAPSED, | |
46 TIMER_REMAINING | |
47 } TimerMode; | |
48 | |
49 enum { | |
50 MAINWIN_GENERAL_ABOUT, | |
51 | |
52 MAINWIN_GENERAL_PLAYFILE, | |
53 MAINWIN_GENERAL_PLAYLOCATION, | |
3023
49ce30748980
added lastfm GUI stub
Cristi Magherusan <majeru@atheme-project.org>
parents:
3021
diff
changeset
|
54 MAINWIN_GENERAL_LASTFM, |
2313 | 55 |
56 MAINWIN_GENERAL_FILEINFO, | |
57 MAINWIN_GENERAL_PREFS, | |
58 | |
59 MAINWIN_GENERAL_SHOWMWIN, | |
60 MAINWIN_GENERAL_SHOWPLWIN, | |
61 | |
62 MAINWIN_GENERAL_FOCUSMWIN, | |
63 MAINWIN_GENERAL_FOCUSPLWIN, | |
64 | |
65 MAINWIN_GENERAL_SHOWEQWIN, | |
66 MAINWIN_GENERAL_PLAYCD, | |
67 MAINWIN_GENERAL_EXIT, | |
68 | |
69 MAINWIN_GENERAL_ADDCD, | |
70 | |
71 MAINWIN_GENERAL_PREV, | |
72 MAINWIN_GENERAL_PLAY, | |
73 MAINWIN_GENERAL_PAUSE, | |
74 MAINWIN_GENERAL_STOP, | |
75 MAINWIN_GENERAL_NEXT, | |
76 MAINWIN_GENERAL_STOPFADE, | |
77 MAINWIN_GENERAL_BACK5SEC, | |
78 MAINWIN_GENERAL_FWD5SEC, | |
79 MAINWIN_GENERAL_START, | |
80 MAINWIN_GENERAL_BACK10, | |
81 MAINWIN_GENERAL_FWD10, | |
82 MAINWIN_GENERAL_JTT, | |
83 MAINWIN_GENERAL_JTF, | |
84 MAINWIN_GENERAL_QUEUE, | |
85 MAINWIN_GENERAL_CQUEUE, | |
86 MAINWIN_GENERAL_VOLUP, | |
87 MAINWIN_GENERAL_VOLDOWN, | |
88 MAINWIN_GENERAL_SETAB, | |
89 MAINWIN_GENERAL_CLEARAB, | |
90 | |
91 MAINWIN_GENERAL_NEXT_PL, | |
92 MAINWIN_GENERAL_PREV_PL, | |
2520
b210d1ea2084
[svn] ui_main.h:92: warning: comma at end of enumerator list
nenolod
parents:
2313
diff
changeset
|
93 MAINWIN_GENERAL_NEW_PL |
2313 | 94 }; |
95 | |
96 extern GtkWidget *mainwin; | |
97 extern GtkWidget *err; | |
98 | |
99 extern gboolean mainwin_moving; | |
100 extern gboolean mainwin_focus; | |
101 | |
102 extern GtkWidget *mainwin_jtf; | |
2853
bec320cfcc12
use UiSkinnedButton instead of PButton in equalizerwin
Tomasz Mon <desowin@gmail.com>
parents:
2843
diff
changeset
|
103 extern GtkWidget *mainwin_eq, *mainwin_pl; |
2911 | 104 extern GtkWidget *mainwin_info; |
2313 | 105 |
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
|
106 extern GtkWidget *mainwin_stime_min, *mainwin_stime_sec; |
2313 | 107 |
3020 | 108 extern GtkWidget *mainwin_vis; |
2313 | 109 extern SVis *mainwin_svis; |
110 | |
111 extern PlayStatus *mainwin_playstatus; | |
112 | |
3001
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
2947
diff
changeset
|
113 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
|
114 extern GtkWidget *mainwin_10sec_num, *mainwin_sec_num; |
2313 | 115 |
3042
01ae56759d15
mainwin_sposition is now UiSkinnedHorizontalSlider
Tomasz Mon <desowin@gmail.com>
parents:
3040
diff
changeset
|
116 extern GtkWidget *mainwin_position, *mainwin_sposition; |
2313 | 117 |
118 void mainwin_create(void); | |
119 void read_volume(gint when); | |
120 void play_medium(void); | |
121 void add_medium(void); | |
122 | |
123 void draw_main_window(gboolean); | |
124 | |
125 void mainwin_quit_cb(void); | |
126 void mainwin_lock_info_text(const gchar * text); | |
127 void mainwin_release_info_text(void); | |
128 void mainwin_play_pushed(void); | |
129 void mainwin_stop_pushed(void); | |
130 void mainwin_eject_pushed(void); | |
131 | |
132 void mainwin_rev_pushed(void); | |
133 void mainwin_rev_release(void); | |
134 void mainwin_fwd_pushed(void); | |
135 void mainwin_fwd_release(void); | |
136 | |
137 void mainwin_set_back_pixmap(void); | |
138 | |
139 void mainwin_adjust_volume_motion(gint v); | |
140 void mainwin_adjust_volume_release(void); | |
141 void mainwin_adjust_balance_motion(gint b); | |
142 void mainwin_adjust_balance_release(void); | |
143 void mainwin_set_volume_slider(gint percent); | |
144 void mainwin_set_balance_slider(gint percent); | |
145 | |
146 void mainwin_vis_set_type(VisType mode); | |
147 | |
148 void mainwin_set_info_text(void); | |
149 void mainwin_set_song_info(gint rate, gint freq, gint nch); | |
150 void mainwin_clear_song_info(void); | |
151 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
|
152 void mainwin_set_noplaylistadvance(gboolean no_advance); |
2313 | 153 |
154 void mainwin_set_always_on_top(gboolean always); | |
155 void mainwin_set_volume_diff(gint diff); | |
156 void mainwin_set_balance_diff(gint diff); | |
157 | |
158 void mainwin_show(gboolean); | |
159 void mainwin_real_show(void); | |
160 void mainwin_real_hide(void); | |
161 void mainwin_move(gint x, gint y); | |
162 void mainwin_shuffle_pushed(gboolean toggled); | |
163 void mainwin_repeat_pushed(gboolean toggled); | |
164 void mainwin_disable_seekbar(void); | |
165 void mainwin_set_title(const gchar * text); | |
166 void mainwin_show_add_url_window(void); | |
167 void mainwin_minimize_cb(void); | |
168 void mainwin_general_menu_callback(gpointer cb_data, | |
169 guint action, | |
170 GtkWidget * widget); | |
171 | |
172 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
|
173 gboolean mainwin_update_song_info(void); |
2313 | 174 void mainwin_drag_data_received(GtkWidget * widget, |
175 GdkDragContext * context, | |
176 gint x, | |
177 gint y, | |
178 GtkSelectionData * selection_data, | |
179 guint info, | |
180 guint time, | |
181 gpointer user_data); | |
182 | |
183 void mainwin_setup_menus(void); | |
184 | |
185 void mainwin_jump_to_file(void); | |
186 void mainwin_jump_to_time(void); | |
187 | |
188 void mainwin_ewmh_activate(void); | |
189 | |
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
|
190 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
|
191 |
2313 | 192 /* FIXME: placed here for now */ |
193 void playback_get_sample_params(gint * bitrate, | |
194 gint * frequency, | |
195 gint * numchannels); | |
196 | |
197 | |
198 #endif |