-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprofilewindow.h
More file actions
53 lines (42 loc) · 901 Bytes
/
profilewindow.h
File metadata and controls
53 lines (42 loc) · 901 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
#ifndef _PROFILEWINDOW_
#define _PROFILEWINDOW_
#include "MANAGER\UserManager.h"
#include "MANAGER\SourceManager.h"
#include "posturewindow.h"
#include "globalDefs.h"
#include <QtWidgets\qmessagebox.h>
class ProfileWindow : public PostureWindow
{
Q_OBJECT
public:
ProfileWindow(QWidget*,QString);
~ProfileWindow();
protected:
void BuildBottomRight();
private:
QLabel *m_qlImg;
QLabel *m_qlNameImg;
QLabel *m_qlNameTitle;
QLabel *m_qlName;
QLabel *m_qlEmailImg;
QLabel *m_qlEmailTitle;
QLabel *m_qlEmail;
QLabel *m_qlTags;
QPushButton *m_qpbEdit;
QPushButton *m_qpbReturn;
QPushButton *m_qpbTag;
QPushButton *m_qpbAddTag;
QString m_sUsername;
QMessageBox *m_qmbMsg;
void InitWidgets();
void IsFollowed();
signals:
void edit();
void addTag();
private slots:
void follow();
void unfollow(QAbstractButton*);
void toProfile();
void message();
};
#endif//_PROFILEWINDOW_