-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglwidget.h
67 lines (45 loc) · 1.15 KB
/
glwidget.h
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
63
64
65
66
67
#ifndef GLWIDGET_H
#define GLWIDGET_H
#include <QGLWidget>
#include "bspline.h"
//#include "bspline.h"
#include "loadfilefor.h"
//#include <QOpenGLFunctions_4_3_Core>
class GLWidget : public QGLWidget //protected QOpenGLFunctions_4_3_Core
{
Q_OBJECT
public:
explicit GLWidget(QWidget *parent = 0);
~GLWidget();
QSize minimumSizeHint() const;
QSize sizeHint() const;
int* NewMesh(QString fileName);
public slots:
void setXRotation(int angle);
void setYRotation(int angle);
void setZRotation(int angle);
signals:
void xRotationChanged(int angle);
void yRotationChanged(int angle);
void zRotationChanged(int angle);
protected:
void initializeGL();
void paintGL();
void resizeGL(int width, int height);
void mousePressEvent(QMouseEvent *event);
void mouseMoveEvent(QMouseEvent *event);
void wheelEvent(QWheelEvent *event );
bool changepos0(double x, double);
bool scalingtheMesh(float x);
private:
LoadFile *FileOpen;
string FileType;
int xRot;
int yRot;
int zRot;
float scaling;
double pos0x, pos0y;
QPoint lastPos;
float y ;
};
#endif // QGLWIDGET_H