kwin/clients/mwm/mwmclient.h
Karol Szwed 572cfb125f Making titlebar double click follow kcontrol window conveentions.
Added missing mousePosition() function.

svn path=/trunk/kdebase/kwin/; revision=101314
2001-06-10 12:27:26 +00:00

62 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 );
MousePosition mousePosition( const QPoint& p ) const;
protected slots:
void slotReset();
void slotMaximize();
void menuButtonPressed();
private:
MwmButton* button[3];
QSpacerItem* titlebar;
};
};
#endif