~ubuntu-branches/ubuntu/precise/unity-2d/precise-security

« back to all changes in this revision

Viewing changes to panel/applets/common/indicatorsmanager.h

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2011-08-11 21:22:18 UTC
  • mfrom: (1.1.18 upstream)
  • Revision ID: james.westby@ubuntu.com-20110811212218-vjwi8txoyl6g7upb
Tags: 4.0.0-0ubuntu1
* New upstream release:
  - [launcher] Impossible to keep KDE Apps in Launcher (LP: #741129)
  - [dash] Background should be blurred (LP: #823326)
  - No 'safely remove' option is present in the unity menu when a usb disk
    is inserted (LP: #660010)
  - Quicklist item "Keep In Launcher" should be "Keep in launcher" as design
    (LP: #795422)
  - [launcher] ESC doesn't dismiss launcher when activated with Alt+F1
    (LP: #812792)
  - [dash] Background wallpaper shifted when using a non compositing window
    manager (LP: #823295)
  - [launcher] Bottom gradient appears too early (LP: #823877)
  - mute/unmute sound when user clicks on sound applet using scroll button
    or middle mouse button (LP: #609860)
  - Secondary activate (i.e. middle click) support for indicators advanced
    usage (LP: #812933)
  - Unused GConfItemQmlWrapper dep found (LP: #821880)
* debian/control:
  - bump libunity-core-4.0-dev, libnux-1.0-dev
  - recommends lenses and not places anymore. Adding music lens

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
 
53
53
private Q_SLOTS:
54
54
    void syncGeometries();
 
55
    void checkMousePosition();
55
56
 
56
57
private:
57
58
    Q_DISABLE_COPY(IndicatorsManager)
58
59
    unity::indicator::DBusIndicators::Ptr m_indicators;
59
60
    QTimer* m_geometrySyncTimer;
 
61
    QTimer* m_mouseTrackerTimer;
60
62
 
61
63
    typedef QList<IndicatorEntryWidget*> IndicatorEntryWidgetList;
62
64
    IndicatorEntryWidgetList m_widgetList;
63
65
 
64
66
    void onSynced();
65
67
    void onEntryShowMenu(const std::string&, int x, int y, int timestamp, int button);
66
 
    void onMenuPointerMoved(int x, int y);
67
68
    void onEntryActivateRequest(const std::string& entryId);
 
69
    void onEntryActivated(const std::string& entryId);
68
70
};
69
71
 
70
72
#endif /* INDICATORSMANAGER_H */