# HG changeset patch # User giacomo # Date 1167785771 28800 # Node ID 10aba78dc8eb0e90642b094ce52b4336f82730e8 # Parent ac2ea05e60a0b418c2950483bc493dd0fa7b1f3f [svn] - add missing header actions-mainwin.h diff -r ac2ea05e60a0 -r 10aba78dc8eb ChangeLog --- a/ChangeLog Tue Jan 02 16:48:38 2007 -0800 +++ b/ChangeLog Tue Jan 02 16:56:11 2007 -0800 @@ -1,3 +1,19 @@ +2007-01-03 00:48:38 +0000 Giacomo Lozito + revision [3469] + - migration from gtkitemfactory to actions and uimanager; main menu has been ported, still much work and test to do + trunk/audacious/Makefile | 7 + trunk/audacious/equalizer.c | 16 + trunk/audacious/main.c | 5 + trunk/audacious/mainwin.c | 1164 ++++++++++++++++++++---------------------- + trunk/audacious/mainwin.h | 3 + trunk/audacious/ui/Makefile | 1 + trunk/audacious/ui/mainwin.ui | 124 ++++ + trunk/audacious/ui_manager.c | 436 +++++++++++++++ + trunk/audacious/ui_manager.h | 60 ++ + trunk/audacious/ui_playlist.c | 36 - + 10 files changed, 1210 insertions(+), 642 deletions(-) + + 2007-01-01 17:28:18 +0000 Kiyoshi Aman revision [3467] Update some copyrights notices, update po/ diff -r ac2ea05e60a0 -r 10aba78dc8eb audacious/actions-mainwin.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/audacious/actions-mainwin.h Tue Jan 02 16:56:11 2007 -0800 @@ -0,0 +1,83 @@ +/* BMP - Cross-platform multimedia player + * Copyright (C) 2003-2004 BMP development team. + * + * Based on XMMS: + * Copyright (C) 1998-2003 XMMS development team. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; under version 2 of the License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +#ifndef ACTIONS_MAINWIN_H +#define ACTIONS_MAINWIN_H + +#include +#include + +/* actions below are handled in mainwin.c */ + + +/* toggle actions */ +void action_anamode_peaks(GtkToggleAction*); +void action_autoscroll_songname(GtkToggleAction*); +void action_playback_noplaylistadvance(GtkToggleAction*); +void action_playback_repeat(GtkToggleAction*); +void action_playback_shuffle(GtkToggleAction*); +void action_stop_after_current_song(GtkToggleAction*); +void action_view_always_on_top(GtkToggleAction*); +void action_view_doublesize(GtkToggleAction*); +void action_view_easymove(GtkToggleAction*); +void action_view_on_all_workspaces(GtkToggleAction*); +void action_roll_up_equalizer(GtkToggleAction*); +void action_roll_up_player(GtkToggleAction*); +void action_roll_up_playlist_editor(GtkToggleAction*); +void action_show_equalizer(GtkToggleAction*); +void action_show_player(GtkToggleAction*); +void action_show_playlist_editor(GtkToggleAction*); + +/* radio actions (one for each radio action group) */ +void action_anafoff(GtkAction*,GtkRadioAction*); +void action_anamode(GtkAction*,GtkRadioAction*); +void action_anatype(GtkAction*,GtkRadioAction*); +void action_peafoff(GtkAction*,GtkRadioAction*); +void action_refrate(GtkAction*,GtkRadioAction*); +void action_scomode(GtkAction*,GtkRadioAction*); +void action_vismode(GtkAction*,GtkRadioAction*); +void action_vprmode(GtkAction*,GtkRadioAction*); +void action_wshmode(GtkAction*,GtkRadioAction*); +void action_viewtime(GtkAction*,GtkRadioAction*); + +/* normal actions */ +void action_about_audacious(void); +void action_ab_clear(void); +void action_ab_set(void); +void action_jump_to_file(void); +void action_jump_to_playlist_start(void); +void action_jump_to_time(void); +void action_play_file(void); +void action_play_location(void); +void action_playback_next(void); +void action_playback_pause(void); +void action_playback_play(void); +void action_playback_playcd(void); +void action_playback_previous(void); +void action_playback_stop(void); +void action_playlist_prev(void); +void action_playlist_new(void); +void action_playlist_next(void); +void action_preferences(void); +void action_quit(void); +void action_track_info(void); + + +#endif