annotate examples/widgets/calculator/button.d @ 374:681af90e1d53

Removed debug writelns. Fixed build script.
author Max Samukha <maxter@spambox.com>
date Thu, 08 Jul 2010 22:21:56 +0300
parents 7a3c43424dca
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
e78566595089 initial import
mandel
parents:
diff changeset
1 /****************************************************************************
e78566595089 initial import
mandel
parents:
diff changeset
2 **
e78566595089 initial import
mandel
parents:
diff changeset
3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
e78566595089 initial import
mandel
parents:
diff changeset
4 ** Contact: Qt Software Information (qt-info@nokia.com)
e78566595089 initial import
mandel
parents:
diff changeset
5 **
e78566595089 initial import
mandel
parents:
diff changeset
6 ** This file is part of the example classes of the Qt Toolkit.
e78566595089 initial import
mandel
parents:
diff changeset
7 **
e78566595089 initial import
mandel
parents:
diff changeset
8 ** $QT_BEGIN_LICENSE:LGPL$
e78566595089 initial import
mandel
parents:
diff changeset
9 ** Commercial Usage
e78566595089 initial import
mandel
parents:
diff changeset
10 ** Licensees holding valid Qt Commercial licenses may use this file in
e78566595089 initial import
mandel
parents:
diff changeset
11 ** accordance with the Qt Commercial License Agreement provided with the
e78566595089 initial import
mandel
parents:
diff changeset
12 ** Software or, alternatively, in accordance with the terms contained in
e78566595089 initial import
mandel
parents:
diff changeset
13 ** a written agreement between you and Nokia.
e78566595089 initial import
mandel
parents:
diff changeset
14 **
e78566595089 initial import
mandel
parents:
diff changeset
15 ** GNU Lesser General Public License Usage
e78566595089 initial import
mandel
parents:
diff changeset
16 ** Alternatively, this file may be used under the terms of the GNU Lesser
e78566595089 initial import
mandel
parents:
diff changeset
17 ** General Public License version 2.1 as published by the Free Software
e78566595089 initial import
mandel
parents:
diff changeset
18 ** Foundation and appearing in the file LICENSE.LGPL included in the
e78566595089 initial import
mandel
parents:
diff changeset
19 ** packaging of this file. Please review the following information to
e78566595089 initial import
mandel
parents:
diff changeset
20 ** ensure the GNU Lesser General Public License version 2.1 requirements
e78566595089 initial import
mandel
parents:
diff changeset
21 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
e78566595089 initial import
mandel
parents:
diff changeset
22 **
e78566595089 initial import
mandel
parents:
diff changeset
23 ** In addition, as a special exception, Nokia gives you certain
e78566595089 initial import
mandel
parents:
diff changeset
24 ** additional rights. These rights are described in the Nokia Qt LGPL
e78566595089 initial import
mandel
parents:
diff changeset
25 ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
e78566595089 initial import
mandel
parents:
diff changeset
26 ** package.
e78566595089 initial import
mandel
parents:
diff changeset
27 **
e78566595089 initial import
mandel
parents:
diff changeset
28 ** GNU General Public License Usage
e78566595089 initial import
mandel
parents:
diff changeset
29 ** Alternatively, this file may be used under the terms of the GNU
e78566595089 initial import
mandel
parents:
diff changeset
30 ** General Public License version 3.0 as published by the Free Software
e78566595089 initial import
mandel
parents:
diff changeset
31 ** Foundation and appearing in the file LICENSE.GPL included in the
e78566595089 initial import
mandel
parents:
diff changeset
32 ** packaging of this file. Please review the following information to
e78566595089 initial import
mandel
parents:
diff changeset
33 ** ensure the GNU General Public License version 3.0 requirements will be
e78566595089 initial import
mandel
parents:
diff changeset
34 ** met: http://www.gnu.org/copyleft/gpl.html.
e78566595089 initial import
mandel
parents:
diff changeset
35 **
e78566595089 initial import
mandel
parents:
diff changeset
36 ** If you are unsure which license is appropriate for your use, please
e78566595089 initial import
mandel
parents:
diff changeset
37 ** contact the sales department at qt-sales@nokia.com.
e78566595089 initial import
mandel
parents:
diff changeset
38 ** $QT_END_LICENSE$
e78566595089 initial import
mandel
parents:
diff changeset
39 **
e78566595089 initial import
mandel
parents:
diff changeset
40 ****************************************************************************/
e78566595089 initial import
mandel
parents:
diff changeset
41
e78566595089 initial import
mandel
parents:
diff changeset
42 module button;
e78566595089 initial import
mandel
parents:
diff changeset
43
e78566595089 initial import
mandel
parents:
diff changeset
44 import qt.gui.QToolButton;
e78566595089 initial import
mandel
parents:
diff changeset
45 import qt.gui.QSizePolicy;
e78566595089 initial import
mandel
parents:
diff changeset
46 import qt.core.QSize;
e78566595089 initial import
mandel
parents:
diff changeset
47
e78566595089 initial import
mandel
parents:
diff changeset
48
e78566595089 initial import
mandel
parents:
diff changeset
49 class Button : public QToolButton
e78566595089 initial import
mandel
parents:
diff changeset
50 {
e78566595089 initial import
mandel
parents:
diff changeset
51 public:
e78566595089 initial import
mandel
parents:
diff changeset
52
210
3ea0efe4d31e fixes for d2.
SokoL_SD
parents: 1
diff changeset
53 this(string text, QWidget parent = null)
1
e78566595089 initial import
mandel
parents:
diff changeset
54 {
e78566595089 initial import
mandel
parents:
diff changeset
55 super(parent);
e78566595089 initial import
mandel
parents:
diff changeset
56 setSizePolicy(QSizePolicy.Expanding, QSizePolicy.Preferred);
e78566595089 initial import
mandel
parents:
diff changeset
57 setText(text);
e78566595089 initial import
mandel
parents:
diff changeset
58 }
e78566595089 initial import
mandel
parents:
diff changeset
59
323
7a3c43424dca make all examples compile with new signals/slots
eldar_ins@eldar-laptop
parents: 210
diff changeset
60 QSize sizeHint() const
1
e78566595089 initial import
mandel
parents:
diff changeset
61 {
e78566595089 initial import
mandel
parents:
diff changeset
62 QSize size = super.sizeHint();
e78566595089 initial import
mandel
parents:
diff changeset
63 size.height = size.height + 20;
e78566595089 initial import
mandel
parents:
diff changeset
64 size.width= qMax(size.width(), size.height());
e78566595089 initial import
mandel
parents:
diff changeset
65 return size;
e78566595089 initial import
mandel
parents:
diff changeset
66 }
323
7a3c43424dca make all examples compile with new signals/slots
eldar_ins@eldar-laptop
parents: 210
diff changeset
67
7a3c43424dca make all examples compile with new signals/slots
eldar_ins@eldar-laptop
parents: 210
diff changeset
68 mixin Q_OBJECT;
1
e78566595089 initial import
mandel
parents:
diff changeset
69 }