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
|
//=============================================================================
//
// File : OptionsWidget_query.cpp
// Creation date : Mon Oct 29 15:37:16 2001 GMT by Szymon Stefanek
//
// This file is part of the KVIrc IRC client distribution
// Copyright (C) 2001-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_query.h"
#include "KviOptions.h"
#include "KviLocale.h"
#include "kvi_settings.h"
#include <QLayout>
OptionsWidget_query::OptionsWidget_query(QWidget * parent)
: KviOptionsWidget(parent)
{
setObjectName("query_options_widget");
createLayout();
KviBoolSelector * b;
KviTalGroupBox * g;
g = addGroupBox(0, 0, 1, 0, Qt::Horizontal, __tr2qs_ctx("Open Query for", "options"));
b = addBoolSelector(g, __tr2qs_ctx("Private messages", "options"), KviOption_boolCreateQueryOnPrivmsg);
mergeTip(b, __tr2qs_ctx("This option enables query window creation "
"when a private message (PRIVMSG) is received.<br>"
"If you disable this, private messages will "
"be shown in the active window or a common channel.",
"options"));
b = addBoolSelector(g, __tr2qs_ctx("Private notices", "options"), KviOption_boolCreateQueryOnNotice);
mergeTip(b, __tr2qs_ctx("This option enables query window creation "
"when a private notice (NOTICE) is received.<br>"
"If you disable this, private notices will "
"be shown in the active window or a common channel.",
"options"));
b = addBoolSelector(0, 1, 1, 1, __tr2qs_ctx("Open incoming query windows without focus", "options"), KviOption_boolCreateIncomingQueriesAsMinimized);
mergeTip(b, __tr2qs_ctx("This option prevents incoming "
"query windows from diverting application focus.<br>"
"Enable this if you don't like queries "
"popping up while you're typing something in a channel.",
"options"));
b = addBoolSelector(0, 2, 1, 2, __tr2qs_ctx("Enable target user tracking", "options"), KviOption_boolEnableQueryTracing);
mergeTip(b, __tr2qs_ctx("This option will enable target user tracking.<br>"
"Some actions of the target user (e.g. joins and parts) "
"will be displayed in the window.",
"options"));
#if(defined(COMPILE_ON_WINDOWS) || defined(COMPILE_KDE_SUPPORT) || defined(COMPILE_ON_MINGW))
b = addBoolSelector(0, 3, 1, 3, __tr2qs_ctx("Flash system taskbar on new query message", "options"), KviOption_boolFlashQueryWindowOnNewMessages);
mergeTip(b, __tr2qs_ctx("This option causes the system taskbar entry for KVIrc to flash when a new query message "
"is received and the KVIrc window is not the active.",
"options"));
#endif
b = addBoolSelector(0, 4, 1, 4, __tr2qs_ctx("Popup notifier on new query message", "options"), KviOption_boolPopupNotifierOnNewQueryMessages);
mergeTip(b, __tr2qs_ctx("This option causes a small notifier window to pop up "
"in the lower right corner of the screen when a new message is received "
"and the KVIrc window is not active.",
"options"));
b = addBoolSelector(0, 5, 1, 5, __tr2qs_ctx("Popup notifier on new notice", "options"), KviOption_boolPopupNotifierOnNewNotices);
mergeTip(b, __tr2qs_ctx("This option causes a small notifier window to pop up "
"in the lower right corner of the screen when a new notice is received "
"and the KVIrc window is not active.",
"options"));
b = addBoolSelector(0, 6, 1, 6, __tr2qs_ctx("Show information about query target at the top of the query", "options"), KviOption_boolShowExtendedInfoInQueryLabel);
mergeTip(b, __tr2qs_ctx("This option enables query window information "
"label. It can show you known information about query target at the top of the window.<br>"
"Uncheck if you think,that it wastes your query space",
"options"));
b = addBoolSelector(0, 7, 1, 7, __tr2qs_ctx("Paste last query log", "options"), KviOption_boolPasteLastLogOnQueryJoin);
KviTalHBox * box = new KviTalHBox(this);
addWidgetToLayout(box, 0, 8, 1, 8);
KviUIntSelector * u;
u = addUIntSelector(box, __tr2qs_ctx("Paste up to:", "options"), KviOption_uintLinesToPasteOnQueryJoin, 0, 50, 10,
KVI_OPTION_BOOL(KviOption_boolPasteLastLogOnQueryJoin));
u->setSuffix(__tr2qs_ctx(" lines", "options"));
mergeTip(u, __tr2qs_ctx("Minimum value: <b>0 lines</b><br>Maximum value: <b>50 lines</b>", "options"));
connect(b, SIGNAL(toggled(bool)), u, SLOT(setEnabled(bool)));
u = addUIntSelector(box, __tr2qs_ctx("Interval:", "options"), KviOption_uintDaysIntervalToPasteOnQueryJoin, 1, 10, 10,
KVI_OPTION_BOOL(KviOption_boolPasteLastLogOnQueryJoin));
u->setSuffix(__tr2qs_ctx(" days", "options"));
mergeTip(u, __tr2qs_ctx("Minimum value: <b>0 days</b><br>Maximum value: <b>10 days</b>", "options"));
connect(b, SIGNAL(toggled(bool)), u, SLOT(setEnabled(bool)));
addRowSpacer(0, 9, 1, 9);
}
OptionsWidget_query::~OptionsWidget_query()
{
}
|