2005-12-30 07:47:24 +01:00
|
|
|
#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);
|
|
|
|
|
2006-01-20 12:09:06 +01:00
|
|
|
protected Q_SLOTS:
|
2005-12-30 07:47:24 +01:00
|
|
|
virtual void mergeTwoApplets();
|
|
|
|
|
|
|
|
private:
|
|
|
|
class Private;
|
|
|
|
Private *d;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|