mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
31 lines
722 B
C++
31 lines
722 B
C++
// SPDX-FileCopyrightText: 2021 Ernie Pasveer <epasveer@att.net>
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#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:
|
|
};
|
|
|