Q3270
A Qt-based 3270 Terminal Emulator
Loading...
Searching...
No Matches
ManageSessionsDialog.h
1/*
2 * Q3270 Terminal Emulator
3 *
4 * Copyright (c) 2020–2025 Andy Styles
5 * SPDX-License-Identifier: BSD-3-Clause
6 *
7 * This file is part of Q3270.
8 * See the LICENSE file in the project root for full license information.
9 */
10
11#ifndef MANAGESESSIONSDIALOG_H
12#define MANAGESESSIONSDIALOG_H
13
14#include "SessionDialogBase.h"
15
17{
18 Q_OBJECT
19public:
20 explicit ManageSessionsDialog(SessionStore &store, QWidget *parent = nullptr);
21
22private slots:
23
24 void onManageAutoStartClicked();
25
26private:
27 QPushButton *autoStartButton;
28};
29
30#endif // MANAGESESSIONSDIALOG_H
Definition ManageSessionsDialog.h:17
Definition SessionDialogBase.h:27
Definition SessionStore.h:19