#ifndef __KWMTHEMECLIENT_H #define __KWMTHEMECLIENT_H #include #include #include #include "../../client.h" class QLabel; class QSpacerItem; // QToolButton uses a 1 pixel border :P class MyButton : public QToolButton { public: MyButton(QWidget *parent=0, const char *name=0) : QToolButton(parent, name){;} protected: void drawButtonLabel(QPainter *p); }; class KWMThemeClient : public Client { Q_OBJECT public: KWMThemeClient( Workspace *ws, WId w, QWidget *parent=0, const char *name=0 ); ~KWMThemeClient(){;} protected: void doShape(); void drawTitle(QPainter &p); 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); private: KPixmap *aGradient, *iGradient; MyButton *maxBtn, *stickyBtn; QSpacerItem *titlebar; }; #endif