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.
34 lines
874 B
34 lines
874 B
15 years ago
|
/* $Id$ */
|
||
|
|
||
|
#include "kchartWizardSelectDataPage.h"
|
||
|
|
||
14 years ago
|
#include <tqlabel.h>
|
||
|
#include <tqlineedit.h>
|
||
15 years ago
|
#include <kdebug.h>
|
||
|
|
||
|
namespace KChart
|
||
|
{
|
||
|
|
||
13 years ago
|
KChartWizardSelectDataPage::KChartWizardSelectDataPage( TQWidget* parent ) :
|
||
|
TQWidget( parent )
|
||
15 years ago
|
{
|
||
14 years ago
|
rangeED = new TQLineEdit( this, "LineEdit_1" );
|
||
15 years ago
|
rangeED->setGeometry( 10, 90, 380, 30 );
|
||
|
rangeED->setText( "" );
|
||
|
|
||
14 years ago
|
TQLabel* tmpTQLabel;
|
||
|
tmpTQLabel = new TQLabel( this, "Label_1" );
|
||
|
tmpTQLabel->setGeometry( 10, 30, 360, 20 );
|
||
|
tmpTQLabel->setText( "If the selected cells dont match your table," );
|
||
15 years ago
|
|
||
14 years ago
|
tmpTQLabel = new TQLabel( this, "Label_2" );
|
||
|
tmpTQLabel->setGeometry( 10, 50, 360, 20 );
|
||
|
tmpTQLabel->setText( "you must select another rectangular area here." );
|
||
15 years ago
|
|
||
|
kdDebug(35001) << "send needNewData() signal here and update area field in KChartWizard" << endl;
|
||
|
|
||
|
setMinimumSize( 600, 300 );
|
||
|
}
|
||
|
|
||
|
} //namespace KChart
|