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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
|
#include "config.hpp"
#include <algorithm>
#include <vector>
namespace getsuyomi {
using fud::FudStatus;
ShortcutSet shortcutSetFromList(const ShortcutList& shortcutList)
{
ShortcutSet shortcutSet{};
for (const auto& entry : shortcutList) {
shortcutSet.insert(entry);
}
return shortcutSet;
}
Shortcuts::Shortcuts(ShortcutMap&& shortcutMap) :
m_actionToShortcuts{std::move(shortcutMap)}, m_shortcuts{}, m_shortcutToAction{}
{
for (const auto& [action, shortcuts] : m_actionToShortcuts) {
for (const auto& shortcut : shortcuts) {
qDebug("Working on action %s", actionTypeToString(action));
if (bind(action, shortcut) != FudStatus::Success) {
return;
}
}
}
m_valid = true;
}
bool Shortcuts::contains(QKeySequence keySequence) const
{
return m_shortcuts.contains(keySequence);
}
bool Shortcuts::contains(ActionType actionType) const
{
return m_actionToShortcuts.contains(actionType);
}
std::vector<ActionType> Shortcuts::actions() const {
std::vector<ActionType> actionList{};
actionList.reserve(m_actionToShortcuts.size());
for (const auto& [action, discarded] : m_actionToShortcuts) {
actionList.push_back(action);
}
return actionList;
}
std::optional<ActionType> Shortcuts::action(QKeySequence keySequence) const
{
if (m_shortcutToAction.contains(keySequence)) {
return m_shortcutToAction.at(keySequence);
} else {
return std::nullopt;
}
}
std::optional<ShortcutList> Shortcuts::shortcuts(ActionType action) const
{
if (contains(action)) {
const auto& shortcuts = m_actionToShortcuts.at(action);
ShortcutList shortcutList{};
shortcutList.reserve(static_cast<qsizetype>(shortcuts.size()));
for (const auto& shortcut : shortcuts) {
shortcutList.push_back(shortcut);
}
return shortcutList;
} else {
return std::nullopt;
}
}
FudStatus Shortcuts::bind(ActionType action, QKeySequence keySequence)
{
if (contains(keySequence)) {
return FudStatus::Full;
}
m_shortcuts.insert(keySequence);
if (!contains(action)) {
m_actionToShortcuts[action] = ShortcutSet{};
}
m_actionToShortcuts[action].insert(keySequence);
m_shortcutToAction[keySequence] = action;
return FudStatus::Success;
}
fud::FudStatus Shortcuts::remove(QKeySequence keySequence)
{
if (!contains(keySequence)) {
return FudStatus::NotFound;
}
auto action = m_shortcutToAction[keySequence];
auto& actionShortcuts = m_actionToShortcuts[action];
actionShortcuts.erase(keySequence);
m_shortcutToAction.erase(keySequence);
m_shortcuts.erase(keySequence);
return FudStatus::Success;
}
fud::FudStatus Shortcuts::clear(ActionType action)
{
if (!contains(action)) {
return FudStatus::NotFound;
}
auto& actionShortcuts = m_actionToShortcuts[action];
for (const auto& shortcut : actionShortcuts) {
m_shortcuts.erase(shortcut);
m_shortcutToAction.erase(shortcut);
}
m_actionToShortcuts[action] = {};
return FudStatus::Success;
}
bool Shortcuts::valid() const {
return m_valid;
}
ShortcutMap GetsuyomiConfig::shortcuts() const
{
ShortcutMap shortcuts{};
shortcuts.insert({ActionType::OpenFile, shortcutSetFromList(openFileShortcuts)});
shortcuts.insert({ActionType::OpenDirectory, shortcutSetFromList(openDirectoryShortcuts)});
shortcuts.insert({ActionType::Quit, shortcutSetFromList(quitShortcuts)});
shortcuts.insert({ActionType::Configure, shortcutSetFromList(settingsShortcuts)});
shortcuts.insert({ActionType::Next, shortcutSetFromList(nextShortcuts)});
shortcuts.insert({ActionType::Back, shortcutSetFromList(backShortcuts)});
return shortcuts;
}
ShortcutCollector::ShortcutCollector(QWidget* parent, ActionType action, Shortcuts& shortcuts) :
QWidget(parent), m_action{action}, m_shortcuts{shortcuts}
{
m_layout = new QGridLayout();
auto* name = new QLabel(actionTypeToString(m_action));
m_layout->addWidget(name, 0, 0);
m_shortcutEditor = new QKeySequenceEdit(this);
m_layout->addWidget(m_shortcutEditor, 0, 1);
m_shortcutTable = new QTableWidget(this);
m_layout->addWidget(m_shortcutTable);
auto shortcutOptions = m_shortcuts.shortcuts(m_action);
if (shortcutOptions != std::nullopt) {
m_shortcutTable->setColumnCount(2);
m_actionList = *shortcutOptions;
m_shortcutTable->setRowCount(static_cast<int>(m_actionList.size()));
for (auto index = 0; index < m_actionList.size(); ++index) {
const auto& shortcut = m_actionList[index];
m_shortcutTable->setCellWidget(index, 0, new QLabel(shortcut.toString()));
auto* deleteButton = new QPushButton("Delete", this);
m_shortcutTable->setCellWidget(index, 1, deleteButton);
connect(m_shortcutTable, &QTableWidget::cellClicked, this, &ShortcutCollector::removeShortcut);
}
} else {
qWarning("No shortcuts found for %s", actionTypeToString(action));
}
setLayout(m_layout);
}
void ShortcutCollector::removeShortcut(int row, int) {
auto keySequence = m_actionList[row];
auto result = m_shortcuts.remove(keySequence);
if (result == FudStatus::Success) {
m_actionList.removeAt(row);
}
else {
qCritical("What");
}
}
Settings::Settings(QWidget* parent, Shortcuts&& shortcuts) : QDialog{parent}, m_shortcuts{std::move(shortcuts)}
{
auto* layout = new QVBoxLayout();
setWindowTitle("getsuyomi settings");
if (!m_shortcuts.valid()) {
return;
}
for (const auto& action : m_shortcuts.actions()) {
auto* collector = new ShortcutCollector(this, action, shortcuts);
layout->addWidget(collector);
}
setLayout(layout);
}
bool Settings::valid() const {
return m_shortcuts.valid();
}
const Shortcuts& Settings::shortcuts() const {
return m_shortcuts;
}
} // namespace getsuyomi
|