2009-03-16 12:59:01 +00:00
|
|
|
/***
|
|
|
|
This file is part of pavucontrol.
|
|
|
|
|
|
|
|
Copyright 2006-2008 Lennart Poettering
|
|
|
|
Copyright 2009 Colin Guthrie
|
|
|
|
|
|
|
|
pavucontrol 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.
|
|
|
|
|
|
|
|
pavucontrol 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 pavucontrol. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
***/
|
|
|
|
|
|
|
|
#ifndef sinkinputwidget_h
|
|
|
|
#define sinkinputwidget_h
|
|
|
|
|
|
|
|
#include "pavucontrol.h"
|
|
|
|
|
|
|
|
#include "streamwidget.h"
|
|
|
|
|
|
|
|
class MainWindow;
|
|
|
|
|
|
|
|
class SinkInputWidget : public StreamWidget {
|
|
|
|
public:
|
2011-03-03 14:31:14 +00:00
|
|
|
SinkInputWidget(BaseObjectType* cobject, const Glib::RefPtr<Gtk::Builder>& x);
|
2009-03-16 20:18:01 +00:00
|
|
|
static SinkInputWidget* create(MainWindow* mainWindow);
|
2009-06-13 18:15:02 +00:00
|
|
|
~SinkInputWidget(void);
|
2009-03-16 12:59:01 +00:00
|
|
|
|
|
|
|
SinkInputType type;
|
|
|
|
|
2009-03-16 20:47:57 +00:00
|
|
|
uint32_t index, clientIndex;
|
|
|
|
void setSinkIndex(uint32_t idx);
|
|
|
|
uint32_t sinkIndex();
|
2009-03-16 12:59:01 +00:00
|
|
|
virtual void executeVolumeUpdate();
|
|
|
|
virtual void onMuteToggleButton();
|
2011-05-06 09:55:17 +00:00
|
|
|
virtual void onDeviceChangePopup();
|
2009-03-16 12:59:01 +00:00
|
|
|
virtual void onKill();
|
2009-03-16 20:18:01 +00:00
|
|
|
|
|
|
|
private:
|
2009-03-16 20:47:57 +00:00
|
|
|
uint32_t mSinkIndex;
|
2009-03-16 20:18:01 +00:00
|
|
|
|
2009-06-13 18:15:02 +00:00
|
|
|
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;
|
2009-03-16 12:59:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|