liucf88 / Qss

Qt Style Sheets Library With Custom TitleBar!!!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Qss

Qt Style Sheets Example With Custom Title Bar!!!

How to use

step 1: add Qss.h,Qss.cpp,qss.qrc to your project.
step 2: add code like this:

QFile file(":/qss/css/qss.css");
if (!file.open(QIODevice::ReadOnly))
	exit(0);

QTextStream in(&file);
QString css = in.readAll();
qApp->setStyleSheet(css);

to you main function.
step3: your UI class inherit from QssDialog, QssMainWindow provided by Qss.

Screenshot

QssDemo Screenshot like this:

About

Qt Style Sheets Library With Custom TitleBar!!!

License:GNU General Public License v3.0


Languages

Language:C++ 99.5%Language:QMake 0.5%