-
Notifications
You must be signed in to change notification settings - Fork 40
/
breezedecoration.h
215 lines (167 loc) · 7.33 KB
/
breezedecoration.h
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
#ifndef BREEZE_DECORATION_H
#define BREEZE_DECORATION_H
/*
* Copyright 2014 Martin Gräßlin <[email protected]>
* Copyright 2014 Hugo Pereira Da Costa <[email protected]>
*
* 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) version 3 or any later version
* accepted by the membership of KDE e.V. (or its successor approved
* by the membership of KDE e.V.), which shall act as a proxy
* defined in Section 14 of version 3 of the license.
*
* 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/>.
*/
#include "breeze.h"
#include "breezesettings.h"
#include <KDecoration2/Decoration>
#include <KDecoration2/DecoratedClient>
#include <KDecoration2/DecorationSettings>
#include <QPalette>
#include <QPropertyAnimation>
#include <QVariant>
#include <QPainter>
namespace KDecoration2
{
class DecorationButton;
class DecorationButtonGroup;
}
namespace SierraBreeze
{
class SizeGrip;
class Decoration : public KDecoration2::Decoration
{
Q_OBJECT
//* declare active state opacity
Q_PROPERTY( qreal opacity READ opacity WRITE setOpacity )
public:
//* constructor
explicit Decoration(QObject *parent = nullptr, const QVariantList &args = QVariantList());
//* destructor
virtual ~Decoration();
//* paint
void paint(QPainter *painter, const QRect &repaintRegion) override;
//* internal settings
InternalSettingsPtr internalSettings() const
{ return m_internalSettings; }
//* caption height
int captionHeight() const;
//* button height
int buttonHeight() const;
//*@name active state change animation
//@{
void setOpacity( qreal );
qreal opacity( void ) const
{ return m_opacity; }
//@}
//*@name colors
//@{
QColor titleBarColor( void ) const;
QColor outlineColor( void ) const;
QColor fontColor( void ) const;
//@}
//*@name maximization modes
//@{
inline bool isMaximized( void ) const;
inline bool isMaximizedHorizontally( void ) const;
inline bool isMaximizedVertically( void ) const;
inline bool isLeftEdge( void ) const;
inline bool isRightEdge( void ) const;
inline bool isTopEdge( void ) const;
inline bool isBottomEdge( void ) const;
inline bool hideTitleBar( void ) const;
inline bool matchColorForTitleBar( void ) const;
//@}
public Q_SLOTS:
void init() override;
private Q_SLOTS:
void reconfigure();
void recalculateBorders();
void updateButtonsGeometry();
void updateButtonsGeometryDelayed();
void updateTitleBar();
void updateAnimationState();
void updateSizeGripVisibility();
private:
//* return the rect in which caption will be drawn
QPair<QRect,Qt::Alignment> captionRect( void ) const;
void createButtons();
void paintTitleBar(QPainter *painter, const QRect &repaintRegion);
void readKonsoleProfileColor();
bool isKonsoleWindow(KDecoration2::DecoratedClient *dc) const;
void createShadow();
//*@name border size
//@{
int borderSize(bool bottom = false) const;
inline bool hasBorders( void ) const;
inline bool hasNoBorders( void ) const;
inline bool hasNoSideBorders( void ) const;
//@}
//*@name size grip
//@{
void createSizeGrip( void );
void deleteSizeGrip( void );
SizeGrip* sizeGrip( void ) const
{ return m_sizeGrip; }
//@}
InternalSettingsPtr m_internalSettings;
QList<KDecoration2::DecorationButton*> m_buttons;
KDecoration2::DecorationButtonGroup *m_leftButtons = nullptr;
KDecoration2::DecorationButtonGroup *m_rightButtons = nullptr;
//* size grip widget
SizeGrip *m_sizeGrip = nullptr;
//* active state change animation
QPropertyAnimation *m_animation;
//* active state change opacity
qreal m_opacity = 0;
QColor m_KonsoleTitleBarColor;
QColor m_KonsoleTitleBarTextColorActive;
QColor m_KonsoleTitleBarTextColorInactive;
bool m_KonsoleTitleBarColorValid;
//TODO Review this
QPainter painter;
const QRect repaintRegion;
};
bool Decoration::hasBorders( void ) const
{
if( m_internalSettings && m_internalSettings->mask() & BorderSize ) return m_internalSettings->borderSize() > InternalSettings::BorderNoSides;
else return settings()->borderSize() > KDecoration2::BorderSize::NoSides;
}
bool Decoration::hasNoBorders( void ) const
{
if( m_internalSettings && m_internalSettings->mask() & BorderSize ) return m_internalSettings->borderSize() == InternalSettings::BorderNone;
else return settings()->borderSize() == KDecoration2::BorderSize::None;
}
bool Decoration::hasNoSideBorders( void ) const
{
if( m_internalSettings && m_internalSettings->mask() & BorderSize ) return m_internalSettings->borderSize() == InternalSettings::BorderNoSides;
else return settings()->borderSize() == KDecoration2::BorderSize::NoSides;
}
bool Decoration::isMaximized( void ) const
{ return client().data()->isMaximized() && !m_internalSettings->drawBorderOnMaximizedWindows(); }
bool Decoration::isMaximizedHorizontally( void ) const
{ return client().data()->isMaximizedHorizontally() && !m_internalSettings->drawBorderOnMaximizedWindows(); }
bool Decoration::isMaximizedVertically( void ) const
{ return client().data()->isMaximizedVertically() && !m_internalSettings->drawBorderOnMaximizedWindows(); }
bool Decoration::isLeftEdge( void ) const
{ return (client().data()->isMaximizedHorizontally() || client().data()->adjacentScreenEdges().testFlag( Qt::LeftEdge ) ) && !m_internalSettings->drawBorderOnMaximizedWindows(); }
bool Decoration::isRightEdge( void ) const
{ return (client().data()->isMaximizedHorizontally() || client().data()->adjacentScreenEdges().testFlag( Qt::RightEdge ) ) && !m_internalSettings->drawBorderOnMaximizedWindows(); }
bool Decoration::isTopEdge( void ) const
{ return (client().data()->isMaximizedVertically() || client().data()->adjacentScreenEdges().testFlag( Qt::TopEdge ) ) && !m_internalSettings->drawBorderOnMaximizedWindows(); }
bool Decoration::isBottomEdge( void ) const
{ return (client().data()->isMaximizedVertically() || client().data()->adjacentScreenEdges().testFlag( Qt::BottomEdge ) ) && !m_internalSettings->drawBorderOnMaximizedWindows(); }
bool Decoration::hideTitleBar( void ) const
{ return m_internalSettings->hideTitleBar() && !client().data()->isShaded(); }
bool Decoration::matchColorForTitleBar( void ) const
{ return m_internalSettings->matchColorForTitleBar(); }
}
#endif