-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathposturelistwindow.h
More file actions
54 lines (42 loc) · 984 Bytes
/
posturelistwindow.h
File metadata and controls
54 lines (42 loc) · 984 Bytes
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
#ifndef _POSTURELISTWINDOW_
#define _POSTURELISTWINDOW_
#include "MANAGER\ModelVideo.h"
#include "MANAGER\UserManager.h"
#include "posturewindow.h"
#include "globalDefs.h"
class PostureListWindow : public PostureWindow
{
Q_OBJECT
public:
PostureListWindow(QWidget*,QString,int,int,std::vector<ModelVideo>&);
~PostureListWindow();
protected:
void BuildBottomRight();
private:
QWidget *m_qwSinglePosture;
QLabel *m_qlImg;
QLabel *m_qlOutline;
QLabel *m_qlDesc;
QLabel *m_qlNotify;
QLabel *m_qlTitle;
QPushButton *m_qpbOperate;
QPushButton *m_qpbProfile;
QPushButton *m_qpbPrev;
QPushButton *m_qpbNext;
QPushButton *m_qpbReturn;
QString m_sUsername;
QVector<ModelVideo> models;
void InitWidgets(int i);
void BuildSingle();
signals:
void prev(const QString&);
void next(const QString&);
void display(const ModelVideo&);
private slots:
void deletePos();
void toDisplay();
void toProfile();
void toPrev();
void toNext();
};
#endif//_POSTURELISTWINDOW_