diff options
Diffstat (limited to 'doc/html/qwidget-h.html')
| -rw-r--r-- | doc/html/qwidget-h.html | 50 | 
1 files changed, 25 insertions, 25 deletions
diff --git a/doc/html/qwidget-h.html b/doc/html/qwidget-h.html index 228e554c8..a39ba25ed 100644 --- a/doc/html/qwidget-h.html +++ b/doc/html/qwidget-h.html @@ -138,11 +138,11 @@ class Q_EXPORT TQWidget : public TQObject, public TQPaintDevice      TQ_PROPERTY( bool ownPalette READ ownPalette )      TQ_PROPERTY( TQFont font READ font WRITE setFont RESET unsetFont STORED ownFont )      TQ_PROPERTY( bool ownFont READ ownFont ) -#ifndef QT_NO_CURSOR +#ifndef TQT_NO_CURSOR      TQ_PROPERTY( TQCursor cursor READ cursor WRITE setCursor RESET unsetCursor STORED ownCursor )      TQ_PROPERTY( bool ownCursor READ ownCursor )  #endif -#ifndef QT_NO_WIDGET_TOPEXTRA +#ifndef TQT_NO_WIDGET_TOPEXTRA      TQ_PROPERTY( TQString caption READ caption WRITE setCaption )      TQ_PROPERTY( TQPixmap icon READ icon WRITE setIcon )      TQ_PROPERTY( TQString iconText READ iconText WRITE setIconText ) @@ -176,7 +176,7 @@ public:      WId		 winId() const;      void	 setName( const char *name ); -#ifndef QT_NO_STYLE +#ifndef TQT_NO_STYLE      // GUI style setting      TQStyle     &style() const; @@ -267,7 +267,7 @@ public:      const TQPixmap *	erasePixmap() const;      virtual void	setErasePixmap( const TQPixmap & ); -#ifndef QT_NO_PALETTE +#ifndef TQT_NO_PALETTE      const TQColorGroup & colorGroup() const;      const TQPalette &	palette()    const;      bool		ownPalette() const; @@ -293,13 +293,13 @@ public:      TQFontMetrics	fontMetrics() const;      TQFontInfo	 	fontInfo() const; -#ifndef QT_NO_CURSOR +#ifndef TQT_NO_CURSOR      const TQCursor      &cursor() const;      bool		ownCursor() const;      virtual void	setCursor( const TQCursor & );      virtual void	unsetCursor();  #endif -#ifndef QT_NO_WIDGET_TOPEXTRA +#ifndef TQT_NO_WIDGET_TOPEXTRA      TQString		caption() const;      const TQPixmap      *icon() const;      TQString		iconText() const; @@ -317,7 +317,7 @@ public:      virtual void	setBackgroundPixmap( const TQPixmap & ); // obsolete, use setErasePixmap()  public slots: -#ifndef QT_NO_WIDGET_TOPEXTRA +#ifndef TQT_NO_WIDGET_TOPEXTRA      virtual void	setCaption( const TQString &);      virtual void	setIcon( const TQPixmap & );      virtual void	setIconText( const TQString &); @@ -354,7 +354,7 @@ public:      // Grab functions      void		grabMouse(); -#ifndef QT_NO_CURSOR +#ifndef TQT_NO_CURSOR      void		grabMouse( const TQCursor & );  #endif      void		releaseMouse(); @@ -437,7 +437,7 @@ public slots:      virtual void  	adjustSize();  public: -#ifndef QT_NO_LAYOUT +#ifndef TQT_NO_LAYOUT      TQLayout *		layout() const { return lay_out; }  #endif      void		updateGeometry(); @@ -514,7 +514,7 @@ protected:      virtual void mouseReleaseEvent( TQMouseEvent * );      virtual void mouseDoubleClickEvent( TQMouseEvent * );      virtual void mouseMoveEvent( TQMouseEvent * ); -#ifndef QT_NO_WHEELEVENT +#ifndef TQT_NO_WHEELEVENT      virtual void wheelEvent( TQWheelEvent * );  #endif      virtual void keyPressEvent( TQKeyEvent * ); @@ -533,7 +533,7 @@ protected:      virtual void imEndEvent( TQIMEvent * );      virtual void tabletEvent( TQTabletEvent * ); -#ifndef QT_NO_DRAGANDDROP +#ifndef TQT_NO_DRAGANDDROP      virtual void dragEnterEvent( TQDragEnterEvent * );      virtual void dragMoveEvent( TQDragMoveEvent * );      virtual void dragLeaveEvent( TQDragLeaveEvent * ); @@ -562,11 +562,11 @@ protected:      // Misc. protected functions -#ifndef QT_NO_STYLE +#ifndef TQT_NO_STYLE      virtual void styleChange( TQStyle& );  #endif      virtual void enabledChange( bool oldEnabled ); -#ifndef QT_NO_PALETTE +#ifndef TQT_NO_PALETTE      virtual void paletteChange( const TQPalette & );  #endif      virtual void fontChange( const TQFont & ); @@ -632,7 +632,7 @@ private:      friend class TQDragManager;  #endif -#ifndef QT_NO_LAYOUT +#ifndef TQT_NO_LAYOUT      void 	 setLayout( TQLayout *l );  #endif      void	 setWinId( WId ); @@ -676,11 +676,11 @@ private:      uint	 im_enabled : 1;      TQRect	 crect;      TQColor	 bg_col; -#ifndef QT_NO_PALETTE +#ifndef TQT_NO_PALETTE      TQPalette	 pal;  #endif      TQFont	 fnt; -#ifndef QT_NO_LAYOUT +#ifndef TQT_NO_LAYOUT      TQLayout 	*lay_out;  #endif      TQWExtra	*extra; @@ -705,7 +705,7 @@ private:      TQRegion paintableRegion() const;      void updateGraphicsContext( TQGfx *qgfx_qws, bool clip_children ) const; -#ifndef QT_NO_CURSOR +#ifndef TQT_NO_CURSOR      void updateCursor( const TQRegion &r ) const;  #endif @@ -737,7 +737,7 @@ private:	// Disabled copy constructor and operator=  #endif  public: // obsolete functions to dissappear or to become inline in 3.0 -#ifndef QT_NO_PALETTE +#ifndef TQT_NO_PALETTE      void setPalette( const TQPalette &p, bool ) { setPalette( p ); }  #endif      void setFont( const TQFont &f, bool ) { setFont( f ); } @@ -817,7 +817,7 @@ inline void TQWidget::setBaseSize( const TQSize &s )  inline const TQColor &TQWidget::eraseColor() const  { return bg_col; } -#ifndef QT_NO_PALETTE +#ifndef TQT_NO_PALETTE  inline const TQPalette &TQWidget::palette() const  { return pal; }  #endif @@ -924,7 +924,7 @@ inline void TQWidget::constPolish() const          that->setWState(WState_Polished); // be on the safe side...      }  } -#ifndef QT_NO_CURSOR +#ifndef TQT_NO_CURSOR  inline bool TQWidget::ownCursor() const  {      return testWState( WState_OwnCursor ); @@ -934,7 +934,7 @@ inline bool TQWidget::ownFont() const  {      return own_font;  } -#ifndef QT_NO_PALETTE +#ifndef TQT_NO_PALETTE  inline bool TQWidget::ownPalette() const  {      return own_palette; @@ -965,7 +965,7 @@ class TQMacDndExtra;  #endif  struct Q_EXPORT TQTLWExtra { -#ifndef QT_NO_WIDGET_TOPEXTRA +#ifndef TQT_NO_WIDGET_TOPEXTRA      TQString  caption;				// widget caption      TQString  iconText;				// widget icon text      TQPixmap *icon;				// widget icon @@ -995,7 +995,7 @@ struct Q_EXPORT TQTLWExtra {      uint     is_moved: 1;      uint     resizer : 4;  #endif -#if defined(Q_WS_QWS) && !defined ( QT_NO_QWS_MANAGER ) +#if defined(Q_WS_QWS) && !defined ( TQT_NO_QWS_MANAGER )      TQRegion decor_allocated_region;		// decoration allocated region      TQWSManager *qwsManager;  #endif @@ -1018,7 +1018,7 @@ struct Q_EXPORT TQWExtra {      TQ_INT16  maxw, maxh;			// maximum size      TQPixmap *bg_pix;				// background pixmap      TQWidget *focus_proxy; -#ifndef QT_NO_CURSOR +#ifndef TQT_NO_CURSOR      TQCursor *curs;  #endif      TQTLWExtra *topextra;			// only useful for TLWs @@ -1049,7 +1049,7 @@ struct Q_EXPORT TQWExtra {  #endif      char     bg_mode;				// background mode      char     bg_mode_visual;			// visual background mode -#ifndef QT_NO_STYLE +#ifndef TQT_NO_STYLE      TQStyle* style;  #endif      TQRect micro_focus_hint;			// micro focus hint  | 
