main.cpp
1.52 KB
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
55
56
57
58
59
60
61
62
#include <qapplication.h>
#include <qmainwindow.h>
#include <qtoolbar.h>
#include <qtoolbutton.h>
#include <qcombobox.h>
#include <qlabel.h>
#include <qwindowsstyle.h>
#include "plot.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 *rasterBox = new QComboBox(toolBar);
rasterBox->setStyle(new QWindowsStyle() );
rasterBox->addItem("Wikipedia");
toolBar->addWidget(new QLabel("Data ", toolBar));
toolBar->addWidget(rasterBox);
toolBar->addSeparator();
QComboBox *modeBox = new QComboBox(toolBar);
modeBox->setStyle(new QWindowsStyle() );
modeBox->addItem("Nearest Neighbour");
modeBox->addItem("Bilinear Interpolation");
toolBar->addWidget(new QLabel("Resampling ", toolBar));
toolBar->addWidget(modeBox);
toolBar->addSeparator();
QToolButton *btnExport = new QToolButton(toolBar);
btnExport->setText("Export");
btnExport->setToolButtonStyle(Qt::ToolButtonTextUnderIcon);
toolBar->addWidget(btnExport);
addToolBar(toolBar);
connect(modeBox, SIGNAL(activated(int)), plot, SLOT(setResampleMode(int)));
connect(btnExport, SIGNAL(clicked()), plot, SLOT(exportPlot()) );
}
int main(int argc, char **argv)
{
QApplication a(argc, argv);
MainWindow mainWindow;
mainWindow.resize(600,400);
mainWindow.show();
return a.exec();
}