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     copyright            : (C) 2000 -2004 by llornkcor
00006     email                : ljp@llornkcor.com
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  *  Destroys the object and frees any allocated resources
00031  */
00032 Output::~Output()
00033 {
00034     // no need to delete child widgets, Qt does it all for us
00035 }
00036 

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