kopete/kopete
behaviorconfig_general.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #include "behaviorconfig_general.h"
00019
00020 BehaviorConfig_General::BehaviorConfig_General(QWidget *parent)
00021 : QWidget(parent)
00022 {
00023 setupUi(this);
00024
00025 connect(kcfg_useMessageQueue, SIGNAL(toggled(bool)), this, SLOT(queueToggled(bool)));
00026 connect(kcfg_useMessageStack, SIGNAL(toggled(bool)), this, SLOT(queueToggled(bool)));
00027 }
00028
00029 void BehaviorConfig_General::queueToggled(bool checked)
00030 {
00031 kcfg_queueUnreadMessages->setEnabled(checked);
00032 }
00033
00034 #include "behaviorconfig_general.moc"