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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
/*
* arch-tag: Header for object implementing main playback logic
*
* Copyright (C) 2002 Jorn Baayen <jorn@nl.linux.org>
* Copyright (C) 2003 Colin Walters <walters@verbum.org>
*
* 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; either version 2 of the License, or
* (at your option) any later version.
*
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
#include <gtk/gtkhbox.h>
#include <bonobo/bonobo-arg.h>
#include <bonobo/bonobo-ui-component.h>
#include "rb-source.h"
#include "rb-player.h"
#include "rhythmdb.h"
#ifndef __RB_SHELL_PLAYER_H
#define __RB_SHELL_PLAYER_H
G_BEGIN_DECLS
#define RB_TYPE_SHELL_PLAYER (rb_shell_player_get_type ())
#define RB_SHELL_PLAYER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), RB_TYPE_SHELL_PLAYER, RBShellPlayer))
#define RB_SHELL_PLAYER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), RB_TYPE_SHELL_PLAYER, RBShellPlayerClass))
#define RB_IS_SHELL_PLAYER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), RB_TYPE_SHELL_PLAYER))
#define RB_IS_SHELL_PLAYER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), RB_TYPE_SHELL_PLAYER))
#define RB_SHELL_PLAYER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), RB_TYPE_SHELL_PLAYER, RBShellPlayerClass))
typedef enum
{
RB_SHELL_PLAYER_ERROR_PLAYLIST_PARSE_ERROR,
} RBShellPlayerError;
#define RB_SHELL_PLAYER_ERROR rb_shell_player_error_quark ()
GQuark rb_shell_player_error_quark (void);
typedef struct RBShellPlayerPrivate RBShellPlayerPrivate;
typedef struct
{
GtkHBox parent;
RBShellPlayerPrivate *priv;
} RBShellPlayer;
typedef struct
{
GtkHBoxClass parent_class;
void (*window_title_changed) (RBShellPlayer *player, const char *window_title);
void (*duration_changed) (RBShellPlayer *player, const char *duration);
} RBShellPlayerClass;
GType rb_shell_player_get_type (void);
RBShellPlayer * rb_shell_player_new (BonoboUIComponent *component,
BonoboUIComponent *tray_component);
void rb_shell_player_set_selected_source (RBShellPlayer *shell_player,
RBSource *player);
void rb_shell_player_set_playing_source (RBShellPlayer *player,
RBSource *source);
RBSource * rb_shell_player_get_playing_source (RBShellPlayer *shell_player);
void rb_shell_player_jump_to_current (RBShellPlayer *player);
void rb_shell_player_play_entry (RBShellPlayer *player,
RhythmDBEntry *entry);
void rb_shell_player_playpause (RBShellPlayer *player);
void rb_shell_player_stop (RBShellPlayer *player);
void rb_shell_player_do_previous (RBShellPlayer *player);
void rb_shell_player_do_next (RBShellPlayer *player);
long rb_shell_player_get_playing_time(RBShellPlayer *player);
void rb_shell_player_set_playing_time(RBShellPlayer *player, long time);
long rb_shell_player_get_playing_song_duration (RBShellPlayer *player);
RBPlayer * rb_shell_player_get_mm_player (RBShellPlayer *shell_player);
gboolean rb_shell_player_get_playing (RBShellPlayer *shell_player);
const char * rb_shell_player_get_playing_path(RBShellPlayer *shell_player);
void rb_shell_player_sync_buttons (RBShellPlayer *player);
void rb_shell_player_set_playback_state(RBShellPlayer *player,
gboolean shuffle, gboolean repeat);
gboolean rb_shell_player_get_playback_state(RBShellPlayer *player,
gboolean *shuffle,
gboolean *repeat);
void rb_shell_player_set_volume (RBShellPlayer *player, float vol);
float rb_shell_player_get_volume (RBShellPlayer *player);
void rb_shell_player_seek (RBShellPlayer *player, long offset);
void rb_shell_player_toggle_mute (RBShellPlayer *player);
#ifdef HAVE_ACME
gboolean rb_shell_player_handle_key (RBShellPlayer *player, guint keyval);
#endif
G_END_DECLS
#endif /* __RB_SHELL_PLAYER_H */
|