plasma-framework/appletCompositor.h
Laurent Montel 9eaaa7d4ce Use QT macro for signal/slots
svn path=/trunk/KDE/kdebase/workspace/kcontrol/crypto/; revision=500480
2006-01-20 11:09:06 +00:00

34 lines
632 B
C++

#ifndef APPLETCOMPOSITOR_H
#define APPLETCOMPOSITOR_H
#include <kdelibs_export.h>
#include <QWidget>
namespace Plasma
{
/**
* This is the visual representation of our applet container.
* Together with AppletLayout handles all GUI aspect of displaying
* applets. AppletCompositor is responsible for all the effects
* and animations that happen between applets.
*/
class KDE_EXPORT AppletCompositor : public QWidget
{
Q_OBJECT
public:
AppletCompositor(QWidget *parent);
protected Q_SLOTS:
virtual void mergeTwoApplets();
private:
class Private;
Private *d;
};
}
#endif