plasma-framework/appletCompositor.h
Zack Rusin 879fbb19a0 Doing some basic work on visual foundation for applets
and adding desktop stubs.


svn path=/trunk/KDE/kdebase/workspace/plasma/lib/; revision=492502
2005-12-30 06:47:24 +00:00

34 lines
630 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 slots:
virtual void mergeTwoApplets();
private:
class Private;
Private *d;
};
}
#endif