summaryrefslogtreecommitdiffstats
path: root/doc/html/qlistboxitem.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/qlistboxitem.html')
-rw-r--r--doc/html/qlistboxitem.html32
1 files changed, 16 insertions, 16 deletions
diff --git a/doc/html/qlistboxitem.html b/doc/html/qlistboxitem.html
index b4213ab49..41bf1a077 100644
--- a/doc/html/qlistboxitem.html
+++ b/doc/html/qlistboxitem.html
@@ -33,7 +33,7 @@ body { background: #ffffff; color: black; }
<p>The TQListBoxItem class is the base class of all list box items.
<a href="#details">More...</a>
-<p><tt>#include &lt;<a href="qlistbox-h.html">qlistbox.h</a>&gt;</tt>
+<p><tt>#include &lt;<a href="qlistbox-h.html">ntqlistbox.h</a>&gt;</tt>
<p>Inherited by <a href="qlistboxtext.html">TQListBoxText</a> and <a href="qlistboxpixmap.html">TQListBoxPixmap</a>.
<p><a href="qlistboxitem-members.html">List of all member functions.</a>
<h2>Public Members</h2>
@@ -67,16 +67,16 @@ body { background: #ffffff; color: black; }
The TQListBoxItem class is the base class of all list box items.
<p> This class is an abstract base class used for all list box items.
-If you need to insert customized items into a <a href="qlistbox.html">TQListBox</a> you must
+If you need to insert customized items into a <a href="ntqlistbox.html">TQListBox</a> you must
inherit this class and reimplement <a href="#paint">paint</a>(), <a href="#height">height</a>() and <a href="#width">width</a>().
-<p> <p>See also <a href="qlistbox.html">TQListBox</a>.
+<p> <p>See also <a href="ntqlistbox.html">TQListBox</a>.
<hr><h2>Member Function Documentation</h2>
-<h3 class=fn><a name="TQListBoxItem"></a>TQListBoxItem::TQListBoxItem ( <a href="qlistbox.html">TQListBox</a>&nbsp;*&nbsp;listbox = 0 )
+<h3 class=fn><a name="TQListBoxItem"></a>TQListBoxItem::TQListBoxItem ( <a href="ntqlistbox.html">TQListBox</a>&nbsp;*&nbsp;listbox = 0 )
</h3>
Constructs an empty list box item in the list box <em>listbox</em>.
-<h3 class=fn><a name="TQListBoxItem-2"></a>TQListBoxItem::TQListBoxItem ( <a href="qlistbox.html">TQListBox</a>&nbsp;*&nbsp;listbox, <a href="qlistboxitem.html">TQListBoxItem</a>&nbsp;*&nbsp;after )
+<h3 class=fn><a name="TQListBoxItem-2"></a>TQListBoxItem::TQListBoxItem ( <a href="ntqlistbox.html">TQListBox</a>&nbsp;*&nbsp;listbox, <a href="qlistboxitem.html">TQListBoxItem</a>&nbsp;*&nbsp;after )
</h3>
Constructs an empty list box item in the list box <em>listbox</em> and
inserts it after the item <em>after</em> or at the beginning if <em>after</em>
@@ -91,13 +91,13 @@ Destroys the list box item.
<b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code.
<p>
-<h3 class=fn>int <a name="height"></a>TQListBoxItem::height ( const&nbsp;<a href="qlistbox.html">TQListBox</a>&nbsp;*&nbsp;lb ) const<tt> [virtual]</tt>
+<h3 class=fn>int <a name="height"></a>TQListBoxItem::height ( const&nbsp;<a href="ntqlistbox.html">TQListBox</a>&nbsp;*&nbsp;lb ) const<tt> [virtual]</tt>
</h3>
<p> Implement this function to return the height of your item. The <em>lb</em> parameter is the same as <a href="#listBox">listBox</a>() and is provided for
convenience and compatibility.
<p> The default implementation returns
-<a href="qapplication.html#globalStrut">TQApplication::globalStrut</a>()'s height.
+<a href="ntqapplication.html#globalStrut">TQApplication::globalStrut</a>()'s height.
<p> <p>See also <a href="#paint">paint</a>() and <a href="#width">width</a>().
<p>Reimplemented in <a href="qlistboxtext.html#height">TQListBoxText</a> and <a href="qlistboxpixmap.html#height">TQListBoxPixmap</a>.
@@ -105,7 +105,7 @@ convenience and compatibility.
</h3>
Returns TRUE if the item is the current item; otherwise returns
FALSE.
-<p> <p>See also <a href="qlistbox.html#currentItem-prop">TQListBox::currentItem</a>, <a href="qlistbox.html#item">TQListBox::item</a>(), and <a href="#isSelected">isSelected</a>().
+<p> <p>See also <a href="ntqlistbox.html#currentItem-prop">TQListBox::currentItem</a>, <a href="ntqlistbox.html#item">TQListBox::item</a>(), and <a href="#isSelected">isSelected</a>().
<h3 class=fn>bool <a name="isSelectable"></a>TQListBoxItem::isSelectable () const
</h3>
@@ -117,10 +117,10 @@ returns FALSE.
</h3>
<p> Returns TRUE if the item is selected; otherwise returns FALSE.
-<p> <p>See also <a href="qlistbox.html#isSelected">TQListBox::isSelected</a>() and <a href="#isCurrent">isCurrent</a>().
+<p> <p>See also <a href="ntqlistbox.html#isSelected">TQListBox::isSelected</a>() and <a href="#isCurrent">isCurrent</a>().
<p>Example: <a href="listboxcombo-example.html#x1409">listboxcombo/listboxcombo.cpp</a>.
-<h3 class=fn><a href="qlistbox.html">TQListBox</a>&nbsp;* <a name="listBox"></a>TQListBoxItem::listBox () const
+<h3 class=fn><a href="ntqlistbox.html">TQListBox</a>&nbsp;* <a name="listBox"></a>TQListBoxItem::listBox () const
</h3>
Returns a pointer to the list box containing this item.
@@ -130,7 +130,7 @@ Returns the item that comes after this in the list box. If this is
the last item, 0 is returned.
<p> <p>See also <a href="#prev">prev</a>().
-<h3 class=fn>void <a name="paint"></a>TQListBoxItem::paint ( <a href="qpainter.html">TQPainter</a>&nbsp;*&nbsp;p )<tt> [pure virtual protected]</tt>
+<h3 class=fn>void <a name="paint"></a>TQListBoxItem::paint ( <a href="ntqpainter.html">TQPainter</a>&nbsp;*&nbsp;p )<tt> [pure virtual protected]</tt>
</h3>
<p> Implement this function to draw your item. The painter, <em>p</em>, is
@@ -139,7 +139,7 @@ already open for painting.
<p>Example: <a href="listboxcombo-example.html#x1410">listboxcombo/listboxcombo.cpp</a>.
<p>Reimplemented in <a href="qlistboxtext.html#paint">TQListBoxText</a> and <a href="qlistboxpixmap.html#paint">TQListBoxPixmap</a>.
-<h3 class=fn>const&nbsp;<a href="qpixmap.html">TQPixmap</a>&nbsp;* <a name="pixmap"></a>TQListBoxItem::pixmap () const<tt> [virtual]</tt>
+<h3 class=fn>const&nbsp;<a href="ntqpixmap.html">TQPixmap</a>&nbsp;* <a name="pixmap"></a>TQListBoxItem::pixmap () const<tt> [virtual]</tt>
</h3>
Returns the pixmap associated with the item, or 0 if there isn't
one.
@@ -180,7 +180,7 @@ If <em>b</em> is TRUE (the default) then this item can be selected by
the user; otherwise this item cannot be selected by the user.
<p> <p>See also <a href="#isSelectable">isSelectable</a>().
-<h3 class=fn>void <a name="setText"></a>TQListBoxItem::setText ( const&nbsp;<a href="qstring.html">TQString</a>&nbsp;&amp;&nbsp;text )<tt> [virtual protected]</tt>
+<h3 class=fn>void <a name="setText"></a>TQListBoxItem::setText ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;text )<tt> [virtual protected]</tt>
</h3>
<p> Sets the text of the TQListBoxItem to <em>text</em>. This <em>text</em> is also
@@ -188,19 +188,19 @@ used for sorting. The text is not shown unless explicitly drawn in
<a href="#paint">paint</a>().
<p> <p>See also <a href="#text">text</a>().
-<h3 class=fn><a href="qstring.html">TQString</a> <a name="text"></a>TQListBoxItem::text () const<tt> [virtual]</tt>
+<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="text"></a>TQListBoxItem::text () const<tt> [virtual]</tt>
</h3>
Returns the text of the item. This text is also used for sorting.
<p> <p>See also <a href="#setText">setText</a>().
<p>Example: <a href="listboxcombo-example.html#x1412">listboxcombo/listboxcombo.cpp</a>.
-<h3 class=fn>int <a name="width"></a>TQListBoxItem::width ( const&nbsp;<a href="qlistbox.html">TQListBox</a>&nbsp;*&nbsp;lb ) const<tt> [virtual]</tt>
+<h3 class=fn>int <a name="width"></a>TQListBoxItem::width ( const&nbsp;<a href="ntqlistbox.html">TQListBox</a>&nbsp;*&nbsp;lb ) const<tt> [virtual]</tt>
</h3>
<p> Reimplement this function to return the width of your item. The <em>lb</em> parameter is the same as <a href="#listBox">listBox</a>() and is provided for
convenience and compatibility.
<p> The default implementation returns
-<a href="qapplication.html#globalStrut">TQApplication::globalStrut</a>()'s width.
+<a href="ntqapplication.html#globalStrut">TQApplication::globalStrut</a>()'s width.
<p> <p>See also <a href="#paint">paint</a>() and <a href="#height">height</a>().
<p>Reimplemented in <a href="qlistboxtext.html#width">TQListBoxText</a> and <a href="qlistboxpixmap.html#width">TQListBoxPixmap</a>.