diff options
Diffstat (limited to 'doc/html/tqdatabrowser.html')
-rw-r--r-- | doc/html/tqdatabrowser.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/tqdatabrowser.html b/doc/html/tqdatabrowser.html index 5619d9624..3fbcff3a9 100644 --- a/doc/html/tqdatabrowser.html +++ b/doc/html/tqdatabrowser.html @@ -337,7 +337,7 @@ occurred during the deletion from the database, <a href="#handleError">handleErr called and FALSE is returned. <p> <p>See also <a href="tqwidget.html#cursor-prop">cursor</a>, <a href="#form">form</a>(), and <a href="#handleError">handleError</a>(). -<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="filter"></a>TQDataBrowser::filter () const +<h3 class=fn><a href="tqstring.html">TQString</a> <a name="filter"></a>TQDataBrowser::filter () const </h3><p>Returns the data browser's filter. See the <a href="tqdatabrowser.html#filter-prop">"filter"</a> property for details. <h3 class=fn>void <a name="first"></a>TQDataBrowser::first ()<tt> [virtual slot]</tt> @@ -534,7 +534,7 @@ See the <a href="tqdatabrowser.html#confirmInsert-prop">"confirmInsert"</a> prop <h3 class=fn>void <a name="setConfirmUpdate"></a>TQDataBrowser::setConfirmUpdate ( bool confirm )<tt> [virtual]</tt> </h3><p>Sets whether the browser confirms updates to <em>confirm</em>. See the <a href="tqdatabrowser.html#confirmUpdate-prop">"confirmUpdate"</a> property for details. -<h3 class=fn>void <a name="setFilter"></a>TQDataBrowser::setFilter ( const <a href="ntqstring.html">TQString</a> & filter ) +<h3 class=fn>void <a name="setFilter"></a>TQDataBrowser::setFilter ( const <a href="tqstring.html">TQString</a> & filter ) </h3><p>Sets the data browser's filter to <em>filter</em>. See the <a href="tqdatabrowser.html#filter-prop">"filter"</a> property for details. <h3 class=fn>void <a name="setForm"></a>TQDataBrowser::setForm ( <a href="tqsqlform.html">TQSqlForm</a> * form )<tt> [virtual]</tt> @@ -546,7 +546,7 @@ provides become available to the <em>form</em>. <h3 class=fn>void <a name="setReadOnly"></a>TQDataBrowser::setReadOnly ( bool active )<tt> [virtual]</tt> </h3><p>Sets whether the browser is read-only to <em>active</em>. See the <a href="tqdatabrowser.html#readOnly-prop">"readOnly"</a> property for details. -<h3 class=fn>void <a name="setSort"></a>TQDataBrowser::setSort ( const <a href="ntqstringlist.html">TQStringList</a> & sort ) +<h3 class=fn>void <a name="setSort"></a>TQDataBrowser::setSort ( const <a href="tqstringlist.html">TQStringList</a> & sort ) </h3><p>Sets the data browser's sort to <em>sort</em>. See the <a href="tqdatabrowser.html#sort-prop">"sort"</a> property for details. <h3 class=fn>void <a name="setSort-2"></a>TQDataBrowser::setSort ( const <a href="tqsqlindex.html">TQSqlIndex</a> & sort ) @@ -565,7 +565,7 @@ again. To activate the <em>cursor</em> use <a href="#refresh">refresh</a>(). The buffer is used in the default form to browse and edit records. <p> <p>See also <a href="#sqlCursor">sqlCursor</a>(), <a href="#form">form</a>(), and <a href="#setForm">setForm</a>(). -<h3 class=fn><a href="ntqstringlist.html">TQStringList</a> <a name="sort"></a>TQDataBrowser::sort () const +<h3 class=fn><a href="tqstringlist.html">TQStringList</a> <a name="sort"></a>TQDataBrowser::sort () const </h3><p>Returns the data browser's sort. See the <a href="tqdatabrowser.html#sort-prop">"sort"</a> property for details. <h3 class=fn><a href="tqsqlcursor.html">TQSqlCursor</a> * <a name="sqlCursor"></a>TQDataBrowser::sqlCursor () const @@ -666,7 +666,7 @@ updates happen immediately. <p> <p>See also <a href="#confirmCancels-prop">confirmCancels</a>, <a href="#confirmEdits-prop">confirmEdits</a>, <a href="#confirmInsert-prop">confirmInsert</a>, <a href="#confirmDelete-prop">confirmDelete</a>, and <a href="#confirmEdit">confirmEdit</a>(). <p>Set this property's value with <a href="#setConfirmUpdate">setConfirmUpdate</a>() and get this property's value with <a href="#confirmUpdate">confirmUpdate</a>(). -<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="filter-prop"></a>filter</h3> +<h3 class=fn><a href="tqstring.html">TQString</a> <a name="filter-prop"></a>filter</h3> <p>This property holds the data browser's filter. <p>The filter applies to the data shown in the browser. Call <a href="#refresh">refresh</a>() to apply the new filter. A filter is a string containing @@ -682,7 +682,7 @@ a SQL WHERE clause without the WHERE keyword, e.g. "id>1000", is read-only, no database edits will be allowed. <p>Set this property's value with <a href="#setReadOnly">setReadOnly</a>() and get this property's value with <a href="#isReadOnly">isReadOnly</a>(). -<h3 class=fn><a href="ntqstringlist.html">TQStringList</a> <a name="sort-prop"></a>sort</h3> +<h3 class=fn><a href="tqstringlist.html">TQStringList</a> <a name="sort-prop"></a>sort</h3> <p>This property holds the data browser's sort. <p>The data browser's sort affects the order in which records are viewed in the browser. Call <a href="#refresh">refresh</a>() to apply the new sort. @@ -692,7 +692,7 @@ the form 'fieldname order', e.g. 'id ASC', 'surname DESC'. <p> Note that if you want to iterate over the list, you should iterate over a copy, e.g. <pre> - <a href="ntqstringlist.html">TQStringList</a> list = myDataBrowser.sort(); + <a href="tqstringlist.html">TQStringList</a> list = myDataBrowser.sort(); TQStringList::Iterator it = list.<a href="tqvaluelist.html#begin">begin</a>(); while( it != list.<a href="tqvaluelist.html#end">end</a>() ) { myProcessing( *it ); |