├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── QT_UI_Simplify.pro ├── README.md ├── buttonspage.cpp ├── buttonspage.h ├── circleprogress.cpp ├── circleprogress.h ├── framelesswindow.cpp ├── framelesswindow.h ├── framelesswindow.ui ├── main.cpp ├── progresspage.cpp ├── progresspage.h ├── qss.qrc ├── qss ├── setTheme.qss └── windowControl.qss ├── res.qrc ├── res ├── Qt.png ├── bilibili.png ├── close.png ├── edit.png ├── max.png ├── menu.png ├── min.png ├── normal.png ├── onTopOff.png ├── onTopOn.png ├── progress.png ├── radio.png ├── skin.png ├── switch.png ├── table.png └── title.png ├── skinpage.cpp ├── skinpage.h ├── tabel.cpp ├── tabel.h ├── tablepage.cpp ├── tablepage.h └── util ├── compositionwindoweffect.cpp ├── compositionwindoweffect.h └── util.pri /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/LICENSE -------------------------------------------------------------------------------- /QT_UI_Simplify.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/QT_UI_Simplify.pro -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/README.md -------------------------------------------------------------------------------- /buttonspage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/buttonspage.cpp -------------------------------------------------------------------------------- /buttonspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/buttonspage.h -------------------------------------------------------------------------------- /circleprogress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/circleprogress.cpp -------------------------------------------------------------------------------- /circleprogress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/circleprogress.h -------------------------------------------------------------------------------- /framelesswindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/framelesswindow.cpp -------------------------------------------------------------------------------- /framelesswindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/framelesswindow.h -------------------------------------------------------------------------------- /framelesswindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/framelesswindow.ui -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/main.cpp -------------------------------------------------------------------------------- /progresspage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/progresspage.cpp -------------------------------------------------------------------------------- /progresspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/progresspage.h -------------------------------------------------------------------------------- /qss.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/qss.qrc -------------------------------------------------------------------------------- /qss/setTheme.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/qss/setTheme.qss -------------------------------------------------------------------------------- /qss/windowControl.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/qss/windowControl.qss -------------------------------------------------------------------------------- /res.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/res.qrc -------------------------------------------------------------------------------- /res/Qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/res/Qt.png -------------------------------------------------------------------------------- /res/bilibili.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/res/bilibili.png -------------------------------------------------------------------------------- /res/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/res/close.png -------------------------------------------------------------------------------- /res/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/res/edit.png -------------------------------------------------------------------------------- /res/max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/res/max.png -------------------------------------------------------------------------------- /res/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/res/menu.png -------------------------------------------------------------------------------- /res/min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/res/min.png -------------------------------------------------------------------------------- /res/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/res/normal.png -------------------------------------------------------------------------------- /res/onTopOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/res/onTopOff.png -------------------------------------------------------------------------------- /res/onTopOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/res/onTopOn.png -------------------------------------------------------------------------------- /res/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/res/progress.png -------------------------------------------------------------------------------- /res/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/res/radio.png -------------------------------------------------------------------------------- /res/skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/res/skin.png -------------------------------------------------------------------------------- /res/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/res/switch.png -------------------------------------------------------------------------------- /res/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/res/table.png -------------------------------------------------------------------------------- /res/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/res/title.png -------------------------------------------------------------------------------- /skinpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/skinpage.cpp -------------------------------------------------------------------------------- /skinpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/skinpage.h -------------------------------------------------------------------------------- /tabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/tabel.cpp -------------------------------------------------------------------------------- /tabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/tabel.h -------------------------------------------------------------------------------- /tablepage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/tablepage.cpp -------------------------------------------------------------------------------- /tablepage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/tablepage.h -------------------------------------------------------------------------------- /util/compositionwindoweffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/util/compositionwindoweffect.cpp -------------------------------------------------------------------------------- /util/compositionwindoweffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/util/compositionwindoweffect.h -------------------------------------------------------------------------------- /util/util.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynnkie/QT_UI_Simplify/HEAD/util/util.pri --------------------------------------------------------------------------------