00001
00002
00003
00004
00005
00006 #include "output.h"
00007
00008 #include <qmultilineedit.h>
00009 #include <qpushbutton.h>
00010 #include <qlayout.h>
00011 #include <qvariant.h>
00012 #include <qtooltip.h>
00013 #include <qwhatsthis.h>
00014
00015 Output::Output( QWidget* parent, const char* name, bool modal, WFlags fl )
00016 : QDialog( parent, name, modal, fl )
00017 {
00018 if ( !name )
00019 setName( "Output" );
00020 resize( 196, 269 );
00021 setCaption( name );
00022 OutputLayout = new QGridLayout( this );
00023 OutputLayout->setSpacing( 6 );
00024 OutputLayout->setMargin( 11 );
00025
00026 OutputEdit = new QMultiLineEdit( this, "OutputEdit" );
00027
00028 OutputLayout->addWidget( OutputEdit, 0, 0 );
00029 }
00030
00031
00032
00033
00034 Output::~Output()
00035 {
00036
00037 }
00038