summaryrefslogtreecommitdiffhomepage
path: root/tracker-kinect-face/kinect_face_settings.h
blob: 0f8c170b8be111d7b839591991c8f991eaaff96a (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
#pragma once
#include "ui_test.h"
#include "compat/macros.hpp"
#include "api/plugin-api.hpp"


class test_dialog : public ITrackerDialog
{
    Q_OBJECT

    Ui::test_ui ui;
public:
    test_dialog();
    void register_tracker(ITracker *) override {}
    void unregister_tracker() override {}
private slots:
    void doOK();
    void doCancel();
};

class test_metadata : public Metadata
{
    Q_OBJECT

    QString name() { return tr("Kinect Face 0.1"); }
    QIcon icon() { return QIcon(":/images/kinect.png"); }
};