summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/src/widgets/tqpushbutton.cpp
blob: d1047b45dd5c6fd982c89b67426888f2e4361df1 (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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
/****************************************************************************
**
** Implementation of TQPushButton class
**
** Created : 940221
**
** Copyright (C) 2010 Timothy Pearson and (C) 1992-2008 Trolltech ASA.
**
** This file is part of the widgets module of the TQt GUI Toolkit.
**
** This file may be used under the terms of the GNU General
** Public License versions 2.0 or 3.0 as published by the Free
** Software Foundation and appearing in the files LICENSE.GPL2
** and LICENSE.GPL3 included in the packaging of this file.
** Alternatively you may (at your option) use any later version
** of the GNU General Public License if such license has been
** publicly approved by Trolltech ASA (or its successors, if any)
** and the KDE Free TQt Foundation.
**
** Please review the following information to ensure GNU General
** Public Licensing requirements will be met:
** http://trolltech.com/products/qt/licenses/licensing/opensource/.
** If you are unsure which license is appropriate for your use, please
** review the following information:
** http://trolltech.com/products/qt/licenses/licensing/licensingoverview
** or contact the sales department at sales@trolltech.com.
**
** This file may be used under the terms of the Q Public License as
** defined by Trolltech ASA and appearing in the file LICENSE.TQPL
** included in the packaging of this file.  Licensees holding valid TQt
** Commercial licenses may use this file in accordance with the TQt
** Commercial License Agreement provided with the Software.
**
** This file is provided "AS IS" with NO WARRANTY OF ANY KIND,
** INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE. Trolltech reserves all rights not granted
** herein.
**
**********************************************************************/

#include "tqpushbutton.h"
#ifndef TQT_NO_PUSHBUTTON
#include "tqdialog.h"
#include "tqfontmetrics.h"
#include "tqpainter.h"
#include "tqdrawutil.h"
#include "tqpixmap.h"
#include "tqbitmap.h"
#include "tqpopupmenu.h"
#include "tqguardedptr.h"
#include "tqapplication.h"
#include "tqtoolbar.h"
#include "tqstyle.h"
#if defined(TQT_ACCESSIBILITY_SUPPORT)
#include "tqaccessible.h"
#endif

/*!
    \class TQPushButton tqpushbutton.h
    \brief The TQPushButton widget provides a command button.

    \ingroup basic
    \mainclass

    The push button, or command button, is perhaps the most commonly
    used widget in any graphical user interface. Push (click) a button
    to command the computer to perform some action, or to answer a
    question. Typical buttons are OK, Apply, Cancel, Close, Yes, No
    and Help.

    A command button is rectangular and typically displays a text
    label describing its action. An underlined character in the label
    (signified by preceding it with an ampersand in the text)
    indicates an accelerator key, e.g.
    \code
	TQPushButton *pb = new TQPushButton( "&Download", this );
    \endcode
    In this example the accelerator is \e{Alt+D}, and the label text
    will be displayed as <b><u>D</u>ownload</b>.

    Push buttons can display a textual label or a pixmap, and
    optionally a small icon. These can be set using the constructors
    and changed later using setText(), setPixmap() and setIconSet().
    If the button is disabled the appearance of the text or pixmap and
    iconset will be manipulated with respect to the GUI style to make
    the button look "disabled".

    A push button emits the signal clicked() when it is activated by
    the mouse, the Spacebar or by a keyboard accelerator. Connect to
    this signal to perform the button's action. Push buttons also
    provide less commonly used Q_SIGNALS, for example, pressed() and
    released().

    Command buttons in dialogs are by default auto-default buttons,
    i.e. they become the default push button automatically when they
    receive the keyboard input focus. A default button is a push
    button that is activated when the user presses the Enter or Return
    key in a dialog. You can change this with setAutoDefault(). Note
    that auto-default buttons reserve a little extra space which is
    necessary to draw a default-button indicator. If you do not want
    this space around your buttons, call setAutoDefault(FALSE).

    Being so central, the button widget has grown to accommodate a
    great many variations in the past decade. The Microsoft style
    guide now shows about ten different states of Windows push buttons
    and the text implies that there are dozens more when all the
    combinations of features are taken into consideration.

    The most important modes or states are:
    \list
    \i Available or not (grayed out, disabled).
    \i Standard push button, toggling push button or menu button.
    \i On or off (only for toggling push buttons).
    \i Default or normal. The default button in a dialog can generally
       be "clicked" using the Enter or Return key.
    \i Auto-repeat or not.
    \i Pressed down or not.
    \endlist

    As a general rule, use a push button when the application or
    dialog window performs an action when the user clicks on it (such
    as Apply, Cancel, Close and Help) \e and when the widget is
    supposed to have a wide, rectangular tqshape with a text label.
    Small, typically square buttons that change the state of the
    window rather than performing an action (such as the buttons in
    the top-right corner of the TQFileDialog) are not command buttons,
    but tool buttons. TQt provides a special class (TQToolButton) for
    these buttons.

    If you need toggle behavior (see setToggleButton()) or a button
    that auto-repeats the activation signal when being pushed down
    like the arrows in a scroll bar (see setAutoRepeat()), a command
    button is probably not what you want. When in doubt, use a tool
    button.

    A variation of a command button is a menu button. These provide
    not just one command, but several, since when they are clicked
    they pop up a menu of options. Use the method setPopup() to
    associate a popup menu with a push button.

    Other classes of buttons are option buttons (see TQRadioButton) and
    check boxes (see TQCheckBox).

    <img src="qpushbt-m.png"> <img src="qpushbt-w.png">

    In TQt, the TQButton abstract base class provides most of the modes
    and other API, and TQPushButton provides GUI logic. See TQButton for
    more information about the API.

    \important text, setText, text, pixmap, setPixmap, accel, setAccel,
    isToggleButton, setDown, isDown, isOn, state, autoRepeat,
    isExclusiveToggle, group, setAutoRepeat, toggle, pressed, released,
    clicked, toggled, state stateChanged

    \sa TQToolButton, TQRadioButton TQCheckBox
    \link guibooks.html#fowler GUI Design Handbook: Push Button\endlink
*/

/*!
    \property TQPushButton::autoDefault
    \brief whether the push button is the auto default button

    If this property is set to TRUE then the push button is the auto
    default button in a dialog.

    In some GUI styles a default button is drawn with an extra frame
    around it, up to 3 pixels or more. TQt automatically keeps this
    space free around auto-default buttons, i.e. auto-default buttons
    may have a slightly larger size hint.

    This property's default is TRUE for buttons that have a TQDialog
    tqparent; otherwise it defaults to FALSE.

    See the \l default property for details of how \l default and
    auto-default interact.
*/

/*!
    \property TQPushButton::autoMask
    \brief whether the button is automatically masked

    \sa TQWidget::setAutoMask()
*/

/*!
    \property TQPushButton::default
    \brief whether the push button is the default button

    If this property is set to TRUE then the push button will be
    pressed if the user presses the Enter (or Return) key in a dialog.

    Regardless of focus, if the user presses Enter: If there is a
    default button the default button is pressed; otherwise, if
    there are one or more \l autoDefault buttons the first \l autoDefault
    button that is next in the tab order is pressed. If there are no
    default or \l autoDefault buttons only pressing Space on a button
    with focus, mouse clicking, or using an accelerator will press a
    button.

    In a dialog, only one push button at a time can be the default
    button. This button is then displayed with an additional frame
    (depending on the GUI style).

    The default button behavior is provided only in dialogs. Buttons
    can always be clicked from the keyboard by pressing Enter (or
    Return) or the Spacebar when the button has focus.

    This property's default is FALSE.
*/

/*!
    \property TQPushButton::flat
    \brief whether the border is disabled

    This property's default is FALSE.
*/

/*!
    \property TQPushButton::iconSet
    \brief the icon set on the push button

    This property will return 0 if the push button has no iconset.
*/

/*!
    \property TQPushButton::on
    \brief whether the push button is toggled

    This property should only be set for toggle push buttons. The
    default value is FALSE.

    \sa isOn(), toggle(), toggled(), isToggleButton()
*/

/*!
    \property TQPushButton::toggleButton
    \brief whether the button is a toggle button

    Toggle buttons have an on/off state similar to \link TQCheckBox
    check boxes. \endlink A push button is initially not a toggle
    button.

    \sa setOn(), toggle(), isToggleButton() toggled()
*/

/*! \property TQPushButton::menuButton
    \brief whether the push button has a menu button on it
    \obsolete

  If this property is set to TRUE, then a down arrow is drawn on the push
  button to indicate that a menu will pop up if the user clicks on the
  arrow.
*/

class TQPushButtonPrivate
{
public:
    TQPushButtonPrivate()
	:iconset( 0 )
    {}
    ~TQPushButtonPrivate()
    {
#ifndef TQT_NO_ICONSET
	delete iconset;
#endif
    }
#ifndef TQT_NO_POPUPMENU
    TQGuardedPtr<TQPopupMenu> popup;
#endif
    TQIconSet* iconset;
};


/*!
    Constructs a push button with no text.

    The \a tqparent and \a name arguments are sent on to the TQWidget
    constructor.
*/

TQPushButton::TQPushButton( TQWidget *tqparent, const char *name )
	: TQButton( tqparent, name )
{
    init();
}

/*!
    Constructs a push button called \a name with the tqparent \a tqparent
    and the text \a text.
*/

TQPushButton::TQPushButton( const TQString &text, TQWidget *tqparent,
			  const char *name )
	: TQButton( tqparent, name )
{
    init();
    setText( text );
}


/*!
    Constructs a push button with an \a icon and a \a text.

    Note that you can also pass a TQPixmap object as an icon (thanks to
    the implicit type conversion provided by C++).

    The \a tqparent and \a name arguments are sent to the TQWidget
    constructor.
*/
#ifndef TQT_NO_ICONSET
TQPushButton::TQPushButton( const TQIconSet& icon, const TQString &text,
			  TQWidget *tqparent, const char *name )
	: TQButton( tqparent, name )
{
    init();
    setText( text );
    setIconSet( icon );
}
#endif


/*!
    Destroys the push button.
*/
TQPushButton::~TQPushButton()
{
    delete d;
}

void TQPushButton::init()
{
    d = 0;
    defButton = FALSE;
    lastEnabled = FALSE;
    hasMenuArrow = FALSE;
    flt = FALSE;
#ifndef TQT_NO_DIALOG
    autoDefButton = ::tqqt_cast<TQDialog*>(tqtopLevelWidget()) != 0;
#else
    autoDefButton = FALSE;
#endif
    setBackgroundMode( TQt::PaletteButton );
    tqsetSizePolicy( TQSizePolicy( TQSizePolicy::Minimum, TQSizePolicy::Fixed ) );
}


/*
  Makes the push button a toggle button if \a enable is TRUE or a normal
  push button if \a enable is FALSE.

  Toggle buttons have an on/off state similar to \link TQCheckBox check
  boxes. \endlink A push button is initially not a toggle button.

  \sa setOn(), toggle(), isToggleButton() toggled()
*/

void TQPushButton::setToggleButton( bool enable )
{
    TQButton::setToggleButton( enable );
}


/*
  Switches a toggle button on if \a enable is TRUE or off if \a enable is
  FALSE.
  \sa isOn(), toggle(), toggled(), isToggleButton()
*/

void TQPushButton::setOn( bool enable )
{
    if ( !isToggleButton() )
	return;
    TQButton::setOn( enable );
}

void TQPushButton::setAutoDefault( bool enable )
{
    if ( (bool)autoDefButton == enable )
	return;
    autoDefButton = enable;
    update();
    updateGeometry();
}


void TQPushButton::setDefault( bool enable )
{
    if ( (bool)defButton == enable )
	return;					// no change
    defButton = enable;
#ifndef TQT_NO_DIALOG
    if ( defButton && ::tqqt_cast<TQDialog*>(tqtopLevelWidget()) )
 	((TQDialog*)tqtopLevelWidget())->setMainDefault( this );
#endif
    update();
#if defined(TQT_ACCESSIBILITY_SUPPORT)
    TQAccessible::updateAccessibility( this, 0, TQAccessible::StateChanged );
#endif
}


/*!
    \reimp
*/
TQSize TQPushButton::sizeHint() const
{
    constPolish();

    int w = 0, h = 0;

    // calculate contents size...
#ifndef TQT_NO_ICONSET
    if ( iconSet() && !iconSet()->isNull() ) {
	int iw = iconSet()->pixmap( TQIconSet::Small, TQIconSet::Normal ).width() + 4;
	int ih = iconSet()->pixmap( TQIconSet::Small, TQIconSet::Normal ).height();
	w += iw;
	h = TQMAX( h, ih );
    }
#endif
    if ( isMenuButton() )
	w += tqstyle().tqpixelMetric(TQStyle::PM_MenuButtonIndicator, this);

    if ( pixmap() ) {
	TQPixmap *pm = (TQPixmap *)pixmap();
	w += pm->width();
	h += pm->height();
    } else {
	TQString s( text() );
	bool empty = s.isEmpty();
	if ( empty )
	    s = TQString::tqfromLatin1("XXXX");
	TQFontMetrics fm = fontMetrics();
	TQSize sz = fm.size( TQt::ShowPrefix, s );
	if(!empty || !w)
	    w += sz.width();
	if(!empty || !h)
	    h = TQMAX(h, sz.height());
    }

    return (tqstyle().sizeFromContents(TQStyle::CT_PushButton, this, TQSize(w, h)).
	    expandedTo(TQApplication::globalStrut()));
}


/*!
    \reimp
*/
void TQPushButton::move( int x, int y )
{
    TQWidget::move( x, y );
}

/*!
    \reimp
*/
void TQPushButton::move( const TQPoint &p )
{
    move( p.x(), p.y() );
}

/*!
    \reimp
*/
void TQPushButton::resize( int w, int h )
{
    TQWidget::resize( w, h );
}

/*!
    \reimp
*/
void TQPushButton::resize( const TQSize &s )
{
    resize( s.width(), s.height() );
}

/*!
    \reimp
*/
void TQPushButton::setGeometry( int x, int y, int w, int h )
{
    TQWidget::setGeometry( x, y, w, h );
}

/*!
    \reimp
*/
void TQPushButton::setGeometry( const TQRect &r )
{
    TQWidget::setGeometry( r );
}

/*!
    \reimp
 */
void TQPushButton::resizeEvent( TQResizeEvent * )
{
    if ( autoMask() )
	updateMask();
}

/*!
    \reimp
*/
void TQPushButton::drawButton( TQPainter *paint )
{
    int diw = 0;
    if ( isDefault() || autoDefault() ) {
	diw = tqstyle().tqpixelMetric(TQStyle::PM_ButtonDefaultIndicator, this);

	if ( diw > 0 ) {
	    if (backgroundMode() == TQt::X11ParentRelative) {
		erase( 0, 0, width(), diw );
		erase( 0, 0, diw, height() );
		erase( 0, height() - diw, width(), diw );
		erase( width() - diw, 0, diw, height() );
	    } else if ( parentWidget() && parentWidget()->backgroundPixmap() ){
		// pseudo tranparency
		paint->drawTiledPixmap( 0, 0, width(), diw,
					*parentWidget()->backgroundPixmap(),
					x(), y() );
		paint->drawTiledPixmap( 0, 0, diw, height(),
					*parentWidget()->backgroundPixmap(),
					x(), y() );
		paint->drawTiledPixmap( 0, height()-diw, width(), diw,
					*parentWidget()->backgroundPixmap(),
					x(), y()+height() );
		paint->drawTiledPixmap( width()-diw, 0, diw, height(),
					*parentWidget()->backgroundPixmap(),
					x()+width(), y() );
	    } else {
		paint->fillRect( 0, 0, width(), diw,
				 tqcolorGroup().brush(TQColorGroup::Background) );
		paint->fillRect( 0, 0, diw, height(),
				 tqcolorGroup().brush(TQColorGroup::Background) );
		paint->fillRect( 0, height()-diw, width(), diw,
				 tqcolorGroup().brush(TQColorGroup::Background) );
		paint->fillRect( width()-diw, 0, diw, height(),
				 tqcolorGroup().brush(TQColorGroup::Background) );
	    }

	}
    }

    TQStyle::SFlags flags = TQStyle::Style_Default;
    if (isEnabled())
	flags |= TQStyle::Style_Enabled;
    if (hasFocus())
	flags |= TQStyle::Style_HasFocus;
    if (isDown())
	flags |= TQStyle::Style_Down;
    if (isOn())
	flags |= TQStyle::Style_On;
    if (! isFlat() && ! isDown())
	flags |= TQStyle::Style_Raised;
    if (isDefault())
	flags |= TQStyle::Style_ButtonDefault;

    tqstyle().tqdrawControl(TQStyle::CE_PushButton, paint, this, rect(), tqcolorGroup(), flags);
    drawButtonLabel( paint );

    lastEnabled = isEnabled();
}


/*!
    \reimp
*/
void TQPushButton::drawButtonLabel( TQPainter *paint )
{

    TQStyle::SFlags flags = TQStyle::Style_Default;
    if (isEnabled())
	flags |= TQStyle::Style_Enabled;
    if (hasFocus())
	flags |= TQStyle::Style_HasFocus;
    if (isDown())
	flags |= TQStyle::Style_Down;
    if (isOn())
	flags |= TQStyle::Style_On;
    if (! isFlat() && ! isDown())
	flags |= TQStyle::Style_Raised;
    if (isDefault())
	flags |= TQStyle::Style_ButtonDefault;

    tqstyle().tqdrawControl(TQStyle::CE_PushButtonLabel, paint, this,
			tqstyle().subRect(TQStyle::SR_PushButtonContents, this),
			tqcolorGroup(), flags);
}


/*!
    \reimp
 */
void TQPushButton::updateMask()
{
    TQBitmap bm( size() );
    bm.fill( Qt::color0 );

    {
	TQPainter p( &bm, this );
	tqstyle().tqdrawControlMask(TQStyle::CE_PushButton, &p, this, rect());
    }

    setMask( bm );
}

/*!
    \reimp
*/
void TQPushButton::focusInEvent( TQFocusEvent *e )
{
    if (autoDefButton && !defButton) {
	defButton = TRUE;
#ifndef TQT_NO_DIALOG
	if ( defButton && ::tqqt_cast<TQDialog*>(tqtopLevelWidget()) )
 	    ((TQDialog*)tqtopLevelWidget())->setDefault( this );
#endif
    }
    TQButton::focusInEvent( e );
}

/*!
    \reimp
*/
void TQPushButton::focusOutEvent( TQFocusEvent *e )
{
#ifndef TQT_NO_DIALOG
    if ( defButton && autoDefButton ) {
	if ( ::tqqt_cast<TQDialog*>(tqtopLevelWidget()) )
	    ((TQDialog*)tqtopLevelWidget())->setDefault( 0 );
    }
#endif

    TQButton::focusOutEvent( e );
#ifndef TQT_NO_POPUPMENU
    if ( popup() && popup()->isVisible() )	// restore pressed status
	setDown( TRUE );
#endif
}


#ifndef TQT_NO_POPUPMENU
/*!
    Associates the popup menu \a popup with this push button. This
    turns the button into a menu button.

    Ownership of the popup menu is \e not transferred to the push
    button.

    \sa popup()
*/
void TQPushButton::setPopup( TQPopupMenu* popup )
{
    if ( !d )
	d = new TQPushButtonPrivate;
    if ( popup && !d->popup )
	connect( this, TQT_SIGNAL( pressed() ), this, TQT_SLOT( popupPressed() ) );

    d->popup = popup;
    setIsMenuButton( popup != 0 );
}
#endif //TQT_NO_POPUPMENU
#ifndef TQT_NO_ICONSET
void TQPushButton::setIconSet( const TQIconSet& icon )
{
    if ( !d )
	d = new TQPushButtonPrivate;
    if ( !icon.isNull() ) {
	if ( d->iconset )
	    *d->iconset = icon;
	else
	    d->iconset = new TQIconSet( icon );
    } else if ( d->iconset) {
	delete d->iconset;
	d->iconset = 0;
    }

    update();
    updateGeometry();
}


TQIconSet* TQPushButton::iconSet() const
{
    return d ? d->iconset : 0;
}
#endif // TQT_NO_ICONSET
#ifndef TQT_NO_POPUPMENU
/*!
    Returns the button's associated popup menu or 0 if no popup menu
    has been set.

    \sa setPopup()
*/
TQPopupMenu* TQPushButton::popup() const
{
    return d ? (TQPopupMenu*)d->popup : 0;
}

void TQPushButton::popupPressed()
{
    TQPopupMenu* popup = d ? (TQPopupMenu*) d->popup : 0;
    TQGuardedPtr<TQPushButton> that = this;
    if ( isDown() && popup ) {
	bool horizontal = TRUE;
	bool topLeft = TRUE;			// ### always TRUE
#ifndef TQT_NO_TOOLBAR
	TQToolBar *tb = ::tqqt_cast<TQToolBar*>(parentWidget());
	if ( tb && tb->orientation() == Qt::Vertical )
	    horizontal = FALSE;
#endif
	if ( horizontal ) {
	    if ( topLeft ) {
		if ( mapToGlobal( TQPoint( 0, rect().bottom() ) ).y() + popup->sizeHint().height() <= tqApp->desktop()->height() )
		    popup->exec( mapToGlobal( rect().bottomLeft() ) );
		else
		    popup->exec( mapToGlobal( rect().topLeft() - TQPoint( 0, popup->sizeHint().height() ) ) );
	    } else {
		TQSize sz( popup->sizeHint() );
		TQPoint p = mapToGlobal( rect().topLeft() );
		p.ry() -= sz.height();
		popup->exec( p );
	    }
	} else {
	    if ( topLeft ) {
		if ( mapToGlobal( TQPoint( rect().right(), 0 ) ).x() + popup->sizeHint().width() <= tqApp->desktop()->width() )
		    popup->exec( mapToGlobal( rect().topRight() ) );
		else
		    popup->exec( mapToGlobal( rect().topLeft() - TQPoint( popup->sizeHint().width(), 0 ) ) );
	    } else {
		TQSize sz( popup->sizeHint() );
		TQPoint p = mapToGlobal( rect().topLeft() );
		p.rx() -= sz.width();
		popup->exec( p );
	    }
	}
        if (that)
            setDown( FALSE );
    }
}
#endif

void TQPushButton::setFlat( bool f )
{
    flt = f;
    update();
}

bool TQPushButton::isFlat() const
{
    return flt;
}

/*!
    \obsolete
    \fn virtual void TQPushButton::setIsMenuButton( bool enable )
*/

#endif