-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmoreopr.h
59 lines (46 loc) · 1001 Bytes
/
moreopr.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
#ifndef MOREOPR_H
#define MOREOPR_H
#include <QObject>
#include <QWidget>
#include <QPushButton>
#include <QHBoxLayout>
#include <QVBoxLayout>
#include <QFile>
class MoreOpr : public QWidget
{
Q_OBJECT
public:
explicit MoreOpr(QWidget *parent = nullptr);
void initUI();
void connnetStr();
private:
QVBoxLayout* hlayout;
QPushButton* Pi;
QPushButton* E;
QPushButton* AC;
QPushButton* Del;
QHBoxLayout* vlayout1;
QPushButton* Sin;
QPushButton* Asin;
QPushButton* Ln;
QPushButton* Sign;
QHBoxLayout* vlayout2;
QPushButton* Cos;
QPushButton* Acos;
QPushButton* log;
QPushButton* Floor;
QHBoxLayout* vlayout3;
QPushButton* Tan;
QPushButton* Atan;
QPushButton* Log2;
QPushButton* Cell;
QHBoxLayout* vlayout4;
QPushButton* Abs;
QPushButton* sqrt;
QPushButton* sqrt2;
QPushButton* Power;
QHBoxLayout* vlayout5;
signals:
void btnStr(QString btnstr);
};
#endif // MOREOPR_H