~ubuntu-branches/ubuntu/utopic/psi/utopic

« back to all changes in this revision

Viewing changes to src/tools/mac_dock/docktest.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2010-02-19 09:37:12 UTC
  • mfrom: (6.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20100219093712-e225xvm1wjcf1cgi
Tags: 0.14-2
* comment out only function which uses va_list to work around build
  problems on armel
* Set Standards-Version to 3.8.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
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 <QVBoxLayout>
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);
43
 
 
44
 
public slots:
45
 
        void do_overlay();
46
 
 
47
 
private:
48
 
        QLineEdit *text;
49
 
};
50
 
 
51
 
 
52
 
DockTestWidget::DockTestWidget( QWidget *parent ) : QWidget(parent)
53
 
{
54
 
        // Initialize widgets
55
 
        QGridLayout *layout = new QGridLayout(this);
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
 
    w.show();
72
 
    return a.exec();
73
 
}
74
 
        
75
 
void DockTestWidget::do_overlay()
76
 
{
77
 
        MacDock::overlay(text->text());
78
 
}
79
 
 
80
 
#include "docktest.moc"