aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/options/OptionsWidget_lag.cpp30
1 files changed, 16 insertions, 14 deletions
diff --git a/src/modules/options/OptionsWidget_lag.cpp b/src/modules/options/OptionsWidget_lag.cpp
index a58439e70..1f9e4557a 100644
--- a/src/modules/options/OptionsWidget_lag.cpp
+++ b/src/modules/options/OptionsWidget_lag.cpp
@@ -40,28 +40,30 @@ OptionsWidget_lag::OptionsWidget_lag(QWidget * parent)
KviBoolSelector * pUse = addBoolSelector(0, 0, 0, 0, __tr2qs_ctx("Enable lag meter", "options"), KviOption_boolUseLagMeterEngine);
mergeTip(pUse, __tr2qs_ctx("This enables the lag meter engine, which checks at regular intervals how much latency the server has.", "options"));
KviTalGroupBox * g = addGroupBox(0, 1, 0, 1, Qt::Horizontal, __tr2qs_ctx("Configuration", "options"), KVI_OPTION_BOOL(KviOption_boolUseLagMeterEngine));
- KviUIntSelector * pInterval = addUIntSelector(g, __tr2qs_ctx("Lag meter heartbeat:", "options"), KviOption_uintLagMeterHeartbeat, 2000, 10000, 5000, KVI_OPTION_BOOL(KviOption_boolUseLagMeterEngine));
+ KviUIntSelector * pInterval = addUIntSelector(g, __tr2qs_ctx("Lag meter heartbeat:", "options"), KviOption_uintLagMeterHeartbeat, 2000, 10000, 5000,
+ KVI_OPTION_BOOL(KviOption_boolUseLagMeterEngine));
pInterval->setSuffix(__tr2qs_ctx(" msec", "options"));
- mergeTip(pInterval,
- __tr2qs_ctx("This option allows you to set the lag meter heartbeat interval.<br>"
- "The lower the heartbeat interval the higher will be the accuracy of the lag check "
- "but also higher CPU usage and data traffic to the server.<br>"
- "Please note that this is NOT the interval between pings sent to the server: "
- "the pings (if any) will be sent really less often. "
- "5000 is a reasonable value.",
- "options"));
+ mergeTip(pInterval, __tr2qs_ctx("This option allows you to set the lag meter heartbeat interval.<br>"
+ "The lower the heartbeat interval the higher will be the accuracy of the lag check "
+ "but also higher CPU usage and data traffic to the server.<br>"
+ "Please note that this is NOT the interval between pings sent to the server: "
+ "the pings (if any) will be sent really less often. "
+ "5000 is a reasonable value.", "options"));
+
connect(pUse, SIGNAL(toggled(bool)), pInterval, SLOT(setEnabled(bool)));
- KviUIntSelector * pAlarm = addUIntSelector(g, __tr2qs_ctx("Trigger event if lag exceeds:", "options"), KviOption_uintLagAlarmTime, 5000, 1000000, 30000, KVI_OPTION_BOOL(KviOption_boolUseLagMeterEngine));
+ KviUIntSelector * pAlarm = addUIntSelector(g, __tr2qs_ctx("Trigger event if lag exceeds:", "options"), KviOption_uintLagAlarmTime, 5000, 1000000, 30000,
+ KVI_OPTION_BOOL(KviOption_boolUseLagMeterEngine));
pAlarm->setSuffix(__tr2qs_ctx(" msec", "options"));
mergeTip(pAlarm, __tr2qs_ctx("This option controls the threshold for the "
- "OnLagAlarmTimeUp and OnLagAlarmTimeDown events. When the lag goes above "
+ "OnLagAlarmTimeUp and OnLagAlarmTimeDown events. When the lag goes above "
"the threshold OnLagAlarmTimeUp will be triggered and when the lag falls "
- "back below the threshold then OnLagAlarmTimeDown will be triggered",
- "options"));
+ "back below the threshold then OnLagAlarmTimeDown will be triggered", "options"));
+
connect(pUse, SIGNAL(toggled(bool)), pAlarm, SLOT(setEnabled(bool)));
- KviBoolSelector * pShow = addBoolSelector(g, __tr2qs_ctx("Show lag in IRC context display", "options"), KviOption_boolShowLagOnContextDisplay, KVI_OPTION_BOOL(KviOption_boolUseLagMeterEngine));
+ KviBoolSelector * pShow = addBoolSelector(g, __tr2qs_ctx("Show lag in IRC context display", "options"), KviOption_boolShowLagOnContextDisplay,
+ KVI_OPTION_BOOL(KviOption_boolUseLagMeterEngine));
mergeTip(pShow, __tr2qs_ctx("This makes the IRC context display applet show the current lag after the user's nickname (in seconds)", "options"));
connect(pUse, SIGNAL(toggled(bool)), pShow, SLOT(setEnabled(bool)));