BibleTime
cresmgr.cpp
Go to the documentation of this file.
1/*********
2*
3* In the name of the Father, and of the Son, and of the Holy Spirit.
4*
5* This file is part of BibleTime's source code, https://bibletime.info/
6*
7* Copyright 1999-2025 by the BibleTime developers.
8* The BibleTime source code is licensed under the GNU General Public License
9* version 2.0.
10*
11**********/
12
13#include "cresmgr.h"
14
15#include <Qt>
16
17
18namespace CResMgr {
19
20namespace displaywindows {
21namespace general {
22namespace search {
23const QKeySequence accel(Qt::CTRL | Qt::Key_N);
24QString const actionName = QStringLiteral("window_search_action");
25}
26
27namespace backInHistory {
28const QKeySequence accel(Qt::ALT | Qt::Key_Left);
29QString const actionName = QStringLiteral("window_history_back_action");
30}
31namespace forwardInHistory {
32const QKeySequence accel(Qt::ALT | Qt::Key_Right);
33QString const actionName = QStringLiteral("window_history_forward_action");
34}
35namespace findStrongs {
36const QKeySequence accel;
37QString const actionName = QStringLiteral("window_find_strongs_action");
38}
39
40}
41namespace bibleWindow {
42namespace nextBook {
43const QKeySequence accel(Qt::CTRL | Qt::Key_Y);
44}
45namespace previousBook {
46const QKeySequence accel(Qt::CTRL | Qt::SHIFT | Qt::Key_Y);
47}
48
49namespace nextChapter {
50const QKeySequence accel(Qt::CTRL | Qt::Key_X);
51}
52namespace previousChapter {
53const QKeySequence accel(Qt::CTRL | Qt::SHIFT | Qt::Key_X);
54}
55namespace nextVerse {
56const QKeySequence accel(Qt::CTRL | Qt::Key_V);
57}
58namespace previousVerse {
59const QKeySequence accel(Qt::CTRL | Qt::SHIFT | Qt::Key_V);
60}
61}
62namespace commentaryWindow {
63namespace syncWindow {
64const QKeySequence accel(Qt::SHIFT | Qt::Key_S);
65QString const actionName = QStringLiteral("commentary_syncWindow");
66}
67}
68namespace lexiconWindow {
69namespace nextEntry {
70const QKeySequence accel(Qt::CTRL | Qt::Key_V);
71}
72namespace previousEntry {
73const QKeySequence accel(Qt::CTRL | Qt::SHIFT | Qt::Key_V);
74}
75}
76
77namespace writeWindow {
78
79//formatting buttons
80namespace boldText {
81const QKeySequence accel;
82}
83namespace italicText {
84const QKeySequence accel;
85}
86namespace underlinedText {
87const QKeySequence accel;
88}
89
90namespace alignLeft {
91const QKeySequence accel;
92}
93namespace alignCenter {
94const QKeySequence accel;
95}
96namespace alignRight {
97const QKeySequence accel;
98}
99namespace fontFamily {
100const QKeySequence accel;
101}
102namespace fontSize {
103const QKeySequence accel;
104}
105}
106}//displayWindows
107
108namespace mainIndex { // Bookshelf view
109namespace search {
110const QKeySequence accel(Qt::CTRL | Qt::ALT | Qt::Key_M);
111}
112}//mainIndex
113
114} // namespace CResMgr
const QKeySequence accel