diff --git a/QtCustomStyleEx/Examples.cpp b/QtCustomStyleEx/Examples.cpp new file mode 100644 index 0000000..49fcbae --- /dev/null +++ b/QtCustomStyleEx/Examples.cpp @@ -0,0 +1,15 @@ +#include "Examples.h" +#include "ui_Examples.h" + +Examples::Examples(QWidget *parent) : + QWidget(parent), + ui(new Ui::Examples) +{ + ui->setupUi(this); + setWindowTitle(QObject::tr("创建自定义的CustomStyle风格")); +} + +Examples::~Examples() +{ + delete ui; +} diff --git a/QtCustomStyleEx/Examples.h b/QtCustomStyleEx/Examples.h new file mode 100644 index 0000000..8fe4eaa --- /dev/null +++ b/QtCustomStyleEx/Examples.h @@ -0,0 +1,22 @@ +#ifndef EXAMPLES_H +#define EXAMPLES_H + +#include + +namespace Ui { +class Examples; +} + +class Examples : public QWidget +{ + Q_OBJECT + +public: + explicit Examples(QWidget *parent = nullptr); + ~Examples(); + +private: + Ui::Examples *ui; +}; + +#endif // EXAMPLES_H diff --git a/QtCustomStyleEx/Examples.ui b/QtCustomStyleEx/Examples.ui new file mode 100644 index 0000000..b6774ff --- /dev/null +++ b/QtCustomStyleEx/Examples.ui @@ -0,0 +1,20 @@ + + Examples + + + + 0 + 0 + 400 + 300 + + + + Examples + + + + + + + diff --git a/QtCustomStyleEx/QT_win_32x32.ico b/QtCustomStyleEx/QT_win_32x32.ico new file mode 100644 index 0000000..0ee0568 Binary files /dev/null and b/QtCustomStyleEx/QT_win_32x32.ico differ diff --git a/QtCustomStyleEx/QtCustomStyleEx.pro b/QtCustomStyleEx/QtCustomStyleEx.pro new file mode 100644 index 0000000..57e11d7 --- /dev/null +++ b/QtCustomStyleEx/QtCustomStyleEx.pro @@ -0,0 +1,42 @@ +#------------------------------------------------- +# +# Project created by QtCreator 2019-08-26T19:16:23 +# +#------------------------------------------------- + +QT += core gui + +greaterThan(QT_MAJOR_VERSION, 4): QT += widgets + +TARGET = QtCustomStyleEx +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 \ + Examples.cpp + +HEADERS += \ + Examples.h + +FORMS += \ + Examples.ui + +RC_ICONS += QT_win_32x32.ico + +# 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/QtCustomStyleEx/main.cpp b/QtCustomStyleEx/main.cpp new file mode 100644 index 0000000..5c200aa --- /dev/null +++ b/QtCustomStyleEx/main.cpp @@ -0,0 +1,11 @@ +#include "Examples.h" +#include + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + Examples w; + w.show(); + + return a.exec(); +}