summaryrefslogtreecommitdiffhomepage
path: root/ftnoir_tracker_pt/ftnoir_tracker_pt_dialog.h
blob: 3502e227b9adbecd2e0c690987e5303f53586576 (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
/* Copyright (c) 2012 Patrick Ruoff
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 */

#ifndef FTNOIR_TRACKER_PT_DIALOG_H
#define FTNOIR_TRACKER_PT_DIALOG_H

#include "opentrack/plugin-api.hpp"
#include "ftnoir_tracker_pt_settings.h"
#include "ftnoir_tracker_pt.h"
#include "trans_calib.h"
#include "pt_video_widget.h"
#include "ui_FTNoIR_PT_Controls.h"
#include "opentrack/opencv-camera-dialog.hpp"

#include <QTimer>

//-----------------------------------------------------------------------------
// The dialog that shows up when the user presses "Settings"
class TrackerDialog_PT : public ITrackerDialog, protected camera_dialog<Tracker_PT>
{
    Q_OBJECT
public:
    TrackerDialog_PT();
    void register_tracker(ITracker *tracker) override;
    void unregister_tracker() override;
    void save();
    void trans_calib_step();

public slots:
    void doOK();
    void doCancel();

    void startstop_trans_calib(bool start);
    void poll_tracker_info();
    void camera_settings();
private:
    settings_pt s;
    Tracker_PT* tracker;
    QTimer timer;

    TranslationCalibrator trans_calib;
    bool trans_calib_running;

    Ui::UICPTClientControls ui;
};

#endif //FTNOIR_TRACKER_PT_DIALOG_H