2007-11-29 15:32:50 +00:00
|
|
|
/********************************************************************
|
|
|
|
Laptop KWin Client
|
|
|
|
|
|
|
|
Copyright (c) 2005 Sandro Giessl <sandro@giessl.com>
|
|
|
|
Ported to the kde3.2 API by Luciano Montanaro <mikelima@cirulla.net>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
|
|
|
|
2007-08-21 07:02:04 +00:00
|
|
|
#ifndef LAPTOPCLIENT_H
|
|
|
|
#define LAPTOPCLIENT_H
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
#include <QBitmap>
|
|
|
|
#include <QPixmap>
|
|
|
|
#include <kcommondecoration.h>
|
|
|
|
#include <kdecorationfactory.h>
|
|
|
|
|
|
|
|
namespace Laptop {
|
|
|
|
|
|
|
|
class LaptopClient;
|
|
|
|
|
|
|
|
class LaptopButton : public KCommonDecorationButton
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
LaptopButton(ButtonType type, LaptopClient *parent, const char *name);
|
|
|
|
void setBitmap(const unsigned char *bitmap);
|
|
|
|
virtual void reset(unsigned long changed);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void paintEvent(QPaintEvent *);
|
|
|
|
virtual void drawButton(QPainter *p);
|
|
|
|
QBitmap deco;
|
|
|
|
};
|
|
|
|
|
|
|
|
class LaptopClient : public KCommonDecoration
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
LaptopClient( KDecorationBridge* b, KDecorationFactory* f );
|
|
|
|
~LaptopClient();
|
|
|
|
|
|
|
|
virtual QString visibleName() const;
|
2007-11-26 16:00:21 +00:00
|
|
|
virtual QString defaultButtonsLeft() const;
|
|
|
|
virtual QString defaultButtonsRight() const;
|
2007-04-29 17:35:43 +00:00
|
|
|
virtual bool decorationBehaviour(DecorationBehaviour behaviour) const;
|
|
|
|
virtual int layoutMetric(LayoutMetric lm, bool respectWindowState = true, const KCommonDecorationButton * = 0) const;
|
|
|
|
virtual KCommonDecorationButton *createButton(ButtonType type);
|
|
|
|
|
|
|
|
virtual QRegion cornerShape(WindowCorner corner);
|
|
|
|
|
|
|
|
void init();
|
|
|
|
protected:
|
|
|
|
void paintEvent( QPaintEvent* );
|
|
|
|
void reset( unsigned long );
|
|
|
|
void updateActiveBuffer();
|
|
|
|
void captionChange();
|
|
|
|
private:
|
|
|
|
bool mustDrawHandle() const;
|
|
|
|
bool isTransient() const;
|
|
|
|
private:
|
|
|
|
QPixmap activeBuffer;
|
|
|
|
int lastBufferWidth;
|
|
|
|
bool bufferDirty;
|
|
|
|
};
|
|
|
|
|
|
|
|
class LaptopClientFactory : public QObject, public KDecorationFactory
|
|
|
|
{
|
2007-07-25 11:24:07 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
public:
|
|
|
|
LaptopClientFactory();
|
|
|
|
virtual ~LaptopClientFactory();
|
|
|
|
virtual KDecoration* createDecoration( KDecorationBridge* );
|
|
|
|
virtual bool reset( unsigned long changed );
|
2007-11-01 16:07:38 +00:00
|
|
|
virtual bool supports( Ability ability ) const;
|
2007-04-29 17:35:43 +00:00
|
|
|
virtual QList< BorderSize > borderSizes() const;
|
|
|
|
private:
|
|
|
|
void findPreferredHandleSize();
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-08-21 07:02:04 +00:00
|
|
|
#endif // LAPTOPCLIENT_H
|