summaryrefslogtreecommitdiffstats
path: root/src/SourceWindow.cc
blob: b5119d917372516279137af11d1b5391099b5d6b (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#include "paman.hh"
#include "SourceWindow.hh"

#define GLADE_NAME "sourceWindow"

SourceWindow::SourceWindow(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& refGlade) :
    Gtk::Window(cobject),
    nameLabel(NULL),
    descriptionLabel(NULL),
    indexLabel(NULL),
    sampleTypeLabel(NULL),
    ownerModuleLabel(NULL),
    monitorOfSinkLabel(NULL),
    closeButton(NULL),
    toParentSinkButton(NULL),
    toOwnerModuleButton(NULL) {

    refGlade->get_widget("nameLabel", nameLabel);
    refGlade->get_widget("descriptionLabel", descriptionLabel);
    refGlade->get_widget("indexLabel", indexLabel);
    refGlade->get_widget("sampleTypeLabel", sampleTypeLabel);
    refGlade->get_widget("ownerModuleLabel", ownerModuleLabel);
    refGlade->get_widget("monitorOfSinkLabel", monitorOfSinkLabel);
    refGlade->get_widget("closeButton", closeButton);
    refGlade->get_widget("toParentSinkButton", toParentSinkButton);
    refGlade->get_widget("toOwnerModuleButton", toOwnerModuleButton);
    
    closeButton->signal_clicked().connect(sigc::mem_fun(*this, &SourceWindow::onCloseButton));
    toParentSinkButton->signal_clicked().connect(sigc::mem_fun(*this, &SourceWindow::onParentSinkButton));
    toOwnerModuleButton->signal_clicked().connect(sigc::mem_fun(*this, &SourceWindow::onToOwnerModuleButton));
}

SourceWindow* SourceWindow::create() {
    SourceWindow *w = NULL;
    Glib::RefPtr<Gnome::Glade::Xml> refXml = Gnome::Glade::Xml::create(GLADE_FILE, GLADE_NAME);
    refXml->get_widget_derived(GLADE_NAME, w);
    return w;
}

void SourceWindow::updateInfo(const SourceInfo &i) {
    char t[20], ss[PA_SAMPLE_SNPRINT_MAX_LENGTH];

    nameLabel->set_text(i.name);
    descriptionLabel->set_text(i.description);
    snprintf(t, sizeof(t), "#%u", i.index);
    indexLabel->set_text(t);
    pa_sample_snprint(ss, sizeof(ss), &i.sample_spec);
    sampleTypeLabel->set_text(ss);
    snprintf(t, sizeof(t), "#%u", i.owner_module);
    ownerModuleLabel->set_text(t);

    monitorOfSinkLabel->set_markup("<i>n/a</i>");
    toParentSinkButton->set_sensitive(false);
    if (i.monitor_of_sink != (uint32_t) -1) {
        SinkInfo *sink = serverInfoManager->getSinkInfo(i.monitor_of_sink);
        if (sink) {
            monitorOfSinkLabel->set_text(sink->name);
            toParentSinkButton->set_sensitive(true);
        }
    }

    monitor_of_sink = i.monitor_of_sink;
    
    set_title("Source: "+i.name);

    owner_module = i.owner_module;
    toOwnerModuleButton->set_sensitive(owner_module != (uint32_t) -1);
}

void SourceWindow::onCloseButton() {
    hide();
}

void SourceWindow::onParentSinkButton() {
    if (monitor_of_sink != (uint32_t) -1)
        serverInfoManager->showSinkWindow(monitor_of_sink);
}

void SourceWindow::onToOwnerModuleButton() {
    if (owner_module != (uint32_t) -1)
        serverInfoManager->showModuleWindow(owner_module);
}