feat: 创建一个空的 TcpClient 的项目
This commit is contained in:
parent
650dbd1186
commit
9030831838
14
QtTcpEx/ExTcpClient/ExTcpClient.cpp
Normal file
14
QtTcpEx/ExTcpClient/ExTcpClient.cpp
Normal file
@ -0,0 +1,14 @@
|
||||
#include "ExTcpClient.h"
|
||||
#include "ui_ExTcpClient.h"
|
||||
|
||||
ExTcpClient::ExTcpClient(QWidget *parent) :
|
||||
QMainWindow(parent),
|
||||
ui(new Ui::ExTcpClient)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
}
|
||||
|
||||
ExTcpClient::~ExTcpClient()
|
||||
{
|
||||
delete ui;
|
||||
}
|
22
QtTcpEx/ExTcpClient/ExTcpClient.h
Normal file
22
QtTcpEx/ExTcpClient/ExTcpClient.h
Normal file
@ -0,0 +1,22 @@
|
||||
#ifndef EXTCPCLIENT_H
|
||||
#define EXTCPCLIENT_H
|
||||
|
||||
#include <QMainWindow>
|
||||
|
||||
namespace Ui {
|
||||
class ExTcpClient;
|
||||
}
|
||||
|
||||
class ExTcpClient : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ExTcpClient(QWidget *parent = nullptr);
|
||||
~ExTcpClient();
|
||||
|
||||
private:
|
||||
Ui::ExTcpClient *ui;
|
||||
};
|
||||
|
||||
#endif // EXTCPCLIENT_H
|
40
QtTcpEx/ExTcpClient/ExTcpClient.pro
Normal file
40
QtTcpEx/ExTcpClient/ExTcpClient.pro
Normal file
@ -0,0 +1,40 @@
|
||||
#-------------------------------------------------
|
||||
#
|
||||
# Project created by QtCreator 2019-11-20T23:01:48
|
||||
#
|
||||
#-------------------------------------------------
|
||||
|
||||
QT += core gui
|
||||
|
||||
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
||||
|
||||
TARGET = ExTcpClient
|
||||
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 \
|
||||
ExTcpClient.cpp
|
||||
|
||||
HEADERS += \
|
||||
ExTcpClient.h
|
||||
|
||||
FORMS += \
|
||||
ExTcpClient.ui
|
||||
|
||||
# Default rules for deployment.
|
||||
qnx: target.path = /tmp/$${TARGET}/bin
|
||||
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
||||
!isEmpty(target.path): INSTALLS += target
|
24
QtTcpEx/ExTcpClient/ExTcpClient.ui
Normal file
24
QtTcpEx/ExTcpClient/ExTcpClient.ui
Normal file
@ -0,0 +1,24 @@
|
||||
<ui version="4.0">
|
||||
<class>ExTcpClient</class>
|
||||
<widget class="QMainWindow" name="ExTcpClient" >
|
||||
<property name="geometry" >
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>400</width>
|
||||
<height>300</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle" >
|
||||
<string>ExTcpClient</string>
|
||||
</property>
|
||||
<widget class="QMenuBar" name="menuBar" />
|
||||
<widget class="QToolBar" name="mainToolBar" />
|
||||
<widget class="QWidget" name="centralWidget" />
|
||||
<widget class="QStatusBar" name="statusBar" />
|
||||
</widget>
|
||||
<layoutDefault spacing="6" margin="11" />
|
||||
<pixmapfunction></pixmapfunction>
|
||||
<resources/>
|
||||
<connections/>
|
||||
</ui>
|
11
QtTcpEx/ExTcpClient/main.cpp
Normal file
11
QtTcpEx/ExTcpClient/main.cpp
Normal file
@ -0,0 +1,11 @@
|
||||
#include "ExTcpClient.h"
|
||||
#include <QApplication>
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
QApplication a(argc, argv);
|
||||
ExTcpClient w;
|
||||
w.show();
|
||||
|
||||
return a.exec();
|
||||
}
|
Loading…
Reference in New Issue
Block a user