diff options
Diffstat (limited to 'src/kernel/qwidget.cpp')
-rw-r--r-- | src/kernel/qwidget.cpp | 88 |
1 files changed, 44 insertions, 44 deletions
diff --git a/src/kernel/qwidget.cpp b/src/kernel/qwidget.cpp index b3a630bcf..091958520 100644 --- a/src/kernel/qwidget.cpp +++ b/src/kernel/qwidget.cpp @@ -530,7 +530,7 @@ static TQFont qt_naturalWidgetFont( TQWidget* w ) { return naturalfont; } -#ifndef QT_NO_PALETTE +#ifndef TQT_NO_PALETTE static TQPalette qt_naturalWidgetPalette( TQWidget* w ) { TQPalette naturalpalette = TQApplication::palette( w ); if ( !w->isTopLevel() && naturalpalette.isCopyOf( TQApplication::palette() ) ) @@ -542,7 +542,7 @@ static TQPalette qt_naturalWidgetPalette( TQWidget* w ) { TQSize qt_naturalWidgetSize( TQWidget *w ) { TQSize s = w->sizeHint(); TQSizePolicy::ExpandData exp; -#ifndef QT_NO_LAYOUT +#ifndef TQT_NO_LAYOUT if ( w->layout() ) { if ( w->layout()->hasHeightForWidth() ) s.setHeight( w->layout()->totalHeightForWidth( s.width() ) ); @@ -911,15 +911,15 @@ TQWidget::TQWidget( TQWidget *parent, const char *name, WFlags f, NFlags n ) in_show = 0; in_show_maximized = 0; im_enabled = FALSE; -#ifndef QT_NO_LAYOUT +#ifndef TQT_NO_LAYOUT lay_out = 0; #endif extra = 0; // no extra widget info -#ifndef QT_NO_PALETTE +#ifndef TQT_NO_PALETTE bg_col = pal.active().background(); // default background color #endif create(); // platform-dependent init -#ifndef QT_NO_PALETTE +#ifndef TQT_NO_PALETTE pal = isTopLevel() ? TQApplication::palette() : parentWidget()->palette(); #endif if ( ! isTopLevel() ) @@ -1142,7 +1142,7 @@ void TQWidget::createTLExtra() #if defined( Q_WS_WIN ) || defined( Q_WS_MAC ) x->opacity = 255; #endif -#ifndef QT_NO_WIDGET_TOPEXTRA +#ifndef TQT_NO_WIDGET_TOPEXTRA x->icon = 0; #endif x->focusData = 0; @@ -1159,7 +1159,7 @@ void TQWidget::createTLExtra() x->ussize = 0; #endif x->savedFlags = 0; -#if defined(Q_WS_QWS) && !defined(QT_NO_QWS_MANAGER) +#if defined(Q_WS_QWS) && !defined(TQT_NO_QWS_MANAGER) x->decor_allocated_region = TQRegion(); x->qwsManager = 0; #endif @@ -1181,14 +1181,14 @@ void TQWidget::createExtra() extra->maxw = extra->maxh = TQWIDGETSIZE_MAX; extra->bg_pix = 0; extra->focus_proxy = 0; -#ifndef QT_NO_CURSOR +#ifndef TQT_NO_CURSOR extra->curs = 0; #endif extra->topextra = 0; extra->bg_mode = PaletteBackground; extra->bg_mode_visual = PaletteBackground; extra->bg_origin = WidgetOrigin; -#ifndef QT_NO_STYLE +#ifndef TQT_NO_STYLE extra->style = 0; #endif extra->size_policy = TQSizePolicy( TQSizePolicy::Preferred, @@ -1211,17 +1211,17 @@ void TQWidget::deleteExtra() if ( extra ) { // if exists delete extra->m_ceData; delete extra->bg_pix; -#ifndef QT_NO_CURSOR +#ifndef TQT_NO_CURSOR delete extra->curs; #endif deleteSysExtra(); if ( extra->topextra ) { deleteTLSysExtra(); -#ifndef QT_NO_WIDGET_TOPEXTRA +#ifndef TQT_NO_WIDGET_TOPEXTRA delete extra->topextra->icon; #endif delete extra->topextra->focusData; -#if defined(Q_WS_QWS) && !defined(QT_NO_QWS_MANAGER) +#if defined(Q_WS_QWS) && !defined(TQT_NO_QWS_MANAGER) delete extra->topextra->qwsManager; #endif delete extra->topextra; @@ -1323,7 +1323,7 @@ TQWidget *TQWidget::find( WId id ) \sa find() */ -#ifndef QT_NO_STYLE +#ifndef TQT_NO_STYLE /*! Returns the GUI style for this widget @@ -1839,7 +1839,7 @@ void TQWidget::enabledChange( bool ) void TQWidget::windowActivationChange( bool ) { -#ifndef QT_NO_PALETTE +#ifndef TQT_NO_PALETTE if ( !isVisible() ) return; @@ -2415,7 +2415,7 @@ TQWidget *TQWidget::topLevelWidget() const */ const TQColor &TQWidget::paletteForegroundColor() const { -#ifndef QT_NO_PALETTE +#ifndef TQT_NO_PALETTE BackgroundMode mode = extra ? (BackgroundMode) extra->bg_mode_visual : PaletteBackground; return colorGroup().color( TQPalette::foregroundRoleFromMode(mode) ); #else @@ -2425,7 +2425,7 @@ const TQColor &TQWidget::paletteForegroundColor() const void TQWidget::setPaletteForegroundColor( const TQColor & color ) { -#ifndef QT_NO_PALETTE +#ifndef TQT_NO_PALETTE BackgroundMode mode = extra ? (BackgroundMode) extra->bg_mode_visual : PaletteBackground; TQPalette pal = palette(); TQColorGroup::ColorRole role = TQPalette::foregroundRoleFromMode( mode ); @@ -2496,7 +2496,7 @@ void TQWidget::setErasePixmap( const TQPixmap &pixmap ) void TQWidget::setBackgroundFromMode() { -#ifndef QT_NO_PALETTE +#ifndef TQT_NO_PALETTE TQColorGroup::ColorRole r = TQColorGroup::Background; if ( extra ) { int i = (BackgroundMode)extra->bg_mode; @@ -2734,7 +2734,7 @@ void TQWidget::setBackgroundModeDirect( BackgroundMode m ) */ const TQColor & TQWidget::paletteBackgroundColor() const { -#ifndef QT_NO_PALETTE +#ifndef TQT_NO_PALETTE BackgroundMode mode = extra ? (BackgroundMode) extra->bg_mode_visual : PaletteBackground; switch( mode ) { case FixedColor: @@ -2753,7 +2753,7 @@ const TQColor & TQWidget::paletteBackgroundColor() const void TQWidget::setPaletteBackgroundColor( const TQColor &color ) { -#ifndef QT_NO_PALETTE +#ifndef TQT_NO_PALETTE BackgroundMode mode = extra ? (BackgroundMode) extra->bg_mode_visual : PaletteBackground; switch( mode ) { case FixedColor: @@ -2797,7 +2797,7 @@ void TQWidget::setPaletteBackgroundColor( const TQColor &color ) */ const TQPixmap *TQWidget::paletteBackgroundPixmap() const { -#ifndef QT_NO_PALETTE +#ifndef TQT_NO_PALETTE BackgroundMode mode = extra ? (BackgroundMode) extra->bg_mode_visual : PaletteBackground; switch( mode ) { case FixedColor: @@ -2816,7 +2816,7 @@ const TQPixmap *TQWidget::paletteBackgroundPixmap() const void TQWidget::setPaletteBackgroundPixmap( const TQPixmap &pixmap ) { -#ifndef QT_NO_PALETTE +#ifndef TQT_NO_PALETTE BackgroundMode mode = extra ? (BackgroundMode) extra->bg_mode_visual : PaletteBackground; switch( mode ) { case FixedColor: @@ -2853,7 +2853,7 @@ void TQWidget::setPaletteBackgroundPixmap( const TQPixmap &pixmap ) const TQBrush& TQWidget::backgroundBrush() const { static TQBrush noBrush; -#ifndef QT_NO_PALETTE +#ifndef TQT_NO_PALETTE BackgroundMode mode = extra ? (BackgroundMode) extra->bg_mode_visual : PaletteBackground; switch( mode ) { case FixedColor: @@ -2882,7 +2882,7 @@ const TQBrush& TQWidget::backgroundBrush() const \sa palette */ -#ifndef QT_NO_PALETTE +#ifndef TQT_NO_PALETTE const TQColorGroup &TQWidget::colorGroup() const { if ( !isEnabled() ) @@ -2913,7 +2913,7 @@ const TQColorGroup &TQWidget::colorGroup() const \sa ownPalette, colorGroup(), TQApplication::palette() */ -#ifndef QT_NO_PALETTE +#ifndef TQT_NO_PALETTE void TQWidget::setPalette( const TQPalette &palette ) { own_palette = TRUE; @@ -2968,7 +2968,7 @@ void TQWidget::unsetPalette() void TQWidget::paletteChange( const TQPalette & ) { } -#endif // QT_NO_PALETTE +#endif // TQT_NO_PALETTE /*! \property TQWidget::font @@ -3095,7 +3095,7 @@ void TQWidget::fontChange( const TQFont & ) \sa TQApplication::setOverrideCursor() */ -#ifndef QT_NO_CURSOR +#ifndef TQT_NO_CURSOR const TQCursor &TQWidget::cursor() const { if ( testWState(WState_OwnCursor) ) @@ -3106,7 +3106,7 @@ const TQCursor &TQWidget::cursor() const return (isTopLevel() || !parentWidget()) ? arrowCursor : parentWidget()->cursor(); } #endif -#ifndef QT_NO_WIDGET_TOPEXTRA +#ifndef TQT_NO_WIDGET_TOPEXTRA /*! \property TQWidget::caption \brief the window caption (title) @@ -3153,7 +3153,7 @@ TQString TQWidget::iconText() const return ( extra && extra->topextra ) ? extra->topextra->iconText : TQString::null; } -#endif //QT_NO_WIDGET_TOPEXTRA +#endif //TQT_NO_WIDGET_TOPEXTRA /*! \property TQWidget::mouseTracking @@ -3603,7 +3603,7 @@ bool TQWidget::isActiveWindow() const tlw = parentWidget()->topLevelWidget(); if(tlw == tqApp->activeWindow() || ( isVisible() && tlw->isPopup() )) return TRUE; -#ifndef QT_NO_STYLE +#ifndef TQT_NO_STYLE const_cast<TQWidget*>(this)->createExtra(); if (!extra->m_ceData) { const_cast<TQWidget*>(this)->extra->m_ceData = new TQStyleControlElementData(); @@ -4242,7 +4242,7 @@ void TQWidget::hideChildren( bool spontaneous ) void TQWidget::polish() { -#ifndef QT_NO_WIDGET_TOPEXTRA +#ifndef TQT_NO_WIDGET_TOPEXTRA if ( isTopLevel() ) { const TQPixmap *pm = icon(); if ( !pm || pm->isNull() ) { @@ -4269,7 +4269,7 @@ void TQWidget::polish() if ( ! own_font && ! TQApplication::font( this ).isCopyOf( TQApplication::font() ) ) unsetFont(); -#ifndef QT_NO_PALETTE +#ifndef TQT_NO_PALETTE if ( ! own_palette && ! TQApplication::palette( this ).isCopyOf( TQApplication::palette() ) ) unsetPalette(); @@ -4549,7 +4549,7 @@ void TQWidget::adjustSize() TQRect screen = TQApplication::desktop()->screenGeometry( pos() ); #endif -#ifndef QT_NO_LAYOUT +#ifndef TQT_NO_LAYOUT if ( layout() ) { if ( layout()->hasHeightForWidth() ) { s = s.boundedTo( screen.size() ); @@ -4592,7 +4592,7 @@ void TQWidget::adjustSize() TQSize TQWidget::sizeHint() const { -#ifndef QT_NO_LAYOUT +#ifndef TQT_NO_LAYOUT if ( layout() ) return layout()->totalSizeHint(); #endif @@ -4618,7 +4618,7 @@ TQSize TQWidget::sizeHint() const */ TQSize TQWidget::minimumSizeHint() const { -#ifndef QT_NO_LAYOUT +#ifndef TQT_NO_LAYOUT if ( layout() ) return layout()->totalMinimumSize(); #endif @@ -4753,7 +4753,7 @@ bool TQWidget::event( TQEvent *e ) if ( ! ((TQMouseEvent*)e)->isAccepted() ) return FALSE; break; -#ifndef QT_NO_WHEELEVENT +#ifndef TQT_NO_WHEELEVENT case TQEvent::Wheel: wheelEvent( (TQWheelEvent*)e ); if ( ! ((TQWheelEvent*)e)->isAccepted() ) @@ -4873,7 +4873,7 @@ bool TQWidget::event( TQEvent *e ) } break; -#ifndef QT_NO_DRAGANDDROP +#ifndef TQT_NO_DRAGANDDROP case TQEvent::Drop: dropEvent( (TQDropEvent*) e); break; @@ -4915,7 +4915,7 @@ bool TQWidget::event( TQEvent *e ) unsetFont(); break; -#ifndef QT_NO_PALETTE +#ifndef TQT_NO_PALETTE case TQEvent::ParentPaletteChange: if ( isTopLevel() ) break; @@ -4923,7 +4923,7 @@ bool TQWidget::event( TQEvent *e ) case TQEvent::ApplicationPaletteChange: if ( !own_palette && !isDesktop() ) unsetPalette(); -# if defined(Q_WS_QWS) && !defined (QT_NO_QWS_MANAGER) +# if defined(Q_WS_QWS) && !defined (TQT_NO_QWS_MANAGER) if ( isTopLevel() && topData()->qwsManager ) { TQRegion r( topData()->qwsManager->region() ); TQApplication::postEvent(topData()->qwsManager, new TQPaintEvent(r, FALSE) ); @@ -4965,7 +4965,7 @@ bool TQWidget::event( TQEvent *e ) } update(); break; -#ifndef QT_NO_LAYOUT +#ifndef TQT_NO_LAYOUT case TQEvent::LayoutDirectionChange: if ( layout() ) { layout()->activate(); @@ -5108,7 +5108,7 @@ void TQWidget::mouseDoubleClickEvent( TQMouseEvent *e ) mousePressEvent( e ); // try mouse press event } -#ifndef QT_NO_WHEELEVENT +#ifndef TQT_NO_WHEELEVENT /*! This event handler, for event \a e, can be reimplemented in a subclass to receive wheel events for the widget. @@ -5468,7 +5468,7 @@ void TQWidget::imEndEvent( TQIMEvent *e ) } -#ifndef QT_NO_DRAGANDDROP +#ifndef TQT_NO_DRAGANDDROP /*! This event handler is called when a drag is in progress and the @@ -5522,7 +5522,7 @@ void TQWidget::dropEvent( TQDropEvent * ) { } -#endif // QT_NO_DRAGANDDROP +#endif // TQT_NO_DRAGANDDROP /*! This event handler can be reimplemented in a subclass to receive @@ -5834,7 +5834,7 @@ TQPoint TQWidget::backgroundOffset() const \sa layout() TQLayout sizePolicy() */ -#ifndef QT_NO_LAYOUT +#ifndef TQT_NO_LAYOUT void TQWidget::setLayout( TQLayout *l ) { lay_out = l; @@ -6027,7 +6027,7 @@ void TQWidget::reparent( TQWidget *parent, WFlags f, const TQPoint &p, unsetFont(); else setFont( fnt.resolve( qt_naturalWidgetFont( this ) ) ); -#ifndef QT_NO_PALETTE +#ifndef TQT_NO_PALETTE if (!own_palette) unsetPalette(); #endif |