home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / qt3_emx.zip / examples / tablet / main.cpp < prev    next >
C/C++ Source or Header  |  2001-10-11  |  1KB  |  37 lines

  1. /****************************************************************************
  2. ** $Id:  qt/main.cpp   3.0.0   edited Jul 27 17:01 $
  3. **
  4. ** Copyright ( C ) 1992-2000 Trolltech AS.  All rights reserved.
  5. **
  6. ** This file is part of an example program for Qt.  This example
  7. ** program may be used, distributed and modified without limitation.
  8. **
  9. *****************************************************************************/
  10.  
  11. #include "scribble.h"
  12. #include "tabletstats.h"
  13. #include <qapplication.h>
  14. #include <qtabwidget.h>
  15.  
  16.  
  17. int main( int argc, char **argv )
  18. {
  19.     QApplication a( argc, argv );
  20.     QTabWidget tab;
  21.     Scribble scribble(&tab, "scribble");
  22.     TabletStats tabStats( &tab, "tablet stats" );
  23.     
  24.     scribble.setMinimumSize( 500, 350 );
  25.     tabStats.setMinimumSize( 500, 350 );
  26.     tab.addTab(&scribble, "Scribble" );
  27.     tab.addTab(&tabStats, "Tablet Stats" );
  28.     
  29.     a.setMainWidget( &tab );
  30.     if ( QApplication::desktop()->width() > 550
  31.      && QApplication::desktop()->height() > 366 )
  32.     tab.show();
  33.     else
  34.     tab.showMaximized();
  35.     return a.exec();
  36. }
  37.