2f90225543
Export client.h, workspace.h and options.h so that people can write plugins. svn path=/trunk/kdebase/kwin/; revision=83707
79 lines
1.7 KiB
C++
79 lines
1.7 KiB
C++
#ifndef __SYSTEMCLIENT_H
|
|
#define __SYSTEMCLIENT_H
|
|
|
|
#include <qbutton.h>
|
|
#include <qtoolbutton.h>
|
|
|
|
#include <qbitmap.h>
|
|
#include <kpixmap.h>
|
|
#include "../../client.h"
|
|
|
|
|
|
class QLabel;
|
|
class QSpacerItem;
|
|
|
|
namespace KWinInternal {
|
|
|
|
class SystemButton : public QToolButton
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
SystemButton(Client *parent=0, const char *name=0,
|
|
const unsigned char *bitmap=NULL);
|
|
void setBitmap(const unsigned char *bitmap);
|
|
void reset();
|
|
QSize sizeHint() const;
|
|
signals:
|
|
void clicked( int );
|
|
protected:
|
|
virtual void drawButton(QPainter *p);
|
|
void drawButtonLabel(QPainter *){;}
|
|
QBitmap deco;
|
|
Client *client;
|
|
|
|
void mousePressEvent( QMouseEvent* e );
|
|
void mouseReleaseEvent( QMouseEvent* e );
|
|
|
|
private slots:
|
|
void handleClicked();
|
|
|
|
private:
|
|
int last_button;
|
|
|
|
};
|
|
|
|
class SystemClient : public KWinInternal::Client
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
SystemClient( Workspace *ws, WId w, QWidget *parent=0, const char *name=0 );
|
|
~SystemClient(){;}
|
|
protected:
|
|
void drawRoundFrame(QPainter &p, int x, int y, int w, int h);
|
|
void resizeEvent( QResizeEvent* );
|
|
void paintEvent( QPaintEvent* );
|
|
void showEvent( QShowEvent* );
|
|
void windowWrapperShowEvent( QShowEvent* );
|
|
void mouseDoubleClickEvent( QMouseEvent * );
|
|
void init();
|
|
void captionChange( const QString& name );
|
|
void stickyChange(bool on);
|
|
void maximizeChange(bool m);
|
|
void doShape();
|
|
void recalcTitleBuffer();
|
|
void activeChange(bool);
|
|
protected slots:
|
|
void slotReset();
|
|
private slots:
|
|
void maxButtonClicked( int );
|
|
|
|
private:
|
|
SystemButton* button[5];
|
|
QSpacerItem* titlebar;
|
|
QPixmap titleBuffer;
|
|
QString oldTitle;
|
|
};
|
|
|
|
};
|
|
|
|
#endif
|