1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
/* gtk_interface.h
* Copyright (C) 1999 Richard Boulton <richard@tartarus.org>
* Copyright (C) 2007 Madej
*
* This file is part of AlsaPlayer.
*
* AlsaPlayer 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; either version 3 of the License, or
* (at your option) any later version.
*
* AlsaPlayer 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, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef _gtk_interface_h_
#define _gtk_interface_h_
#include "CorePlayer.h"
#include "Playlist.h"
#include <gdk/gdkkeysyms.h>
extern int global_update;
void init_main_window(Playlist *);
void loop_cb(GtkWidget *, gpointer data);
enum gtk_keymap {
STOP_KEY = GDK_v,
PLAY_KEY = GDK_x,
PAUSE_KEY = GDK_c,
NEXT_KEY = GDK_b,
PREV_KEY = GDK_z,
FWD_KEY = GDK_g,
BACK_KEY = GDK_a,
FWD_PLAY_KEY = GDK_f,
REV_PLAY_KEY = GDK_s,
SPEED_UP_KEY = GDK_t,
SPEED_DOWN_KEY = GDK_q,
SPEED_COMMA_UP_KEY = GDK_h,
SPEED_COMMA_DOWN_KEY = GDK_i,
VOL_UP_KEY = GDK_r,
VOL_DOWN_KEY = GDK_w,
LOOP_KEY = GDK_l
};
void ap_message_error(GtkWidget *parent, const gchar *message);
void ap_message_warning(GtkWidget *parent, const gchar *message);
gboolean ap_message_question(GtkWidget *parent, const gchar *message);
void stop_cb(GtkWidget *, gpointer data);
#endif /* _gtk_interface_h_ */
|