From 650dbd1186fe169d5eb4ebe6e2ec641ee5b13a02 Mon Sep 17 00:00:00 2001 From: touwoyimuli Date: Wed, 20 Nov 2019 22:59:23 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=88=9B=E5=BB=BA=E4=B8=80=E4=B8=AA?= =?UTF-8?q?=E7=A9=BA=E7=9A=84=20TcpServer=20=E7=9A=84=E9=A1=B9=E7=9B=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .DS_Store | Bin 10244 -> 10244 bytes QtTcpEx/ExTcpServer/ExTcpServer.cpp | 14 ++++++++++ QtTcpEx/ExTcpServer/ExTcpServer.h | 22 +++++++++++++++ QtTcpEx/ExTcpServer/ExTcpServer.pro | 40 ++++++++++++++++++++++++++++ QtTcpEx/ExTcpServer/ExTcpServer.ui | 24 +++++++++++++++++ QtTcpEx/ExTcpServer/main.cpp | 11 ++++++++ 6 files changed, 111 insertions(+) create mode 100644 QtTcpEx/ExTcpServer/ExTcpServer.cpp create mode 100644 QtTcpEx/ExTcpServer/ExTcpServer.h create mode 100644 QtTcpEx/ExTcpServer/ExTcpServer.pro create mode 100644 QtTcpEx/ExTcpServer/ExTcpServer.ui create mode 100644 QtTcpEx/ExTcpServer/main.cpp diff --git a/.DS_Store b/.DS_Store index bba77c3f70b46699f96fcc32e1b37e63c0381afb..71384d7b2b88b4d77af25e1758c86a1ed5ae6470 100644 GIT binary patch delta 42 ycmZn(XbG6$&&a(oU^hP__hue}%}kr03M=t!Y*1s|%&zc@WiqE|_vTGv6-)p!0S+ku delta 111 zcmZn(XbG6$&&azmU^hP_?`9r>%}mn#41o+K49*Ot48=e?pCOka7)Vz#setupUi(this); +} + +ExTcpServer::~ExTcpServer() +{ + delete ui; +} diff --git a/QtTcpEx/ExTcpServer/ExTcpServer.h b/QtTcpEx/ExTcpServer/ExTcpServer.h new file mode 100644 index 0000000..edd2700 --- /dev/null +++ b/QtTcpEx/ExTcpServer/ExTcpServer.h @@ -0,0 +1,22 @@ +#ifndef EXTCPSERVER_H +#define EXTCPSERVER_H + +#include + +namespace Ui { +class ExTcpServer; +} + +class ExTcpServer : public QMainWindow +{ + Q_OBJECT + +public: + explicit ExTcpServer(QWidget *parent = nullptr); + ~ExTcpServer(); + +private: + Ui::ExTcpServer *ui; +}; + +#endif // EXTCPSERVER_H diff --git a/QtTcpEx/ExTcpServer/ExTcpServer.pro b/QtTcpEx/ExTcpServer/ExTcpServer.pro new file mode 100644 index 0000000..2a614cb --- /dev/null +++ b/QtTcpEx/ExTcpServer/ExTcpServer.pro @@ -0,0 +1,40 @@ +#------------------------------------------------- +# +# Project created by QtCreator 2019-11-20T22:56:24 +# +#------------------------------------------------- + +QT += core gui + +greaterThan(QT_MAJOR_VERSION, 4): QT += widgets + +TARGET = ExTcpServer +TEMPLATE = app + +# The following define makes your compiler emit warnings if you use +# any feature of Qt which has been marked as deprecated (the exact warnings +# depend on your compiler). Please consult the documentation of the +# deprecated API in order to know how to port your code away from it. +DEFINES += QT_DEPRECATED_WARNINGS + +# You can also make your code fail to compile if you use deprecated APIs. +# In order to do so, uncomment the following line. +# You can also select to disable deprecated APIs only up to a certain version of Qt. +#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 + +CONFIG += c++11 + +SOURCES += \ + main.cpp \ + ExTcpServer.cpp + +HEADERS += \ + ExTcpServer.h + +FORMS += \ + ExTcpServer.ui + +# Default rules for deployment. +qnx: target.path = /tmp/$${TARGET}/bin +else: unix:!android: target.path = /opt/$${TARGET}/bin +!isEmpty(target.path): INSTALLS += target diff --git a/QtTcpEx/ExTcpServer/ExTcpServer.ui b/QtTcpEx/ExTcpServer/ExTcpServer.ui new file mode 100644 index 0000000..5470fe7 --- /dev/null +++ b/QtTcpEx/ExTcpServer/ExTcpServer.ui @@ -0,0 +1,24 @@ + + ExTcpServer + + + + 0 + 0 + 400 + 300 + + + + ExTcpServer + + + + + + + + + + + diff --git a/QtTcpEx/ExTcpServer/main.cpp b/QtTcpEx/ExTcpServer/main.cpp new file mode 100644 index 0000000..3f5ff50 --- /dev/null +++ b/QtTcpEx/ExTcpServer/main.cpp @@ -0,0 +1,11 @@ +#include "ExTcpServer.h" +#include + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + ExTcpServer w; + w.show(); + + return a.exec(); +}