File: mainwindow.h

package info (click to toggle)
pivy 0.6.10-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,216 kB
  • sloc: python: 36,331; cpp: 787; ansic: 733; makefile: 30; sh: 27; objc: 5
file content (27 lines) | stat: -rw-r--r-- 446 bytes parent folder | download | duplicates (10)
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
#ifndef mainwindow_h_
#define mainwindow_h_

#include <QMainWindow>
#include "ui_test.h"

class MainWindow : public QMainWindow, public Ui::MainWindow
{
  Q_OBJECT;

  class SoQtExaminerViewer *exam;
  class SoMaterial *material;
  class SoGate *gate;
  class SoRotationXYZ *rotxyz;

  void setupSoQt();
 public:
  MainWindow(QWidget *parent = 0);

 public slots:
  void change_axis(int axis);
  void change_color();
  void rotate();

};

#endif