summaryrefslogtreecommitdiffstats
path: root/doc/html/xform-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/xform-example.html')
-rw-r--r--doc/html/xform-example.html24
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/html/xform-example.html b/doc/html/xform-example.html
index 481bcb13..98077be8 100644
--- a/doc/html/xform-example.html
+++ b/doc/html/xform-example.html
@@ -60,8 +60,8 @@ arbitrarily.
#include &lt;<a href="tqslider-h.html">tqslider.h</a>&gt;
#include &lt;<a href="tqmenubar-h.html">tqmenubar.h</a>&gt;
#include &lt;<a href="tqfontdialog-h.html">tqfontdialog.h</a>&gt;
-#include &lt;<a href="qlayout-h.html">ntqlayout.h</a>&gt;
-#include &lt;<a href="qvbox-h.html">ntqvbox.h</a>&gt;
+#include &lt;<a href="tqlayout-h.html">tqlayout.h</a>&gt;
+#include &lt;<a href="tqvbox-h.html">tqvbox.h</a>&gt;
#include &lt;<a href="tqwidgetstack-h.html">tqwidgetstack.h</a>&gt;
#include &lt;<a href="tqpainter-h.html">tqpainter.h</a>&gt;
@@ -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> &amp;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-&gt;<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-&gt;<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-&gt;<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-&gt;<a href="tqhbox.html#setSpacing">setSpacing</a>(6);
<a name="x1276"></a> optionals-&gt;<a href="tqwidgetstack.html#addWidget">addWidget</a>(optionals_text,0);
optionals-&gt;<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-&gt;<a href="tqframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::Panel | TQFrame::Raised );
<a name="x1227"></a> xc-&gt;<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>&amp;)), sx,