WSJT-X/README.md

79 lines
1.6 KiB
Markdown
Raw Normal View History

2012-11-05 13:42:35 -05:00
A dark stylesheet for Qt applications.
2012-08-23 08:30:23 -04:00
2012-11-05 13:42:35 -05:00
Screenshots
===================
2012-08-23 09:03:05 -04:00
2012-11-05 13:42:35 -05:00
**TODO: Add screenshots**
2012-08-23 09:03:05 -04:00
2012-11-05 13:42:35 -05:00
Usage
============
2012-08-23 09:03:05 -04:00
2012-11-05 13:42:35 -05:00
- Download/clone the project next to your main executable (or wherever you find it fits well)
- Compile the qrc file for your system and add it to your application. (simply compile_qrc.py script, it will compile the qrc file for use with Qt (c++), PyQt4 and Pyside.
- Load QDarkStyleSheets/style.qss and
- apply it on your QApplication instance
Here is a quick snippet in python (PySide) that shows how to use the
stylesheet.
2012-08-23 09:03:05 -04:00
2012-11-05 13:42:35 -05:00
```Python
import sys
from PySide import QtGui
# import the style resources comiled by compile_rc.py
import style_pyside_rc
# create the application and the main window
app = QtGui.QApplication(sys.argv)
window = QtGui.QMainWindow()
# setup stylesheet
with open("style.qss", 'r') as stylesheet:
app.setStyleSheet(stylesheet.read())
# run
window.show()
app.exec_()
2012-11-05 13:42:35 -05:00
```
2012-08-23 09:03:05 -04:00
Status:
==============
The following widgets are styled:
- QMainWindow
- QWidget
- QMenu, QMenuBar
- QToolTip
- QAbstractItemView
- QLineEdit
- QGroupBox
- QTextEdit, QPlainTextEdit
- QTreeView,
- QScrollBar
- QRadioButton
- QCheckBox
- QComboBox
- QPushButton
- QToolButton
- QToolBar
- QProgressBar
- QSpinBox
- QFrame
- QTabWidget, QTabBar
- QDockWidget
- QSlider (horizontal and vertical)
What still needs to be done:
- QAbstractScrollArea
- QSplitter
- QStatusBar
- QToolBox
Contact information:
===========================
- Maintainer: colin.duquesnoy@gmail.com
- Homepage: https://github.com/ColinDuquesnoy/QDarkStyleSheet