forked from Blackmamba-xuan/QtQQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtalk.cpp
306 lines (280 loc) · 9.22 KB
/
talk.cpp
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
#include "talk.h"
#include "ui_talk.h"
Talk::Talk(QWidget *parent) :
QWidget(parent),
ui(new Ui::Talk)
{
ui->setupUi(this);
i=0;
//setWindowFlags(Qt::FramelessWindowHint);
setWindowFlags(Qt::FramelessWindowHint|Qt::Tool);
setAttribute(Qt::WA_TranslucentBackground);
setAutoFillBackground(true);
ui->label->installEventFilter(this);
ui->label_2->installEventFilter(this);
ui->label_9->installEventFilter(this);
ui->label_10->installEventFilter(this);
ui->label_8->installEventFilter(this);
QImage image;
image.load(":/myicon_3.png");
QImage result = image.scaled(40, 20, Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
ui->label_4->setPixmap(QPixmap::fromImage(result));
QImage image2;
image2.load(":/kobe_1.jpg");
QImage result2 = image2.scaled(55, 55, Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
ui->label_3->setPixmap(QPixmap::fromImage(result2));
ui->label_3->setStyleSheet("QLabel{padding:2px;border-radius:4px;}QLabel:hover{border:2px solid rgb(12, 255, 235);}");
QImage image3;
image3.load(":/myicon_1.png");
//QImage result3 = image3.scaled(255, 511, Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
//QPalette palette(ui->widget->palette());
//palette.setBrush(ui->widget->backgroundRole(), QBrush(result3));
//ui->widget->setAutoFillBackground(true);
//ui->widget->setPalette(palette);
//ui->widget->show();
//ui->widget->setWindowOpacity(0.7);
qstacklayout=new QStackedLayout;
ui->widget_2->setLayout(qstacklayout);
//One* one=new One;
drwer=new Drawer(this);
two=new Two;
qstacklayout->addWidget(drwer);
qstacklayout->addWidget(two);
QRect rect = QApplication::desktop()->availableGeometry();
move(rect.width() - width()-280,5);
QIcon icon = QIcon(":/kobe_1.jpg"); //png,ico,svg,bmp各种格式,尺寸无限制(推荐60x60),加载图标可以用相对、绝对、资源路径
trayIcon = new QSystemTrayIcon(this);
trayIcon->setIcon(icon);
trayIcon->show();
connect(trayIcon,SIGNAL(activated(QSystemTrayIcon::ActivationReason)),
this,SLOT(iconActivated(QSystemTrayIcon::ActivationReason)));
m_pShowTimer = new QTimer(this);
m_pShowTimer2 = new QTimer(this);
connect(m_pShowTimer, SIGNAL(timeout()), this, SLOT(onMove()));
connect(m_pShowTimer2, SIGNAL(timeout()), this, SLOT(onMove2()));
//setMouseTracking(true);
mouse_press=false;
ui->label_8->installEventFilter(this);
ui->label_9->installEventFilter(this);
ui->label_10->installEventFilter(this);
connect(ui->lineEdit,SIGNAL(returnPressed()),this,SLOT(showResearch()));
//与server端建立连接
socket=new QTcpSocket(this);
socket->connectToHost("172.29.107.7",12306);
connect(socket,SIGNAL(readyRead()),this,SLOT(resolveMessage()));
connect(socket,SIGNAL(disconnected()),this,SLOT(solvedisconnect()));
}
Talk::~Talk()
{
delete ui;
}
void Talk::mousePressEvent(QMouseEvent *event)
{
qDebug()<<event->screenPos();
if(event->button() == Qt::LeftButton)
{
qDebug()<<"鼠标左键";
this->setMouseTracking(true);
mouse_press = true;
//鼠标相对于窗体的位置(或者使用event->globalPos() - this->pos())
move_point = event->pos();
qDebug()<<event->source();
}
}
void Talk::mouseReleaseEvent(QMouseEvent *event)
{
//设置鼠标为未被按下
mouse_press = false;
qDebug()<<"鼠标释放事件促发了";
if(y()<=0)
{
qDebug()<<"y的坐标是0";
m_nDesktopHeight=0;
m_pShowTimer->start(0.5);
}
}
void Talk::mouseMoveEvent(QMouseEvent *event)
{
//若鼠标左键被按下
// qDebug()<<"mouse_press="<<event->globalPos();
qDebug()<<"进入了移动这个函数";
if(mouse_press)
{
i++;
//鼠标相对于屏幕的位置
QPoint move_pos = event->globalPos();
qDebug()<<"移动"<<i;
//移动主窗体位置
this->move(move_pos - move_point);
}
qDebug()<<"鼠标在移动";
}
bool Talk::eventFilter(QObject *object, QEvent *e)
{
if(e->type()==QEvent::MouseButtonPress&&object==ui->label){
hide();
qDebug()<<"最小化";
}
else if(e->type()==QEvent::MouseButtonPress&&object==ui->label_2){
close();
}
else if(e->type()==QEvent::MouseButtonPress&&object==ui->label_9){
qDebug()<<"点击了第一页";
qstacklayout->setCurrentIndex(0);
}
else if(e->type()==QEvent::MouseButtonPress&&object==ui->label_10){
qDebug()<<"点击了第二页";
qstacklayout->setCurrentIndex(1);
}
else if(object==ui->label_8&&e->type()==QEvent::Enter&&y()<0){
qDebug()<<"鼠标进入了标签且y小于0";
qDebug()<<e->type();
//move(x(),5);
m_nDesktopHeight2=y();
m_pShowTimer2->start(0.5);
}
else if(object==ui->label_9&&e->type()==QEvent::Enter&&y()<0){
qDebug()<<"鼠标进入了标签且y小于0";
qDebug()<<e->type();
//move(x(),5);
m_nDesktopHeight2=y();
m_pShowTimer2->start(0.5);
}
else if(object==ui->label_10&&e->type()==QEvent::Enter&&y()<0){
qDebug()<<"鼠标进入了标签且y小于0";
qDebug()<<e->type();
//move(x(),5);
m_nDesktopHeight2=y();
m_pShowTimer2->start(0.5);
}
return false;
}
void Talk::paintEvent(QPaintEvent *event)
{
QPainterPath path;
path.setFillRule(Qt::WindingFill);
path.addRect(3, 3, this->width()-6, this->height()-6);
QPainter painter(this);
painter.setRenderHint(QPainter::Antialiasing, true);
painter.fillPath(path, QBrush(Qt::white));
QColor color(0, 0, 0, 75);
for(int i=0; i<3; i++)
{
QPainterPath path;
path.setFillRule(Qt::WindingFill);
path.addRect(3-i, 3-i, this->width()-(3-i)*2, this->height()-(3-i)*2);
color.setAlpha(50 - qSqrt(i)*25);
painter.setPen(color);
painter.drawPath(path);
}
}
void Talk::iconActivated(QSystemTrayIcon::ActivationReason reason)
{
switch (reason)
{
case QSystemTrayIcon::DoubleClick:
break;
case QSystemTrayIcon::Trigger:
//后面两个默认参数
mouse_press=false;
showNormal();
raise();
activateWindow();
move(x(),5);
break;
case QSystemTrayIcon::MiddleClick:
break;
default:
break;
}
}
void Talk::hideEvent(QHideEvent *event)
{
qDebug()<<"123";
if(trayIcon->isVisible())
{
hide(); //隐藏窗口
event->ignore(); //忽略事件
}
}
void Talk::onMove()
{
qDebug()<<"移动了"<<m_nDesktopHeight;
m_nDesktopHeight--;
move(x(), m_nDesktopHeight);
if (m_nDesktopHeight <= -610)
{
m_pShowTimer->stop();
//hide();
}
}
void Talk::onMove2()
{
qDebug()<<"移动了"<<m_nDesktopHeight2;
m_nDesktopHeight2++;
move(x(), m_nDesktopHeight2);
if (y() >=5)
{
m_pShowTimer2->stop();
//hide();
}
}
//查找好友
void Talk::showResearch()
{
Search* s=new Search();
s->show();
s->doSearch(ui->lineEdit->text());
}
void Talk::resolveMessage()
{
QByteArray qba= socket->readAll(); //读取
QString ss=QVariant(qba).toString();
qDebug()<<ss;
QJsonParseError error;
QJsonDocument jsonDocument = QJsonDocument::fromJson(ss.toUtf8(), &error);
//QString ss=QVariant(qba).toString();
//qDebug("%s", qba);
//qDebug()<<ss;
if (error.error == QJsonParseError::NoError) {
if (jsonDocument.isObject()) {
/*QVariantMap result = jsonDocument.toVariant().toMap();
qDebug()<<result;
qDebug()<<result["userinfo"].toJsonArray();
foreach (QVariant plugin, result["userinfo"].toList()) {
qDebug()<<plugin.toString();
}*/
QJsonObject obj=jsonDocument.object();
//QJsonArray array=obj["userinfo"].toArray();
QJsonObject obj1=obj["usersInfoVo"].toObject();
qDebug()<<obj1["name"].toString();
ui->label_6->setText(obj1["name"].toString());
ui->label_7->setText(obj1["sign"].toString());
QJsonArray friends=obj1["friends"].toArray();
qDebug()<<friends;
for(int j=0;j<friends.size();j++){
QJsonObject myfriend=friends[i].toObject();
qDebug()<<myfriend["name"];
QString name;
if(myfriend["onLine"]==false)
name=myfriend["name"].toString()+"[离线]";
else
name=myfriend["name"].toString()+"[在线]";
drwer->addfriend(name,myfriend["sign"].toString());
}
}
} else {
qDebug()<<"解析失败";
}
// socket->write(qba);
}
void Talk::init(QByteArray byte_array)
{
qDebug()<<byte_array.append('\n');
qDebug()<<byte_array;
socket->write(byte_array);
}
void Talk::solvedisconnect()
{
qDebug()<<"socket连接断了";
}