kwin/systemclient.h
Daniel M. Duley c42791563d Started system style. Make sure to read the readme as it requires some new
gradient settings.

svn path=/trunk/kdebase/kwin/; revision=30586
1999-10-11 02:01:17 +00:00

46 lines
962 B
C++

#ifndef __SYSTEMCLIENT_H
#define __SYSTEMCLIENT_H
#include <qbutton.h>
#include <qbitmap.h>
#include <kpixmap.h>
#include "client.h"
class QLabel;
class QSpacerItem;
// get rid of autohide :P
class SystemButton : public QButton
{
public:
SystemButton(const unsigned char *bitmap, QWidget *parent=0,
const char *name=0);
protected:
virtual void drawButton(QPainter *p);
void drawButtonLabel(QPainter *){;}
KPixmap aBackground, iBackground;
QBitmap deco;
};
class SystemClient : public Client
{
Q_OBJECT
public:
SystemClient( Workspace *ws, WId w, QWidget *parent=0, const char *name=0 );
~SystemClient(){;}
protected:
void resizeEvent( QResizeEvent* );
void paintEvent( QPaintEvent* );
void mouseDoubleClickEvent( QMouseEvent * );
void init();
void captionChange( const QString& name );
private:
SystemButton* button[3];
QSpacerItem* titlebar;
};
#endif