mirror of
https://github.com/epasveer/seer.git
synced 2026-08-31 01:20:45 +08:00
27 lines
608 B
C++
27 lines
608 B
C++
#pragma once
|
|
|
|
#include <QtWidgets/QDialog>
|
|
#include <QtCore/QString>
|
|
|
|
#include "ui_SeerSkipCreateDialog.h"
|
|
|
|
class SeerSkipCreateDialog : public QDialog, protected Ui::SeerSkipCreateDialogForm {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SeerSkipCreateDialog (QWidget* parent = 0);
|
|
~SeerSkipCreateDialog ();
|
|
|
|
QString skipMode () const;
|
|
QString skipParameters () const;
|
|
|
|
public slots:
|
|
private slots:
|
|
void handleModeButtonGroup ();
|
|
void handleHelpToolButton ();
|
|
|
|
private:
|
|
};
|
|
|