1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00

38 lines
779 B
C++
Raw Normal View History

#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow ( QWidget* parent ) :
QMainWindow ( parent ),
ui ( new Ui::MainWindow )
{
ui->setupUi ( this );
// serialport example
// tcpsocket example
// websocket?
//
p = QQtClientConnectionInstance ( this );
connect ( p, SIGNAL ( signalServerSay ( QString ) ),
this, SLOT ( on_recv_say_hello ( QString ) ) );
2018-04-23 20:25:18 +08:00
QQtClient2Protocol* p0 = QQtClient2ConnectionInstance ( this );
p0->sendCommand1();
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::on_pushButton_clicked()
{
p->sendA1Command ( ui->lineEdit->text() );
}
void MainWindow::on_recv_say_hello ( QString a )
{
pline() << a;
2018-04-23 20:25:18 +08:00
ui->textBrowser->append ( a + "\r\n" );
}