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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
|
//=============================================================================
//
// File : OptionsWidget_windowList.cpp
// Creation date : Wed Jan 16 04:30:39 2002 GMT by Szymon Stefanek
//
// This file is part of the KVIrc IRC client distribution
// Copyright (C) 2002-2010 Szymon Stefanek (pragma at kvirc dot net)
//
// This program is FREE software. You can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the HOPE that it will be USEFUL,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// See the GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, write to the Free Software Foundation,
// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//
//=============================================================================
#include "OptionsWidget_windowList.h"
#include "kvi_settings.h"
#include "KviLocale.h"
#define _WANT_OPTION_FLAGS_
#include "KviOptions.h"
#include <string>
#include <vector>
OptionsWidget_windowList::OptionsWidget_windowList(QWidget * parent)
: KviOptionsWidget(parent)
{
setObjectName("windowlist_options_widget");
createLayout();
KviTalHBox * hbox = new KviTalHBox(this);
(void)new QLabel(__tr2qs_ctx("Window list type:", "options"), hbox);
m_pWindowListType = new QComboBox(hbox);
m_pWindowListType->addItem(__tr2qs_ctx("Tree", "options"));
m_pWindowListType->addItem(__tr2qs_ctx("Classic", "options"));
m_pWindowListType->setCurrentIndex(KVI_OPTION_BOOL(KviOption_boolUseTreeWindowList) ? 0 : 1);
addWidgetToLayout(hbox, 0, 0, 0, 0);
addBoolSelector(0, 1, 0, 1, __tr2qs_ctx("Sort windows by name", "options"), KviOption_boolSortWindowListItemsByName);
addBoolSelector(0, 2, 0, 2, __tr2qs_ctx("Show window icons in window list", "options"), KviOption_boolUseWindowListIcons);
KviBoolSelector * b = addBoolSelector(0, 3, 0, 3, __tr2qs_ctx("Show activity meter in window list", "options"), KviOption_boolUseWindowListActivityMeter);
mergeTip(b, __tr2qs_ctx("This option enables the usage of the window list activity meter. "
"Each window entry will have a small indicator of the activity that is going on in that window. "
"The indicator is a small square that changes colors, dark colors mean low activity, "
"while bright colors signal high activity. KVIrc also uses some heuristics to determine "
"whether the activity is somewhat \"human\" or it is generated by automated entities (such as bots "
"or IRC servers). \"Human\" activity causes the indicator to be shaded red while automated "
"activity causes the indicator to be shaded blue.", "options"));
addBoolSelector(0, 4, 0, 4, __tr2qs_ctx("Show IRC context indicator in window list", "options"), KviOption_boolUseWindowListIrcContextIndicator);
addBoolSelector(0, 5, 0, 5, __tr2qs_ctx("Enable window tooltips", "options"), KviOption_boolShowWindowListToolTips);
addBoolSelector(0, 6, 0, 6, __tr2qs_ctx("Allow the window list to be moved", "options"), KviOption_boolShowTreeWindowListHandle);
addBoolSelector(0, 7, 0, 7, __tr2qs_ctx("Show user flag for channels", "options"), KviOption_boolShowUserFlagForChannelsInWindowList);
addRowSpacer(0, 8, 0, 8);
}
OptionsWidget_windowList::~OptionsWidget_windowList()
= default;
void OptionsWidget_windowList::commit()
{
// we need to add this flag manually to the reset list because there's no other
// option in this options widget that uses it.
mergeResetFlag(KviOption_resetUpdateWindowList);
KVI_OPTION_BOOL(KviOption_boolUseTreeWindowList) = (m_pWindowListType->currentIndex() == 0);
KviOptionsWidget::commit();
}
OptionsWidget_windowListTree::OptionsWidget_windowListTree(QWidget * parent)
: KviOptionsWidget(parent)
{
setObjectName("treewindowlist_options_widget");
}
OptionsWidget_windowListTree::~OptionsWidget_windowListTree()
= default;
void addAlertLevels(KviOptionsWidget * widget, KviTalGroupBox * g)
{
const QString available_options_text = __tr2qs_ctx("The following events trigger this alert level:", "options");
const int alert_levels[5] = {
KviOption_colorTreeWindowListHighlight1Foreground,
KviOption_colorTreeWindowListHighlight2Foreground,
KviOption_colorTreeWindowListHighlight3Foreground,
KviOption_colorTreeWindowListHighlight4Foreground,
KviOption_colorTreeWindowListHighlight5Foreground
};
// Add alert levels 1 through 5
for (int alert_level = KVI_MSGTYPE_MINLEVEL + 1; alert_level < KVI_MSGTYPE_MAXLEVEL + 1; alert_level++)
{
// Add the color selector
QString alert_level_qstr = "Alert level " + QString::number(alert_level) + ":";
QByteArray alert_level_ba = alert_level_qstr.toUtf8();
const int highlight_enum = alert_levels[alert_level - 1];
KviColorSelector * sel = widget->addColorSelector(g, __tr2qs_ctx(alert_level_ba.constData(), "options"), highlight_enum);
// Accumulate all message types for this alert level
std::vector<QString> alert_list;
for (int i = 0; i < KVI_NUM_MSGTYPE_OPTIONS; i++)
{
KviMessageTypeSettingsOption setting = g_msgtypeOptionsTable[i];
if (setting.option.level() == alert_level) {
// Trim the prefix off the setting name and store
alert_list.push_back(setting.name.mid(KVI_MSGTYPE_OPTIONS_PREFIX_LEN));
}
}
std::sort(alert_list.begin(), alert_list.end());
// Create the help text
QString help_text = available_options_text + "<br>";
for (const auto& alert_type : alert_list)
{
if (alert_type != alert_list.back())
help_text += alert_type + ", ";
else
help_text += alert_type;
}
widget->mergeTip(sel, help_text);
}
}
OptionsWidget_windowListTreeForeground::OptionsWidget_windowListTreeForeground(QWidget * parent)
: KviOptionsWidget(parent)
{
setObjectName("treewindowlist_options_widget");
createLayout();
addFontSelector(0, 0, 0, 0, __tr2qs_ctx("Font:", "options"), KviOption_fontTreeWindowList);
KviTalGroupBox * g = addGroupBox(0, 1, 0, 1, Qt::Horizontal, __tr2qs_ctx("Text/Alert Colors", "options"));
addColorSelector(g, __tr2qs_ctx("Normal:", "options"), KviOption_colorTreeWindowListForeground);
addColorSelector(g, __tr2qs_ctx("Selected:", "options"), KviOption_colorTreeWindowListActiveForeground);
addAlertLevels(this, g);
addColorSelector(0, 2, 0, 2, __tr2qs_ctx("Progress bar color:", "options"), KviOption_colorTreeWindowListProgress);
addRowSpacer(0, 3, 0, 3);
}
OptionsWidget_windowListTreeForeground::~OptionsWidget_windowListTreeForeground()
= default;
OptionsWidget_windowListTreeBackground::OptionsWidget_windowListTreeBackground(QWidget * parent)
: KviOptionsWidget(parent)
{
setObjectName("treewindowlist_options_widget");
createLayout();
KviTalGroupBox * g = addGroupBox(0, 0, 1, 0, Qt::Horizontal, __tr2qs_ctx("Background Colors", "options"));
addColorSelector(g, __tr2qs_ctx("Normal:", "options"), KviOption_colorTreeWindowListBackground);
addColorSelector(g, __tr2qs_ctx("Selected:", "options"), KviOption_colorTreeWindowListActiveBackground);
addPixmapSelector(0, 1, 1, 1, __tr2qs_ctx("Background image:", "options"), KviOption_pixmapTreeWindowListBackground);
addLabel(0, 2, 0, 2, __tr2qs_ctx("Horizontal align:", "options"));
m_pHorizontalAlign = new QComboBox(this);
addWidgetToLayout(m_pHorizontalAlign, 1, 2, 1, 2);
addLabel(0, 3, 0, 3, __tr2qs_ctx("Vertical align:", "options"));
m_pVerticalAlign = new QComboBox(this);
addWidgetToLayout(m_pVerticalAlign, 1, 3, 1, 3);
m_pHorizontalAlign->addItem(__tr2qs_ctx("Tile", "options"));
m_pHorizontalAlign->addItem(__tr2qs_ctx("Left", "options"));
m_pHorizontalAlign->addItem(__tr2qs_ctx("Right", "options"));
m_pHorizontalAlign->addItem(__tr2qs_ctx("Center", "options"));
m_pVerticalAlign->addItem(__tr2qs_ctx("Tile", "options"));
m_pVerticalAlign->addItem(__tr2qs_ctx("Top", "options"));
m_pVerticalAlign->addItem(__tr2qs_ctx("Bottom", "options"));
m_pVerticalAlign->addItem(__tr2qs_ctx("Center", "options"));
switch(KVI_OPTION_UINT(KviOption_uintTreeWindowListPixmapAlign) & Qt::AlignHorizontal_Mask)
{
case Qt::AlignLeft:
m_pHorizontalAlign->setCurrentIndex(1);
break;
case Qt::AlignRight:
m_pHorizontalAlign->setCurrentIndex(2);
break;
case Qt::AlignHCenter:
m_pHorizontalAlign->setCurrentIndex(3);
break;
default:
m_pHorizontalAlign->setCurrentIndex(0);
}
switch(KVI_OPTION_UINT(KviOption_uintTreeWindowListPixmapAlign) & Qt::AlignVertical_Mask)
{
case Qt::AlignTop:
m_pVerticalAlign->setCurrentIndex(1);
break;
case Qt::AlignBottom:
m_pVerticalAlign->setCurrentIndex(2);
break;
case Qt::AlignVCenter:
m_pVerticalAlign->setCurrentIndex(3);
break;
default:
m_pVerticalAlign->setCurrentIndex(0);
}
layout()->setRowStretch(1, 1);
}
OptionsWidget_windowListTreeBackground::~OptionsWidget_windowListTreeBackground()
= default;
void OptionsWidget_windowListTreeBackground::commit()
{
KviOptionsWidget::commit();
int iFlags = 0;
switch(m_pHorizontalAlign->currentIndex())
{
case 1:
iFlags |= Qt::AlignLeft;
break;
case 2:
iFlags |= Qt::AlignRight;
break;
case 3:
iFlags |= Qt::AlignHCenter;
break;
}
switch(m_pVerticalAlign->currentIndex())
{
case 1:
iFlags |= Qt::AlignTop;
break;
case 2:
iFlags |= Qt::AlignBottom;
break;
case 3:
iFlags |= Qt::AlignVCenter;
break;
}
KVI_OPTION_UINT(KviOption_uintTreeWindowListPixmapAlign) = iFlags;
}
OptionsWidget_windowListTreeFeatures::OptionsWidget_windowListTreeFeatures(QWidget * parent)
: KviOptionsWidget(parent)
{
setObjectName("treewindowlist_options_widget");
createLayout();
KviUIntSelector * u;
u = addUIntSelector(0, 1, 0, 1, __tr2qs_ctx("Minimum width:", "options"), KviOption_uintTreeWindowListMinimumWidth, 24, 1024, 125);
u->setSuffix(__tr2qs_ctx(" pixels", "options"));
addBoolSelector(0, 3, 0, 3, __tr2qs_ctx("Mouse wheel changes the active window instead of scrolling the scrollbar", "options"), KviOption_boolWheelScrollsWindowsList);
addRowSpacer(0, 4, 0, 4);
}
OptionsWidget_windowListTreeFeatures::~OptionsWidget_windowListTreeFeatures()
= default;
OptionsWidget_windowListClassic::OptionsWidget_windowListClassic(QWidget * parent)
: KviOptionsWidget(parent)
{
setObjectName("classicwindowlist_options_widget");
createLayout();
KviUIntSelector * u;
addFontSelector(0, 0, 0, 0, __tr2qs_ctx("Font:", "options"), KviOption_fontWindowList);
KviTalGroupBox * g = addGroupBox(0, 1, 0, 1, Qt::Horizontal, __tr2qs_ctx("Text/Alert Colors", "options"));
addColorSelector(g, __tr2qs_ctx("Normal:", "options"), KviOption_colorWindowListNormalText);
addColorSelector(g, __tr2qs_ctx("Minimized:", "options"), KviOption_colorWindowListMinimizedText);
addAlertLevels(this, g);
addColorSelector(0, 2, 0, 2, __tr2qs_ctx("Progress bar color:", "options"), KviOption_colorWindowListProgressBar);
u = addUIntSelector(0, 3, 0, 3, __tr2qs_ctx("Minimum width of buttons:", "options"), KviOption_uintWindowListButtonMinWidth, 24, 9999, 100);
u->setSuffix(__tr2qs_ctx(" pixels", "options"));
addBoolSelector(0, 4, 0, 4, __tr2qs_ctx("Set maximum button width", "options"), KviOption_boolClassicWindowListSetMaximumButtonWidth);
u = addUIntSelector(0, 5, 0, 5, __tr2qs_ctx("Maximum width of buttons:", "options"), KviOption_uintClassicWindowListMaximumButtonWidth, 24, 9999, 100);
u->setSuffix(__tr2qs_ctx(" pixels", "options"));
addBoolSelector(0, 6, 0, 6, __tr2qs_ctx("Use flat buttons", "options"), KviOption_boolUseFlatClassicWindowListButtons);
addBoolSelector(0, 7, 0, 7, __tr2qs_ctx("Show close button on window list items", "options"), KviOption_boolUseWindowListCloseButton);
addRowSpacer(0, 8, 0, 8);
}
OptionsWidget_windowListClassic::~OptionsWidget_windowListClassic()
= default;
|