Applets
applet.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef APPLET_H
00021 #define APPLET_H
00022
00023
00024 #include <KIcon>
00025
00026
00027 #include <plasma/applet.h>
00028
00029 namespace Kickoff
00030 {
00031 class Launcher;
00032 }
00033 namespace Plasma
00034 {
00035 class Icon;
00036 class PushButton;
00037 }
00038
00039 class LauncherApplet : public Plasma::Applet
00040 {
00041 Q_OBJECT
00042
00043 public:
00044 LauncherApplet(QObject *parent, const QVariantList &args);
00045 virtual ~LauncherApplet();
00046
00047 void init();
00048
00049 void constraintsEvent(Plasma::Constraints constraints);
00050
00051 virtual QList<QAction*> contextualActions();
00052
00053 public slots:
00054 void switchMenuStyle();
00055 void startMenuEditor();
00056
00057 protected slots:
00058 void configAccepted();
00059 void toggleMenu();
00060 void toggleMenu(bool pressed);
00061
00062 protected:
00063 void createConfigurationInterface(KConfigDialog *parent);
00064
00065 private:
00066 class Private;
00067 Private * const d;
00068 };
00069
00070 K_EXPORT_PLASMA_APPLET(launcher, LauncherApplet)
00071
00072 #endif