You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
562 B
25 lines
562 B
|
3 years ago
|
#include <qapplication.h>
|
||
|
|
#include <qtabwidget.h>
|
||
|
|
#include "compass_grid.h"
|
||
|
|
#include "cockpit_grid.h"
|
||
|
|
|
||
|
|
//-----------------------------------------------------------------
|
||
|
|
//
|
||
|
|
// dials.cpp -- A demo program featuring QwtDial and friends
|
||
|
|
//
|
||
|
|
//-----------------------------------------------------------------
|
||
|
|
|
||
|
|
int main ( int argc, char **argv )
|
||
|
|
{
|
||
|
|
QApplication a( argc, argv );
|
||
|
|
|
||
|
|
QTabWidget tabWidget;
|
||
|
|
tabWidget.addTab( new CompassGrid, "Compass" );
|
||
|
|
tabWidget.addTab( new CockpitGrid, "Cockpit" );
|
||
|
|
|
||
|
|
tabWidget.show();
|
||
|
|
|
||
|
|
return a.exec();
|
||
|
|
}
|
||
|
|
|