Q3270
A Qt-based 3270 Terminal Emulator
Loading...
Searching...
No Matches
OpenSessionDialog.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 OPENSESSIONDIALOG_H
12#define OPENSESSIONDIALOG_H
13
14#include "SessionDialogBase.h"
15
17{
18 Q_OBJECT
19
20 public:
21 explicit OpenSessionDialog(SessionStore &store, ActiveSettings &activeSettings, QWidget *parent = nullptr);
22
23 private:
24
25 ActiveSettings &activeSettings;
26
27 private slots:
28
29 void onOpenClicked();
30};
31
32#endif
Definition ActiveSettings.h:20
Definition OpenSessionDialog.h:17
Definition SessionDialogBase.h:27
Definition SessionStore.h:19