summaryrefslogtreecommitdiffstats
path: root/kchart/kchartWizardSelectDataFormatPage.cc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2021-05-23 20:48:35 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2021-05-29 15:16:28 +0900
commit8b78a8791bc539bcffe7159f9d9714d577cb3d7d (patch)
tree1328291f966f19a22d7b13657d3f01a588eb1083 /kchart/kchartWizardSelectDataFormatPage.cc
parent95834e2bdc5e01ae1bd21ac0dfa4fa1d2417fae9 (diff)
downloadkoffice-8b78a8791bc539bcffe7159f9d9714d577cb3d7d.tar.gz
koffice-8b78a8791bc539bcffe7159f9d9714d577cb3d7d.zip
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kchart/kchartWizardSelectDataFormatPage.cc')
-rw-r--r--kchart/kchartWizardSelectDataFormatPage.cc113
1 files changed, 0 insertions, 113 deletions
diff --git a/kchart/kchartWizardSelectDataFormatPage.cc b/kchart/kchartWizardSelectDataFormatPage.cc
deleted file mode 100644
index d40e95fe7..000000000
--- a/kchart/kchartWizardSelectDataFormatPage.cc
+++ /dev/null
@@ -1,113 +0,0 @@
-
-#include "kchartWizardSelectDataFormatPage.h"
-#include "kchart_view.h"
-#include "kchart_part.h"
-
-#include <tqhbox.h>
-#include <tqcheckbox.h>
-#include <tqlayout.h>
-#include <tqlabel.h>
-#include <tqlineedit.h>
-#include <tqlistbox.h>
-#include <tqbuttongroup.h>
-#include <tqvbuttongroup.h>
-#include <tqpushbutton.h>
-#include <tqradiobutton.h>
-#include <tqlineedit.h>
-#include <tqpainter.h>
-
-#include <kdebug.h>
-#include <kiconloader.h>
-#include <tdeglobal.h>
-#include <tdelocale.h>
-#include <kdialog.h>
-
-#include "kchart_params.h"
-
-namespace KChart
-{
-
-KChartWizardSelectDataFormatPage::KChartWizardSelectDataFormatPage( TQWidget* parent,
- KChartPart* chart ) :
- TQWidget( parent ),
- m_chart( chart )
-{
- TQGridLayout *grid1 = new TQGridLayout(this, 6, 1, KDialog::marginHint(),
- KDialog::spacingHint());
-
- // The Data Area
- TQButtonGroup *gb1 = new TQVButtonGroup( i18n( "Data Area" ), this );
-
- TQHBox *hbox = new TQHBox( gb1 );
- (void) new TQLabel( i18n("Area: "), hbox);
- m_dataArea = new TQLineEdit( hbox );
- grid1->addWidget(gb1, 0, 0);
-
- // The row/column as label checkboxes.
- m_firstRowAsLabel = new TQCheckBox( i18n( "First row as label" ), gb1);
- m_firstColAsLabel = new TQCheckBox( i18n( "First column as label" ), gb1);
-
- // The Data Format button group
- TQButtonGroup *gb = new TQVButtonGroup( i18n( "Data Format" ), this );
-
- m_rowMajor = new TQRadioButton( i18n( "Data in rows" ), gb );
- m_rowMajor->resize( m_rowMajor->sizeHint() );
-
- m_colMajor = new TQRadioButton( i18n( "Data in columns" ), gb );
- m_colMajor->resize( m_colMajor->sizeHint() );
-
- grid1->addWidget(gb, 3, 0);
-
- TQLabel *lbl = new TQLabel( i18n(
- "\n"
- "If the selected data area does not match the data you want,\n"
- "select the data now.\n"
- "\n"
- "Include cells that you want to use as row and column labels,\n"
- "if you want them in the chart.\n"
- ), this);
- grid1->addWidget(lbl, 4, 0);
-
- grid1->setColStretch(5, 0);
-
- grid1->activate();
-
- // Enter the data into the widgets.
- if ( m_chart->params()->dataDirection() == KChartParams::DataColumns)
- m_colMajor->setChecked(true);
- else
- m_rowMajor->setChecked(true);
-
- m_dataArea->setText( m_chart->params()->dataArea() );
-}
-
-
-TQString KChartWizardSelectDataFormatPage::dataArea() const
-{
- return m_dataArea->text();
-}
-
-void KChartWizardSelectDataFormatPage::setDataArea( const TQString &area )
-{
- m_dataArea->setText( area );
-}
-
-
-void KChartWizardSelectDataFormatPage::apply()
-{
- if (m_rowMajor->isChecked())
- m_chart->params()->setDataDirection( KChartParams::DataRows );
- else
- m_chart->params()->setDataDirection( KChartParams::DataColumns );
-
- m_chart->params()->setFirstRowAsLabel( m_firstRowAsLabel->isChecked() );
- m_chart->params()->setFirstColAsLabel( m_firstColAsLabel->isChecked() );
-
- m_chart->params()->setDataArea( m_dataArea->text() );
- // FIXME: Actually take use the new data area.
-}
-
-
-} //KChart namespace
-
-#include "kchartWizardSelectDataFormatPage.moc"