| 123456789101112131415161718192021222324252627 |
- /****************************************************************************
- ** $Id: qt/main.cpp 3.3.8 edited Jan 11 14:37 $
- **
- ** Copyright (C) 1992-2007 Trolltech ASA. All rights reserved.
- **
- ** This file is part of an example program for Qt. This example
- ** program may be used, distributed and modified without limitation.
- **
- *****************************************************************************/
- #include "showimg.h"
- #include <QtGui/QApplication>
- int main( int argc, char **argv )
- {
- // QApplication::setColorSpec( QApplication::ManyColor );
- QApplication a( argc, argv );
- ImageViewer *w = new ImageViewer();
- w->setAttribute( Qt::WA_DeleteOnClose );
- w->setWindowTitle("IMT DLL - Example");
- w->show();
- QObject::connect(qApp, SIGNAL(lastWindowClosed()), qApp, SLOT(quit()));
- return a.exec();
- }
|