/**************************************************************************** ** Form implementation generated from reading ui file 'form1.ui' ** ** Created: Fri Dec 10 16:41:10 2004 ** by: The User Interface Compiler (uic) ** ** WARNING! All changes made in this file will be lost! ****************************************************************************/ #include "form1.h" #include #include #include #include #include #include #include #include #include #include static QPixmap uic_load_pixmap_Form1( const QString &name ) { const QMimeSource *m = QMimeSourceFactory::defaultFactory()->data( name ); if ( !m ) return QPixmap(); QPixmap pix; QImageDrag::decode( m, pix ); return pix; } /* * Constructs a Form1 which is a child of 'parent', with the * name 'name' and widget flags set to 'f'. * * The dialog will by default be modeless, unless you set 'modal' to * TRUE to construct a modal dialog. */ Form1::Form1( QWidget* parent, const char* name, bool modal, WFlags fl ) : QDialog( parent, name, modal, fl ) { if ( !name ) setName( "Form1" ); resize( 600, 480 ); setCaption( trUtf8( "Form1" ) ); CheckBox1 = new QCheckBox( this, "CheckBox1" ); CheckBox1->setGeometry( QRect( 261, 91, 209, 19 ) ); CheckBox1->setText( trUtf8( "Laat de winnende zet zien" ) ); TextLabel1 = new QLabel( this, "TextLabel1" ); TextLabel1->setGeometry( QRect( 261, 116, 209, 33 ) ); TextLabel1->setFrameShape( QLabel::Box ); TextLabel1->setText( trUtf8( "Winnende Zet: Stapel: 04, Aantal: 2" ) ); } /* * Destroys the object and frees any allocated resources */ Form1::~Form1() { // no need to delete child widgets, Qt does it all for us }