summaryrefslogtreecommitdiff
path: root/noncore/styles/liquid/liquiddeco.cpp
blob: 5488c67889dfb7056fa2ceec976854da77f13a90 (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
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
/**********************************************************************
** Copyright (C) 2000 Trolltech AS.  All rights reserved.
**
** This file is part of Qtopia Environment.
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
** See http://www.trolltech.com/gpl/ for GPL licensing information.
**
** Contact info@trolltech.com if any conditions of this licensing are
** not clear to you.
**
**********************************************************************/

#include <qapplication.h>
#include <qstyle.h>
#include <qwidget.h>
#include <qpainter.h>
#include <qtimer.h>
#include <qwhatsthis.h>
#include <qpe/qcopenvelope_qws.h>
#include <qpe/qpedecoration_qws.h>
#include <qdialog.h>
#include <qdrawutil.h>
#include <qgfx_qws.h>
#include <qpe/qpeapplication.h>
#include <qpe/resource.h>
#include <qpe/global.h>
#include <qfile.h>
#include <qsignal.h>

#include "liquiddeco.h"

#include <stdlib.h>

extern QRect qt_maxWindowRect;

class HackWidget : public QWidget
{
public:
	bool needsOk()
	{
		return ( getWState() & WState_Reserved1 );
	}
};


LiquidDecoration::LiquidDecoration()
		: QPEDecoration()
{}

LiquidDecoration::~LiquidDecoration()
{}

int LiquidDecoration::getTitleHeight( const QWidget * )
{
	return 15;
}


void LiquidDecoration::paint( QPainter *painter, const QWidget *widget )
{
	int titleWidth = getTitleWidth( widget );
	int titleHeight = getTitleHeight( widget );

	QRect rect( widget->rect() );

	// Border rect
	QRect br( rect.left() - BORDER_WIDTH,
	          rect.top() - BORDER_WIDTH - titleHeight,
	          rect.width() + 2 * BORDER_WIDTH,
	          rect.height() + BORDER_WIDTH + BOTTOM_BORDER_WIDTH + titleHeight );

	// title bar rect
	QRect tr;

	tr = QRect( rect.left(), rect.top() - titleHeight, rect.width(), titleHeight );

	QRegion oldClip = painter->clipRegion();
	painter->setClipRegion( oldClip - QRegion( tr ) );	// reduce flicker

	bool isActive = ( widget == qApp->activeWindow() );

	QColorGroup cg = QApplication::palette().active();
	if ( isActive )
		cg. setBrush ( QColorGroup::Button, cg. brush ( QColorGroup::Highlight ) );

	qDrawWinPanel( painter, br.x(), br.y(), br.width(),
	               br.height() - 4, cg, FALSE,
	               &cg.brush( QColorGroup::Background ) );

	painter->setClipRegion( oldClip );

	if ( titleWidth > 0 ) {
		painter->setPen( cg.midlight() );
		painter->drawLine( rect.left() - BORDER_WIDTH + 2,
		                   rect.bottom() + 1, rect.right() + BORDER_WIDTH - 2,
		                   rect.bottom() + 1 );

		QRect t ( rect.left() - 2, rect.top() - titleHeight - 2, rect.width() + 3, titleHeight + 2 );



		QApplication::style().drawBevelButton( painter, t.x(), t.y(), t.width(), t.height(), cg, isActive );

		t .setLeft ( t. left ( ) + 4 );
		t .setRight ( t. right ( ) - 2 );

		QFont f ( QApplication::font ( ));
		f. setWeight ( QFont::Bold );

		painter-> setFont ( f );

		QColor textcol = cg.color( isActive ? QColorGroup::HighlightedText : QColorGroup::Text );
		QColor shadecol = ( qGray ( textcol. rgb ( ) ) > 128 ) ? textcol. dark ( 230 ) : textcol.light( 300 );

		if ( textcol == shadecol ) {
			if ( qGray ( shadecol. rgb ( ) ) < 128 )
				shadecol = QColor ( 225, 225, 225 );
			else
				shadecol = QColor ( 30, 30, 30 );
		}

		painter-> setPen( shadecol );
		painter-> drawText( t.x() + 1, t.y() + 1, t.width(), t.height(), Qt::AlignLeft | Qt::AlignVCenter | Qt::SingleLine, widget->caption() );
		painter-> setPen( textcol );
		painter-> drawText( t.x(), t.y(), t.width(), t.height(), Qt::AlignLeft | Qt::AlignVCenter | Qt::SingleLine, widget->caption() );
	}

#ifndef MINIMIZE_HELP_HACK
	paintButton( painter, widget, ( QWSDecoration::Region ) Help, 0 );
#endif
}

void LiquidDecoration::paintButton( QPainter *painter, const QWidget *w,
                                    QWSDecoration::Region type, int state )
{
	const QColorGroup & cg = w->palette().active();

	QRect brect( region( w, w->rect(), type ).boundingRect() );

	const QImage *img = 0;

	switch ( ( int ) type ) {
		case Close:
			img = &imageClose;
			break;
		case Minimize:
			if ( ( ( HackWidget * ) w ) ->needsOk() ||
			        ( w->inherits( "QDialog" ) && !w->inherits( "QMessageBox" ) ) )
				img = &imageOk;
			else if ( helpExists )
				img = &imageHelp;
			break;
		case Help:
			img = &imageHelp;
			break;
		default:
			return ;
	}

	if ( img ) {
		if ( ( state & QWSButton::MouseOver ) && ( state & QWSButton::Clicked ) ) 
			painter->drawImage( brect.x() + 1, brect.y() + 3, *img );
		else 
			painter->drawImage( brect.x(), brect.y() + 2, *img );
	}
}