-
-
Notifications
You must be signed in to change notification settings - Fork 342
Expand file tree
/
Copy pathDialogOptions.h
More file actions
46 lines (35 loc) · 968 Bytes
/
Copy pathDialogOptions.h
File metadata and controls
46 lines (35 loc) · 968 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
* Copyright (C) 2006 - 2025 Evan Teran <evan.teran@gmail.com>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef DIALOG_OPTIONS_H_20061101_
#define DIALOG_OPTIONS_H_20061101_
#include <QDialog>
#include "ui_DialogOptions.h"
class QToolBox;
class DialogOptions final : public QDialog {
Q_OBJECT
public:
explicit DialogOptions(QWidget *parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
~DialogOptions() override = default;
public Q_SLOTS:
void on_btnSymbolDir_clicked();
void on_btnPluginDir_clicked();
void on_btnTTY_clicked();
void on_btnSessionDir_clicked();
protected:
void closeEvent(QCloseEvent *event) override;
void accept() override;
public:
void showEvent(QShowEvent *event) override;
void addOptionsPage(QWidget *page);
private:
QString fontFromDialog(const QString &default_font);
QString directoryFromDialog();
private:
Ui::DialogOptions ui;
QToolBox *toolbox_ = nullptr;
QString currentThemeName_;
};
#endif