summaryrefslogtreecommitdiff
path: root/noncore/decorations/polished/polished.h
authorsandman <sandman>2002-10-04 00:46:45 (UTC)
committer sandman <sandman>2002-10-04 00:46:45 (UTC)
commit7f1029811faae4aa88c0c35157a33b95abffaae8 (patch) (unidiff)
tree3cab1efdd4a88ae832dd29a424b1c9d884679ef4 /noncore/decorations/polished/polished.h
parent4131d24ac051733b2d9ba323b18e6602ae396b85 (diff)
downloadopie-7f1029811faae4aa88c0c35157a33b95abffaae8.zip
opie-7f1029811faae4aa88c0c35157a33b95abffaae8.tar.gz
opie-7f1029811faae4aa88c0c35157a33b95abffaae8.tar.bz2
Added three window decoration flavours:
- flat from Qtopia 1.6 - polished from Qtopia 1.6 - liquid - this was written by me and resembles the KDE3 liquid look
Diffstat (limited to 'noncore/decorations/polished/polished.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/decorations/polished/polished.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/noncore/decorations/polished/polished.h b/noncore/decorations/polished/polished.h
new file mode 100644
index 0000000..e5c19c0
--- a/dev/null
+++ b/noncore/decorations/polished/polished.h
@@ -0,0 +1,49 @@
1/**********************************************************************
2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
3**
4** This file is part of the Qtopia Environment.
5**
6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file.
10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15**
16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you.
18**
19**********************************************************************/
20
21#ifndef POLISHED_H
22#define POLISHED_H
23
24#include <qtopia/windowdecorationinterface.h>
25
26class PolishedDecoration : public WindowDecorationInterface
27{
28public:
29 PolishedDecoration();
30 virtual ~PolishedDecoration();
31
32 virtual int metric( Metric m, const WindowData * ) const;
33 virtual void drawArea( Area a, QPainter *, const WindowData * ) const;
34 virtual void drawButton( Button b, QPainter *, const WindowData *, int x, int y, int w, int h, QWSButton::State ) const;
35 virtual QRegion mask( const WindowData * ) const;
36 virtual QString name() const;
37 virtual QPixmap icon() const;
38
39 QRESULT queryInterface( const QUuid&, QUnknownInterface** );
40 Q_REFCOUNT
41
42protected:
43 void PolishedDecoration::drawBlend( QPainter *, const QRect &r, const QColor &c1, const QColor&c2 ) const;
44
45private:
46 ulong ref;
47};
48
49#endif