Update to dms control phase1.
This commit is contained in:
24
src/dialogs/TimeSelectDialog.h
Normal file
24
src/dialogs/TimeSelectDialog.h
Normal file
@@ -0,0 +1,24 @@
|
||||
#ifndef GUI_TIMESELECTDIALOG_H
|
||||
#define GUI_TIMESELECTDIALOG_H
|
||||
|
||||
#include "dialogs/GUIFormBaseDialog.h"
|
||||
|
||||
class TimeSlidePickerBox;
|
||||
|
||||
class TimeSelectDialog : public GUIFormBaseDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit TimeSelectDialog(QWidget *aParent, Qt::WindowFlags f = Qt::WindowFlags());
|
||||
~TimeSelectDialog() override;
|
||||
QString getSelectedValue() const;
|
||||
int getTotalSeconds() const;
|
||||
void setSelectedValue(const int& aSeconds);
|
||||
|
||||
protected:
|
||||
bool updateReferenceData() override;
|
||||
TimeSlidePickerBox* mSlidePickerBox;
|
||||
};
|
||||
|
||||
|
||||
#endif //GUI_TIMESELECTDIALOG_H
|
||||
Reference in New Issue
Block a user