diff options
author | Stéphane Lenclud <github@lenclud.com> | 2019-02-03 12:28:12 +0100 |
---|---|---|
committer | Stéphane Lenclud <github@lenclud.com> | 2019-02-07 13:24:13 +0100 |
commit | 1da2d0e71a03296a40b49316b5e23986de823a75 (patch) | |
tree | 287a1a1c3d7d5d31870b3a32fba69d72c9b7be1d /tracker-kinect-face/kinect_face_settings.h | |
parent | 70156963a8f65d21231de88460e6559bd78f770c (diff) |
Kinect: Renaming a few files.
Diffstat (limited to 'tracker-kinect-face/kinect_face_settings.h')
-rw-r--r-- | tracker-kinect-face/kinect_face_settings.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/tracker-kinect-face/kinect_face_settings.h b/tracker-kinect-face/kinect_face_settings.h new file mode 100644 index 00000000..0f8c170b --- /dev/null +++ b/tracker-kinect-face/kinect_face_settings.h @@ -0,0 +1,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"); } +}; + |