diff options
Diffstat (limited to 'doc/html/customlayout-example.html')
-rw-r--r-- | doc/html/customlayout-example.html | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/html/customlayout-example.html b/doc/html/customlayout-example.html index 61a72baa6..ca3f3ae53 100644 --- a/doc/html/customlayout-example.html +++ b/doc/html/customlayout-example.html @@ -759,7 +759,7 @@ CardLayout::~CardLayout() #include <<a href="tqlabel-h.html">tqlabel.h</a>> #include <<a href="tqcolor-h.html">tqcolor.h</a>> #include <<a href="qgroupbox-h.html">ntqgroupbox.h</a>> -#include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> +#include <<a href="tqpushbutton-h.html">tqpushbutton.h</a>> #include <<a href="qmultilineedit-h.html">ntqmultilineedit.h</a>> #include <<a href="tqcolor-h.html">tqcolor.h</a>> @@ -772,12 +772,12 @@ int main( int argc, char **argv ) SimpleFlow *b1 = new SimpleFlow( gm ); -<a name="x1536"></a> b1-><a href="ntqlayout.html#add">add</a>( new <a href="ntqpushbutton.html">TQPushButton</a>( "Short", f ) ); - b1-><a href="ntqlayout.html#add">add</a>( new <a href="ntqpushbutton.html">TQPushButton</a>( "Longer", f ) ); - b1-><a href="ntqlayout.html#add">add</a>( new <a href="ntqpushbutton.html">TQPushButton</a>( "Different text", f ) ); - b1-><a href="ntqlayout.html#add">add</a>( new <a href="ntqpushbutton.html">TQPushButton</a>( "More text", f ) ); - b1-><a href="ntqlayout.html#add">add</a>( new <a href="ntqpushbutton.html">TQPushButton</a>( "Even longer button text", f ) ); - <a href="ntqpushbutton.html">TQPushButton</a>* qb = new <a href="ntqpushbutton.html">TQPushButton</a>( "Quit", f ); +<a name="x1536"></a> b1-><a href="ntqlayout.html#add">add</a>( new <a href="tqpushbutton.html">TQPushButton</a>( "Short", f ) ); + b1-><a href="ntqlayout.html#add">add</a>( new <a href="tqpushbutton.html">TQPushButton</a>( "Longer", f ) ); + b1-><a href="ntqlayout.html#add">add</a>( new <a href="tqpushbutton.html">TQPushButton</a>( "Different text", f ) ); + b1-><a href="ntqlayout.html#add">add</a>( new <a href="tqpushbutton.html">TQPushButton</a>( "More text", f ) ); + b1-><a href="ntqlayout.html#add">add</a>( new <a href="tqpushbutton.html">TQPushButton</a>( "Even longer button text", f ) ); + <a href="tqpushbutton.html">TQPushButton</a>* qb = new <a href="tqpushbutton.html">TQPushButton</a>( "Quit", f ); a.<a href="tqobject.html#connect">connect</a>( qb, TQ_SIGNAL( <a href="ntqbutton.html#clicked">clicked</a>() ), TQ_SLOT( quit() ) ); b1-><a href="ntqlayout.html#add">add</a>( qb ); @@ -785,16 +785,16 @@ int main( int argc, char **argv ) BorderLayout *large = new BorderLayout( wid ); <a name="x1537"></a> large-><a href="ntqlayout.html#setSpacing">setSpacing</a>( 5 ); - large->addWidget( new <a href="ntqpushbutton.html">TQPushButton</a>( "North", wid ), BorderLayout::North ); - large->addWidget( new <a href="ntqpushbutton.html">TQPushButton</a>( "West", wid ), BorderLayout::West ); + large->addWidget( new <a href="tqpushbutton.html">TQPushButton</a>( "North", wid ), BorderLayout::North ); + large->addWidget( new <a href="tqpushbutton.html">TQPushButton</a>( "West", wid ), BorderLayout::West ); <a href="ntqmultilineedit.html">TQMultiLineEdit</a>* m = new <a href="ntqmultilineedit.html">TQMultiLineEdit</a>( wid ); m-><a href="tqtextedit.html#setText">setText</a>( "Central\nWidget" ); large->addWidget( m, BorderLayout::Center ); - <a href="tqwidget.html">TQWidget</a> *east1 = new <a href="ntqpushbutton.html">TQPushButton</a>( "East", wid ); + <a href="tqwidget.html">TQWidget</a> *east1 = new <a href="tqpushbutton.html">TQPushButton</a>( "East", wid ); large->addWidget( east1, BorderLayout::East ); - <a href="tqwidget.html">TQWidget</a> *east2 = new <a href="ntqpushbutton.html">TQPushButton</a>( "East 2", wid ); + <a href="tqwidget.html">TQWidget</a> *east2 = new <a href="tqpushbutton.html">TQPushButton</a>( "East 2", wid ); large->addWidget( east2 , BorderLayout::East ); - large->addWidget( new <a href="ntqpushbutton.html">TQPushButton</a>( "South", wid ), BorderLayout::South ); + large->addWidget( new <a href="tqpushbutton.html">TQPushButton</a>( "South", wid ), BorderLayout::South ); //Left-to-right tab order looks better: <a name="x1542"></a> <a href="tqwidget.html">TQWidget</a>::<a href="tqwidget.html#setTabOrder">setTabOrder</a>( east2, east1 ); gm-><a href="qboxlayout.html#addWidget">addWidget</a>( wid ); |