forked from rolker/bagViewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBagViewer.h
More file actions
34 lines (29 loc) · 717 Bytes
/
BagViewer.h
File metadata and controls
34 lines (29 loc) · 717 Bytes
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
#ifndef BAGVIEWER_H
#define BAGVIEWER_H
#include <QMainWindow>
class QActionGroup;
class BagGL;
namespace Ui {
class BagViewer;
}
class BagViewer: public QMainWindow
{
Q_OBJECT
public:
explicit BagViewer(QWidget *parent=0);
~BagViewer();
void openBag(std::string const &fname);
private:
Ui::BagViewer *ui;
QActionGroup *colormapActionGroup;
QActionGroup *drawStyleActionGroup;
private slots:
void on_actionOpen_triggered();
void on_actionExit_triggered();
void on_actionTopographic_triggered();
void on_actionOmnimap_triggered();
void on_actionSolid_triggered();
void on_actionWireframe_triggered();
void on_actionPoints_triggered();
};
#endif