summaryrefslogtreecommitdiff
path: root/noncore/tools/formatter/output.cpp
Unidiff
Diffstat (limited to 'noncore/tools/formatter/output.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/tools/formatter/output.cpp38
1 files changed, 38 insertions, 0 deletions
diff --git a/noncore/tools/formatter/output.cpp b/noncore/tools/formatter/output.cpp
new file mode 100644
index 0000000..6970f58
--- a/dev/null
+++ b/noncore/tools/formatter/output.cpp
@@ -0,0 +1,38 @@
1/****************************************************************************
2** outputEdit.cpp
3**
4** Copyright: Fri Apr 12 15:12:58 2002 L.J. Potter <ljp@llornkcor.com>
5****************************************************************************/
6#include "output.h"
7
8#include <qmultilineedit.h>
9#include <qpushbutton.h>
10#include <qlayout.h>
11#include <qvariant.h>
12#include <qtooltip.h>
13#include <qwhatsthis.h>
14
15Output::Output( QWidget* parent, const char* name, bool modal, WFlags fl )
16 : QDialog( parent, name, modal, fl )
17{
18 if ( !name )
19 setName( "Output" );
20 resize( 196, 269 );
21 setCaption( name );
22 OutputLayout = new QGridLayout( this );
23 OutputLayout->setSpacing( 6 );
24 OutputLayout->setMargin( 11 );
25
26 OutputEdit = new QMultiLineEdit( this, "OutputEdit" );
27
28 OutputLayout->addWidget( OutputEdit, 0, 0 );
29}
30
31/*
32 * Destroys the object and frees any allocated resources
33 */
34Output::~Output()
35{
36 // no need to delete child widgets, Qt does it all for us
37}
38