summaryrefslogtreecommitdiffstats
path: root/doc/html/listboxcombo-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/listboxcombo-example.html')
-rw-r--r--doc/html/listboxcombo-example.html22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/html/listboxcombo-example.html b/doc/html/listboxcombo-example.html
index d12f9d009..1e966ba03 100644
--- a/doc/html/listboxcombo-example.html
+++ b/doc/html/listboxcombo-example.html
@@ -90,10 +90,10 @@ protected slots:
#include "listboxcombo.h"
-#include &lt;<a href="qcombobox-h.html">ntqcombobox.h</a>&gt;
+#include &lt;<a href="tqcombobox-h.html">tqcombobox.h</a>&gt;
#include &lt;<a href="qlistbox-h.html">ntqlistbox.h</a>&gt;
#include &lt;<a href="qhbox-h.html">ntqhbox.h</a>&gt;
-#include &lt;<a href="qpushbutton-h.html">ntqpushbutton.h</a>&gt;
+#include &lt;<a href="tqpushbutton-h.html">tqpushbutton.h</a>&gt;
#include &lt;<a href="tqstring-h.html">tqstring.h</a>&gt;
#include &lt;<a href="tqpixmap-h.html">tqpixmap.h</a>&gt;
#include &lt;<a href="tqlabel-h.html">tqlabel.h</a>&gt;
@@ -165,7 +165,7 @@ protected:
}
// Create a pushbutton...
- <a href="ntqpushbutton.html">TQPushButton</a> *arrow1 = new <a href="ntqpushbutton.html">TQPushButton</a>( " -&gt; ", row1 );
+ <a href="tqpushbutton.html">TQPushButton</a> *arrow1 = new <a href="tqpushbutton.html">TQPushButton</a>( " -&gt; ", row1 );
// ...and connect the clicked TQ_SIGNAL with the TQ_SLOT slotLeft2Right
<a href="tqobject.html#connect">connect</a>( arrow1, TQ_SIGNAL( <a href="ntqbutton.html#clicked">clicked</a>() ), this, TQ_SLOT( slotLeft2Right() ) );
@@ -179,7 +179,7 @@ protected:
box1-&gt;<a href="ntqhbox.html#setSpacing">setSpacing</a>( 5 );
// Create a non-editable Combobox and a label below...
- <a href="ntqcombobox.html">TQComboBox</a> *cb1 = new <a href="ntqcombobox.html">TQComboBox</a>( FALSE, box1 );
+ <a href="tqcombobox.html">TQComboBox</a> *cb1 = new <a href="tqcombobox.html">TQComboBox</a>( FALSE, box1 );
label1 = new <a href="tqlabel.html">TQLabel</a>( "Current Item: Combobox Item 0", box1 );
<a name="x1416"></a><a name="x1404"></a> label1-&gt;<a href="tqwidget.html#setMaximumHeight">setMaximumHeight</a>( label1-&gt;<a href="tqwidget.html#sizeHint">sizeHint</a>().height() * 2 );
<a name="x1401"></a> label1-&gt;<a href="ntqframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::Panel | TQFrame::Sunken );
@@ -188,16 +188,16 @@ protected:
for ( i = 0; i &lt; 50; i++ ) {
str = TQString( "Combobox Item %1" ).arg( i );
if ( i % 9 )
-<a name="x1399"></a> cb1-&gt;<a href="ntqcombobox.html#insertItem">insertItem</a>( str );
+<a name="x1399"></a> cb1-&gt;<a href="tqcombobox.html#insertItem">insertItem</a>( str );
else
-<a name="x1400"></a> cb1-&gt;<a href="ntqcombobox.html#listBox">listBox</a>()-&gt;insertItem( new MyListBoxItem );
+<a name="x1400"></a> cb1-&gt;<a href="tqcombobox.html#listBox">listBox</a>()-&gt;insertItem( new MyListBoxItem );
}
<a href="ntqvbox.html">TQVBox</a> *box2 = new <a href="ntqvbox.html">TQVBox</a>( row2 );
box2-&gt;<a href="ntqhbox.html#setSpacing">setSpacing</a>( 5 );
// Create an editable Combobox and a label below...
- <a href="ntqcombobox.html">TQComboBox</a> *cb2 = new <a href="ntqcombobox.html">TQComboBox</a>( TRUE, box2 );
+ <a href="tqcombobox.html">TQComboBox</a> *cb2 = new <a href="tqcombobox.html">TQComboBox</a>( TRUE, box2 );
label2 = new <a href="tqlabel.html">TQLabel</a>( "Current Item: Combobox Item 0", box2 );
label2-&gt;<a href="tqwidget.html#setMaximumHeight">setMaximumHeight</a>( label2-&gt;<a href="tqwidget.html#sizeHint">sizeHint</a>().height() * 2 );
label2-&gt;<a href="ntqframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::Panel | TQFrame::Sunken );
@@ -206,14 +206,14 @@ protected:
for ( i = 0; i &lt; 50; i++ ) {
str = TQString( "Combobox Item %1" ).arg( i );
if ( !( i % 4 ) )
- cb2-&gt;<a href="ntqcombobox.html#insertItem">insertItem</a>( TQPixmap( "fileopen.xpm" ), str );
+ cb2-&gt;<a href="tqcombobox.html#insertItem">insertItem</a>( TQPixmap( "fileopen.xpm" ), str );
else
- cb2-&gt;<a href="ntqcombobox.html#insertItem">insertItem</a>( str );
+ cb2-&gt;<a href="tqcombobox.html#insertItem">insertItem</a>( str );
}
// Connect the activated SIGNALs of the Comboboxes with SLOTs
-<a name="x1398"></a> <a href="tqobject.html#connect">connect</a>( cb1, TQ_SIGNAL( <a href="ntqcombobox.html#activated">activated</a>( const <a href="tqstring.html">TQString</a> &amp; ) ), this, TQ_SLOT( slotCombo1Activated( const <a href="tqstring.html">TQString</a> &amp; ) ) );
- <a href="tqobject.html#connect">connect</a>( cb2, TQ_SIGNAL( <a href="ntqcombobox.html#activated">activated</a>( const <a href="tqstring.html">TQString</a> &amp; ) ), this, TQ_SLOT( slotCombo2Activated( const <a href="tqstring.html">TQString</a> &amp; ) ) );
+<a name="x1398"></a> <a href="tqobject.html#connect">connect</a>( cb1, TQ_SIGNAL( <a href="tqcombobox.html#activated">activated</a>( const <a href="tqstring.html">TQString</a> &amp; ) ), this, TQ_SLOT( slotCombo1Activated( const <a href="tqstring.html">TQString</a> &amp; ) ) );
+ <a href="tqobject.html#connect">connect</a>( cb2, TQ_SIGNAL( <a href="tqcombobox.html#activated">activated</a>( const <a href="tqstring.html">TQString</a> &amp; ) ), this, TQ_SLOT( slotCombo2Activated( const <a href="tqstring.html">TQString</a> &amp; ) ) );
}
/*