Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

output.cpp

Go to the documentation of this file.
00001 /****************************************************************************
00002 ** outputEdit.cpp
00003 **
00004 ** Copyright: Fri Apr 12 15:12:58 2002 L.J. Potter <ljp@llornkcor.com>
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  *  Destroys the object and frees any allocated resources
00033  */
00034 Output::~Output()
00035 {
00036     // no need to delete child widgets, Qt does it all for us
00037 }
00038 

Generated on Sat Nov 5 16:16:47 2005 for OPIE by  doxygen 1.4.2