~mmcg069/software-center/overlay-w-pixbuf-tweak

« back to all changes in this revision

Viewing changes to softwarecenter/view/softwarepane.py

  • Committer: Michael Vogt
  • Date: 2010-04-27 13:37:46 UTC
  • mfrom: (708.1.4 action_bar)
  • Revision ID: michael.vogt@ubuntu.com-20100427133746-8mr7zy2p8uup1te6
* merged lp:~j-johan-edwards/software-center/smooth_search, this 
* merged lp:~j-johan-edwards/software-center/action_bar that provides
  the foundation for the "custom packages list" branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
    from widgets.pathbar_gtk_atk import NavigationBar
33
33
 
34
34
from widgets.searchentry import SearchEntry
 
35
from widgets.actionbar import ActionBar
35
36
 
36
37
from appview import AppView, AppStore, AppViewFilter
37
38
from appdetailsview import AppDetailsView
128
129
        self.notebook.set_show_tabs(False)
129
130
        self.notebook.set_show_border(False)
130
131
        self.pack_start(self.notebook)
 
132
        # a bar at the bottom (hidden by default) for contextual actions
 
133
        self.action_bar = ActionBar()
 
134
        self.pack_start(self.action_bar, expand=False, padding=self.PADDING)
131
135
 
132
136
    def on_cache_ready(self, cache):
133
137
        " refresh the application list when the cache is re-opened "