Guitar
ConfirmRemoteSessionDialog.h
Go to the documentation of this file.
1 #ifndef CONFIRMREMOTESESSIONDIALOG_H
2 #define CONFIRMREMOTESESSIONDIALOG_H
3 
4 #include <QDialog>
5 
6 namespace Ui {
8 }
9 
10 class ConfirmRemoteSessionDialog : public QDialog {
11  Q_OBJECT
12 public:
13  explicit ConfirmRemoteSessionDialog(QWidget *parent = nullptr);
15 
16  int exec(QString const &remote_host, QString const &remote_command);
17  bool yes() const;
18 
19 private slots:
20  void on_checkBox_remote_host_checkStateChanged(const Qt::CheckState &arg1);
21 
22  void on_checkBox_remote_command_checkStateChanged(const Qt::CheckState &arg1);
23 
24 private:
25  Ui::ConfirmRemoteSessionDialog *ui;
26 };
27 
28 #endif // CONFIRMREMOTESESSIONDIALOG_H
Definition: ConfirmRemoteSessionDialog.h:10
~ConfirmRemoteSessionDialog()
Definition: ConfirmRemoteSessionDialog.cpp:14
Ui::ConfirmRemoteSessionDialog * ui
Definition: ConfirmRemoteSessionDialog.h:25
bool yes() const
Definition: ConfirmRemoteSessionDialog.cpp:26
void on_checkBox_remote_host_checkStateChanged(const Qt::CheckState &arg1)
Definition: ConfirmRemoteSessionDialog.cpp:31
ConfirmRemoteSessionDialog(QWidget *parent=nullptr)
Definition: ConfirmRemoteSessionDialog.cpp:4
int exec(QString const &remote_host, QString const &remote_command)
Definition: ConfirmRemoteSessionDialog.cpp:19
void on_checkBox_remote_command_checkStateChanged(const Qt::CheckState &arg1)
Definition: ConfirmRemoteSessionDialog.cpp:36
Definition: AboutDialog.h:6