feat: 创建一个空的 TcpServer 的项目

This commit is contained in:
touwoyimuli 2019-11-20 22:59:23 +08:00
parent 1bbfcde872
commit 650dbd1186
6 changed files with 111 additions and 0 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@ -0,0 +1,14 @@
#include "ExTcpServer.h"
#include "ui_ExTcpServer.h"
ExTcpServer::ExTcpServer(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::ExTcpServer)
{
ui->setupUi(this);
}
ExTcpServer::~ExTcpServer()
{
delete ui;
}

View File

@ -0,0 +1,22 @@
#ifndef EXTCPSERVER_H
#define EXTCPSERVER_H
#include <QMainWindow>
namespace Ui {
class ExTcpServer;
}
class ExTcpServer : public QMainWindow
{
Q_OBJECT
public:
explicit ExTcpServer(QWidget *parent = nullptr);
~ExTcpServer();
private:
Ui::ExTcpServer *ui;
};
#endif // EXTCPSERVER_H

View File

@ -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

View File

@ -0,0 +1,24 @@
<ui version="4.0">
<class>ExTcpServer</class>
<widget class="QMainWindow" name="ExTcpServer" >
<property name="geometry" >
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>300</height>
</rect>
</property>
<property name="windowTitle" >
<string>ExTcpServer</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>

View File

@ -0,0 +1,11 @@
#include "ExTcpServer.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
ExTcpServer w;
w.show();
return a.exec();
}