summaryrefslogtreecommitdiffhomepage
path: root/tracker-hydra/ftnoir_tracker_hydra_dialog.cpp
blob: 42019dfa4cd9727e7f5673ba048e661e20e8e64d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "ftnoir_tracker_hydra.h"
#include "api/plugin-api.hpp"

TrackerControls::TrackerControls()
{
    ui.setupUi(this);

    connect(ui.buttonBox, SIGNAL(accepted()), this, SLOT(doOK()));
    connect(ui.buttonBox, SIGNAL(rejected()), this, SLOT(doCancel()));
}

void TrackerControls::doOK() {
    s.b->save();
    close();
}

void TrackerControls::doCancel()
{
    close();
}