meshgen

view src/mainwindow.h @ 1:7dac9d1bcae4

foo
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 31 Aug 2015 01:55:24 +0300
parents 795217e82f3d
children
line source
1 #ifndef MAINWINDOW_H
2 #define MAINWINDOW_H
4 #include <QMainWindow>
5 #include "ui_prop_sphere.h"
6 #include "ui_prop_capsule.h"
8 namespace Ui {
9 class MainWindow;
10 }
12 class MainWindow : public QMainWindow
13 {
14 Q_OBJECT
16 public:
17 explicit MainWindow(QWidget *parent = 0);
18 ~MainWindow();
20 private slots:
21 void on_bn_add_sphere_clicked();
23 void on_bn_add_capsule_clicked();
25 void on_spin_radius1_valueChanged(double arg1);
27 private:
28 Ui::MainWindow *ui;
29 Ui::frm_prop_sphere *ui_prop_sphere;
30 Ui::frm_prop_capsule *ui_prop_capsule;
31 };
33 #endif // MAINWINDOW_H