|
a/src/qtgui/guiutils.h |
|
b/src/qtgui/guiutils.h |
|
... |
|
... |
122 |
|
122 |
|
123 |
// Program version that wrote this. Not used for now, in prevision
|
123 |
// Program version that wrote this. Not used for now, in prevision
|
124 |
// of the case where we might need an incompatible change
|
124 |
// of the case where we might need an incompatible change
|
125 |
int rclVersion;
|
125 |
int rclVersion;
|
126 |
|
126 |
|
|
|
127 |
bool showTrayIcon;
|
|
|
128 |
bool closeToTray;
|
|
|
129 |
|
127 |
// Advanced search window clause list state
|
130 |
// Advanced search window clause list state
|
128 |
vector<int> advSearchClauses;
|
131 |
vector<int> advSearchClauses;
|
129 |
|
132 |
|
130 |
// Default paragraph format for result list
|
133 |
// Default paragraph format for result list
|
131 |
static const char *dfltResListFormat;
|
134 |
static const char *dfltResListFormat;
|
|
... |
|
... |
138 |
ssearchTyp(0),
|
141 |
ssearchTyp(0),
|
139 |
queryBuildAbstract(true),
|
142 |
queryBuildAbstract(true),
|
140 |
queryReplaceAbstract(false),
|
143 |
queryReplaceAbstract(false),
|
141 |
startWithAdvSearchOpen(false),
|
144 |
startWithAdvSearchOpen(false),
|
142 |
termMatchType(0),
|
145 |
termMatchType(0),
|
143 |
rclVersion(1505)
|
146 |
rclVersion(1505),
|
144 |
{ }
|
147 |
showTrayIcon(false),
|
|
|
148 |
closeToTray(false)
|
|
|
149 |
{}
|
145 |
};
|
150 |
};
|
146 |
|
151 |
|
147 |
/** Global preferences record */
|
152 |
/** Global preferences record */
|
148 |
extern PrefsPack prefs;
|
153 |
extern PrefsPack prefs;
|
149 |
|
154 |
|