summaryrefslogtreecommitdiffstats
path: root/src/mainwindow.cpp
blob: 9ae66d340543bbc3d0636b925d59f0f535c125a6 (plain) (blame)
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
#include "mainwindow.h"
#include "slxoutput.h"

MainWindow::MainWindow() : QDialog()
{
    setupUi(this);
    setWindowFlags(Qt::WindowStaysOnTopHint | windowFlags());
}

MainWindow::~MainWindow()
{

}

SlxOutput* MainWindow::getOutput(const QString &id, bool isSink, const QString &newTitle)
{
    SlxOutput* w = _widgets.value(id, nullptr);
    if (w == nullptr) {
        w = new SlxOutput(nullptr, id);
        _widgets.insert(id, w);
        bool done = false;
        printf("New %s - %s\n", isSink ? "SINK" : "PROF", newTitle.toLocal8Bit().constData());
        printf("Conteints: %d\n", container->count());
        int idx;
        for (idx = 0; idx < container->count(); ++idx) {
            auto *l = container->itemAt(idx);
            SlxOutput *other = qobject_cast<SlxOutput*>(l->widget());
            if (other == nullptr)
                continue;
            printf("    Comparing %s - %s\n", other->isSink() ? "SINK" : "PROF", other->nameLabel->text().toLocal8Bit().constData());
            if (isSink != other->isSink()) {
                if (isSink)
                    break;
                continue;
            }
            if (newTitle.compare(other->nameLabel->text()) < 0) {
                done = true;
                printf("Inserting before that (%d)!\n", idx);
                container->insertWidget(idx, w);
                break;
            }
        }
        if (!done) {
            if (idx == -1) {
                idx = 0;
            }
            printf("Inserting before that (%d) 2!\n", idx);
            container->insertWidget(idx, w);
        }
    }
    return w;
}

/**
 * Mark all entries as unused.
 */
void MainWindow::mark()
{
    for (auto *w : _widgets) {
        w->unused = true;
    }
}

/**
 * Remove all entries marked as unused.
 */
void MainWindow::sweep()
{
    for (QMutableMapIterator<QString, SlxOutput*> it(_widgets); it.hasNext(); ) {
        it.next();
        auto *w = it.value();
        if (w->unused) {
            printf("Killing %p\n", w);
            it.remove();
            w->deleteLater();
        }
    }
}