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

« back to all changes in this revision

Viewing changes to panel/applets/appname/appnameapplet.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2011-08-25 18:16:57 UTC
  • mfrom: (1.1.19 upstream)
  • Revision ID: james.westby@ubuntu.com-20110825181657-opb29rqsxae3i98f
Tags: 4.2.0-0ubuntu1
* New upstream release:
  - [panel] application menus do not appear on first hover after dismissal
    (lp: #825262)
  - [dash] Lens icons badly scaled (lp: #825368)
  - [panel] indicators are shifted offscreen to the right (lp: #827673)
  - [panel] scrubbing from system indicators to menubar should be possible
    (lp: #706903)
  - [launcher] Closed applications don't get their launcher counts cleared
    (lp: #767367)
  - [dash] selected item should not be underlined but use the same 
    treatment as unity (lp: #817456)
  - [dash] categories should be collapsed by default (lp: #827214)
  - [dash] Ratings filter (lp: #831855)
  - [dash] Multirange filter (lp: #831856)
  - [dash] ToggleButton filter (lp: #831857)
  - [dash] Icon size must be bigger to match the mockups (lp: #831858)
  - [dash] "Refine search" right margin should be 15 pixels (lp: #832058)
  - [dash] "Refine search" should be "Filter results" (lp: #832060)
  - [dash] Font sizes should match new design (lp: #832114)
  - [panel] Glitch: application menu appearing when pressing the BFB 
    (lp: #825060)
  - [panel] Glitch: application menus are quickly opened after a drag gesture
    (lp: #825267)
  - [dash] File thumbnails aspect ratio is not respected (lp: #832204)
* debian/control: require current the current versions of nux and unity

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#ifndef APPNAMEAPPLET_H
23
23
#define APPNAMEAPPLET_H
24
24
 
25
 
// Local
26
 
#include <applet.h>
27
 
 
28
 
// Qt
29
 
 
30
25
class QEvent;
31
26
 
32
27
class IndicatorsManager;
33
28
 
34
 
namespace Unity2d
35
 
{
 
29
// Unity-2d
 
30
#include <panelapplet.h>
36
31
 
37
32
struct AppNameAppletPrivate;
38
 
class AppNameApplet : public Applet
 
33
class AppNameApplet : public Unity2d::PanelApplet
39
34
{
40
35
Q_OBJECT
41
36
public:
42
 
    AppNameApplet(IndicatorsManager*);
 
37
    AppNameApplet(Unity2dPanel* panel);
43
38
    ~AppNameApplet();
44
39
 
45
40
protected:
54
49
    AppNameAppletPrivate* const d;
55
50
};
56
51
 
57
 
} // namespace
58
 
 
59
52
#endif /* APPNAMEAPPLET_H */
60
53