blob: 70b8847fab3721b516b78c4080b9f2cf75bf96c2 (
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
96
97
98
99
100
101
102
103
|
/*
*
* KDE2 Default KWin client
*
* Copyright (C) 1999, 2001 Daniel Duley <mosfet@kde.org>
* Matthias Ettrich <ettrich@kde.org>
* Karol Szwed <gallium@kde.org>
*
* Draws mini titlebars for tool windows.
* Many features are now customizable.
*/
#ifndef _KDE_DEFAULT_H
#define _KDE_DEFAULT_H
#include <tqbutton.h>
#include <tqbitmap.h>
#include <tqdatetime.h>
#include <kpixmap.h>
#include <kcommondecoration.h>
#include <kdecorationfactory.h>
class TQSpacerItem;
class TQBoxLayout;
class TQGridLayout;
namespace Default {
class KDEDefaultClient;
class KDEDefaultHandler: public KDecorationFactory
{
public:
KDEDefaultHandler();
~KDEDefaultHandler();
KDecoration* createDecoration( KDecorationBridge* b );
bool reset( unsigned long changed );
virtual TQValueList< BorderSize > borderSizes() const;
virtual bool supports( Ability ability );
private:
unsigned long readConfig( bool update );
void createPixmaps();
void freePixmaps();
void drawButtonBackground(KPixmap *pix,
const TQColorGroup &g, bool sunken);
};
// class KDEDefaultButton : public TQButton, public KDecorationDefines
class KDEDefaultButton : public KCommonDecorationButton
{
public:
KDEDefaultButton(ButtonType type, KDEDefaultClient *parent, const char *name);
~KDEDefaultButton();
void reset(unsigned long changed);
void setBitmap(const unsigned char *bitmap);
protected:
void enterEvent(TQEvent *);
void leaveEvent(TQEvent *);
void drawButton(TQPainter *p);
void drawButtonLabel(TQPainter*) {;}
TQBitmap* deco;
bool large;
bool isMouseOver;
};
class KDEDefaultClient : public KCommonDecoration
{
public:
KDEDefaultClient( KDecorationBridge* b, KDecorationFactory* f );
~KDEDefaultClient() {;}
virtual TQString visibleName() const;
virtual TQString defaultButtonsLeft() const;
virtual TQString defaultButtonsRight() const;
virtual bool decorationBehaviour(DecorationBehaviour behaviour) const;
virtual int layoutMetric(LayoutMetric lm, bool respectWindowState = true, const KCommonDecorationButton * = 0) const;
virtual KCommonDecorationButton *createButton(ButtonType type);
virtual TQRegion cornerShape(WindowCorner corner);
void init();
void reset( unsigned long changed );
protected:
void paintEvent( TQPaintEvent* );
private:
bool mustDrawHandle() const;
int titleHeight;
};
}
#endif
// vim: ts=4
// kate: space-indent off; tab-width 4;
|