summaryrefslogtreecommitdiffstats
path: root/doc/html/helpsystem-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/helpsystem-example.html')
-rw-r--r--doc/html/helpsystem-example.html22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/html/helpsystem-example.html b/doc/html/helpsystem-example.html
index 5e19cd6c2..33a55197d 100644
--- a/doc/html/helpsystem-example.html
+++ b/doc/html/helpsystem-example.html
@@ -108,11 +108,11 @@ to get the section at the requested position and uses
tooltip. The second string is used by <a href="tqtooltipgroup.html">TQToolTipGroup</a> and will
show up in the statusbar.
<p> <pre> TableToolTip::TableToolTip( <a href="ntqtable.html">TQTable</a> *tipTable, TQToolTipGroup *group )
- <a name="x2683"></a>: <a href="tqtooltip.html">TQToolTip</a>( tipTable-&gt;<a href="ntqscrollview.html#viewport">viewport</a>(), group ), table( tipTable )
+ <a name="x2683"></a>: <a href="tqtooltip.html">TQToolTip</a>( tipTable-&gt;<a href="tqscrollview.html#viewport">viewport</a>(), group ), table( tipTable )
{
}
</pre>
-<p> Since <a href="ntqtable.html">TQTable</a> is a <a href="ntqscrollview.html">TQScrollView</a> all user interaction
+<p> Since <a href="ntqtable.html">TQTable</a> is a <a href="tqscrollview.html">TQScrollView</a> all user interaction
happens on TQTable's viewport() . The TableToolTip
constructor passes the viewport() and the tooltip
group to the <a href="tqtooltip.html">TQToolTip</a> constructor, and initializes the table
@@ -254,7 +254,7 @@ whether we have a horizontal or a vertical header and returns
a string which states the header's orientation and section.
<a href="#footnote2"><sup>(2)</sup></a><a name="footnote-call2"></a>
<pre> TableWhatsThis::TableWhatsThis( <a href="ntqtable.html">TQTable</a> *t )
- : WhatsThis( t, t-&gt;<a href="ntqscrollview.html#viewport">viewport</a>() )
+ : WhatsThis( t, t-&gt;<a href="tqscrollview.html#viewport">viewport</a>() )
{
}
</pre>
@@ -265,7 +265,7 @@ viewport() to the WhatsThis constructor.
{
<a href="ntqtable.html">TQTable</a> *table = (TQTable*)parentWidget();
- <a href="tqpoint.html">TQPoint</a> cp = table-&gt;<a href="ntqscrollview.html#viewportToContents">viewportToContents</a>( p );
+ <a href="tqpoint.html">TQPoint</a> cp = table-&gt;<a href="tqscrollview.html#viewportToContents">viewportToContents</a>( p );
int row = table-&gt;<a href="ntqtable.html#rowAt">rowAt</a>( cp.<a href="tqpoint.html#y">y</a>() );
int col = table-&gt;<a href="ntqtable.html#columnAt">columnAt</a>( cp.<a href="tqpoint.html#x">x</a>() );
@@ -282,12 +282,12 @@ viewport() to the WhatsThis constructor.
return TQString("This is a &lt;a href=%1/html/qtableitem.html&gt;TQTableItem&lt;/a&gt;.").
arg(docsPath);
} else if ( TQComboTableItem::RTTI == i-&gt;<a href="qtableitem.html#rtti">rtti</a>() ) {
- return TQString("This is a &lt;a href=%1/html/qcombotableitem.html&gt;TQComboTableItem&lt;/a&gt;."
+ return TQString("This is a &lt;a href=%1/html/tqcombotableitem.html&gt;TQComboTableItem&lt;/a&gt;."
"&lt;br&gt;It can be used to provide multiple-choice items in a table.").
arg(docsPath);
} else if ( TQCheckTableItem::RTTI == i-&gt;<a href="qtableitem.html#rtti">rtti</a>() ) {
- return TQString("This is a &lt;a href=%1/html/qchecktableitem.html&gt;TQCheckTableItem&lt;/a&gt;."
- "&lt;br&gt;It provide &lt;a href=%1/html/ntqcheckbox.html&gt;checkboxes&lt;/a&gt; in tables.").
+ return TQString("This is a &lt;a href=%1/html/tqchecktableitem.html&gt;TQCheckTableItem&lt;/a&gt;."
+ "&lt;br&gt;It provide &lt;a href=%1/html/tqcheckbox.html&gt;checkboxes&lt;/a&gt; in tables.").
arg(docsPath).arg(docsPath);
}
return "This is a user defined table item.";
@@ -343,10 +343,10 @@ so that the system path is used.
// populate table
<a href="tqstringlist.html">TQStringList</a> comboEntries;
comboEntries &lt;&lt; "one" &lt;&lt; "two" &lt;&lt; "three" &lt;&lt; "four";
- <a href="qcombotableitem.html">TQComboTableItem</a>* comboItem1 = new <a href="qcombotableitem.html">TQComboTableItem</a>( table, comboEntries );
- <a href="qcombotableitem.html">TQComboTableItem</a>* comboItem2 = new <a href="qcombotableitem.html">TQComboTableItem</a>( table, comboEntries );
- <a href="qchecktableitem.html">TQCheckTableItem</a>* checkItem1 = new <a href="qchecktableitem.html">TQCheckTableItem</a>( table, "Check me" );
- <a href="qchecktableitem.html">TQCheckTableItem</a>* checkItem2 = new <a href="qchecktableitem.html">TQCheckTableItem</a>( table, "Check me" );
+ <a href="tqcombotableitem.html">TQComboTableItem</a>* comboItem1 = new <a href="tqcombotableitem.html">TQComboTableItem</a>( table, comboEntries );
+ <a href="tqcombotableitem.html">TQComboTableItem</a>* comboItem2 = new <a href="tqcombotableitem.html">TQComboTableItem</a>( table, comboEntries );
+ <a href="tqchecktableitem.html">TQCheckTableItem</a>* checkItem1 = new <a href="tqchecktableitem.html">TQCheckTableItem</a>( table, "Check me" );
+ <a href="tqchecktableitem.html">TQCheckTableItem</a>* checkItem2 = new <a href="tqchecktableitem.html">TQCheckTableItem</a>( table, "Check me" );
<a name="x2691"></a> table-&gt;<a href="ntqtable.html#setItem">setItem</a>( 0, 0, comboItem1 );
table-&gt;<a href="ntqtable.html#setItem">setItem</a>( 1, 0, comboItem2 );