/* * docktest.cpp: A test program for the dock class * Copyright (C) 2005 Remko Troncon * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * You can also redistribute and/or modify this program under the * terms of the Psi License, specified in the accompanied COPYING * file, as published by the Psi Project; either dated January 1st, * 2005, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ #include #include #include #include #include #include #include #include #include "mac_dock.h" class DockTestWidget : public QWidget { Q_OBJECT public: DockTestWidget( QWidget *parent=0, const char *name=0 ); public slots: void do_overlay(); private: QLineEdit *text; }; DockTestWidget::DockTestWidget( QWidget *parent, const char *name ) : QWidget(parent, name) { // Initialize widgets QGridLayout *layout = new QGridLayout(this,4,2); layout->addWidget(new QLabel("Text",this),0,0); text = new QLineEdit(this); text->setText("1"); layout->addWidget(text,0,1); QPushButton *overlay = new QPushButton( "Overlay", this ); connect(overlay, SIGNAL(clicked()), SLOT(do_overlay())); layout->addWidget(overlay,1,0); } int main( int argc, char **argv ) { QApplication a( argc, argv ); DockTestWidget w; a.setMainWidget( &w ); w.show(); return a.exec(); } void DockTestWidget::do_overlay() { MacDock::overlay(text->text()); } #include "docktest.moc"