1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00
This commit is contained in:
tianduanrui 2018-04-23 16:46:11 +08:00
commit 92b7b72cc6
3 changed files with 25 additions and 16 deletions

View File

@ -30,5 +30,5 @@ void MainWindow::on_pushButton_clicked()
void MainWindow::on_recv_say_hello ( QString a )
{
pline() << a;
//ui->plainTextEdit->appendPlainText ( a );
ui->textBrowser->append(a + "\r\n");
}

View File

@ -14,16 +14,6 @@
<string>MainWindow</string>
</property>
<widget class="QWidget" name="centralWidget">
<widget class="QPlainTextEdit" name="plainTextEdit">
<property name="geometry">
<rect>
<x>40</x>
<y>30</y>
<width>251</width>
<height>141</height>
</rect>
</property>
</widget>
<widget class="QPushButton" name="pushButton">
<property name="geometry">
<rect>
@ -47,6 +37,16 @@
</rect>
</property>
</widget>
<widget class="QTextBrowser" name="textBrowser">
<property name="geometry">
<rect>
<x>30</x>
<y>10</y>
<width>256</width>
<height>192</height>
</rect>
</property>
</widget>
</widget>
</widget>
<layoutdefault spacing="6" margin="11"/>

View File

@ -1,4 +1,4 @@
#ifndef QQTCLIENTPROTOCOL_H
#ifndef QQTCLIENTPROTOCOL_H
#define QQTCLIENTPROTOCOL_H
#include <qqtmessage.h>
@ -141,7 +141,7 @@ public slots:
protected:
//报文的最小长度
virtual quint16 minlength() override {
return 0x00;
return 0x03;
}
//报文的最大长度
virtual quint16 maxlength() override {
@ -149,16 +149,25 @@ protected:
}
virtual quint16 splitter ( const QByteArray& l ) override { //stream
pline() << l[0] << l[1] << l[2] << l[3] << l[4] << l[5] << l[6] << l[7];
for ( int i = 0; i < l.size(); i++ ) {
pline() << l[i];
}
QByteArray s0 = l.left ( 3 );
quint8 start = 0;
quint16 size = 0;
s0 << start;
s0 << size;
pline() << s0[0] << s0[1] << s0[2];
s0 >> start;
s0 >> size;
pline() << start << size;
return size;
}
//报文现在被切开发了进来第二个字节是cmd解析出来在函数里处理处理数据告诉业务层拿到数据了干点什么。
virtual bool dispatcher ( const QByteArray& m ) override { //message
bool ret = true;
QQtClientMessage qMsg;
@ -170,7 +179,7 @@ protected:
recvCommand1 ( qMsg );
break;
case 0x0100://protocol command 2
case 0x0A://protocol command 2
recvCommand2 ( qMsg );
break;