gui: Set up the random button from inside the toolbar

This lets me change this variable to be completely internal to the
QueueToolbar.

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
This commit is contained in:
Anna Schumaker 2015-04-16 08:30:32 -04:00
parent acbafd2361
commit fa2bf4637a
8 changed files with 33 additions and 34 deletions

View File

@ -29,8 +29,7 @@ public:
builder->get_widget_derived("CollectionLabel", collection_label); builder->get_widget_derived("CollectionLabel", collection_label);
builder->get_widget_derived("QueueToolbar", collection_toolbar); builder->get_widget_derived("QueueToolbar", collection_toolbar);
builder->get_widget_derived("QueueWindow", collection_window); builder->get_widget_derived("QueueWindow", collection_window);
collection_toolbar->init(tab_pq, T_RANDOM);
collection_toolbar->init(T_RANDOM);
collection_vbox.set_margin_left(1); collection_vbox.set_margin_left(1);
collection_vbox.set_margin_right(1); collection_vbox.set_margin_right(1);
@ -39,7 +38,6 @@ public:
collection_vbox.pack_start(*collection_window, true, true); collection_vbox.pack_start(*collection_window, true, true);
collection_vbox.show(); collection_vbox.show();
tab_random = collection_toolbar->q_random;
tab_repeat = collection_toolbar->q_repeat; tab_repeat = collection_toolbar->q_repeat;
tab_search = collection_toolbar->q_search; tab_search = collection_toolbar->q_search;
tab_size = collection_label->collection_size; tab_size = collection_label->collection_size;
@ -55,11 +53,6 @@ public:
tab_unmap(); tab_unmap();
} }
void on_post_init()
{
tab_init_random();
}
bool on_key_press_event(const std::string &key) bool on_key_press_event(const std::string &key)
{ {
std::vector<unsigned int> ids; std::vector<unsigned int> ids;

View File

@ -28,6 +28,7 @@ public:
builder->get_widget_derived("HistoryLabel", history_label); builder->get_widget_derived("HistoryLabel", history_label);
builder->get_widget_derived("QueueToolbar", history_toolbar); builder->get_widget_derived("QueueToolbar", history_toolbar);
builder->get_widget_derived("QueueWindow", history_window); builder->get_widget_derived("QueueWindow", history_window);
history_toolbar->init(tab_pq, 0);
history_vbox.set_margin_left(1); history_vbox.set_margin_left(1);
history_vbox.set_margin_right(1); history_vbox.set_margin_right(1);
@ -36,7 +37,6 @@ public:
history_vbox.pack_start(*history_window, true, true); history_vbox.pack_start(*history_window, true, true);
history_vbox.show(); history_vbox.show();
tab_random = history_toolbar->q_random;
tab_repeat = history_toolbar->q_repeat; tab_repeat = history_toolbar->q_repeat;
tab_search = history_toolbar->q_search; tab_search = history_toolbar->q_search;
tab_size = history_label->history_size; tab_size = history_label->history_size;

View File

@ -93,6 +93,7 @@ public:
builder->get_widget_derived("PlaylistWindow", playlist_window); builder->get_widget_derived("PlaylistWindow", playlist_window);
builder->get_widget_derived("QueueToolbar", playlist_toolbar); builder->get_widget_derived("QueueToolbar", playlist_toolbar);
builder->get_widget_derived("QueueWindow", playlist_tracks); builder->get_widget_derived("QueueWindow", playlist_tracks);
playlist_toolbar->init(tab_pq, 0);
playlist_hbox.pack_start(*playlist_window, false, true); playlist_hbox.pack_start(*playlist_window, false, true);
playlist_hbox.pack_start(*playlist_tracks, true, true); playlist_hbox.pack_start(*playlist_tracks, true, true);
@ -105,7 +106,6 @@ public:
playlist_vbox.pack_start(playlist_hbox, true, true); playlist_vbox.pack_start(playlist_hbox, true, true);
playlist_vbox.show(); playlist_vbox.show();
tab_random = playlist_toolbar->q_random;
tab_repeat = playlist_toolbar->q_repeat; tab_repeat = playlist_toolbar->q_repeat;
tab_search = playlist_toolbar->q_search; tab_search = playlist_toolbar->q_search;
tab_treeview = playlist_tracks->q_treeview; tab_treeview = playlist_tracks->q_treeview;

View File

@ -108,7 +108,7 @@ QueueTab :: QueueTab(Queue *pq, unsigned int num)
* Now set up the toolbar * Now set up the toolbar
*/ */
builder->get_widget_derived("QueueToolbar", q_toolbar); builder->get_widget_derived("QueueToolbar", q_toolbar);
q_toolbar->init(T_RANDOM | T_REPEAT | T_SWITCH); q_toolbar->init(pq, T_RANDOM | T_REPEAT | T_SWITCH);
/* /*
* And the treeview with scrolled window * And the treeview with scrolled window
@ -132,7 +132,6 @@ QueueTab :: QueueTab(Queue *pq, unsigned int num)
* Set generic tab widgets * Set generic tab widgets
*/ */
tab_random = q_toolbar->q_random;
tab_repeat = q_toolbar->q_repeat; tab_repeat = q_toolbar->q_repeat;
tab_search = q_toolbar->q_search; tab_search = q_toolbar->q_search;
tab_size = q_label->temp_size; tab_size = q_label->temp_size;
@ -171,7 +170,6 @@ void QueueTab :: on_track_removed(unsigned int row)
void QueueTab :: on_post_init() void QueueTab :: on_post_init()
{ {
tab_init_random();
tab_init_repeat(); tab_init_repeat();
bool active = (tab_pq->has_flag(Q_ENABLED)); bool active = (tab_pq->has_flag(Q_ENABLED));

View File

@ -10,19 +10,36 @@ QueueToolbar :: QueueToolbar(BaseObjectType *cobject,
_builder->get_widget("q_search", q_search); _builder->get_widget("q_search", q_search);
_builder->get_widget("q_switch", q_switch); _builder->get_widget("q_switch", q_switch);
_builder->get_widget("q_repeat", q_repeat); _builder->get_widget("q_repeat", q_repeat);
_builder->get_widget("q_random", q_random); _builder->get_widget("q_random", _q_random);
} }
QueueToolbar :: ~QueueToolbar() QueueToolbar :: ~QueueToolbar()
{ {
} }
void QueueToolbar :: init(unsigned int flags) void QueueToolbar :: init(Queue *queue, unsigned int flags)
{ {
_queue = queue;
if (flags & T_SWITCH) if (flags & T_SWITCH)
q_switch->show(); q_switch->show();
if (flags & T_RANDOM)
q_random->show(); if (flags & T_RANDOM) {
_q_random->set_active(_queue->has_flag(Q_RANDOM));
_q_random->signal_toggled().connect(sigc::mem_fun(*this,
&QueueToolbar::on_random_toggled));
_q_random->show();
}
if (flags & T_REPEAT) if (flags & T_REPEAT)
q_repeat->show(); q_repeat->show();
} }
void QueueToolbar :: on_random_toggled()
{
if (_q_random->get_active())
_queue->set_flag(Q_RANDOM);
else
_queue->unset_flag(Q_RANDOM);
}

View File

@ -99,13 +99,6 @@ void Tab :: on_track_updated(unsigned int row)
* *
*/ */
void Tab :: tab_init_random()
{
tab_random->set_active(tab_pq->has_flag(Q_RANDOM));
tab_random->signal_toggled().connect(sigc::mem_fun(*this,
&Tab::on_random_toggled));
}
void Tab :: tab_init_repeat() void Tab :: tab_init_repeat()
{ {
tab_repeat->set_active(tab_pq->has_flag(Q_REPEAT)); tab_repeat->set_active(tab_pq->has_flag(Q_REPEAT));
@ -290,11 +283,6 @@ void Tab :: on_show_rc_menu()
* *
*/ */
void Tab :: on_random_toggled()
{
tab_toggle_button(tab_random, Q_RANDOM);
}
void Tab :: on_repeat_toggled() void Tab :: on_repeat_toggled()
{ {
tab_toggle_button(tab_repeat, Q_REPEAT); tab_toggle_button(tab_repeat, Q_REPEAT);

View File

@ -4,6 +4,7 @@
#ifndef OCARINA_GUI_QUEUE_TOOLBAR_H #ifndef OCARINA_GUI_QUEUE_TOOLBAR_H
#define OCARINA_GUI_QUEUE_TOOLBAR_H #define OCARINA_GUI_QUEUE_TOOLBAR_H
#include <core/queue.h>
#include <gtkmm.h> #include <gtkmm.h>
enum toolbar_flags { enum toolbar_flags {
@ -16,16 +17,21 @@ enum toolbar_flags {
class QueueToolbar : public Gtk::HBox { class QueueToolbar : public Gtk::HBox {
private: private:
Glib::RefPtr<Gtk::Builder> _builder; Glib::RefPtr<Gtk::Builder> _builder;
Queue *_queue;
Gtk::ToggleButton *_q_random;
public: public:
Gtk::SearchEntry *q_search; Gtk::SearchEntry *q_search;
Gtk::Switch *q_switch; Gtk::Switch *q_switch;
Gtk::ToggleButton *q_repeat; Gtk::ToggleButton *q_repeat;
Gtk::ToggleButton *q_random;
QueueToolbar(BaseObjectType *, const Glib::RefPtr<Gtk::Builder>); QueueToolbar(BaseObjectType *, const Glib::RefPtr<Gtk::Builder>);
~QueueToolbar(); ~QueueToolbar();
void init(unsigned int);
void init(Queue *, unsigned int);
void on_random_toggled();
}; };
#endif /* OCARINA_GUI_QUEUE_TOOLBAR_H */ #endif /* OCARINA_GUI_QUEUE_TOOLBAR_H */

View File

@ -31,7 +31,6 @@ protected:
/** /**
* Optional widgets that MAY be set * Optional widgets that MAY be set
*/ */
Gtk::ToggleButton *tab_random;
Gtk::ToggleButton *tab_repeat; Gtk::ToggleButton *tab_repeat;
Gtk::Label *tab_size; Gtk::Label *tab_size;
@ -39,7 +38,6 @@ protected:
/** /**
* Class helper functions * Class helper functions
*/ */
void tab_init_random();
void tab_init_repeat(); void tab_init_repeat();
void tab_toggle_button(Gtk::ToggleButton *, queue_flags); void tab_toggle_button(Gtk::ToggleButton *, queue_flags);
void tab_dec_sort_count(); void tab_dec_sort_count();
@ -84,7 +82,6 @@ public:
/** /**
* GTK-MM callback functions * GTK-MM callback functions
*/ */
void on_random_toggled();
void on_repeat_toggled(); void on_repeat_toggled();
void on_row_activated(const Gtk::TreePath &, Gtk::TreeViewColumn *); void on_row_activated(const Gtk::TreePath &, Gtk::TreeViewColumn *);
bool on_key_pressed(GdkEventKey *); bool on_key_pressed(GdkEventKey *);