kwin/clients/mwm/mwmclient.h
Lennart Kudling fa39ba305a it basically works now
svn path=/trunk/kdebase/kwin/; revision=98909
2001-05-26 20:56:20 +00:00

61 lines
1.1 KiB
C++

#ifndef __MWMCLIENT_H
#define __MWMCLIENT_H
#include <qbutton.h>
#include <qbitmap.h>
#include <kpixmap.h>
#include "../../client.h"
class QLabel;
class QSpacerItem;
namespace KWinInternal {
enum Buttons { BtnMenu=0, BtnIconify=1, BtnMax=2 };
class MwmClient;
class MwmButton : public QButton
{
public:
MwmButton( MwmClient* parent=0, const char* name=0, int btnType=0 );
void reset();
protected:
virtual void drawButton( QPainter *p );
private:
MwmClient* m_parent;
int m_btnType;
};
class MwmClient : public KWinInternal::Client
{
Q_OBJECT
public:
MwmClient( Workspace* ws, WId w, QWidget* parent=0, const char* name=0 );
~MwmClient() {};
protected:
void resizeEvent( QResizeEvent* );
void paintEvent( QPaintEvent* );
void mouseDoubleClickEvent( QMouseEvent* );
void init();
void captionChange( const QString& );
void activeChange( bool );
protected slots:
void slotReset();
void slotMaximize();
void menuButtonPressed();
private:
MwmButton* button[3];
QSpacerItem* titlebar;
};
};
#endif