6bbbe69c0e
svn path=/trunk/kdebase/kcontrol/; revision=239225
118 lines
2.4 KiB
C++
118 lines
2.4 KiB
C++
/*
|
|
* $Id$
|
|
*
|
|
* Gallium-Quartz KWin client
|
|
*
|
|
* Copyright 2001
|
|
* Karol Szwed <gallium@kde.org>
|
|
* http://gallium.n3.net/
|
|
*
|
|
* Based on the KDE default client.
|
|
*
|
|
* Includes mini titlebars for ToolWindow Support.
|
|
* Button positions are now customizable.
|
|
*
|
|
*/
|
|
|
|
#ifndef __KDEGALLIUM_QUARTZ_H
|
|
#define __KDEGALLIUM_QUARTZ_H
|
|
|
|
#include <qbutton.h>
|
|
#include <qbitmap.h>
|
|
#include <kpixmap.h>
|
|
#include "../../client.h"
|
|
#include "../../kwinbutton.h"
|
|
|
|
class QSpacerItem;
|
|
class QBoxLayout;
|
|
|
|
namespace Quartz {
|
|
|
|
using namespace KWinInternal;
|
|
|
|
class QuartzHandler: public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
QuartzHandler();
|
|
~QuartzHandler();
|
|
|
|
public slots:
|
|
void slotReset();
|
|
|
|
private:
|
|
void readConfig();
|
|
void createPixmaps();
|
|
void freePixmaps();
|
|
void drawBlocks(KPixmap* pi, KPixmap &p, const QColor &c1, const QColor &c2);
|
|
};
|
|
|
|
|
|
class QuartzButton : public KWinButton
|
|
{
|
|
public:
|
|
QuartzButton(Client *parent=0, const char *name=0, bool largeButton=true,
|
|
bool isLeftButton=true, bool isStickyButton=false,
|
|
const unsigned char *bitmap=NULL, const QString& tip=NULL);
|
|
~QuartzButton();
|
|
void setBitmap(const unsigned char *bitmap);
|
|
QSize sizeHint() const;
|
|
int last_button;
|
|
void turnOn( bool isOn );
|
|
|
|
protected:
|
|
void mousePressEvent( QMouseEvent* e );
|
|
void mouseReleaseEvent( QMouseEvent* e );
|
|
void drawButton(QPainter *p);
|
|
void drawButtonLabel(QPainter*) {;}
|
|
|
|
QBitmap* deco;
|
|
bool large;
|
|
bool isLeft;
|
|
bool isSticky;
|
|
Client* client;
|
|
};
|
|
|
|
|
|
class QuartzClient : public Client
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QuartzClient( Workspace *ws, WId w, QWidget *parent=0,
|
|
const char *name=0 );
|
|
~QuartzClient() {;}
|
|
|
|
protected:
|
|
void resizeEvent( QResizeEvent* );
|
|
void paintEvent( QPaintEvent* );
|
|
void showEvent( QShowEvent* );
|
|
void mouseDoubleClickEvent( QMouseEvent * );
|
|
void captionChange( const QString& name );
|
|
void maximizeChange(bool m);
|
|
void activeChange(bool);
|
|
void iconChange();
|
|
void stickyChange(bool on);
|
|
|
|
protected slots:
|
|
void slotMaximize();
|
|
void menuButtonPressed();
|
|
|
|
private:
|
|
void calcHiddenButtons();
|
|
void addClientButtons( const QString& s, bool isLeft=true );
|
|
|
|
enum Buttons{ BtnHelp=0, BtnMax, BtnIconify, BtnClose,
|
|
BtnMenu, BtnSticky, BtnCount };
|
|
QuartzButton* button[ QuartzClient::BtnCount ];
|
|
int lastButtonWidth;
|
|
int titleHeight;
|
|
bool largeButtons;
|
|
QBoxLayout* hb;
|
|
QSpacerItem* titlebar;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|
|
// vim: ts=4
|