diff options
Diffstat (limited to 'doc/html/xform-example.html')
-rw-r--r-- | doc/html/xform-example.html | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/html/xform-example.html b/doc/html/xform-example.html index 481bcb13a..98077be81 100644 --- a/doc/html/xform-example.html +++ b/doc/html/xform-example.html @@ -60,8 +60,8 @@ arbitrarily. #include <<a href="tqslider-h.html">tqslider.h</a>> #include <<a href="tqmenubar-h.html">tqmenubar.h</a>> #include <<a href="tqfontdialog-h.html">tqfontdialog.h</a>> -#include <<a href="qlayout-h.html">ntqlayout.h</a>> -#include <<a href="qvbox-h.html">ntqvbox.h</a>> +#include <<a href="tqlayout-h.html">tqlayout.h</a>> +#include <<a href="tqvbox-h.html">tqvbox.h</a>> #include <<a href="tqwidgetstack-h.html">tqwidgetstack.h</a>> #include <<a href="tqpainter-h.html">tqpainter.h</a>> @@ -77,7 +77,7 @@ public: }; -class XFormControl : public <a href="ntqvbox.html">TQVBox</a>, public ModeNames +class XFormControl : public <a href="tqvbox.html">TQVBox</a>, public ModeNames { <a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a> public: @@ -152,9 +152,9 @@ private: <a name="f397"></a>XFormControl::XFormControl( const <a href="tqfont.html">TQFont</a> &initialFont, <a href="tqwidget.html">TQWidget</a> *parent, const char *name ) - : <a href="ntqvbox.html">TQVBox</a>( parent, name ) + : <a href="tqvbox.html">TQVBox</a>( parent, name ) { - <a href="ntqhbox.html#setSpacing">setSpacing</a>(6); + <a href="tqhbox.html#setSpacing">setSpacing</a>(6); <a href="tqframe.html#setMargin">setMargin</a>(6); currentFont = initialFont; mode = Image; @@ -170,10 +170,10 @@ private: rb_img = new <a href="tqradiobutton.html">TQRadioButton</a>( this, "image" ); rb_pic = new <a href="tqradiobutton.html">TQRadioButton</a>( this, "picture" ); optionals = new <a href="tqwidgetstack.html">TQWidgetStack</a>(this); - <a href="ntqvbox.html">TQVBox</a>* optionals_text = new <a href="ntqvbox.html">TQVBox</a>(optionals); -<a name="x1228"></a> optionals_text-><a href="ntqhbox.html#setSpacing">setSpacing</a>(6); - <a href="ntqvbox.html">TQVBox</a>* optionals_other = new <a href="ntqvbox.html">TQVBox</a>(optionals); - optionals_other-><a href="ntqhbox.html#setSpacing">setSpacing</a>(6); + <a href="tqvbox.html">TQVBox</a>* optionals_text = new <a href="tqvbox.html">TQVBox</a>(optionals); +<a name="x1228"></a> optionals_text-><a href="tqhbox.html#setSpacing">setSpacing</a>(6); + <a href="tqvbox.html">TQVBox</a>* optionals_other = new <a href="tqvbox.html">TQVBox</a>(optionals); + optionals_other-><a href="tqhbox.html#setSpacing">setSpacing</a>(6); <a name="x1276"></a> optionals-><a href="tqwidgetstack.html#addWidget">addWidget</a>(optionals_text,0); optionals-><a href="tqwidgetstack.html#addWidget">addWidget</a>(optionals_other,1); fpb = new <a href="tqpushbutton.html">TQPushButton</a>( optionals_text, "text" ); @@ -472,7 +472,7 @@ void <a name="f394"></a>ShowXForm::showIt() together. */ -class XFormCenter : public <a href="ntqhbox.html">TQHBox</a>, public ModeNames +class XFormCenter : public <a href="tqhbox.html">TQHBox</a>, public ModeNames { TQ_OBJECT public: @@ -510,13 +510,13 @@ void <a name="f395"></a>XFormCenter::newMode( int m ) } <a name="f396"></a>XFormCenter::XFormCenter( <a href="tqwidget.html">TQWidget</a> *parent, const char *name ) - : <a href="ntqhbox.html">TQHBox</a>( parent, name ) + : <a href="tqhbox.html">TQHBox</a>( parent, name ) { <a href="tqfont.html">TQFont</a> f( "Charter", 36, TQFont::Bold ); xc = new XFormControl( f, this ); sx = new ShowXForm( f, this ); - <a href="ntqhbox.html#setStretchFactor">setStretchFactor</a>(sx,1); + <a href="tqhbox.html#setStretchFactor">setStretchFactor</a>(sx,1); xc-><a href="tqframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::Panel | TQFrame::Raised ); <a name="x1227"></a> xc-><a href="tqframe.html#setLineWidth">setLineWidth</a>( 2 ); <a href="tqobject.html#connect">connect</a>( xc, TQ_SIGNAL(newText(const <a href="tqstring.html">TQString</a>&)), sx, |