blob: 8efefdeec770b788fb371235aa99d005cf54ff37 (
plain) (
blame)
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
47
48
49
50
51
52
|
#ifndef PREFERENCEDIALOG_HPP
#define PREFERENCEDIALOG_HPP
#include <vector>
#include <map>
#include <string>
#include <QDialog>
#include <QGridLayout>
#include <QStyledItemDelegate>
#include "settings.hpp"
class QTabWidget;
class QGridLayout;
class QDialogButtonBox;
class QTableView;
class QStandardItemModel;
class PreferenceDialog : public QDialog
{
Q_OBJECT
public:
PreferenceDialog(SettingsRegistry *sr, QWidget *parent = nullptr);
void setup_widgets();
void set_hkactions(int tab, std::map<std::string, QKeySequence> defmap, std::map<std::string, QAction*> actmap);
void load_widget_status();
void save_widget_status();
void open() override;
void accept() override;
private:
SettingsRegistry *sr;
QTabWidget *tw;
std::vector<QGridLayout*> tabs;
QDialogButtonBox *bb;
QTableView *hktv = nullptr;
QStandardItemModel *hkim = nullptr;
std::map<std::string, QKeySequence> defmap;
std::map<std::string, QAction*> actmap;
};
class ShortcutEditorDelegate : public QStyledItemDelegate
{
Q_OBJECT
public:
QWidget* createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
void setEditorData(QWidget *editor, const QModelIndex &index) const override;
void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const override;
};
#endif
|