2001-06-19 14:32:08 +00:00
|
|
|
#ifndef __B2CLIENT_H
|
|
|
|
#define __B2CLIENT_H
|
|
|
|
|
|
|
|
#include <qtoolbutton.h>
|
2001-08-18 23:44:37 +00:00
|
|
|
#include <qvariant.h>
|
2001-06-19 14:32:08 +00:00
|
|
|
#include <qbitmap.h>
|
|
|
|
#include <kpixmap.h>
|
|
|
|
#include "../../client.h"
|
2001-07-01 10:10:17 +00:00
|
|
|
#include "../../kwinbutton.h"
|
2001-06-19 14:32:08 +00:00
|
|
|
class QLabel;
|
|
|
|
//class QSpacerItem;
|
|
|
|
//class QHBoxLayout;
|
|
|
|
class QGridLayout;
|
|
|
|
|
|
|
|
namespace KWinInternal {
|
|
|
|
|
2001-07-01 10:10:17 +00:00
|
|
|
class B2Button : public KWinInternal::KWinButton
|
2001-06-19 14:32:08 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2001-07-01 10:10:17 +00:00
|
|
|
B2Button(Client *_client=0, QWidget *parent=0, const QString& tip=NULL)
|
|
|
|
: KWinButton(parent, 0, tip) {client = _client; useMiniIcon = false;}
|
|
|
|
|
|
|
|
// B2Button(KPixmap *pix, KPixmap *pixDown, KPixmap *iPix, KPixmap *iPixDown,
|
|
|
|
// Client *_client=0, QWidget *parent=0, const char *name=0, const QString& tip=NULL);
|
|
|
|
|
2001-06-19 14:32:08 +00:00
|
|
|
void setBg(const QColor &c){bg = c;}
|
|
|
|
void setPixmaps(KPixmap *pix, KPixmap *pixDown, KPixmap *iPix,
|
|
|
|
KPixmap *iPixDown);
|
|
|
|
void setPixmaps(int button_id);
|
|
|
|
void setToggle(){setToggleType(Toggle);}
|
|
|
|
void setActive(bool on){setOn(on);}
|
|
|
|
void setUseMiniIcon(){useMiniIcon = true;}
|
|
|
|
QSize sizeHint() const;
|
|
|
|
QSizePolicy sizePolicy() const;
|
|
|
|
protected:
|
|
|
|
virtual void drawButton(QPainter *p);
|
|
|
|
void drawButtonLabel(QPainter *){;}
|
|
|
|
|
|
|
|
bool useMiniIcon;
|
|
|
|
KPixmap *pNorm, *pDown, *iNorm, *iDown;
|
|
|
|
QColor bg; //only use one color (the rest is pixmap) so forget QPalette ;)
|
|
|
|
|
|
|
|
void mousePressEvent( QMouseEvent* e );
|
|
|
|
void mouseReleaseEvent( QMouseEvent* e );
|
|
|
|
|
|
|
|
public:
|
|
|
|
int last_button;
|
2001-07-01 10:10:17 +00:00
|
|
|
Client* client;
|
2001-06-19 14:32:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class B2Client;
|
|
|
|
|
|
|
|
class B2Titlebar : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
B2Titlebar(B2Client *parent);
|
|
|
|
~B2Titlebar(){;}
|
|
|
|
bool isFullyObscured() const {return isfullyobscured;}
|
|
|
|
void recalcBuffer();
|
|
|
|
protected:
|
|
|
|
void paintEvent( QPaintEvent* );
|
|
|
|
bool x11Event(XEvent *e);
|
|
|
|
void mouseDoubleClickEvent( QMouseEvent * );
|
|
|
|
void mousePressEvent( QMouseEvent * );
|
|
|
|
void mouseReleaseEvent( QMouseEvent * );
|
|
|
|
void mouseMoveEvent(QMouseEvent *);
|
|
|
|
void init();
|
|
|
|
void resizeEvent(QResizeEvent *ev);
|
|
|
|
|
|
|
|
QString oldTitle;
|
|
|
|
KPixmap titleBuffer;
|
|
|
|
bool set_x11mask;
|
|
|
|
bool isfullyobscured;
|
|
|
|
bool shift_move;
|
|
|
|
QPoint moveOffset;
|
|
|
|
B2Client *client;
|
|
|
|
};
|
|
|
|
|
|
|
|
class B2Client : public KWinInternal::Client
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
friend class B2Titlebar;
|
|
|
|
public:
|
|
|
|
B2Client( Workspace *ws, WId w, QWidget *parent=0, const char *name=0 );
|
|
|
|
~B2Client(){;}
|
|
|
|
void unobscureTitlebar();
|
|
|
|
void titleMoveAbs(int new_ofs);
|
|
|
|
void titleMoveRel(int xdiff);
|
|
|
|
protected:
|
|
|
|
void resizeEvent( QResizeEvent* );
|
|
|
|
void paintEvent( QPaintEvent* );
|
|
|
|
void showEvent( QShowEvent* );
|
|
|
|
void windowWrapperShowEvent( QShowEvent* );
|
|
|
|
void init();
|
|
|
|
void captionChange( const QString& name );
|
|
|
|
void stickyChange(bool on);
|
|
|
|
void activeChange(bool on);
|
|
|
|
void maximizeChange(bool m);
|
|
|
|
void iconChange();
|
|
|
|
void doShape();
|
|
|
|
MousePosition mousePosition( const QPoint& p ) const;
|
|
|
|
private slots:
|
|
|
|
void menuButtonPressed();
|
|
|
|
void slotReset();
|
|
|
|
void maxButtonClicked();
|
|
|
|
private:
|
|
|
|
void positionButtons();
|
|
|
|
enum ButtonType{BtnMenu=0, BtnSticky, BtnIconify, BtnMax, BtnClose,
|
|
|
|
BtnHelp};
|
|
|
|
//B2Button* button[5];
|
|
|
|
B2Button* button[6];
|
|
|
|
//QSpacerItem* titlebar;
|
|
|
|
//QHBoxLayout *tLayout;
|
|
|
|
QGridLayout *g;
|
|
|
|
int bar_x_ofs;
|
|
|
|
B2Titlebar *titlebar;
|
|
|
|
int in_unobs;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|