summaryrefslogtreecommitdiffstats
path: root/SinkWindow.hh
blob: 39901b6cb98fa6ca62ae1846a53d5de52d542feb (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
#ifndef foosinkwindowhhfoo
#define foosinkwindowhhfoo

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

class SinkWindow;

#include "ServerInfo.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;

    Gtk::HScale *volumeScale;

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

    virtual void onCloseButton();
    virtual void onToMonitorSourceButton();
    virtual void onToOwnerModuleButton();
};

#endif