~jamespharaoh/ubuntu/oneiric/unity/fix-for-880672

« back to all changes in this revision

Viewing changes to plugins/unityshell/src/DashView.h

  • Committer: Package Import Robot
  • Author(s): Didier Roche
  • Date: 2011-09-01 17:33:06 UTC
  • mfrom: (1.1.54 upstream)
  • Revision ID: package-import@ubuntu.com-20110901173306-6y8qov47isa9phym
Tags: 4.12.0-0ubuntu1
* New upstream release.
  - P3: [natty] Cannot click on indicators (LP: #819202)
  - Icons not visible in the launcher or alt-tab switcher (LP: #833905)
  - [dash] Search field in Unity can not support iBus (LP: #663776)
  - [dash] preferred applications are not stored in GConf anylonger
    (LP: #805063)
  - SysTray icons have a white square background in Unity. (LP: #823407)
  - new dash does not fit a normal netbook screen (LP: #825370)
  - Dash picks random weird colors (yellow, green), fonts invisible (with
    blur en- or disabled) (LP: #828363)
  - Music Lens doesn't display items until you search (LP: #824892)
  - Dash - Adjustments to stateful behaviour  (LP: #838667)
  - Dragging from dash to launcher still doesn't work (LP: #824833)
  - Click on 'More Apps' et al closes the dash (LP: #824842)
  - cannot paste into dash (particularly relevant for alt+f2) (LP: #736222)
  - Ctrl X doesn't cut selected text in Dash search field (LP: #737731)
  - Ctrl+C doesn't copy selected text in Dash search field (LP: #737732)
  - The indicators shows a big white square when systray whitelisted
    (LP: #822672)
  - ARM FTBFS fix (LP: #834576)
* debian/control:
  - build on latest nux
* debian/rules:
  - bump shlibs

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
  bool DoFallbackActivation(std::string const& uri);
82
82
  bool LaunchApp(std::string const& appname);
83
83
  void OnEntryActivated();
 
84
  std::string AnalyseLensURI(std::string uri);
 
85
  void UpdateLensFilter(std::string lens, std::string filter, std::string value);
 
86
  void UpdateLensFilterValue(Filter::Ptr filter, std::string value);
84
87
  
85
88
  bool AcceptKeyNavFocus();
86
89
  bool InspectKeyEvent(unsigned int eventType, unsigned int key_sym, const char* character);
112
115
  nux::ObjectPtr <nux::IOpenGLBaseTexture> bg_blur_texture_;
113
116
 
114
117
  std::string last_activated_uri_;
 
118
  
 
119
  bool visible_;
115
120
};
116
121
 
117
122