author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Mon, 15 Mar 2010 12:43:09 +0200 | |
branch | RCL_3 |
changeset 6 | dee5afe5301f |
parent 5 | d3bac044e0f0 |
child 7 | 3f74d0d4af4c |
permissions | -rw-r--r-- |
0 | 1 |
/**************************************************************************** |
2 |
** |
|
4
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
3 |
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
0 | 4 |
** All rights reserved. |
5 |
** Contact: Nokia Corporation (qt-info@nokia.com) |
|
6 |
** |
|
7 |
** This file is part of the demos of the Qt Toolkit. |
|
8 |
** |
|
9 |
** $QT_BEGIN_LICENSE:LGPL$ |
|
10 |
** No Commercial Usage |
|
11 |
** This file contains pre-release code and may not be distributed. |
|
12 |
** You may use this file in accordance with the terms and conditions |
|
13 |
** contained in the Technology Preview License Agreement accompanying |
|
14 |
** this package. |
|
15 |
** |
|
16 |
** GNU Lesser General Public License Usage |
|
17 |
** Alternatively, this file may be used under the terms of the GNU Lesser |
|
18 |
** General Public License version 2.1 as published by the Free Software |
|
19 |
** Foundation and appearing in the file LICENSE.LGPL included in the |
|
20 |
** packaging of this file. Please review the following information to |
|
21 |
** ensure the GNU Lesser General Public License version 2.1 requirements |
|
22 |
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. |
|
23 |
** |
|
24 |
** In addition, as a special exception, Nokia gives you certain additional |
|
25 |
** rights. These rights are described in the Nokia Qt LGPL Exception |
|
26 |
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. |
|
27 |
** |
|
28 |
** If you have questions regarding the use of this file, please contact |
|
29 |
** Nokia at qt-info@nokia.com. |
|
30 |
** |
|
31 |
** |
|
32 |
** |
|
33 |
** |
|
34 |
** |
|
35 |
** |
|
36 |
** |
|
37 |
** |
|
38 |
** $QT_END_LICENSE$ |
|
39 |
** |
|
40 |
****************************************************************************/ |
|
41 |
||
42 |
#include "AddressBar.h" |
|
43 |
||
44 |
#include <QtCore> |
|
45 |
#include <QtGui> |
|
46 |
||
47 |
class LineEdit: public QLineEdit |
|
48 |
{ |
|
49 |
public: |
|
50 |
LineEdit(QWidget *parent = 0): QLineEdit(parent) {} |
|
51 |
||
52 |
void paintEvent(QPaintEvent *event) { |
|
53 |
QLineEdit::paintEvent(event); |
|
54 |
if (text().isEmpty()) { |
|
55 |
QPainter p(this); |
|
56 |
int flags = Qt::AlignLeft | Qt::AlignVCenter; |
|
57 |
p.setPen(palette().color(QPalette::Disabled, QPalette::Text)); |
|
58 |
p.drawText(rect().adjusted(10, 0, 0, 0), flags, "Enter address or search terms"); |
|
59 |
p.end(); |
|
60 |
} |
|
61 |
} |
|
62 |
}; |
|
63 |
||
64 |
AddressBar::AddressBar(QWidget *parent) |
|
65 |
: QWidget(parent) |
|
66 |
{ |
|
5
d3bac044e0f0
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
4
diff
changeset
|
67 |
m_lineEdit = new LineEdit(this); |
0 | 68 |
connect(m_lineEdit, SIGNAL(returnPressed()), SLOT(processAddress())); |
5
d3bac044e0f0
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
4
diff
changeset
|
69 |
m_toolButton = new QToolButton(this); |
0 | 70 |
m_toolButton->setText("Go"); |
71 |
connect(m_toolButton, SIGNAL(clicked()), SLOT(processAddress())); |
|
72 |
} |
|
73 |
||
74 |
QSize AddressBar::sizeHint() const |
|
75 |
{ |
|
76 |
return m_lineEdit->sizeHint(); |
|
77 |
} |
|
78 |
||
79 |
void AddressBar::processAddress() |
|
80 |
{ |
|
81 |
if (!m_lineEdit->text().isEmpty()) |
|
82 |
emit addressEntered(m_lineEdit->text()); |
|
83 |
} |
|
84 |
||
85 |
void AddressBar::resizeEvent(QResizeEvent *event) |
|
86 |
{ |
|
87 |
int x, y, w, h; |
|
88 |
||
89 |
m_toolButton->adjustSize(); |
|
90 |
x = width() - m_toolButton->width(); |
|
91 |
y = 0; |
|
92 |
w = m_toolButton->width(); |
|
93 |
h = height() - 1; |
|
94 |
m_toolButton->setGeometry(x, y, w, h); |
|
95 |
m_toolButton->show(); |
|
96 |
||
97 |
x = 0; |
|
98 |
y = 0; |
|
99 |
w = width() - m_toolButton->width(); |
|
100 |
h = height() - 1; |
|
101 |
m_lineEdit->setGeometry(x, y, w, h); |
|
102 |
m_lineEdit->show(); |
|
103 |
} |
|
104 |
||
105 |
void AddressBar::focusInEvent(QFocusEvent *event) |
|
106 |
{ |
|
107 |
m_lineEdit->setFocus(); |
|
108 |
QWidget::focusInEvent(event); |
|
109 |
} |