summaryrefslogtreecommitdiffstats
path: root/kdeui/tests/kbuttonboxtest.cpp
blob: 1773c47f971b7652d138aeae14d68772307a3959 (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
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
/* This file is part of the KDE libraries
    Copyright (C) 1997 Mario Weilguni (mweilguni@sime.com)

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public
    License as published by the Free Software Foundation; either
    version 2 of the License, or (at your option) any later version.

    This library 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
    Library General Public License for more details.

    You should have received a copy of the GNU Library General Public License
    along with this library; see the file COPYING.LIB.  If not, write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA 02110-1301, USA.
*/
#include <kapplication.h>
#include "kbuttonbox.h"
#include <tqlayout.h>
#include <tqlabel.h>
#include <tqdialog.h>
#include <tqpushbutton.h>

int main(int argc, char **argv) {
  KApplication a(argc, argv, "dummy");

  // example 1
  {
    TQDialog *w = new TQDialog(0, "A common dialog", true);
    w->setCaption("Example 1");
    TQVBoxLayout *tl = new TQVBoxLayout(w, 5);
    TQLabel *l = new TQLabel("A very common dialog\n\n"\
			   "OK and Cancel are left aligned, Help\n"\
			   "is right aligned. Try resizing\n"\
			   "the window!\n"
			   "Press OK or Cancel when done"
			   , w);
    l->setAlignment(Qt::AlignVCenter|Qt::AlignLeft|Qt::WordBreak);
    l->setMinimumSize(l->sizeHint());
    tl->addWidget(l,1);
    KButtonBox *bbox = new KButtonBox(w);
    TQPushButton *b = bbox->addButton("OK");
    b->setDefault(true);
    w->connect(b, TQT_SIGNAL(clicked()),
	       w, TQT_SLOT(accept()));
    w->connect(bbox->addButton("Cancel"), TQT_SIGNAL(clicked()),
	       w, TQT_SLOT(accept()));
    
    bbox->addStretch(1);
    bbox->addButton("Help");
    bbox->layout();
    tl->addWidget(bbox,0);
    tl->activate();
    w->exec();
    delete w;
  }

  // example 2
  {    
    TQDialog *w = new TQDialog(0, "Right aligned buttons", true);
    w->setCaption("Example 2");
    TQVBoxLayout *tl = new TQVBoxLayout(w, 5);
    TQLabel *l = new TQLabel("Another common dialog\n\n"\
			   "OK and Cancel are right aligned\n"\
			   "Try resizing the window!", w);
    l->setAlignment(Qt::AlignVCenter|Qt::AlignLeft|Qt::WordBreak);
    l->setMinimumSize(l->sizeHint());
    tl->addWidget(l,1);
    KButtonBox *bbox = new KButtonBox(w);
    bbox->addStretch(1);
    TQPushButton *b = bbox->addButton("OK");
    b->setDefault(true);
    w->connect(b, TQT_SIGNAL(clicked()),
	       w, TQT_SLOT(accept()));
    w->connect(bbox->addButton("Cancel"), TQT_SIGNAL(clicked()),
	       w, TQT_SLOT(accept()));
    bbox->layout();
    tl->addWidget(bbox,0);
    tl->activate();  
    w->exec();
    delete w;
  }  

  // example 3
  {    
    TQDialog *w = new TQDialog(0, "Middle aligned buttons", true);
    w->setCaption("Example 3");
    TQVBoxLayout *tl = new TQVBoxLayout(w, 5);
    TQLabel *l = new TQLabel("Another common dialog\n\n"\
			   "OK and Cancel are middle aligned\n"\
			   "Try resizing the window!", w);
    l->setAlignment(Qt::AlignVCenter|Qt::AlignLeft|Qt::WordBreak);
    l->setMinimumSize(l->sizeHint());
    tl->addWidget(l,1);
    KButtonBox *bbox = new KButtonBox(w);
    bbox->addStretch(1);
    TQPushButton *b = bbox->addButton("OK");
    b->setDefault(true);
    w->connect(b, TQT_SIGNAL(clicked()),
	       w, TQT_SLOT(accept()));
    w->connect(bbox->addButton("Cancel"), TQT_SIGNAL(clicked()),
	       w, TQT_SLOT(accept()));
    bbox->addStretch(1);
    bbox->layout();
    tl->addWidget(bbox,0);
    tl->activate();  
    w->exec();
    delete w;
  }  

  // example 4
  {    
    TQDialog *w = new TQDialog(0, "Bad example", true);
    w->setCaption("Example 4");
    TQVBoxLayout *tl = new TQVBoxLayout(w, 5);
    TQLabel *l = new TQLabel("A very bad example\n\n"\
			   "Sometimes it's a bad idea to take\n"
			   "the maximum width for all buttons\n"
			   "since it will look ugly -- "
			   "anyway, it works", w);
    l->setAlignment(Qt::AlignVCenter|Qt::AlignLeft|Qt::WordBreak);
    l->setMinimumSize(l->sizeHint());
    tl->addWidget(l,1);
    KButtonBox *bbox = new KButtonBox(w);
    bbox->addStretch(1);
    TQPushButton *b = bbox->addButton("OK");
    b->setDefault(true);
    w->connect(b, TQT_SIGNAL(clicked()),
	       w, TQT_SLOT(accept()));
    w->connect(bbox->addButton("Cancel"), TQT_SIGNAL(clicked()),
	       w, TQT_SLOT(accept()));

    bbox->addButton("Push me and I give you a banana");
    bbox->addStretch(1);
    bbox->layout();
    tl->addWidget(bbox,0);
    tl->activate();  
    w->exec();
    delete w;
  }

  // example 5
  {    
    TQDialog *w = new TQDialog(0, "Bad example", true);
    w->setCaption("Example 5");
    TQVBoxLayout *tl = new TQVBoxLayout(w, 5);
    TQLabel *l = new TQLabel("A better solution for the bad example\n\n"\
			   "Use \"addButton(\"Push me and I give"
			   "you a banana\", true);\" to\n"
			   "prevent this strange effect as seen\n"
			   "the former example!"
			   ,w);
    l->setAlignment(Qt::AlignVCenter|Qt::AlignLeft|Qt::WordBreak);
    l->setMinimumSize(l->sizeHint());
    tl->addWidget(l,1);
    KButtonBox *bbox = new KButtonBox(w);
    bbox->addStretch(1);
    TQPushButton *b = bbox->addButton("OK");
    b->setDefault(true);
    w->connect(b, TQT_SIGNAL(clicked()),
	       w, TQT_SLOT(accept()));
    w->connect(bbox->addButton("Cancel"), TQT_SIGNAL(clicked()),
	       w, TQT_SLOT(accept()));

    bbox->addButton("Push me and I give you a banana", true);
    bbox->addStretch(1);
    bbox->layout();
    tl->addWidget(bbox,0);
    tl->activate();  
    w->exec();
    delete w;
  }

  // example 6
  {    
    TQDialog *w = new TQDialog(0, "Vertical", true);
    w->setCaption("Example 6 (last)");
    TQHBoxLayout *tl = new TQHBoxLayout(w, 5);
    TQLabel *l = new TQLabel("Did I mention that it's possible\n"
			   "to make vertically aligned buttons\n"
			   "too?"
			   ,w);
    l->setAlignment(Qt::AlignVCenter|Qt::AlignLeft|Qt::WordBreak);
    l->setMinimumSize(l->sizeHint());
    tl->addWidget(l,1);
    KButtonBox *bbox = new KButtonBox(w, KButtonBox::Vertical);
    TQPushButton *b = bbox->addButton("OK");
    b->setDefault(true);
    w->connect(b, TQT_SIGNAL(clicked()),
	       w, TQT_SLOT(accept()));
    w->connect(bbox->addButton("Cancel"), TQT_SIGNAL(clicked()),
	       w, TQT_SLOT(accept()));

    bbox->addStretch(1);
    bbox->layout();
    tl->addWidget(bbox,0);
    tl->activate();  
    w->exec();
    delete w;
  }

  return 0;
}