diff options
Diffstat (limited to 'doc/html/helpsystem-example.html')
-rw-r--r-- | doc/html/helpsystem-example.html | 22 |
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-><a href="ntqscrollview.html#viewport">viewport</a>(), group ), table( tipTable ) + <a name="x2683"></a>: <a href="tqtooltip.html">TQToolTip</a>( tipTable-><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-><a href="ntqscrollview.html#viewport">viewport</a>() ) + : WhatsThis( t, t-><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-><a href="ntqscrollview.html#viewportToContents">viewportToContents</a>( p ); + <a href="tqpoint.html">TQPoint</a> cp = table-><a href="tqscrollview.html#viewportToContents">viewportToContents</a>( p ); int row = table-><a href="ntqtable.html#rowAt">rowAt</a>( cp.<a href="tqpoint.html#y">y</a>() ); int col = table-><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 <a href=%1/html/qtableitem.html>TQTableItem</a>."). arg(docsPath); } else if ( TQComboTableItem::RTTI == i-><a href="qtableitem.html#rtti">rtti</a>() ) { - return TQString("This is a <a href=%1/html/qcombotableitem.html>TQComboTableItem</a>." + return TQString("This is a <a href=%1/html/tqcombotableitem.html>TQComboTableItem</a>." "<br>It can be used to provide multiple-choice items in a table."). arg(docsPath); } else if ( TQCheckTableItem::RTTI == i-><a href="qtableitem.html#rtti">rtti</a>() ) { - return TQString("This is a <a href=%1/html/qchecktableitem.html>TQCheckTableItem</a>." - "<br>It provide <a href=%1/html/ntqcheckbox.html>checkboxes</a> in tables."). + return TQString("This is a <a href=%1/html/tqchecktableitem.html>TQCheckTableItem</a>." + "<br>It provide <a href=%1/html/tqcheckbox.html>checkboxes</a> 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 << "one" << "two" << "three" << "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-><a href="ntqtable.html#setItem">setItem</a>( 0, 0, comboItem1 ); table-><a href="ntqtable.html#setItem">setItem</a>( 1, 0, comboItem2 ); |