diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-17 19:46:30 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-17 19:46:30 +0900 |
commit | 69d87202cb139ffe9e4b3ce92e434523b7b09b64 (patch) | |
tree | 7b133311a4d5e5394f2612dced305f815c04847b /src/widgets/qbutton.cpp | |
parent | e07baa10b7b8e7105e02a621efadac67216c61ed (diff) | |
download | tqt3-69d87202cb139ffe9e4b3ce92e434523b7b09b64.tar.gz tqt3-69d87202cb139ffe9e4b3ce92e434523b7b09b64.zip |
QT_NO_* -> TQT_NO_* renaming.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/widgets/qbutton.cpp')
-rw-r--r-- | src/widgets/qbutton.cpp | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/widgets/qbutton.cpp b/src/widgets/qbutton.cpp index eb2a196a6..e5d172f32 100644 --- a/src/widgets/qbutton.cpp +++ b/src/widgets/qbutton.cpp @@ -40,7 +40,7 @@ #undef TQT_NO_COMPAT #include "ntqbutton.h" -#ifndef QT_NO_BUTTON +#ifndef TQT_NO_BUTTON #include "ntqbuttongroup.h" #include "ntqbitmap.h" #include "ntqpainter.h" @@ -64,18 +64,18 @@ class TQButtonData { public: TQButtonData() { -#ifndef QT_NO_BUTTONGROUP +#ifndef TQT_NO_BUTTONGROUP group = 0; #endif -#ifndef QT_NO_ACCEL +#ifndef TQT_NO_ACCEL a = 0; #endif } -#ifndef QT_NO_BUTTONGROUP +#ifndef TQT_NO_BUTTONGROUP TQButtonGroup *group; #endif TQTimer timer; -#ifndef QT_NO_ACCEL +#ifndef TQT_NO_ACCEL TQAccel *a; #endif }; @@ -102,7 +102,7 @@ void TQButton::ensureData() TQButtonGroup *TQButton::group() const { -#ifndef QT_NO_BUTTONGROUP +#ifndef TQT_NO_BUTTONGROUP return d ? d->group : 0; #else return 0; @@ -112,7 +112,7 @@ TQButtonGroup *TQButton::group() const void TQButton::setGroup( TQButtonGroup* g ) { -#ifndef QT_NO_BUTTONGROUP +#ifndef TQT_NO_BUTTONGROUP ensureData(); d->group = g; #endif @@ -390,7 +390,7 @@ TQButton::TQButton( TQWidget *parent, const char *name, WFlags f ) animation = FALSE; // no pending animateClick repeat = FALSE; // not in autorepeat mode d = 0; -#ifndef QT_NO_BUTTONGROUP +#ifndef TQT_NO_BUTTONGROUP if ( ::tqt_cast<TQButtonGroup*>(parent) ) { setGroup((TQButtonGroup*)parent); group()->insert( this ); // insert into button group @@ -404,7 +404,7 @@ TQButton::TQButton( TQWidget *parent, const char *name, WFlags f ) */ TQButton::~TQButton() { -#ifndef QT_NO_BUTTONGROUP +#ifndef TQT_NO_BUTTONGROUP if ( group() ) group()->remove( this ); #endif @@ -477,7 +477,7 @@ void TQButton::setText( const TQString &text ) if ( btext == text ) return; btext = text; -#ifndef QT_NO_ACCEL +#ifndef TQT_NO_ACCEL setAccel( TQAccel::shortcutKey( text ) ); #endif @@ -516,7 +516,7 @@ void TQButton::setPixmap( const TQPixmap &pixmap ) bpixmap->setMask( *((TQBitmap *)bpixmap) ); if ( !btext.isNull() ) { btext = TQString::null; -#ifndef QT_NO_ACCEL +#ifndef TQT_NO_ACCEL setAccel( TQKeySequence() ); #endif } @@ -530,7 +530,7 @@ void TQButton::setPixmap( const TQPixmap &pixmap ) } -#ifndef QT_NO_ACCEL +#ifndef TQT_NO_ACCEL TQKeySequence TQButton::accel() const { if ( d && d->a ) @@ -704,7 +704,7 @@ void TQButton::keyPressEvent( TQKeyEvent *e ) case Key_Enter: case Key_Return: { -#ifndef QT_NO_PUSHBUTTON +#ifndef TQT_NO_PUSHBUTTON TQPushButton *pb = (TQPushButton*)tqt_cast( "TQPushButton" ); if ( pb && ( pb->autoDefault() || pb->isDefault() ) ) emit clicked(); @@ -716,7 +716,7 @@ void TQButton::keyPressEvent( TQKeyEvent *e ) case Key_Space: if ( !e->isAutoRepeat() ) { setDown( TRUE ); -#ifndef QT_NO_PUSHBUTTON +#ifndef TQT_NO_PUSHBUTTON if ( ::tqt_cast<TQPushButton*>(this) ) emit pressed(); else @@ -726,7 +726,7 @@ void TQButton::keyPressEvent( TQKeyEvent *e ) break; case Key_Up: case Key_Left: -#ifndef QT_NO_BUTTONGROUP +#ifndef TQT_NO_BUTTONGROUP if ( group() ) { group()->moveFocus( e->key() ); } else @@ -739,7 +739,7 @@ void TQButton::keyPressEvent( TQKeyEvent *e ) break; case Key_Right: case Key_Down: -#ifndef QT_NO_BUTTONGROUP +#ifndef TQT_NO_BUTTONGROUP if ( group() ) { group()->moveFocus( e->key() ); } else @@ -996,7 +996,7 @@ void TQButton::setToggleType( ToggleType type ) bool TQButton::isExclusiveToggle() const { -#ifndef QT_NO_BUTTONGROUP +#ifndef TQT_NO_BUTTONGROUP return group() && ( group()->isExclusive() || ( group()->isRadioButtonExclusive() && ::tqt_cast<TQRadioButton*>(this) ) ); |