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