diff options
author | necoro <> | 2007-04-24 20:23:54 +0000 |
---|---|---|
committer | necoro <> | 2007-04-24 20:23:54 +0000 |
commit | 9cb2b747090990fc2301c6b64ef521892ab2644f (patch) | |
tree | 063885fb0410156faff6dff7fa75ce96bc070d8f /portato/gui | |
parent | 859fb7aad346664da005f67e97bb76c393cb1afc (diff) | |
download | portato-9cb2b747090990fc2301c6b64ef521892ab2644f.tar.gz portato-9cb2b747090990fc2301c6b64ef521892ab2644f.tar.bz2 portato-9cb2b747090990fc2301c6b64ef521892ab2644f.zip |
add application icon and desktop file
Diffstat (limited to '')
-rw-r--r-- | portato/gui/gtk/windows.py | 5 | ||||
-rw-r--r-- | portato/gui/qt/windows.py | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/portato/gui/gtk/windows.py b/portato/gui/gtk/windows.py index 12b7a58..88d9a18 100644 --- a/portato/gui/gtk/windows.py +++ b/portato/gui/gtk/windows.py @@ -19,7 +19,7 @@ import gobject # our backend stuff from portato.helper import * -from portato.constants import CONFIG_LOCATION, VERSION, DATA_DIR +from portato.constants import CONFIG_LOCATION, VERSION, DATA_DIR, APP_ICON from portato.backend import flags, system from portato.backend.exceptions import * @@ -42,6 +42,7 @@ class Window: self.tree = gtk.glade.XML(GLADE_FILE, root = self.__class__.__name__) self.tree.signal_autoconnect(self) self.window = self.tree.get_widget(self.__class__.__name__) + self.window.set_icon_from_file(APP_ICON) @staticmethod def watch_cursor (func): @@ -115,7 +116,7 @@ A Portage-GUI This software is licensed under the terms of the GPLv2. Copyright (C) 2006-2007 RenĂ© 'Necoro' Neumann <necoro@necoro.net> -<small>Thanks to Fred for support and ideas :P</small> +Icon created by wolfden """ % VERSION) view = self.tree.get_widget("pluginList") diff --git a/portato/gui/qt/windows.py b/portato/gui/qt/windows.py index edb1873..420b9e1 100644 --- a/portato/gui/qt/windows.py +++ b/portato/gui/qt/windows.py @@ -16,7 +16,7 @@ import sip # our backend stuff from portato.helper import * -from portato.constants import CONFIG_LOCATION, VERSION, DATA_DIR +from portato.constants import CONFIG_LOCATION, VERSION, DATA_DIR, APP_ICON from portato.backend import flags, system from portato.backend.exceptions import * @@ -60,6 +60,7 @@ class Window (object): def __init__(self, parent = None): self._qt_base.__init__(self, parent) self.setupUi(self) + self.setWindowIcon(Qt.QIcon(APP_ICON)) @staticmethod def watch_cursor (func): @@ -98,7 +99,7 @@ A Portage-GUI<br> This software is licensed under the terms of the GPLv2.<br> Copyright (C) 2006-2007 René 'Necoro' Neumann <necoro@necoro.net><br> <br> -<font size=1>Thanks to Fred for support and ideas :P</font>""" % VERSION) +Icon created by wolfden""" % VERSION) self.pluginList.setHeaderLabels(["Plugin", "Author"]) |