1 | /*
|
---|
2 | * docktest.cpp: A test program for the dock class
|
---|
3 | * Copyright (C) 2005 Remko Troncon
|
---|
4 | *
|
---|
5 | * This program is free software; you can redistribute it and/or
|
---|
6 | * modify it under the terms of the GNU General Public License
|
---|
7 | * as published by the Free Software Foundation; either version 2
|
---|
8 | * of the License, or (at your option) any later version.
|
---|
9 | *
|
---|
10 | * You can also redistribute and/or modify this program under the
|
---|
11 | * terms of the Psi License, specified in the accompanied COPYING
|
---|
12 | * file, as published by the Psi Project; either dated January 1st,
|
---|
13 | * 2005, or (at your option) any later version.
|
---|
14 | *
|
---|
15 | * This program is distributed in the hope that it will be useful,
|
---|
16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
18 | * GNU General Public License for more details.
|
---|
19 | *
|
---|
20 | * You should have received a copy of the GNU General Public License
|
---|
21 | * along with this library; if not, write to the Free Software
|
---|
22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
---|
23 | *
|
---|
24 | */
|
---|
25 |
|
---|
26 | #include <qapplication.h>
|
---|
27 | #include <qmessagebox.h>
|
---|
28 | #include <qpushbutton.h>
|
---|
29 | #include <qlayout.h>
|
---|
30 | #include <qvbox.h>
|
---|
31 | #include <qlineedit.h>
|
---|
32 | #include <qcheckbox.h>
|
---|
33 | #include <qlabel.h>
|
---|
34 |
|
---|
35 | #include "mac_dock.h"
|
---|
36 |
|
---|
37 | class DockTestWidget : public QWidget
|
---|
38 | {
|
---|
39 | Q_OBJECT
|
---|
40 |
|
---|
41 | public:
|
---|
42 | DockTestWidget( QWidget *parent=0, const char *name=0 );
|
---|
43 |
|
---|
44 | public slots:
|
---|
45 | void do_overlay();
|
---|
46 |
|
---|
47 | private:
|
---|
48 | QLineEdit *text;
|
---|
49 | };
|
---|
50 |
|
---|
51 |
|
---|
52 | DockTestWidget::DockTestWidget( QWidget *parent, const char *name ) : QWidget(parent, name)
|
---|
53 | {
|
---|
54 | // Initialize widgets
|
---|
55 | QGridLayout *layout = new QGridLayout(this,4,2);
|
---|
56 |
|
---|
57 | layout->addWidget(new QLabel("Text",this),0,0);
|
---|
58 | text = new QLineEdit(this);
|
---|
59 | text->setText("1");
|
---|
60 | layout->addWidget(text,0,1);
|
---|
61 |
|
---|
62 | QPushButton *overlay = new QPushButton( "Overlay", this );
|
---|
63 | connect(overlay, SIGNAL(clicked()), SLOT(do_overlay()));
|
---|
64 | layout->addWidget(overlay,1,0);
|
---|
65 | }
|
---|
66 |
|
---|
67 | int main( int argc, char **argv )
|
---|
68 | {
|
---|
69 | QApplication a( argc, argv );
|
---|
70 | DockTestWidget w;
|
---|
71 | a.setMainWidget( &w );
|
---|
72 | w.show();
|
---|
73 | return a.exec();
|
---|
74 | }
|
---|
75 |
|
---|
76 | void DockTestWidget::do_overlay()
|
---|
77 | {
|
---|
78 | MacDock::overlay(text->text());
|
---|
79 | }
|
---|
80 |
|
---|
81 | #include "docktest.moc"
|
---|