Applets
applet.h
Go to the documentation of this file.00001 /* 00002 Copyright 2007 Robert Knight <robertknight@gmail.com> 00003 00004 This library is free software; you can redistribute it and/or 00005 modify it under the terms of the GNU Library General Public 00006 License as published by the Free Software Foundation; either 00007 version 2 of the License, or (at your option) any later version. 00008 00009 This library is distributed in the hope that it will be useful, 00010 but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 Library General Public License for more details. 00013 00014 You should have received a copy of the GNU Library General Public License 00015 along with this library; see the file COPYING.LIB. If not, write to 00016 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00017 Boston, MA 02110-1301, USA. 00018 */ 00019 00020 #ifndef APPLET_H 00021 #define APPLET_H 00022 00023 // KDE 00024 #include <KIcon> 00025 00026 // Plasma 00027 #include <Plasma/PopupApplet> 00028 00029 namespace Kickoff 00030 { 00031 class Launcher; 00032 } 00033 namespace Plasma 00034 { 00035 class IconWidget; 00036 class PushButton; 00037 } 00038 00039 class LauncherApplet : public Plasma::PopupApplet 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 QWidget *widget(); 00054 00055 public slots: 00056 void switchMenuStyle(); 00057 void startMenuEditor(); 00058 void toolTipAboutToShow(); 00059 00060 protected slots: 00061 void configAccepted(); 00062 //void toggleMenu(); 00063 //void toggleMenu(bool pressed); 00064 00065 protected: 00066 void createConfigurationInterface(KConfigDialog *parent); 00067 void popupEvent(bool show); 00068 00069 private: 00070 class Private; 00071 Private * const d; 00072 }; 00073 00074 K_EXPORT_PLASMA_APPLET(launcher, LauncherApplet) 00075 00076 #endif