1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
|
# Copyright (C) 2009 Canonical
#
# Authors:
# Michael Vogt
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation; version 3.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
import apt
import bisect
import glib
import gobject
import gtk
import logging
import xapian
import os
# magic environment to get old pathbar
if "SOFTWARE_CENTER_OLD_PATHBAR" in os.environ:
from widgets.navigationbar import NavigationBar
else:
from widgets.pathbar_gtk_atk import NavigationBar
from widgets.searchentry import SearchEntry
from appview import AppView, AppStore, AppViewFilter
from appdetailsview import AppDetailsView
from softwarecenter.db.database import Application
def wait_for_apt_cache_ready(f):
""" decorator that ensures that the cache is ready using a
gtk idle_add - needs a cache as argument
"""
def wrapper(*args, **kwargs):
self = args[0]
# check if the cache is ready and
if not self.cache.ready:
if self.app_view.window:
self.app_view.window.set_cursor(self.busy_cursor)
glib.timeout_add(500, lambda: wrapper(*args, **kwargs))
return False
# cache ready now
if self.app_view.window:
self.app_view.window.set_cursor(None)
f(*args, **kwargs)
return False
return wrapper
class SoftwarePane(gtk.VBox):
""" Common base class for InstalledPane and AvailablePane """
__gsignals__ = {
"app-list-changed" : (gobject.SIGNAL_RUN_LAST,
gobject.TYPE_NONE,
(int, ),
),
}
PADDING = 6
def __init__(self, cache, db, distro, icons, datadir, show_ratings=False):
gtk.VBox.__init__(self)
# other classes we need
self.cache = cache
self.db = db
self.distro = distro
self.db.connect("reopen", self.on_db_reopen)
self.icons = icons
self.datadir = datadir
# refreshes can happen out-of-bound so we need to be sure
# that we only set the new model (when its available) if
# the refresh_seq_nr of the ready model matches that of the
# request (e.g. people click on ubuntu channel, get impatient, click
# on partner channel)
self.refresh_seq_nr = 0
# common UI elements (applist and appdetails)
# its the job of the Child class to put it into a good location
# list
self.app_view = AppView(show_ratings)
self.app_view.connect("application-selected",
self.on_application_selected)
self.scroll_app_list = gtk.ScrolledWindow()
self.scroll_app_list.set_policy(gtk.POLICY_AUTOMATIC,
gtk.POLICY_AUTOMATIC)
self.scroll_app_list.add(self.app_view)
self.app_view.connect("application-activated",
self.on_application_activated)
self.app_view.connect("application-request-action",
self.on_application_request_action)
# details
self.app_details = AppDetailsView(self.db,
self.distro,
self.icons,
self.cache,
self.datadir)
self.scroll_details = gtk.ScrolledWindow()
self.scroll_details.set_policy(gtk.POLICY_AUTOMATIC,
gtk.POLICY_AUTOMATIC)
self.scroll_details.add(self.app_details)
# cursor
self.busy_cursor = gtk.gdk.Cursor(gtk.gdk.WATCH)
# when the cache changes, refresh the app list
self.cache.connect("cache-ready", self.on_cache_ready)
# COMMON UI elements
# navigation bar and search on top in a hbox
self.navigation_bar = NavigationBar()
self.searchentry = SearchEntry()
self.searchentry.connect("terms-changed", self.on_search_terms_changed)
self.top_hbox = gtk.HBox()
self.top_hbox.pack_start(self.navigation_bar, padding=self.PADDING)
self.top_hbox.pack_start(self.searchentry, expand=False, padding=self.PADDING)
self.pack_start(self.top_hbox, expand=False, padding=self.PADDING)
# a notebook below
self.notebook = gtk.Notebook()
self.notebook.set_show_tabs(False)
self.notebook.set_show_border(False)
self.pack_start(self.notebook)
def on_cache_ready(self, cache):
" refresh the application list when the cache is re-opened "
logging.debug("on_cache_ready")
# FIXME: preserve selection too
# get previous vadjustment and reapply it
vadj = self.scroll_app_list.get_vadjustment()
self.refresh_apps()
# needed otherwise we jump back to the beginning of the table
if vadj:
vadj.value_changed()
def on_application_activated(self, appview, app):
"""callback when an app is clicked"""
logging.debug("on_application_activated: '%s'" % app)
self.navigation_bar.add_with_id(app.name,
self.on_navigation_details,
"details")
self.notebook.set_current_page(self.PAGE_APP_DETAILS)
self.app_details.show_app(app)
def on_application_request_action(self, appview, app, action):
"""callback when an app action is requested from the appview"""
logging.debug("on_application_action_requested: '%s' %s" % (app, action))
# FIXME: move the action-code below out of the appdetails and
# into some controller class
# init the app_details here with the given app because we
# reuse it
self.app_details.init_app(app)
# action_func is "install" or "remove" of self.app_details
action_func = getattr(self.app_details, action)
if callable(action_func):
action_func()
else:
logging.error("can not find action '%s'" % action)
def update_app_view(self):
"""
Update the app_view. If no row is selected, then the previously
selected app is reselected if it is found in the model, else the
first app in the list is selected. If a row is already selected,
nothing is done.
"""
selected_iter = None
selection = self.app_view.get_selection()
model = self.app_view.get_model()
if selection:
selected_iter = selection.get_selected()[1]
current_app = self.get_current_app()
if (model is not None and
model.get_iter_root() is not None
and selected_iter is None):
index=0
vadj = self.scroll_app_list.get_vadjustment()
if current_app:
if current_app in model.app_index_map:
index = model.app_index_map.get(current_app)
# re-select item
if vadj:
self.app_view.set_cursor(index)
vadj.value_changed()
def get_status_text(self):
"""return user readable status text suitable for a status bar"""
raise Exception, "Not implemented"
@wait_for_apt_cache_ready
def refresh_apps(self):
" stub implementation "
pass
def on_search_terms_changed(self, terms):
" stub implementation "
pass
def on_db_reopen(self):
" stub implementation "
pass
def is_category_view_showing(self):
" stub implementation "
pass
def get_current_app(self):
" stub implementation "
pass
def on_application_selected(self, widget, app):
" stub implementation "
pass
def on_nav_back_clicked(self, widget, event):
" stub implementation "
pass
def on_nav_forward_clicked(self, widget, event):
" stub implementation "
pass
|