From d63c9d696eb6e2539528b99afc21f4086c9defe3 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 23 May 2021 20:48:35 +0900 Subject: Renaming of files in preparation for code style tools. Signed-off-by: Michele Calgaro (cherry picked from commit 8b78a8791bc539bcffe7159f9d9714d577cb3d7d) --- kchart/kchartComboConfigPage.cpp | 137 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 137 insertions(+) create mode 100644 kchart/kchartComboConfigPage.cpp (limited to 'kchart/kchartComboConfigPage.cpp') 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 + + 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 +#include +#include +#include +#include +#include +#include +#include + +#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 -- cgit v1.2.1