streamwidget: Use a drop-down list instead of a button and a popup for selecting the device
This looks better, requires less code and probably fixes https://gitlab.freedesktop.org/pulseaudio/pavucontrol/issues/63
This commit is contained in:
parent
5fda4bcd85
commit
ae278b8643
|
@ -1084,12 +1084,15 @@ void MainWindow::reallyUpdateDeviceVisibility() {
|
||||||
for (std::map<uint32_t, SinkInputWidget*>::iterator i = sinkInputWidgets.begin(); i != sinkInputWidgets.end(); ++i) {
|
for (std::map<uint32_t, SinkInputWidget*>::iterator i = sinkInputWidgets.begin(); i != sinkInputWidgets.end(); ++i) {
|
||||||
SinkInputWidget* w = i->second;
|
SinkInputWidget* w = i->second;
|
||||||
|
|
||||||
|
w->updating = true;
|
||||||
|
w->updateDeviceComboBox();
|
||||||
|
|
||||||
if (sinkWidgets.size() > 1) {
|
if (sinkWidgets.size() > 1) {
|
||||||
w->directionLabel->show();
|
w->directionLabel->show();
|
||||||
w->deviceButton->show();
|
w->deviceComboBox->show();
|
||||||
} else {
|
} else {
|
||||||
w->directionLabel->hide();
|
w->directionLabel->hide();
|
||||||
w->deviceButton->hide();
|
w->deviceComboBox->hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (showSinkInputType == SINK_INPUT_ALL || w->type == showSinkInputType) {
|
if (showSinkInputType == SINK_INPUT_ALL || w->type == showSinkInputType) {
|
||||||
|
@ -1097,6 +1100,8 @@ void MainWindow::reallyUpdateDeviceVisibility() {
|
||||||
is_empty = false;
|
is_empty = false;
|
||||||
} else
|
} else
|
||||||
w->hide();
|
w->hide();
|
||||||
|
|
||||||
|
w->updating = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (eventRoleWidget)
|
if (eventRoleWidget)
|
||||||
|
@ -1112,12 +1117,15 @@ void MainWindow::reallyUpdateDeviceVisibility() {
|
||||||
for (std::map<uint32_t, SourceOutputWidget*>::iterator i = sourceOutputWidgets.begin(); i != sourceOutputWidgets.end(); ++i) {
|
for (std::map<uint32_t, SourceOutputWidget*>::iterator i = sourceOutputWidgets.begin(); i != sourceOutputWidgets.end(); ++i) {
|
||||||
SourceOutputWidget* w = i->second;
|
SourceOutputWidget* w = i->second;
|
||||||
|
|
||||||
|
w->updating = true;
|
||||||
|
w->updateDeviceComboBox();
|
||||||
|
|
||||||
if (sourceWidgets.size() > 1) {
|
if (sourceWidgets.size() > 1) {
|
||||||
w->directionLabel->show();
|
w->directionLabel->show();
|
||||||
w->deviceButton->show();
|
w->deviceComboBox->show();
|
||||||
} else {
|
} else {
|
||||||
w->directionLabel->hide();
|
w->directionLabel->hide();
|
||||||
w->deviceButton->hide();
|
w->deviceComboBox->hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (showSourceOutputType == SOURCE_OUTPUT_ALL || w->type == showSourceOutputType) {
|
if (showSourceOutputType == SOURCE_OUTPUT_ALL || w->type == showSourceOutputType) {
|
||||||
|
@ -1125,6 +1133,8 @@ void MainWindow::reallyUpdateDeviceVisibility() {
|
||||||
is_empty = false;
|
is_empty = false;
|
||||||
} else
|
} else
|
||||||
w->hide();
|
w->hide();
|
||||||
|
|
||||||
|
w->updating = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (is_empty)
|
if (is_empty)
|
||||||
|
|
|
@ -1496,13 +1496,9 @@
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
<child>
|
<child>
|
||||||
<object class="GtkButton" id="deviceButton">
|
<object class="GtkComboBoxText" id="deviceComboBox">
|
||||||
<property name="label" translatable="yes">Device</property>
|
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can_focus">True</property>
|
<property name="can_focus">True</property>
|
||||||
<property name="receives_default">True</property>
|
|
||||||
<property name="relief">half</property>
|
|
||||||
<property name="xalign">0</property>
|
|
||||||
</object>
|
</object>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="expand">False</property>
|
<property name="expand">False</property>
|
||||||
|
|
|
@ -33,7 +33,7 @@ RoleWidget::RoleWidget(BaseObjectType* cobject, const Glib::RefPtr<Gtk::Builder>
|
||||||
|
|
||||||
lockToggleButton->hide();
|
lockToggleButton->hide();
|
||||||
directionLabel->hide();
|
directionLabel->hide();
|
||||||
deviceButton->hide();
|
deviceComboBox->hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
RoleWidget* RoleWidget::create() {
|
RoleWidget* RoleWidget::create() {
|
||||||
|
|
|
@ -44,28 +44,42 @@ SinkInputWidget* SinkInputWidget::create(MainWindow* mainWindow) {
|
||||||
x->get_widget_derived("streamWidget", w);
|
x->get_widget_derived("streamWidget", w);
|
||||||
w->init(mainWindow);
|
w->init(mainWindow);
|
||||||
w->reference();
|
w->reference();
|
||||||
|
|
||||||
return w;
|
return w;
|
||||||
}
|
}
|
||||||
|
|
||||||
SinkInputWidget::~SinkInputWidget(void) {
|
SinkInputWidget::~SinkInputWidget(void) {
|
||||||
clearMenu();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void SinkInputWidget::setSinkIndex(uint32_t idx) {
|
void SinkInputWidget::setSinkIndex(uint32_t idx) {
|
||||||
mSinkIndex = idx;
|
mSinkIndex = idx;
|
||||||
|
updateDeviceComboBox();
|
||||||
if (mpMainWindow->sinkWidgets.count(idx)) {
|
|
||||||
SinkWidget *w = mpMainWindow->sinkWidgets[idx];
|
|
||||||
deviceButton->set_label(w->description.c_str());
|
|
||||||
}
|
|
||||||
else
|
|
||||||
deviceButton->set_label(_("Unknown output"));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t SinkInputWidget::sinkIndex() {
|
uint32_t SinkInputWidget::sinkIndex() {
|
||||||
return mSinkIndex;
|
return mSinkIndex;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void SinkInputWidget::updateDeviceComboBox() {
|
||||||
|
Glib::ustring currentSinkName = UNKNOWN_DEVICE_NAME;
|
||||||
|
|
||||||
|
deviceComboBox->remove_all();
|
||||||
|
|
||||||
|
for (auto i = mpMainWindow->sinkWidgets.begin(); i != mpMainWindow->sinkWidgets.end(); i++) {
|
||||||
|
SinkWidget *sink = i->second;
|
||||||
|
|
||||||
|
deviceComboBox->append(sink->name, sink->description);
|
||||||
|
|
||||||
|
if (sink->index == mSinkIndex)
|
||||||
|
currentSinkName = sink->name;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (currentSinkName == UNKNOWN_DEVICE_NAME)
|
||||||
|
deviceComboBox->append(UNKNOWN_DEVICE_NAME, _("Unknown output"));
|
||||||
|
|
||||||
|
deviceComboBox->set_active_id(currentSinkName);
|
||||||
|
}
|
||||||
|
|
||||||
void SinkInputWidget::executeVolumeUpdate() {
|
void SinkInputWidget::executeVolumeUpdate() {
|
||||||
pa_operation* o;
|
pa_operation* o;
|
||||||
|
|
||||||
|
@ -102,44 +116,13 @@ void SinkInputWidget::onKill() {
|
||||||
pa_operation_unref(o);
|
pa_operation_unref(o);
|
||||||
}
|
}
|
||||||
|
|
||||||
void SinkInputWidget::clearMenu() {
|
void SinkInputWidget::onDeviceComboBoxChanged() {
|
||||||
while (!sinkMenuItems.empty()) {
|
if (updating)
|
||||||
std::map<uint32_t, SinkMenuItem*>::iterator i = sinkMenuItems.begin();
|
return;
|
||||||
delete i->second;
|
|
||||||
sinkMenuItems.erase(i);
|
Glib::ustring sinkName = deviceComboBox->get_active_id();
|
||||||
}
|
|
||||||
}
|
pa_operation *o = pa_context_move_sink_input_by_name(get_context(), index, sinkName.c_str(), NULL, NULL);
|
||||||
|
if (o)
|
||||||
void SinkInputWidget::buildMenu() {
|
pa_operation_unref(o);
|
||||||
for (std::map<uint32_t, SinkWidget*>::iterator i = mpMainWindow->sinkWidgets.begin(); i != mpMainWindow->sinkWidgets.end(); ++i) {
|
|
||||||
SinkMenuItem *m;
|
|
||||||
sinkMenuItems[i->second->index] = m = new SinkMenuItem(this, i->second->description.c_str(), i->second->index, i->second->index == mSinkIndex);
|
|
||||||
menu.append(m->menuItem);
|
|
||||||
}
|
|
||||||
menu.show_all();
|
|
||||||
}
|
|
||||||
|
|
||||||
void SinkInputWidget::SinkMenuItem::onToggle() {
|
|
||||||
if (widget->updating)
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (!menuItem.get_active())
|
|
||||||
return;
|
|
||||||
|
|
||||||
/*if (!mpMainWindow->sinkWidgets.count(widget->index))
|
|
||||||
return;*/
|
|
||||||
|
|
||||||
pa_operation* o;
|
|
||||||
if (!(o = pa_context_move_sink_input_by_index(get_context(), widget->index, index, NULL, NULL))) {
|
|
||||||
show_error(_("pa_context_move_sink_input_by_index() failed"));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
pa_operation_unref(o);
|
|
||||||
}
|
|
||||||
|
|
||||||
void SinkInputWidget::onDeviceChangePopup() {
|
|
||||||
clearMenu();
|
|
||||||
buildMenu();
|
|
||||||
menu.popup(1, 0);
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,36 +38,14 @@ public:
|
||||||
uint32_t index, clientIndex;
|
uint32_t index, clientIndex;
|
||||||
void setSinkIndex(uint32_t idx);
|
void setSinkIndex(uint32_t idx);
|
||||||
uint32_t sinkIndex();
|
uint32_t sinkIndex();
|
||||||
|
void updateDeviceComboBox();
|
||||||
virtual void executeVolumeUpdate();
|
virtual void executeVolumeUpdate();
|
||||||
virtual void onMuteToggleButton();
|
virtual void onMuteToggleButton();
|
||||||
virtual void onDeviceChangePopup();
|
|
||||||
virtual void onKill();
|
virtual void onKill();
|
||||||
|
virtual void onDeviceComboBoxChanged();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
uint32_t mSinkIndex;
|
uint32_t mSinkIndex;
|
||||||
|
|
||||||
void clearMenu();
|
|
||||||
void buildMenu();
|
|
||||||
|
|
||||||
Gtk::Menu menu;
|
|
||||||
|
|
||||||
struct SinkMenuItem {
|
|
||||||
SinkMenuItem(SinkInputWidget *w, const char *label, uint32_t i, bool active) :
|
|
||||||
widget(w),
|
|
||||||
menuItem(label),
|
|
||||||
index(i) {
|
|
||||||
menuItem.set_active(active);
|
|
||||||
menuItem.set_draw_as_radio(true);
|
|
||||||
menuItem.signal_toggled().connect(sigc::mem_fun(*this, &SinkMenuItem::onToggle));
|
|
||||||
}
|
|
||||||
|
|
||||||
SinkInputWidget *widget;
|
|
||||||
Gtk::CheckMenuItem menuItem;
|
|
||||||
uint32_t index;
|
|
||||||
void onToggle();
|
|
||||||
};
|
|
||||||
|
|
||||||
std::map<uint32_t, SinkMenuItem*> sinkMenuItems;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -54,24 +54,37 @@ SourceOutputWidget* SourceOutputWidget::create(MainWindow* mainWindow) {
|
||||||
}
|
}
|
||||||
|
|
||||||
SourceOutputWidget::~SourceOutputWidget(void) {
|
SourceOutputWidget::~SourceOutputWidget(void) {
|
||||||
clearMenu();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void SourceOutputWidget::setSourceIndex(uint32_t idx) {
|
void SourceOutputWidget::setSourceIndex(uint32_t idx) {
|
||||||
mSourceIndex = idx;
|
mSourceIndex = idx;
|
||||||
|
updateDeviceComboBox();
|
||||||
if (mpMainWindow->sourceWidgets.count(idx)) {
|
|
||||||
SourceWidget *w = mpMainWindow->sourceWidgets[idx];
|
|
||||||
deviceButton->set_label(w->description.c_str());
|
|
||||||
}
|
|
||||||
else
|
|
||||||
deviceButton->set_label(_("Unknown input"));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t SourceOutputWidget::sourceIndex() {
|
uint32_t SourceOutputWidget::sourceIndex() {
|
||||||
return mSourceIndex;
|
return mSourceIndex;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void SourceOutputWidget::updateDeviceComboBox() {
|
||||||
|
Glib::ustring currentSourceName = UNKNOWN_DEVICE_NAME;
|
||||||
|
|
||||||
|
deviceComboBox->remove_all();
|
||||||
|
|
||||||
|
for (auto i = mpMainWindow->sourceWidgets.begin(); i != mpMainWindow->sourceWidgets.end(); i++) {
|
||||||
|
SourceWidget *source = i->second;
|
||||||
|
|
||||||
|
deviceComboBox->append(source->name, source->description);
|
||||||
|
|
||||||
|
if (source->index == mSourceIndex)
|
||||||
|
currentSourceName = source->name;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (currentSourceName == UNKNOWN_DEVICE_NAME)
|
||||||
|
deviceComboBox->append(UNKNOWN_DEVICE_NAME, _("Unknown input"));
|
||||||
|
|
||||||
|
deviceComboBox->set_active_id(currentSourceName);
|
||||||
|
}
|
||||||
|
|
||||||
#if HAVE_SOURCE_OUTPUT_VOLUMES
|
#if HAVE_SOURCE_OUTPUT_VOLUMES
|
||||||
void SourceOutputWidget::executeVolumeUpdate() {
|
void SourceOutputWidget::executeVolumeUpdate() {
|
||||||
pa_operation* o;
|
pa_operation* o;
|
||||||
|
@ -110,45 +123,13 @@ void SourceOutputWidget::onKill() {
|
||||||
pa_operation_unref(o);
|
pa_operation_unref(o);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void SourceOutputWidget::onDeviceComboBoxChanged() {
|
||||||
|
if (updating)
|
||||||
|
return;
|
||||||
|
|
||||||
void SourceOutputWidget::clearMenu() {
|
Glib::ustring sourceName = deviceComboBox->get_active_id();
|
||||||
while (!sourceMenuItems.empty()) {
|
|
||||||
std::map<uint32_t, SourceMenuItem*>::iterator i = sourceMenuItems.begin();
|
pa_operation *o = pa_context_move_source_output_by_name(get_context(), index, sourceName.c_str(), NULL, NULL);
|
||||||
delete i->second;
|
if (o)
|
||||||
sourceMenuItems.erase(i);
|
pa_operation_unref(o);
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void SourceOutputWidget::buildMenu() {
|
|
||||||
for (std::map<uint32_t, SourceWidget*>::iterator i = mpMainWindow->sourceWidgets.begin(); i != mpMainWindow->sourceWidgets.end(); ++i) {
|
|
||||||
SourceMenuItem *m;
|
|
||||||
sourceMenuItems[i->second->index] = m = new SourceMenuItem(this, i->second->description.c_str(), i->second->index, i->second->index == mSourceIndex);
|
|
||||||
menu.append(m->menuItem);
|
|
||||||
}
|
|
||||||
menu.show_all();
|
|
||||||
}
|
|
||||||
|
|
||||||
void SourceOutputWidget::SourceMenuItem::onToggle() {
|
|
||||||
if (widget->updating)
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (!menuItem.get_active())
|
|
||||||
return;
|
|
||||||
|
|
||||||
/*if (!mpMainWindow->sourceWidgets.count(widget->index))
|
|
||||||
return;*/
|
|
||||||
|
|
||||||
pa_operation* o;
|
|
||||||
if (!(o = pa_context_move_source_output_by_index(get_context(), widget->index, index, NULL, NULL))) {
|
|
||||||
show_error(_("pa_context_move_source_output_by_index() failed"));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
pa_operation_unref(o);
|
|
||||||
}
|
|
||||||
|
|
||||||
void SourceOutputWidget::onDeviceChangePopup() {
|
|
||||||
clearMenu();
|
|
||||||
buildMenu();
|
|
||||||
menu.popup(1, 0);
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,38 +38,16 @@ public:
|
||||||
uint32_t index, clientIndex;
|
uint32_t index, clientIndex;
|
||||||
void setSourceIndex(uint32_t idx);
|
void setSourceIndex(uint32_t idx);
|
||||||
uint32_t sourceIndex();
|
uint32_t sourceIndex();
|
||||||
|
void updateDeviceComboBox();
|
||||||
#if HAVE_SOURCE_OUTPUT_VOLUMES
|
#if HAVE_SOURCE_OUTPUT_VOLUMES
|
||||||
virtual void executeVolumeUpdate();
|
virtual void executeVolumeUpdate();
|
||||||
virtual void onMuteToggleButton();
|
virtual void onMuteToggleButton();
|
||||||
#endif
|
#endif
|
||||||
virtual void onDeviceChangePopup();
|
|
||||||
virtual void onKill();
|
virtual void onKill();
|
||||||
|
virtual void onDeviceComboBoxChanged();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
uint32_t mSourceIndex;
|
uint32_t mSourceIndex;
|
||||||
|
|
||||||
void clearMenu();
|
|
||||||
void buildMenu();
|
|
||||||
|
|
||||||
Gtk::Menu menu;
|
|
||||||
|
|
||||||
struct SourceMenuItem {
|
|
||||||
SourceMenuItem(SourceOutputWidget *w, const char *label, uint32_t i, bool active) :
|
|
||||||
widget(w),
|
|
||||||
menuItem(label),
|
|
||||||
index(i) {
|
|
||||||
menuItem.set_active(active);
|
|
||||||
menuItem.set_draw_as_radio(true);
|
|
||||||
menuItem.signal_toggled().connect(sigc::mem_fun(*this, &SourceMenuItem::onToggle));
|
|
||||||
}
|
|
||||||
|
|
||||||
SourceOutputWidget *widget;
|
|
||||||
Gtk::CheckMenuItem menuItem;
|
|
||||||
uint32_t index;
|
|
||||||
void onToggle();
|
|
||||||
};
|
|
||||||
|
|
||||||
std::map<uint32_t, SourceMenuItem*> sourceMenuItems;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -42,12 +42,12 @@ StreamWidget::StreamWidget(BaseObjectType* cobject, const Glib::RefPtr<Gtk::Buil
|
||||||
x->get_widget("streamLockToggleButton", lockToggleButton);
|
x->get_widget("streamLockToggleButton", lockToggleButton);
|
||||||
x->get_widget("streamMuteToggleButton", muteToggleButton);
|
x->get_widget("streamMuteToggleButton", muteToggleButton);
|
||||||
x->get_widget("directionLabel", directionLabel);
|
x->get_widget("directionLabel", directionLabel);
|
||||||
x->get_widget("deviceButton", deviceButton);
|
x->get_widget("deviceComboBox", deviceComboBox);
|
||||||
|
|
||||||
this->signal_button_press_event().connect(sigc::mem_fun(*this, &StreamWidget::onContextTriggerEvent));
|
this->signal_button_press_event().connect(sigc::mem_fun(*this, &StreamWidget::onContextTriggerEvent));
|
||||||
muteToggleButton->signal_clicked().connect(sigc::mem_fun(*this, &StreamWidget::onMuteToggleButton));
|
muteToggleButton->signal_clicked().connect(sigc::mem_fun(*this, &StreamWidget::onMuteToggleButton));
|
||||||
lockToggleButton->signal_clicked().connect(sigc::mem_fun(*this, &StreamWidget::onLockToggleButton));
|
lockToggleButton->signal_clicked().connect(sigc::mem_fun(*this, &StreamWidget::onLockToggleButton));
|
||||||
deviceButton->signal_clicked().connect(sigc::mem_fun(*this, &StreamWidget::onDeviceChangePopup));
|
deviceComboBox->signal_changed().connect(sigc::mem_fun(*this, &StreamWidget::onDeviceComboBoxChanged));
|
||||||
|
|
||||||
terminate.set_label(_("Terminate"));
|
terminate.set_label(_("Terminate"));
|
||||||
terminate.signal_activate().connect(sigc::mem_fun(*this, &StreamWidget::onKill));
|
terminate.signal_activate().connect(sigc::mem_fun(*this, &StreamWidget::onKill));
|
||||||
|
@ -58,7 +58,6 @@ StreamWidget::StreamWidget(BaseObjectType* cobject, const Glib::RefPtr<Gtk::Buil
|
||||||
channelWidgets[i] = NULL;
|
channelWidgets[i] = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void StreamWidget::init(MainWindow* mainWindow) {
|
void StreamWidget::init(MainWindow* mainWindow) {
|
||||||
mpMainWindow = mainWindow;
|
mpMainWindow = mainWindow;
|
||||||
|
|
||||||
|
@ -145,8 +144,8 @@ bool StreamWidget::timeoutEvent() {
|
||||||
void StreamWidget::executeVolumeUpdate() {
|
void StreamWidget::executeVolumeUpdate() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void StreamWidget::onDeviceChangePopup() {
|
|
||||||
}
|
|
||||||
|
|
||||||
void StreamWidget::onKill() {
|
void StreamWidget::onKill() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void StreamWidget::onDeviceComboBoxChanged() {
|
||||||
|
}
|
||||||
|
|
|
@ -28,6 +28,9 @@
|
||||||
class MainWindow;
|
class MainWindow;
|
||||||
class ChannelWidget;
|
class ChannelWidget;
|
||||||
|
|
||||||
|
/* Used as the ID for the unknown device item in deviceComboBox. */
|
||||||
|
#define UNKNOWN_DEVICE_NAME "#unknown#"
|
||||||
|
|
||||||
class StreamWidget : public MinimalStreamWidget {
|
class StreamWidget : public MinimalStreamWidget {
|
||||||
public:
|
public:
|
||||||
StreamWidget(BaseObjectType* cobject, const Glib::RefPtr<Gtk::Builder>& x);
|
StreamWidget(BaseObjectType* cobject, const Glib::RefPtr<Gtk::Builder>& x);
|
||||||
|
@ -41,7 +44,7 @@ public:
|
||||||
|
|
||||||
Gtk::ToggleButton *lockToggleButton, *muteToggleButton;
|
Gtk::ToggleButton *lockToggleButton, *muteToggleButton;
|
||||||
Gtk::Label *directionLabel;
|
Gtk::Label *directionLabel;
|
||||||
Gtk::Button *deviceButton;
|
Gtk::ComboBoxText *deviceComboBox;
|
||||||
|
|
||||||
pa_channel_map channelMap;
|
pa_channel_map channelMap;
|
||||||
pa_cvolume volume;
|
pa_cvolume volume;
|
||||||
|
@ -50,7 +53,6 @@ public:
|
||||||
|
|
||||||
virtual void onMuteToggleButton();
|
virtual void onMuteToggleButton();
|
||||||
virtual void onLockToggleButton();
|
virtual void onLockToggleButton();
|
||||||
virtual void onDeviceChangePopup();
|
|
||||||
virtual bool onContextTriggerEvent(GdkEventButton*);
|
virtual bool onContextTriggerEvent(GdkEventButton*);
|
||||||
|
|
||||||
sigc::connection timeoutConnection;
|
sigc::connection timeoutConnection;
|
||||||
|
@ -59,6 +61,7 @@ public:
|
||||||
|
|
||||||
virtual void executeVolumeUpdate();
|
virtual void executeVolumeUpdate();
|
||||||
virtual void onKill();
|
virtual void onKill();
|
||||||
|
virtual void onDeviceComboBoxChanged();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
MainWindow* mpMainWindow;
|
MainWindow* mpMainWindow;
|
||||||
|
|
Loading…
Reference in New Issue