-
Notifications
You must be signed in to change notification settings - Fork 1
/
mainwindow.h
75 lines (55 loc) · 1.27 KB
/
mainwindow.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
68
69
70
71
72
73
74
75
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include<QMenuBar>
#include<QSettings>
#include<QLabel>
#include<QPushButton>
#include<QHBoxLayout>
#include<QVBoxLayout>
#include<QListWidget>
#include<QTextEdit>
#include<QResizeEvent>
#include"dbmain.hpp"
#include<thread>
namespace Ui{
class MainWindow;
};
class MainWindow : public QMainWindow
{
Q_OBJECT
private:
void initMenu(void);
void initFriendList(void);
void initMessageBox(void);
void resizeEvent(QResizeEvent *event);
//
void ClientAccepting(void);
void ClientThread(int socket);
void SessionThread(void);
private:
std::thread client_accepting_t, session_t;
std::string pathF;
Ui::MainWindow * myUi;
QMenu * Friends, * Settings, * Advance;
QAction * Friends_add,
* Settings_Network, * Settings_background,
* Advance_Exit, * Advance_About;
QSettings * config;
dbmain db;
/*
QVBoxLayout * mvLayout;
QHBoxLayout * mhLayout;
QListWidget * FriendList;
QTextEdit * MessageWindow;
*/
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
public slots:
void setActiv(void);
private slots:
void setBackground(void);
void changeChat(QListWidgetItem*);
};
#endif // MAINWINDOW_H