BibleTime
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
Functions
a
b
c
d
e
f
g
h
i
l
m
n
p
q
r
s
t
v
Variables
a
b
c
d
g
h
i
k
l
m
p
r
s
u
Typedefs
Enumerations
Enumerator
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
~
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
~
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Typedefs
Enumerations
Enumerator
a
b
c
d
e
f
g
h
i
l
m
n
p
r
s
t
u
w
Properties
Related Symbols
Files
File List
File Members
All
a
b
c
e
f
h
i
j
k
l
m
o
p
r
s
t
u
w
Functions
b
c
f
i
j
l
m
o
p
r
t
Variables
Typedefs
Enumerations
Enumerator
Macros
a
b
c
i
l
m
r
s
t
u
w
src
util
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
18
namespace
CResMgr
{
19
20
namespace
displaywindows {
21
namespace
general {
22
namespace
search {
23
const
QKeySequence
accel
(Qt::CTRL | Qt::Key_N);
24
QString
const
actionName
= QStringLiteral(
"window_search_action"
);
25
}
22
namespace
search {
…
}
26
27
namespace
backInHistory {
28
const
QKeySequence
accel
(Qt::ALT | Qt::Key_Left);
29
QString
const
actionName
= QStringLiteral(
"window_history_back_action"
);
30
}
27
namespace
backInHistory {
…
}
31
namespace
forwardInHistory {
32
const
QKeySequence
accel
(Qt::ALT | Qt::Key_Right);
33
QString
const
actionName
= QStringLiteral(
"window_history_forward_action"
);
34
}
31
namespace
forwardInHistory {
…
}
35
namespace
findStrongs {
36
const
QKeySequence
accel
;
37
QString
const
actionName
= QStringLiteral(
"window_find_strongs_action"
);
38
}
35
namespace
findStrongs {
…
}
39
40
}
21
namespace
general {
…
}
41
namespace
bibleWindow {
42
namespace
nextBook {
43
const
QKeySequence
accel
(Qt::CTRL | Qt::Key_Y);
44
}
42
namespace
nextBook {
…
}
45
namespace
previousBook {
46
const
QKeySequence
accel
(Qt::CTRL | Qt::SHIFT | Qt::Key_Y);
47
}
45
namespace
previousBook {
…
}
48
49
namespace
nextChapter {
50
const
QKeySequence
accel
(Qt::CTRL | Qt::Key_X);
51
}
49
namespace
nextChapter {
…
}
52
namespace
previousChapter {
53
const
QKeySequence
accel
(Qt::CTRL | Qt::SHIFT | Qt::Key_X);
54
}
52
namespace
previousChapter {
…
}
55
namespace
nextVerse {
56
const
QKeySequence
accel
(Qt::CTRL | Qt::Key_V);
57
}
55
namespace
nextVerse {
…
}
58
namespace
previousVerse {
59
const
QKeySequence
accel
(Qt::CTRL | Qt::SHIFT | Qt::Key_V);
60
}
58
namespace
previousVerse {
…
}
61
}
41
namespace
bibleWindow {
…
}
62
namespace
commentaryWindow {
63
namespace
syncWindow {
64
const
QKeySequence
accel
(Qt::SHIFT | Qt::Key_S);
65
QString
const
actionName
= QStringLiteral(
"commentary_syncWindow"
);
66
}
63
namespace
syncWindow {
…
}
67
}
62
namespace
commentaryWindow {
…
}
68
namespace
lexiconWindow {
69
namespace
nextEntry {
70
const
QKeySequence
accel
(Qt::CTRL | Qt::Key_V);
71
}
69
namespace
nextEntry {
…
}
72
namespace
previousEntry {
73
const
QKeySequence
accel
(Qt::CTRL | Qt::SHIFT | Qt::Key_V);
74
}
72
namespace
previousEntry {
…
}
75
}
68
namespace
lexiconWindow {
…
}
76
77
namespace
writeWindow {
78
79
//formatting buttons
80
namespace
boldText {
81
const
QKeySequence
accel
;
82
}
80
namespace
boldText {
…
}
83
namespace
italicText {
84
const
QKeySequence
accel
;
85
}
83
namespace
italicText {
…
}
86
namespace
underlinedText {
87
const
QKeySequence
accel
;
88
}
86
namespace
underlinedText {
…
}
89
90
namespace
alignLeft {
91
const
QKeySequence
accel
;
92
}
90
namespace
alignLeft {
…
}
93
namespace
alignCenter {
94
const
QKeySequence
accel
;
95
}
93
namespace
alignCenter {
…
}
96
namespace
alignRight {
97
const
QKeySequence
accel
;
98
}
96
namespace
alignRight {
…
}
99
namespace
fontFamily {
100
const
QKeySequence
accel
;
101
}
99
namespace
fontFamily {
…
}
102
namespace
fontSize {
103
const
QKeySequence
accel
;
104
}
102
namespace
fontSize {
…
}
105
}
77
namespace
writeWindow {
…
}
106
}
//displayWindows
20
namespace
displaywindows {
…
}
107
108
namespace
mainIndex {
// Bookshelf view
109
namespace
search {
110
const
QKeySequence
accel
(Qt::CTRL | Qt::ALT | Qt::Key_M);
111
}
109
namespace
search {
…
}
112
}
//mainIndex
108
namespace
mainIndex {
// Bookshelf view
{
…
}
113
114
}
// namespace CResMgr
18
namespace
CResMgr
{
…
}
cresmgr.h
CResMgr::displaywindows::bibleWindow::nextBook::accel
const QKeySequence accel
CResMgr::displaywindows::bibleWindow::nextChapter::accel
const QKeySequence accel
CResMgr::displaywindows::bibleWindow::nextVerse::accel
const QKeySequence accel
CResMgr::displaywindows::bibleWindow::previousBook::accel
const QKeySequence accel
CResMgr::displaywindows::bibleWindow::previousChapter::accel
const QKeySequence accel
CResMgr::displaywindows::bibleWindow::previousVerse::accel
const QKeySequence accel
CResMgr::displaywindows::commentaryWindow::syncWindow::accel
const QKeySequence accel
CResMgr::displaywindows::commentaryWindow::syncWindow::actionName
QString const actionName
Definition
cresmgr.cpp:65
CResMgr::displaywindows::general::backInHistory::actionName
QString const actionName
Definition
cresmgr.cpp:29
CResMgr::displaywindows::general::backInHistory::accel
const QKeySequence accel
CResMgr::displaywindows::general::findStrongs::actionName
QString const actionName
Definition
cresmgr.cpp:37
CResMgr::displaywindows::general::findStrongs::accel
const QKeySequence accel
Definition
cresmgr.cpp:36
CResMgr::displaywindows::general::forwardInHistory::actionName
QString const actionName
Definition
cresmgr.cpp:33
CResMgr::displaywindows::general::forwardInHistory::accel
const QKeySequence accel
CResMgr::displaywindows::general::search::accel
const QKeySequence accel
CResMgr::displaywindows::general::search::actionName
QString const actionName
Definition
cresmgr.cpp:24
CResMgr::displaywindows::lexiconWindow::nextEntry::accel
const QKeySequence accel
CResMgr::displaywindows::lexiconWindow::previousEntry::accel
const QKeySequence accel
CResMgr::displaywindows::writeWindow::alignCenter::accel
const QKeySequence accel
Definition
cresmgr.cpp:94
CResMgr::displaywindows::writeWindow::alignLeft::accel
const QKeySequence accel
Definition
cresmgr.cpp:91
CResMgr::displaywindows::writeWindow::alignRight::accel
const QKeySequence accel
Definition
cresmgr.cpp:97
CResMgr::displaywindows::writeWindow::boldText::accel
const QKeySequence accel
Definition
cresmgr.cpp:81
CResMgr::displaywindows::writeWindow::fontFamily::accel
const QKeySequence accel
Definition
cresmgr.cpp:100
CResMgr::displaywindows::writeWindow::fontSize::accel
const QKeySequence accel
Definition
cresmgr.cpp:103
CResMgr::displaywindows::writeWindow::italicText::accel
const QKeySequence accel
Definition
cresmgr.cpp:84
CResMgr::displaywindows::writeWindow::underlinedText::accel
const QKeySequence accel
Definition
cresmgr.cpp:87
CResMgr::mainIndex::search::accel
const QKeySequence accel
CResMgr
Definition
cresmgr.cpp:18
Generated by
1.9.8