彻底改版2.0
8
ui/uidemo09/form/form.pri
Normal file
@@ -0,0 +1,8 @@
|
||||
FORMS += \
|
||||
$$PWD/frmmain.ui
|
||||
|
||||
HEADERS += \
|
||||
$$PWD/frmmain.h
|
||||
|
||||
SOURCES += \
|
||||
$$PWD/frmmain.cpp
|
||||
73
ui/uidemo09/form/frmmain.cpp
Normal file
@@ -0,0 +1,73 @@
|
||||
#pragma execution_character_set("utf-8")
|
||||
|
||||
#include "frmmain.h"
|
||||
#include "ui_frmmain.h"
|
||||
|
||||
frmMain::frmMain(QWidget *parent) : QWidget(parent), ui(new Ui::frmMain)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
this->initForm();
|
||||
}
|
||||
|
||||
frmMain::~frmMain()
|
||||
{
|
||||
delete ui;
|
||||
}
|
||||
|
||||
void frmMain::initForm()
|
||||
{
|
||||
this->setWindowTitle("九宫格主界面");
|
||||
|
||||
bg = "main2.jpg";
|
||||
QList<QToolButton *> btns = this->findChildren<QToolButton *>();
|
||||
|
||||
foreach (QToolButton *btn, btns) {
|
||||
connect(btn, SIGNAL(clicked()), this, SLOT(buttonClick()));
|
||||
}
|
||||
}
|
||||
|
||||
void frmMain::buttonClick()
|
||||
{
|
||||
QToolButton *btn = (QToolButton *)sender();
|
||||
QString objName = btn->objectName();
|
||||
|
||||
if (objName == "btnCOMTool") {
|
||||
if (bg == "main1.jpg") {
|
||||
bg = "main2.jpg";
|
||||
} else if (bg == "main2.jpg") {
|
||||
bg = "main3.jpg";
|
||||
} else if (bg == "main3.jpg") {
|
||||
bg = "main4.jpg";
|
||||
} else if (bg == "main4.jpg") {
|
||||
bg = "main5.jpg";
|
||||
} else if (bg == "main5.jpg") {
|
||||
bg = "main1.jpg";
|
||||
}
|
||||
|
||||
QString qss = QString("QWidget#frm{background-image: url(:/image/%1);}").arg(bg);
|
||||
qss += "QToolButton{color:#E7ECF0;background-color:rgba(0,0,0,0);border-style:none;}";
|
||||
this->setStyleSheet(qss);
|
||||
} else if (objName == "btnAddressTool") {
|
||||
|
||||
} else if (objName == "btnTCPTool") {
|
||||
this->close();
|
||||
} else if (objName == "btnCOMTCPTool") {
|
||||
|
||||
} else if (objName == "btnDefence") {
|
||||
|
||||
} else if (objName == "btnHostTool") {
|
||||
|
||||
} else if (objName == "btnLinkTool") {
|
||||
|
||||
} else if (objName == "btnMaiChongTool") {
|
||||
|
||||
} else if (objName == "btnPlot") {
|
||||
|
||||
} else if (objName == "btnZhangLi4Tool") {
|
||||
|
||||
} else if (objName == "btnZhangLi5Tool") {
|
||||
|
||||
} else if (objName == "btnZhangLiTool") {
|
||||
|
||||
}
|
||||
}
|
||||
27
ui/uidemo09/form/frmmain.h
Normal file
@@ -0,0 +1,27 @@
|
||||
#ifndef FRMMAIN_H
|
||||
#define FRMMAIN_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
namespace Ui {
|
||||
class frmMain;
|
||||
}
|
||||
|
||||
class frmMain : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit frmMain(QWidget *parent = 0);
|
||||
~frmMain();
|
||||
|
||||
private:
|
||||
Ui::frmMain *ui;
|
||||
QString bg;
|
||||
|
||||
private slots:
|
||||
void initForm();
|
||||
void buttonClick();
|
||||
};
|
||||
|
||||
#endif // FRMMAIN_H
|
||||
382
ui/uidemo09/form/frmmain.ui
Normal file
@@ -0,0 +1,382 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>frmMain</class>
|
||||
<widget class="QWidget" name="frmMain">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>800</width>
|
||||
<height>480</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Dialog</string>
|
||||
</property>
|
||||
<property name="styleSheet">
|
||||
<string notr="true">QWidget#frm{
|
||||
background-image: url(:/image/main2.jpg);
|
||||
}
|
||||
QToolButton{
|
||||
font: 10pt "微软雅黑";
|
||||
color:#E7ECF0;
|
||||
background-color:rgba(0,0,0,0);
|
||||
border-style:none;
|
||||
}</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="leftMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QWidget" name="frm" native="true">
|
||||
<layout class="QGridLayout" name="gridLayout">
|
||||
<property name="leftMargin">
|
||||
<number>30</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>30</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>30</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>30</number>
|
||||
</property>
|
||||
<property name="spacing">
|
||||
<number>6</number>
|
||||
</property>
|
||||
<item row="0" column="0">
|
||||
<widget class="QToolButton" name="btnCOMTool">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>更换背景</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../other/main.qrc">
|
||||
<normaloff>:/image/PNG112.png</normaloff>:/image/PNG112.png</iconset>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>100</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolButtonStyle">
|
||||
<enum>Qt::ToolButtonTextUnderIcon</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QToolButton" name="btnTCPTool">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>退出系统</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../other/main.qrc">
|
||||
<normaloff>:/image/PNG100.png</normaloff>:/image/PNG100.png</iconset>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>100</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolButtonStyle">
|
||||
<enum>Qt::ToolButtonTextUnderIcon</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="2">
|
||||
<widget class="QToolButton" name="btnCOMTCPTool">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>串口转网络工具</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../other/main.qrc">
|
||||
<normaloff>:/image/PNG99.png</normaloff>:/image/PNG99.png</iconset>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>100</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolButtonStyle">
|
||||
<enum>Qt::ToolButtonTextUnderIcon</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="3">
|
||||
<widget class="QToolButton" name="btnAddressTool">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>设备调试工具</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../other/main.qrc">
|
||||
<normaloff>:/image/PNG101.png</normaloff>:/image/PNG101.png</iconset>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>100</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolButtonStyle">
|
||||
<enum>Qt::ToolButtonTextUnderIcon</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QToolButton" name="btnZhangLiTool">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>张力批量配置工具</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../other/main.qrc">
|
||||
<normaloff>:/image/PNG103.png</normaloff>:/image/PNG103.png</iconset>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>100</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolButtonStyle">
|
||||
<enum>Qt::ToolButtonTextUnderIcon</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QToolButton" name="btnZhangLi5Tool">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>5道张力调试工具</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../other/main.qrc">
|
||||
<normaloff>:/image/PNG104.png</normaloff>:/image/PNG104.png</iconset>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>100</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolButtonStyle">
|
||||
<enum>Qt::ToolButtonTextUnderIcon</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="2">
|
||||
<widget class="QToolButton" name="btnMaiChongTool">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>脉冲主机调试工具</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../other/main.qrc">
|
||||
<normaloff>:/image/PNG105.png</normaloff>:/image/PNG105.png</iconset>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>100</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolButtonStyle">
|
||||
<enum>Qt::ToolButtonTextUnderIcon</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="3">
|
||||
<widget class="QToolButton" name="btnHostTool">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>主机内部调试工具</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../other/main.qrc">
|
||||
<normaloff>:/image/PNG108.png</normaloff>:/image/PNG108.png</iconset>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>100</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolButtonStyle">
|
||||
<enum>Qt::ToolButtonTextUnderIcon</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QToolButton" name="btnLinkTool">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>联动模块调试工具</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../other/main.qrc">
|
||||
<normaloff>:/image/PNG109.png</normaloff>:/image/PNG109.png</iconset>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>100</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolButtonStyle">
|
||||
<enum>Qt::ToolButtonTextUnderIcon</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QToolButton" name="btnPlot">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>张力曲线图</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../other/main.qrc">
|
||||
<normaloff>:/image/PNG110.png</normaloff>:/image/PNG110.png</iconset>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>100</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolButtonStyle">
|
||||
<enum>Qt::ToolButtonTextUnderIcon</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="2">
|
||||
<widget class="QToolButton" name="btnDefence">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>防区管理</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../other/main.qrc">
|
||||
<normaloff>:/image/PNG111.png</normaloff>:/image/PNG111.png</iconset>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>100</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolButtonStyle">
|
||||
<enum>Qt::ToolButtonTextUnderIcon</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="3">
|
||||
<widget class="QToolButton" name="btnConfig">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>系统配置</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../other/main.qrc">
|
||||
<normaloff>:/image/PNG114.png</normaloff>:/image/PNG114.png</iconset>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>100</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolButtonStyle">
|
||||
<enum>Qt::ToolButtonTextUnderIcon</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<resources>
|
||||
<include location="../other/main.qrc"/>
|
||||
</resources>
|
||||
<connections/>
|
||||
</ui>
|
||||
13
ui/uidemo09/head.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#include <QtCore>
|
||||
#include <QtGui>
|
||||
|
||||
#if (QT_VERSION >= QT_VERSION_CHECK(5,0,0))
|
||||
#include <QtWidgets>
|
||||
#endif
|
||||
|
||||
#if (QT_VERSION >= QT_VERSION_CHECK(6,0,0))
|
||||
#include <QtCore5Compat>
|
||||
#endif
|
||||
|
||||
#pragma execution_character_set("utf-8")
|
||||
|
||||
33
ui/uidemo09/main.cpp
Normal file
@@ -0,0 +1,33 @@
|
||||
#include "frmmain.h"
|
||||
#include "appinit.h"
|
||||
#include "quihelper.h"
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
//设置不应用操作系统设置比如字体
|
||||
QApplication::setDesktopSettingsAware(false);
|
||||
#if (QT_VERSION >= QT_VERSION_CHECK(5,14,0))
|
||||
QGuiApplication::setHighDpiScaleFactorRoundingPolicy(Qt::HighDpiScaleFactorRoundingPolicy::Floor);
|
||||
#endif
|
||||
QApplication a(argc, argv);
|
||||
AppInit::Instance()->start();
|
||||
|
||||
QUIHelper::setFont();
|
||||
QUIHelper::setCode();
|
||||
|
||||
//加载样式表
|
||||
QFile file(":/qss/psblack.css");
|
||||
if (file.open(QFile::ReadOnly)) {
|
||||
QString qss = QLatin1String(file.readAll());
|
||||
QString paletteColor = qss.mid(20, 7);
|
||||
qApp->setPalette(QPalette(paletteColor));
|
||||
qApp->setStyleSheet(qss);
|
||||
file.close();
|
||||
}
|
||||
|
||||
frmMain w;
|
||||
QUIHelper::setFormInCenter(&w);
|
||||
w.show();
|
||||
|
||||
return a.exec();
|
||||
}
|
||||
BIN
ui/uidemo09/other/image/PNG100.png
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
ui/uidemo09/other/image/PNG101.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
ui/uidemo09/other/image/PNG102.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
ui/uidemo09/other/image/PNG103.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
ui/uidemo09/other/image/PNG104.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
ui/uidemo09/other/image/PNG105.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
ui/uidemo09/other/image/PNG106.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
ui/uidemo09/other/image/PNG107.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
ui/uidemo09/other/image/PNG108.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
ui/uidemo09/other/image/PNG109.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
ui/uidemo09/other/image/PNG110.png
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
ui/uidemo09/other/image/PNG111.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
ui/uidemo09/other/image/PNG112.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
ui/uidemo09/other/image/PNG114.png
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
ui/uidemo09/other/image/PNG99.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
ui/uidemo09/other/image/main1.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
ui/uidemo09/other/image/main2.jpg
Normal file
|
After Width: | Height: | Size: 41 KiB |
BIN
ui/uidemo09/other/image/main3.jpg
Normal file
|
After Width: | Height: | Size: 161 KiB |
BIN
ui/uidemo09/other/image/main4.jpg
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
ui/uidemo09/other/image/main5.jpg
Normal file
|
After Width: | Height: | Size: 8.9 KiB |
24
ui/uidemo09/other/main.qrc
Normal file
@@ -0,0 +1,24 @@
|
||||
<RCC>
|
||||
<qresource prefix="/">
|
||||
<file>image/main1.jpg</file>
|
||||
<file>image/main2.jpg</file>
|
||||
<file>image/main3.jpg</file>
|
||||
<file>image/main4.jpg</file>
|
||||
<file>image/main5.jpg</file>
|
||||
<file>image/PNG99.png</file>
|
||||
<file>image/PNG100.png</file>
|
||||
<file>image/PNG101.png</file>
|
||||
<file>image/PNG102.png</file>
|
||||
<file>image/PNG103.png</file>
|
||||
<file>image/PNG104.png</file>
|
||||
<file>image/PNG105.png</file>
|
||||
<file>image/PNG106.png</file>
|
||||
<file>image/PNG107.png</file>
|
||||
<file>image/PNG108.png</file>
|
||||
<file>image/PNG109.png</file>
|
||||
<file>image/PNG110.png</file>
|
||||
<file>image/PNG111.png</file>
|
||||
<file>image/PNG112.png</file>
|
||||
<file>image/PNG114.png</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
18
ui/uidemo09/uidemo09.pro
Normal file
@@ -0,0 +1,18 @@
|
||||
QT += core gui
|
||||
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
||||
greaterThan(QT_MAJOR_VERSION, 5): QT += core5compat
|
||||
|
||||
TARGET = uidemo09
|
||||
TEMPLATE = app
|
||||
|
||||
HEADERS += head.h
|
||||
SOURCES += main.cpp
|
||||
RESOURCES += other/main.qrc
|
||||
RESOURCES += $$PWD/../core_qss/qss.qrc
|
||||
|
||||
INCLUDEPATH += $$PWD
|
||||
INCLUDEPATH += $$PWD/form
|
||||
include ($$PWD/form/form.pri)
|
||||
|
||||
INCLUDEPATH += $$PWD/../core_common
|
||||
include ($$PWD/../core_common/core_common.pri)
|
||||