diff options
Diffstat (limited to 'kchart/kchartComboConfigPage.cpp')
-rw-r--r-- | kchart/kchartComboConfigPage.cpp | 137 |
1 files changed, 137 insertions, 0 deletions
diff --git a/kchart/kchartComboConfigPage.cpp b/kchart/kchartComboConfigPage.cpp new file mode 100644 index 00000000..dcf99e4a --- /dev/null +++ b/kchart/kchartComboConfigPage.cpp @@ -0,0 +1,137 @@ +/* This file is part of the KDE project + Copyright (C) 2001,2002,2003,2004 Laurent Montel <[email protected]> + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. +*/ + +#include "kchartComboConfigPage.h" +#include "kchartComboConfigPage.moc" + +#include <tdeapplication.h> +#include <tdelocale.h> +#include <kdebug.h> +#include <kdialog.h> +#include <tqlayout.h> +#include <tqlabel.h> +#include <tqradiobutton.h> +#include <tqbuttongroup.h> + +#include "kchart_params.h" + +namespace KChart +{ + +KChartComboPage::KChartComboPage( KChartParams* params, + TQWidget* parent ) : + TQWidget( parent ),_params( params ) +{ + //TQVBoxLayout* toplevel = new TQVBoxLayout( this, 10 ); + + TQGridLayout* layout = new TQGridLayout(this, 2, 2,KDialog::marginHint(), KDialog::spacingHint() ); + //toplevel->addLayout( layout ); + TQButtonGroup* gb = new TQButtonGroup( i18n("HLC Style"), this ); + TQGridLayout *grid1 = new TQGridLayout(gb,7,1,KDialog::marginHint(), KDialog::spacingHint()); + layout->addWidget(gb,0,0); + + diamond=new TQRadioButton( i18n("Diamond"), gb ); ; + grid1->addWidget(diamond,0,0); + closeconnected=new TQRadioButton( i18n("Close connected"), gb ); + grid1->addWidget(closeconnected,1,0); + connecting=new TQRadioButton( i18n("Connecting"), gb ); + grid1->addWidget(connecting,2,0); + icap=new TQRadioButton( i18n("Icap"), gb ); + grid1->addWidget(icap,3,0); + gb->setAlignment(TQt::AlignLeft); + grid1->addColSpacing(0,diamond->width()); + grid1->addColSpacing(0,closeconnected->width()); + grid1->addColSpacing(0,connecting->width()); + grid1->addColSpacing(0,icap->width()); + grid1->setColStretch(0,1); + grid1->activate(); + //it's not good but I don't know how + //to reduce space + layout->addColSpacing(1,300); +} + +void KChartComboPage::init() +{ + tqDebug( "Sorry, not implemented: KChartComboPage::init()" ); +#ifdef __GNUC__ +#warning Put back in +#endif +#ifdef K + switch((int)_params->hlc_style) + { + case (int)KCHARTHLCSTYLE_DIAMOND: + { + diamond->setChecked(true); + break; + } + case (int)KCHARTHLCSTYLE_CLOSECONNECTED: + { + closeconnected->setChecked(true); + break; + } + case (int)KCHARTHLCSTYLE_CONNECTING: + { + connecting->setChecked(true); + break; + } + case (int)KCHARTHLCSTYLE_ICAP: + { + icap->setChecked(true); + break; + } + default: + { + kdDebug(35001)<<"Error in hlc_style\n"; + break; + } + } +#endif +} + +void KChartComboPage::apply() +{ + tqDebug( "Sorry, not implemented: KChartComboPage::apply()" ); +#ifdef __GNUC__ +#warning Put back in +#endif +#ifdef K + if(diamond->isChecked()) + { + _params->hlc_style = KCHARTHLCSTYLE_DIAMOND; + } + else if(closeconnected->isChecked()) + { + _params->hlc_style = KCHARTHLCSTYLE_CLOSECONNECTED; + } + else if(connecting->isChecked()) + { + _params->hlc_style = KCHARTHLCSTYLE_CONNECTING; + } + else if(icap->isChecked()) + { + _params->hlc_style = KCHARTHLCSTYLE_ICAP; + } + else + { + kdDebug(35001)<<"Error in groupbutton\n"; + } +#endif +} + +} //KChart namespace |