summaryrefslogtreecommitdiffstats
path: root/kchart/kchartWizardSelectDataPage.cpp
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/kchartWizardSelectDataPage.cpp
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/kchartWizardSelectDataPage.cpp')
-rw-r--r--kchart/kchartWizardSelectDataPage.cpp33
1 files changed, 33 insertions, 0 deletions
diff --git a/kchart/kchartWizardSelectDataPage.cpp b/kchart/kchartWizardSelectDataPage.cpp
new file mode 100644
index 000000000..40dafc123
--- /dev/null
+++ b/kchart/kchartWizardSelectDataPage.cpp
@@ -0,0 +1,33 @@
+/* $Id$ */
+
+#include "kchartWizardSelectDataPage.h"
+
+#include <tqlabel.h>
+#include <tqlineedit.h>
+#include <kdebug.h>
+
+namespace KChart
+{
+
+KChartWizardSelectDataPage::KChartWizardSelectDataPage( TQWidget* parent ) :
+ TQWidget( parent )
+{
+ rangeED = new TQLineEdit( this, "LineEdit_1" );
+ rangeED->setGeometry( 10, 90, 380, 30 );
+ rangeED->setText( "" );
+
+ TQLabel* tmpTQLabel;
+ tmpTQLabel = new TQLabel( this, "Label_1" );
+ tmpTQLabel->setGeometry( 10, 30, 360, 20 );
+ tmpTQLabel->setText( "If the selected cells dont match your table," );
+
+ tmpTQLabel = new TQLabel( this, "Label_2" );
+ tmpTQLabel->setGeometry( 10, 50, 360, 20 );
+ tmpTQLabel->setText( "you must select another rectangular area here." );
+
+ kdDebug(35001) << "send needNewData() signal here and update area field in KChartWizard" << endl;
+
+ setMinimumSize( 600, 300 );
+}
+
+} //namespace KChart