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.
koffice/kchart/kchartWizardSelectDataPage.cc

34 lines
859 B

/* $Id$ */
#include "kchartWizardSelectDataPage.h"
#include <qlabel.h>
#include <qlineedit.h>
#include <kdebug.h>
namespace KChart
{
KChartWizardSelectDataPage::KChartWizardSelectDataPage( QWidget* parent ) :
QWidget( parent )
{
rangeED = new QLineEdit( this, "LineEdit_1" );
rangeED->setGeometry( 10, 90, 380, 30 );
rangeED->setText( "" );
QLabel* tmpQLabel;
tmpQLabel = new QLabel( this, "Label_1" );
tmpQLabel->setGeometry( 10, 30, 360, 20 );
tmpQLabel->setText( "If the selected cells dont match your table," );
tmpQLabel = new QLabel( this, "Label_2" );
tmpQLabel->setGeometry( 10, 50, 360, 20 );
tmpQLabel->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