summaryrefslogtreecommitdiffstats
path: root/src/SinkWindow.hh
blob: b0417aa3aa4b5fde8ac35e96c2498ced2ffa39fb (plain)
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
#ifndef foosinkwindowhhfoo
#define foosinkwindowhhfoo

#include <gtkmm.h>
#include <libglademm.h>

class SinkWindow;

#include "ServerInfoManager.hh"

class SinkWindow : public Gtk::Window {
public:
    SinkWindow(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& refGlade);
    static SinkWindow* create();

    Gtk::Label *nameLabel,
        *descriptionLabel,
        *indexLabel,
        *sampleTypeLabel,
        *latencyLabel,
        *ownerModuleLabel,
        *monitorSourceLabel,
        *volumeLabel;

    Gtk::Button *closeButton,
        *toMonitorSourceButton,
        *toOwnerModuleButton,
        *volumeResetButton,
        *volumeMuteButton;

    Gtk::HScale *volumeScale;

    uint32_t index, owner_module, monitor_source;
    
    void updateInfo(const SinkInfo &i);

    virtual void onCloseButton();
    virtual void onToMonitorSourceButton();
    virtual void onToOwnerModuleButton();
    virtual void onVolumeScaleValueChanged();
    virtual void onVolumeResetButton();
    virtual void onVolumeMuteButton();
};

#endif