Archive / / / / / TrackInfoPane.h
2008-10-06 13:32:58 UTC
previous next
/* Echo Media Player * Copyright (C) 2008 Shane O'Connell * * [ The original file includes a copyright header in this location describing * the file as being released under the terms of the GNU General Public * License. It has been removed in order to display the file as part of the * archive. ] */ #ifndef TRACKINFOPANE_H_ #define TRACKINFOPANE_H_ #include "../PlaySource.h" #include <gtkmm.h> class TrackInfoPane : public Gtk::HBox { public: TrackInfoPane(); private: Gtk::Label m_label; void on_track_started(PlaySourceRef playlist, int index, bool was_paused); void on_track_stopped(PlaySourceRef playlist, int index, bool is_paused); }; #endif /* TRACKINFOPANE_H_ */