You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
konversation/konversation/src/tabs_preferences.cpp

60 lines
1.4 KiB

/*
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.
*/
/*
Copyright (C) 2006 Eike Hein <hein@kde.org>
*/
#include "tabs_preferences.h"
#include "tabs_preferencesui.h"
#include <tqcombobox.h>
#include <tqcheckbox.h>
Tabs_Config::Tabs_Config(TQWidget *parent, const char *name)
: Tabs_PreferencesUI(parent, name)
{
connect(kcfg_TabPlacement, TQ_SIGNAL(activated(int)), this, TQ_SLOT(toggleCheckBoxes(int)));
}
Tabs_Config::~Tabs_Config()
{
}
void Tabs_Config::show()
{
TQWidget::show();
if (kcfg_TabPlacement->currentItem() == 0 || kcfg_TabPlacement->currentItem() == 1)
{
kcfg_ShowTabBarCloseButton->setEnabled(true);
kcfg_UseMaxSizedTabs->setEnabled(true);
}
else
{
kcfg_ShowTabBarCloseButton->setEnabled(false);
kcfg_UseMaxSizedTabs->setEnabled(false);
}
}
void Tabs_Config::toggleCheckBoxes(int activated)
{
if (activated == 0 || activated == 1)
{
kcfg_ShowTabBarCloseButton->setEnabled(true);
kcfg_UseMaxSizedTabs->setEnabled(true);
}
else
{
kcfg_ShowTabBarCloseButton->setEnabled(false);
kcfg_UseMaxSizedTabs->setEnabled(false);
}
}
#include "tabs_preferences.moc"