summaryrefslogtreecommitdiff
path: root/portato/gui/gtk/windows/about.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2008-03-18 19:18:22 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2008-03-18 19:18:22 +0100
commit045852491ba5330d8c4a63b0c6e443d6e073f2be (patch)
tree1efec1972ba01dd8c7f6613b986cfcf093ae1241 /portato/gui/gtk/windows/about.py
parent6ac3ab0f0e625e8cad02ab6291635e6f2180fe50 (diff)
downloadportato-045852491ba5330d8c4a63b0c6e443d6e073f2be.tar.gz
portato-045852491ba5330d8c4a63b0c6e443d6e073f2be.tar.bz2
portato-045852491ba5330d8c4a63b0c6e443d6e073f2be.zip
Splitted windows.py
Diffstat (limited to '')
-rw-r--r--portato/gui/gtk/windows/about.py34
1 files changed, 34 insertions, 0 deletions
diff --git a/portato/gui/gtk/windows/about.py b/portato/gui/gtk/windows/about.py
new file mode 100644
index 0000000..d9297d0
--- /dev/null
+++ b/portato/gui/gtk/windows/about.py
@@ -0,0 +1,34 @@
+# -*- coding: utf-8 -*-
+#
+# File: portato/gui/gtk/windows/about.py
+# This file is part of the Portato-Project, a graphical portage-frontend.
+#
+# Copyright (C) 2008 René 'Necoro' Neumann
+# This is free software. You may redistribute copies of it under the terms of
+# the GNU General Public License version 2.
+# There is NO WARRANTY, to the extent permitted by law.
+#
+# Written by René 'Necoro' Neumann <necoro@necoro.net>
+
+from __future__ import absolute_import
+
+import gtk
+
+from .basic import AbstractDialog
+from ....constants import VERSION, APP_ICON
+
+class AboutWindow (AbstractDialog):
+ """A window showing the "about"-informations."""
+
+ def __init__ (self, parent):
+
+ AbstractDialog.__init__(self, parent)
+
+ img = gtk.Image()
+ img.set_from_file(APP_ICON)
+
+ self.window.set_version(VERSION)
+ self.window.set_logo(img.get_pixbuf())
+
+ self.window.show_all()
+