~ubuntu-branches/ubuntu/hardy/kdebase-workspace/hardy-backports

« back to all changes in this revision

Viewing changes to plasma/plasma/desktopview.h

  • Committer: Bazaar Package Importer
  • Author(s): Richard A. Johnson
  • Date: 2008-05-02 23:57:34 UTC
  • mfrom: (1.2.1 upstream) (20.1.22 hardy)
  • Revision ID: james.westby@ubuntu.com-20080502235734-kwrykz4qcvunwqf4
Tags: 4:4.0.4-0ubuntu1~hardy1
* New upstream release (LP: #225994)
* Updated control file (LP: #220655)
* Updated install files

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include "plasma/plasma.h"
24
24
#include "plasma/view.h"
25
25
 
26
 
class QPixmap;
27
 
 
28
 
namespace Plasma
29
 
{
30
 
    class Svg;
31
 
    class Corona;
32
 
    class AppletBrowser;
33
 
}
34
 
 
35
26
class DashboardView;
36
27
 
37
28
class DesktopView : public Plasma::View
46
37
    void zoomIn();
47
38
    void zoomOut();
48
39
    void showAppletBrowser();
49
 
    void appletBrowserDestroyed();
50
40
    void toggleDashboard();
51
41
    void adjustSize();
52
42
 
55
45
 
56
46
private:
57
47
    Plasma::ZoomLevel m_zoomLevel;
58
 
    Plasma::AppletBrowser *m_appletBrowser;
59
48
    DashboardView *m_dashboard;
60
49
};
61
50