summaryrefslogtreecommitdiff
path: root/noncore/settings/tabmanager/app.cpp
Unidiff
Diffstat (limited to 'noncore/settings/tabmanager/app.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/tabmanager/app.cpp83
1 files changed, 0 insertions, 83 deletions
diff --git a/noncore/settings/tabmanager/app.cpp b/noncore/settings/tabmanager/app.cpp
deleted file mode 100644
index 30ba9a5..0000000
--- a/noncore/settings/tabmanager/app.cpp
+++ b/dev/null
@@ -1,83 +0,0 @@
1/****************************************************************************
2** Form implementation generated from reading ui file 'app.ui'
3**
4** Created: Fri May 3 14:38:15 2002
5** by: The User Interface Compiler (uic)
6**
7** WARNING! All changes made in this file will be lost!
8****************************************************************************/
9#include "app.h"
10
11#include <qlabel.h>
12#include <qlineedit.h>
13#include <qpushbutton.h>
14#include <qlayout.h>
15#include <qvariant.h>
16#include <qtooltip.h>
17#include <qwhatsthis.h>
18
19/*
20 * Constructs a AppEdit which is a child of 'parent', with the
21 * name 'name' and widget flags set to 'f'
22 *
23 * The dialog will by default be modeless, unless you set 'modal' to
24 * TRUE to construct a modal dialog.
25 */
26AppEdit::AppEdit( QWidget* parent, const char* name, bool modal, WFlags fl )
27 : QDialog( parent, name, modal, fl )
28{
29 if ( !name )
30 setName( "AppEdit" );
31 resize( 211, 241 );
32 setCaption( tr( "Application" ) );
33 AppEditLayout = new QGridLayout( this );
34 AppEditLayout->setSpacing( 6 );
35 AppEditLayout->setMargin( 11 );
36
37 TextLabel3 = new QLabel( this, "TextLabel3" );
38 TextLabel3->setText( tr( "Exec" ) );
39
40 AppEditLayout->addWidget( TextLabel3, 2, 0 );
41
42 TextLabel4 = new QLabel( this, "TextLabel4" );
43 TextLabel4->setText( tr( "Comment" ) );
44
45 AppEditLayout->addWidget( TextLabel4, 3, 0 );
46
47 TextLabel2 = new QLabel( this, "TextLabel2" );
48 TextLabel2->setText( tr( "Icon" ) );
49
50 AppEditLayout->addWidget( TextLabel2, 1, 0 );
51
52 TextLabel1 = new QLabel( this, "TextLabel1" );
53 TextLabel1->setText( tr( "Name" ) );
54
55 AppEditLayout->addWidget( TextLabel1, 0, 0 );
56
57 iconLineEdit = new QLineEdit( this, "iconLineEdit" );
58
59 AppEditLayout->addWidget( iconLineEdit, 1, 1 );
60
61 nameLineEdit = new QLineEdit( this, "nameLineEdit" );
62
63 AppEditLayout->addWidget( nameLineEdit, 0, 1 );
64
65 commentLineEdit = new QLineEdit( this, "commentLineEdit" );
66
67 AppEditLayout->addWidget( commentLineEdit, 3, 1 );
68
69 execLineEdit = new QLineEdit( this, "execLineEdit" );
70
71 AppEditLayout->addWidget( execLineEdit, 2, 1 );
72 QSpacerItem* spacer = new QSpacerItem( 20, 20, QSizePolicy::Minimum, QSizePolicy::Expanding );
73 AppEditLayout->addItem( spacer, 4, 1 );
74}
75
76/*
77 * Destroys the object and frees any allocated resources
78 */
79AppEdit::~AppEdit()
80{
81 // no need to delete child widgets, Qt does it all for us
82}
83