File: main.cpp

package info (click to toggle)
qwt 6.1.4-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 23,808 kB
  • sloc: cpp: 57,687; xml: 182; makefile: 32
file content (54 lines) | stat: -rw-r--r-- 1,382 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#include "plot.h"
#include <qapplication.h>
#include <qmainwindow.h>
#include <qtoolbar.h>
#include <qtoolbutton.h>
#include <qcombobox.h>

class MainWindow: public QMainWindow
{
public:
    MainWindow( QWidget * = NULL );
};

MainWindow::MainWindow( QWidget *parent ):
    QMainWindow( parent )
{
    Plot *plot = new Plot( this );
    setCentralWidget( plot );

    QToolBar *toolBar = new QToolBar( this );

    QComboBox *modeBox = new QComboBox( toolBar );
    modeBox->addItem( "No Mask" );
    modeBox->addItem( "Mask" );
    modeBox->addItem( "Alpha Mask" );
    modeBox->addItem( "Alpha Mask/Redraw" );
    modeBox->addItem( "Alpha Mask/Copy Mask" );
    modeBox->setCurrentIndex( 1 );
    modeBox->setSizePolicy( QSizePolicy::Fixed, QSizePolicy::Fixed );

    connect( modeBox, SIGNAL( currentIndexChanged( int ) ),
             plot, SLOT( setMode( int ) ) );

    QToolButton *btnExport = new QToolButton( toolBar );
    btnExport->setText( "Export" );
    btnExport->setToolButtonStyle( Qt::ToolButtonTextUnderIcon );
    connect( btnExport, SIGNAL( clicked() ), plot, SLOT( exportPlot() ) );

    toolBar->addWidget( modeBox );
    toolBar->addWidget( btnExport );
    addToolBar( toolBar );

}

int main( int argc, char **argv )
{
    QApplication app( argc, argv );

    MainWindow window;
    window.resize( 600, 400 );
    window.show();

    return app.exec();
}