Illustrative Line Visualization
Implementation of the method by Everts et al. for visualizing dense line data.
mainwindow.h
1 #ifndef MAINWINDOW_H
2 #define MAINWINDOW_H
3 
4 #include "glwidget.h"
5 #include "trackfile.h"
6 
7 #include <QMainWindow>
8 #include <QTimer>
9 
10 namespace Ui {
11  class MainWindow;
12 }
13 
17 class MainWindow : public QMainWindow
18 {
19  Q_OBJECT
20 
21  public:
26  explicit MainWindow(QWidget *parent = 0);
27  ~MainWindow();
28 
29  protected slots:
33  void load();
34 
35  protected:
40  int getMaximumSamples();
41 
42  private:
43  Ui::MainWindow *ui;
44 
45  GLWidget* glWidget;
46 };
47 
48 #endif // MAINWINDOW_H
Definition: mainwindow.h:10
The main window of the application.
Definition: mainwindow.h:17
Widget encapsulating the OpenGL context.
Definition: glwidget.h:21