All Projects → chenwen1126 → Qss

chenwen1126 / Qss

Licence: GPL-3.0 License
Qt Style Sheets Library With Custom TitleBar!!!

Programming Languages

C++
36643 projects - #6 most used programming language
QMake
1090 projects

Projects that are alternatives of or similar to Qss

Qssstylesheeteditor
Editor for qt stylesheet (qss). Real-time preview, and user can define varibles in qss.
Stars: ✭ 356 (+483.61%)
Mutual labels:  qt, stylesheet
qt cef poc
Proof of concept of simple browser w/ CEF and Qt
Stars: ✭ 26 (-57.38%)
Mutual labels:  qt
bettertext.css
Improved default typography for naked HTML or Markdown-generated content.
Stars: ✭ 36 (-40.98%)
Mutual labels:  stylesheet
battlescribe-stylesheets
XSL Stylesheet to use for Kill Team rosters in Battlescribe
Stars: ✭ 26 (-57.38%)
Mutual labels:  stylesheet
DoodleCSS
A simple hand drawn HTML/CSS theme
Stars: ✭ 850 (+1293.44%)
Mutual labels:  stylesheet
qtCustomPlugins
A set of custom widgets to use directly in QtDesigner.
Stars: ✭ 48 (-21.31%)
Mutual labels:  qt
YAS
Yet Another Stylesheet (YAML-based Stylesheet Engine)
Stars: ✭ 23 (-62.3%)
Mutual labels:  stylesheet
Swiftly
Swiftly is an easy to use Qt/C++ web framework
Stars: ✭ 20 (-67.21%)
Mutual labels:  qt
QUaServer
Qt C++ wrapper for open62541 server stack
Stars: ✭ 78 (+27.87%)
Mutual labels:  qt
ResetCSS
Reset CSS Stylesheet to reduce browser inconsistencies.
Stars: ✭ 17 (-72.13%)
Mutual labels:  stylesheet
markdown.css
📝 The simple CSS to replicate the GitHub Markdown style (Sukka Ver.)
Stars: ✭ 13 (-78.69%)
Mutual labels:  stylesheet
ScienceNotebooks
Collection of tools and stylesheet for scientific writting and learning (through Anki)
Stars: ✭ 43 (-29.51%)
Mutual labels:  stylesheet
octoxbps
A Qt-based XBPS front end
Stars: ✭ 45 (-26.23%)
Mutual labels:  qt
CustomWebCheckbox
An example of a make checkbox design on the web.
Stars: ✭ 12 (-80.33%)
Mutual labels:  stylesheet
meta-pelux
PELUX is an open source, GENIVI compliant development platform that supports the Qt Automotive Suite
Stars: ✭ 34 (-44.26%)
Mutual labels:  qt
pulsar-core
🚀 Handy dynamic styles utilities for React Native and React Native Web.
Stars: ✭ 27 (-55.74%)
Mutual labels:  stylesheet
postcss-gtk
Processes GTK+ CSS into browser CSS
Stars: ✭ 23 (-62.3%)
Mutual labels:  stylesheet
PyQtDarkTheme
A flat dark theme for PySide and PyQt.
Stars: ✭ 50 (-18.03%)
Mutual labels:  stylesheet
QtNotepad
Super lightweight and super simple notepad application
Stars: ✭ 50 (-18.03%)
Mutual labels:  qt
orm-qt
Object Relation Mapping with Qt library
Stars: ✭ 32 (-47.54%)
Mutual labels:  qt

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:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].