mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-15 08:31:57 -05:00
#2 Switch to MIT license
This commit is contained in:
parent
182b794b4a
commit
469d9afd84
@ -7,7 +7,7 @@ A dark stylesheet for Qt applications.
|
|||||||
License
|
License
|
||||||
---------
|
---------
|
||||||
|
|
||||||
This project is licensed under the LGPL v3
|
This project is licensed under the MIT license.
|
||||||
|
|
||||||
|
|
||||||
Installation
|
Installation
|
||||||
|
@ -1,59 +0,0 @@
|
|||||||
#!/usr/bin/env python
|
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
#
|
|
||||||
# QDarkStyle - A dark style sheet for Qt applications
|
|
||||||
#
|
|
||||||
# Copyright 2012, 2013 Colin Duquesnoy <colin.duquesnoy@gmail.com>
|
|
||||||
#
|
|
||||||
# This software is released under the LGPLv3 license.
|
|
||||||
# You should have received a copy of the GNU Lesser General Public License
|
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
"""
|
|
||||||
A simple example of use.
|
|
||||||
|
|
||||||
Load an ui made in QtDesigner and apply the DarkStyleSheet.
|
|
||||||
|
|
||||||
|
|
||||||
Requirements:
|
|
||||||
- Python 2 or Python 3
|
|
||||||
- PySide
|
|
||||||
|
|
||||||
.. note.. :: qdarkstyle does not have to be installed to run
|
|
||||||
the example
|
|
||||||
|
|
||||||
"""
|
|
||||||
import os
|
|
||||||
import sys
|
|
||||||
from PySide import QtGui
|
|
||||||
from os.path import abspath, dirname
|
|
||||||
# make the example runnable without the need to install
|
|
||||||
sys.path.insert(0, abspath(dirname(abspath(__file__)) + '/..'))
|
|
||||||
import qdarkstyle
|
|
||||||
import example_ui
|
|
||||||
|
|
||||||
|
|
||||||
def main():
|
|
||||||
"""
|
|
||||||
Application entry point
|
|
||||||
"""
|
|
||||||
# create the application and the main window
|
|
||||||
app = QtGui.QApplication(sys.argv)
|
|
||||||
window = QtGui.QMainWindow()
|
|
||||||
|
|
||||||
# setup ui
|
|
||||||
ui = example_ui.Ui_MainWindow()
|
|
||||||
ui.setupUi(window)
|
|
||||||
window.setWindowTitle("QDarkStyle example")
|
|
||||||
|
|
||||||
# setup stylesheet
|
|
||||||
app.setStyleSheet(qdarkstyle.load_stylesheet(pyside=True))
|
|
||||||
|
|
||||||
# run
|
|
||||||
window.show()
|
|
||||||
app.exec_()
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
main()
|
|
||||||
|
|
72
example/example_pyqt.py
Executable file
72
example/example_pyqt.py
Executable file
@ -0,0 +1,72 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
#
|
||||||
|
# The MIT License (MIT)
|
||||||
|
#
|
||||||
|
# Copyright (c) <2013> <Colin Duquesnoy>
|
||||||
|
#
|
||||||
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
# of this software and associated documentation files (the "Software"), to deal
|
||||||
|
# in the Software without restriction, including without limitation the rights
|
||||||
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
# copies of the Software, and to permit persons to whom the Software is
|
||||||
|
# furnished to do so, subject to the following conditions:
|
||||||
|
#
|
||||||
|
# The above copyright notice and this permission notice shall be included in
|
||||||
|
# all copies or substantial portions of the Software.
|
||||||
|
#
|
||||||
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
# THE SOFTWARE.
|
||||||
|
#
|
||||||
|
"""
|
||||||
|
A simple example of use.
|
||||||
|
|
||||||
|
Load an ui made in QtDesigner and apply the DarkStyleSheet.
|
||||||
|
|
||||||
|
|
||||||
|
Requirements:
|
||||||
|
- Python 2 or Python 3
|
||||||
|
- PySide
|
||||||
|
|
||||||
|
.. note.. :: qdarkstyle does not have to be installed to run
|
||||||
|
the example
|
||||||
|
|
||||||
|
"""
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
from PySide import QtGui
|
||||||
|
from os.path import abspath, dirname
|
||||||
|
# make the example runnable without the need to install
|
||||||
|
sys.path.insert(0, abspath(dirname(abspath(__file__)) + '/..'))
|
||||||
|
import qdarkstyle
|
||||||
|
import example_ui
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
"""
|
||||||
|
Application entry point
|
||||||
|
"""
|
||||||
|
# create the application and the main window
|
||||||
|
app = QtGui.QApplication(sys.argv)
|
||||||
|
window = QtGui.QMainWindow()
|
||||||
|
|
||||||
|
# setup ui
|
||||||
|
ui = example_ui.Ui_MainWindow()
|
||||||
|
ui.setupUi(window)
|
||||||
|
window.setWindowTitle("QDarkStyle example")
|
||||||
|
|
||||||
|
# setup stylesheet
|
||||||
|
app.setStyleSheet(qdarkstyle.load_stylesheet(pyside=True))
|
||||||
|
|
||||||
|
# run
|
||||||
|
window.show()
|
||||||
|
app.exec_()
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
|
|
72
example/example_pyside.py
Executable file
72
example/example_pyside.py
Executable file
@ -0,0 +1,72 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
#
|
||||||
|
# The MIT License (MIT)
|
||||||
|
#
|
||||||
|
# Copyright (c) <2013> <Colin Duquesnoy>
|
||||||
|
#
|
||||||
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
# of this software and associated documentation files (the "Software"), to deal
|
||||||
|
# in the Software without restriction, including without limitation the rights
|
||||||
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
# copies of the Software, and to permit persons to whom the Software is
|
||||||
|
# furnished to do so, subject to the following conditions:
|
||||||
|
#
|
||||||
|
# The above copyright notice and this permission notice shall be included in
|
||||||
|
# all copies or substantial portions of the Software.
|
||||||
|
#
|
||||||
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
# THE SOFTWARE.
|
||||||
|
#
|
||||||
|
"""
|
||||||
|
A simple example of use.
|
||||||
|
|
||||||
|
Load an ui made in QtDesigner and apply the DarkStyleSheet.
|
||||||
|
|
||||||
|
|
||||||
|
Requirements:
|
||||||
|
- Python 2 or Python 3
|
||||||
|
- PySide
|
||||||
|
|
||||||
|
.. note.. :: qdarkstyle does not have to be installed to run
|
||||||
|
the example
|
||||||
|
|
||||||
|
"""
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
from PySide import QtGui
|
||||||
|
from os.path import abspath, dirname
|
||||||
|
# make the example runnable without the need to install
|
||||||
|
sys.path.insert(0, abspath(dirname(abspath(__file__)) + '/..'))
|
||||||
|
import qdarkstyle
|
||||||
|
import example_ui
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
"""
|
||||||
|
Application entry point
|
||||||
|
"""
|
||||||
|
# create the application and the main window
|
||||||
|
app = QtGui.QApplication(sys.argv)
|
||||||
|
window = QtGui.QMainWindow()
|
||||||
|
|
||||||
|
# setup ui
|
||||||
|
ui = example_ui.Ui_MainWindow()
|
||||||
|
ui.setupUi(window)
|
||||||
|
window.setWindowTitle("QDarkStyle example")
|
||||||
|
|
||||||
|
# setup stylesheet
|
||||||
|
app.setStyleSheet(qdarkstyle.load_stylesheet(pyside=True))
|
||||||
|
|
||||||
|
# run
|
||||||
|
window.show()
|
||||||
|
app.exec_()
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
|
|
@ -1,3 +1,27 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
#
|
||||||
|
# The MIT License (MIT)
|
||||||
|
#
|
||||||
|
# Copyright (c) <2013> <Colin Duquesnoy>
|
||||||
|
#
|
||||||
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
# of this software and associated documentation files (the "Software"), to deal
|
||||||
|
# in the Software without restriction, including without limitation the rights
|
||||||
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
# copies of the Software, and to permit persons to whom the Software is
|
||||||
|
# furnished to do so, subject to the following conditions:
|
||||||
|
#
|
||||||
|
# The above copyright notice and this permission notice shall be included in
|
||||||
|
# all copies or substantial portions of the Software.
|
||||||
|
#
|
||||||
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
# THE SOFTWARE.
|
||||||
|
#
|
||||||
"""
|
"""
|
||||||
Initialise the QDarkStyleSheet module when used with python.
|
Initialise the QDarkStyleSheet module when used with python.
|
||||||
|
|
||||||
|
@ -1,13 +1,27 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
#
|
#
|
||||||
# QDarkStyle - A dark style sheet for Qt applications
|
# The MIT License (MIT)
|
||||||
#
|
#
|
||||||
# Copyright 2012, 2013 Colin Duquesnoy <colin.duquesnoy@gmail.com>
|
# Copyright (c) <2013> <Colin Duquesnoy>
|
||||||
#
|
#
|
||||||
# This software is released under the LGPLv3 license.
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
# You should have received a copy of the GNU Lesser General Public License
|
# of this software and associated documentation files (the "Software"), to deal
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# in the Software without restriction, including without limitation the rights
|
||||||
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
# copies of the Software, and to permit persons to whom the Software is
|
||||||
|
# furnished to do so, subject to the following conditions:
|
||||||
|
#
|
||||||
|
# The above copyright notice and this permission notice shall be included in
|
||||||
|
# all copies or substantial portions of the Software.
|
||||||
|
#
|
||||||
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
# THE SOFTWARE.
|
||||||
#
|
#
|
||||||
"""
|
"""
|
||||||
Utility scripts to compile the qrc file. The script will
|
Utility scripts to compile the qrc file. The script will
|
||||||
|
@ -1,11 +1,25 @@
|
|||||||
/*
|
/*
|
||||||
* QDarkStyle - A dark style sheet for Qt applications
|
* The MIT License (MIT)
|
||||||
*
|
*
|
||||||
* Copyright 2012, 2013 Colin Duquesnoy <colin.duquesnoy@gmail.com>
|
* Copyright (c) <2013> <Colin Duquesnoy>
|
||||||
*
|
*
|
||||||
* This software is released under the LGPLv3 license.
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* of this software and associated documentation files (the "Software"), to deal
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* in the Software without restriction, including without limitation the rights
|
||||||
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
* copies of the Software, and to permit persons to whom the Software is
|
||||||
|
* furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
* The above copyright notice and this permission notice shall be included in
|
||||||
|
* all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
* THE SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
QProgressBar:horizontal {
|
QProgressBar:horizontal {
|
||||||
|
26
setup.py
26
setup.py
@ -1,13 +1,27 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
#
|
#
|
||||||
# QDarkStyle - A dark style sheet for Qt applications
|
# The MIT License (MIT)
|
||||||
#
|
#
|
||||||
# Copyright 2012, 2013 Colin Duquesnoy <colin.duquesnoy@gmail.com>
|
# Copyright (c) <2013> <Colin Duquesnoy>
|
||||||
#
|
#
|
||||||
# This software is released under the LGPLv3 license.
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
# You should have received a copy of the GNU Lesser General Public License
|
# of this software and associated documentation files (the "Software"), to deal
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# in the Software without restriction, including without limitation the rights
|
||||||
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
# copies of the Software, and to permit persons to whom the Software is
|
||||||
|
# furnished to do so, subject to the following conditions:
|
||||||
|
#
|
||||||
|
# The above copyright notice and this permission notice shall be included in
|
||||||
|
# all copies or substantial portions of the Software.
|
||||||
|
#
|
||||||
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
# THE SOFTWARE.
|
||||||
#
|
#
|
||||||
"""
|
"""
|
||||||
QDarkStyle is a darks stylesheet for python qt applications
|
QDarkStyle is a darks stylesheet for python qt applications
|
||||||
@ -20,7 +34,7 @@ setup(
|
|||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
package_data={'qdarkstyle': ["*.qss", "*.qrc", "rc/*.png"]},
|
package_data={'qdarkstyle': ["*.qss", "*.qrc", "rc/*.png"]},
|
||||||
url='https://github.com/ColinDuquesnoy/QDarkStyleSheet',
|
url='https://github.com/ColinDuquesnoy/QDarkStyleSheet',
|
||||||
license='LGPLv3',
|
license='MIT',
|
||||||
author='Colin Duquesnoy',
|
author='Colin Duquesnoy',
|
||||||
author_email='colin.duquesnoy@gmail.com',
|
author_email='colin.duquesnoy@gmail.com',
|
||||||
description='A dark stylesheet for pyside/pyqt applications',
|
description='A dark stylesheet for pyside/pyqt applications',
|
||||||
|
Loading…
Reference in New Issue
Block a user