Use Qt resources for the window icon.
This commit is contained in:
parent
ea5ee0e7c8
commit
d1d6fb3dce
1
.gitignore
vendored
1
.gitignore
vendored
@ -10,7 +10,6 @@ __pycache__
|
|||||||
/setuptools-*.egg
|
/setuptools-*.egg
|
||||||
/setuptools-*.zip
|
/setuptools-*.zip
|
||||||
/qutebrowser/git-commit-id
|
/qutebrowser/git-commit-id
|
||||||
/qutebrowser/icons
|
|
||||||
/doc/*.html
|
/doc/*.html
|
||||||
/README.html
|
/README.html
|
||||||
/qutebrowser/html/doc/
|
/qutebrowser/html/doc/
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
recursive-include qutebrowser/html *.html
|
recursive-include qutebrowser/html *.html
|
||||||
recursive-include qutebrowser/test *.py
|
recursive-include qutebrowser/test *.py
|
||||||
recursive-include qutebrowser/icons *
|
|
||||||
recursive-include icons *
|
recursive-include icons *
|
||||||
include qutebrowser/test/testfile
|
include qutebrowser/test/testfile
|
||||||
include qutebrowser/git-commit-id
|
include qutebrowser/git-commit-id
|
||||||
|
13
qutebrowser.rcc
Normal file
13
qutebrowser.rcc
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<!DOCTYPE RCC><RCC version="1.0">
|
||||||
|
<qresource>
|
||||||
|
<file>icons/qutebrowser-16x16.png</file>
|
||||||
|
<file>icons/qutebrowser-24x24.png</file>
|
||||||
|
<file>icons/qutebrowser-32x32.png</file>
|
||||||
|
<file>icons/qutebrowser-48x48.png</file>
|
||||||
|
<file>icons/qutebrowser-64x64.png</file>
|
||||||
|
<file>icons/qutebrowser-96x96.png</file>
|
||||||
|
<file>icons/qutebrowser-128x128.png</file>
|
||||||
|
<file>icons/qutebrowser-256x256.png</file>
|
||||||
|
<file>icons/qutebrowser-512x512.png</file>
|
||||||
|
</qresource>
|
||||||
|
</RCC>
|
@ -37,6 +37,7 @@ from PyQt5.QtCore import (pyqtSlot, qInstallMessageHandler, QTimer, QUrl,
|
|||||||
QStandardPaths, QObject, Qt)
|
QStandardPaths, QObject, Qt)
|
||||||
|
|
||||||
import qutebrowser
|
import qutebrowser
|
||||||
|
import qutebrowser.resources # pylint: disable=unused-import
|
||||||
from qutebrowser.commands import cmdutils, runners
|
from qutebrowser.commands import cmdutils, runners
|
||||||
from qutebrowser.config import style, config, websettings
|
from qutebrowser.config import style, config, websettings
|
||||||
from qutebrowser.browser import quickmarks, cookies, cache, adblock
|
from qutebrowser.browser import quickmarks, cookies, cache, adblock
|
||||||
@ -202,12 +203,8 @@ class Application(QApplication):
|
|||||||
"""Initialize the icon of qutebrowser."""
|
"""Initialize the icon of qutebrowser."""
|
||||||
icon = QIcon()
|
icon = QIcon()
|
||||||
for size in (16, 24, 32, 48, 64, 96, 128, 256, 512):
|
for size in (16, 24, 32, 48, 64, 96, 128, 256, 512):
|
||||||
filename = 'icons/qutebrowser-{}x{}.png'.format(size, size)
|
filename = ':/icons/qutebrowser-{}x{}.png'.format(size, size)
|
||||||
data = utils.read_file(filename, binary=True)
|
pixmap = QPixmap(filename)
|
||||||
pixmap = QPixmap()
|
|
||||||
ok = pixmap.loadFromData(data, 'PNG')
|
|
||||||
if not ok:
|
|
||||||
raise ValueError("Could not load icon!")
|
|
||||||
qtutils.ensure_not_null(pixmap)
|
qtutils.ensure_not_null(pixmap)
|
||||||
icon.addPixmap(pixmap)
|
icon.addPixmap(pixmap)
|
||||||
qtutils.ensure_not_null(icon)
|
qtutils.ensure_not_null(icon)
|
||||||
|
5707
qutebrowser/resources.py
Normal file
5707
qutebrowser/resources.py
Normal file
File diff suppressed because it is too large
Load Diff
@ -52,7 +52,6 @@ build_exe_options = {
|
|||||||
('qutebrowser/html', 'html'),
|
('qutebrowser/html', 'html'),
|
||||||
('qutebrowser/html/doc', 'html/doc'),
|
('qutebrowser/html/doc', 'html/doc'),
|
||||||
('qutebrowser/git-commit-id', 'git-commit-id'),
|
('qutebrowser/git-commit-id', 'git-commit-id'),
|
||||||
('icons', 'icons'),
|
|
||||||
],
|
],
|
||||||
'include_msvcr': True,
|
'include_msvcr': True,
|
||||||
'excludes': ['tkinter'],
|
'excludes': ['tkinter'],
|
||||||
|
23
setup.py
23
setup.py
@ -23,25 +23,16 @@
|
|||||||
|
|
||||||
import os
|
import os
|
||||||
import os.path
|
import os.path
|
||||||
import glob
|
|
||||||
import shutil
|
|
||||||
|
|
||||||
from scripts import setupcommon as common
|
from scripts import setupcommon as common
|
||||||
|
|
||||||
import setuptools
|
import setuptools
|
||||||
|
|
||||||
|
|
||||||
BASEDIR = os.path.dirname(os.path.realpath(__file__))
|
|
||||||
|
|
||||||
|
|
||||||
icon_path = os.path.join('qutebrowser', 'icons')
|
|
||||||
try:
|
try:
|
||||||
shutil.rmtree(icon_path)
|
BASEDIR = os.path.dirname(os.path.realpath(__file__))
|
||||||
except OSError:
|
except NameError:
|
||||||
pass
|
BASEDIR = None
|
||||||
os.mkdir(icon_path)
|
|
||||||
for fn in glob.glob('icons/*.png'):
|
|
||||||
shutil.copy(fn, icon_path)
|
|
||||||
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
@ -54,10 +45,10 @@ try:
|
|||||||
test_suite='qutebrowser.test',
|
test_suite='qutebrowser.test',
|
||||||
zip_safe=True,
|
zip_safe=True,
|
||||||
install_requires=['pypeg2', 'jinja2', 'pygments'],
|
install_requires=['pypeg2', 'jinja2', 'pygments'],
|
||||||
data_files=[('icons', glob.glob('icons/*'))],
|
|
||||||
**common.setupdata
|
**common.setupdata
|
||||||
)
|
)
|
||||||
finally:
|
finally:
|
||||||
path = os.path.join(BASEDIR, 'qutebrowser', 'git-commit-id')
|
if BASEDIR is not None:
|
||||||
if os.path.exists(path):
|
path = os.path.join(BASEDIR, 'qutebrowser', 'git-commit-id')
|
||||||
os.remove(path)
|
if os.path.exists(path):
|
||||||
|
os.remove(path)
|
||||||
|
Loading…
Reference in New Issue
Block a user