summaryrefslogtreecommitdiff
path: root/portato/gui/windows/main.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2009-10-05 14:37:19 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2009-10-05 14:37:19 +0200
commit5ae4fda6f6fdcc8a21253dd6dc9d6051c99af34f (patch)
tree502a757c8271576beaa49968a444c69522051fa0 /portato/gui/windows/main.py
parent82a7ed53f40fa4e7dd6f716b5150b2f1374ae93b (diff)
downloadportato-5ae4fda6f6fdcc8a21253dd6dc9d6051c99af34f.tar.gz
portato-5ae4fda6f6fdcc8a21253dd6dc9d6051c99af34f.tar.bz2
portato-5ae4fda6f6fdcc8a21253dd6dc9d6051c99af34f.zip
First quick hack to have a world list
Diffstat (limited to 'portato/gui/windows/main.py')
-rw-r--r--portato/gui/windows/main.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/portato/gui/windows/main.py b/portato/gui/windows/main.py
index 1b67747..c99790c 100644
--- a/portato/gui/windows/main.py
+++ b/portato/gui/windows/main.py
@@ -50,7 +50,7 @@ from .about import AboutWindow
from .plugin import PluginWindow
from .preference import PreferenceWindow
from .search import SearchWindow
-from .update import UpdateWindow
+from .update import UpdateWindow, WorldListWindow
class PackageTable:
"""A window with data about a specfic package."""
@@ -1624,6 +1624,13 @@ class MainWindow (Window):
GtkThread(name="Show Updates Thread", target = __update).start()
return True
+ def cb_show_world_clicked (self, *args):
+ """
+ Show the list of world packages.
+ """
+ WorldListWindow(self.window, system.find_packages(pkgSet = "world"), self.queue, self.jump_to)
+ return True
+
def cb_show_installed_toggled (self, *args):
"""
Toggle the "show only installed" option.