blob: 8f357d2090d4863a02a956c6bf23cdc21cc7c8be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
/*
* Gallium-Quartz KWin client
*
* Copyright (C) 2005 Sandro Giessl <sandro@giessl.com>
* 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 <tqbitmap.h>
#include <kpixmap.h>
#include "../../lib/kcommondecoration.h"
#include "../../lib/kdecorationfactory.h"
class TQSpacerItem;
class TQBoxLayout;
namespace Quartz {
class QuartzClient;
class QuartzHandler: public TQObject, public KDecorationFactory
{
Q_OBJECT
public:
QuartzHandler();
~QuartzHandler();
virtual KDecoration* createDecoration( KDecorationBridge* );
virtual bool reset(unsigned long changed);
virtual bool supports( Ability ability );
virtual TQValueList< BorderSize > borderSizes() const;
private:
void readConfig();
void createPixmaps();
void freePixmaps();
void drawBlocks(KPixmap* pi, KPixmap &p, const TQColor &c1, const TQColor &c2);
};
class QuartzButton : public KCommonDecorationButton
{
public:
QuartzButton(ButtonType type, QuartzClient *parent, const char *name);
~QuartzButton();
void setBitmap(const unsigned char *bitmap);
void reset(unsigned long changed);
protected:
void drawButton(TQPainter *p);
TQBitmap* deco;
};
class QuartzClient : public KCommonDecoration
{
public:
QuartzClient(KDecorationBridge* bridge, KDecorationFactory* factory);
~QuartzClient() {;}
virtual TQString visibleName() const;
virtual TQString defaultButtonsLeft() const;
virtual TQString defaultButtonsRight() const;
virtual bool decorationBehaviour(DecorationBehaviour behaviour) const;
virtual int tqlayoutMetric(LayoutMetric lm, bool respectWindowState = true, const KCommonDecorationButton * = 0) const;
virtual KCommonDecorationButton *createButton(ButtonType type);
virtual void init();
protected:
virtual void reset( unsigned long changed );
void paintEvent( TQPaintEvent* );
private:
int titleHeight, borderSize;
bool largeButtons;
};
}
#endif
// vim: ts=4
// kate: space-indent off; tab-width 4;
|