summaryrefslogtreecommitdiffstats
path: root/doc/html/sql-overview-table4-main-cpp.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/sql-overview-table4-main-cpp.html')
-rw-r--r--doc/html/sql-overview-table4-main-cpp.html52
1 files changed, 26 insertions, 26 deletions
diff --git a/doc/html/sql-overview-table4-main-cpp.html b/doc/html/sql-overview-table4-main-cpp.html
index 2ceb1bd84..4337617d8 100644
--- a/doc/html/sql-overview-table4-main-cpp.html
+++ b/doc/html/sql-overview-table4-main-cpp.html
@@ -48,13 +48,13 @@ body { background: #ffffff; color: black; }
<a name="f12"></a>StatusPicker::StatusPicker( <a href="ntqwidget.html">TQWidget</a> *parent, const char *name )
: <a href="ntqcombobox.html">TQComboBox</a>( parent, name )
{
- <a href="ntqsqlcursor.html">TQSqlCursor</a> cur( "status" );
- cur.<a href="ntqsqlcursor.html#select">select</a>( cur.<a href="ntqsqlcursor.html#index">index</a>( "name" ) );
+ <a href="tqsqlcursor.html">TQSqlCursor</a> cur( "status" );
+ cur.<a href="tqsqlcursor.html#select">select</a>( cur.<a href="tqsqlcursor.html#index">index</a>( "name" ) );
int i = 0;
- while ( cur.<a href="ntqsqlquery.html#next">next</a>() ) {
- <a href="ntqcombobox.html#insertItem">insertItem</a>( cur.<a href="ntqsqlquery.html#value">value</a>( "name" ).toString(), i );
- index2id[i] = cur.<a href="ntqsqlquery.html#value">value</a>( "id" ).toInt();
+ while ( cur.<a href="tqsqlquery.html#next">next</a>() ) {
+ <a href="ntqcombobox.html#insertItem">insertItem</a>( cur.<a href="tqsqlquery.html#value">value</a>( "name" ).toString(), i );
+ index2id[i] = cur.<a href="tqsqlquery.html#value">value</a>( "id" ).toInt();
i++;
}
}
@@ -78,30 +78,30 @@ void <a name="f14"></a>StatusPicker::setStatusId( int statusid )
}
-void CustomTable::<a href="ntqdatatable.html#paintField">paintField</a>( <a href="ntqpainter.html">TQPainter</a> * p, const <a href="ntqsqlfield.html">TQSqlField</a>* field,
+void CustomTable::<a href="tqdatatable.html#paintField">paintField</a>( <a href="ntqpainter.html">TQPainter</a> * p, const <a href="tqsqlfield.html">TQSqlField</a>* field,
const <a href="ntqrect.html">TQRect</a> &amp; cr, bool b)
{
if ( !field )
return;
- if ( field-&gt;<a href="ntqsqlfield.html#name">name</a>() == "statusid" ) {
- <a href="ntqsqlquery.html">TQSqlQuery</a> query( "SELECT name FROM status WHERE id=" +
- field-&gt;<a href="ntqsqlfield.html#value">value</a>().toString() );
+ if ( field-&gt;<a href="tqsqlfield.html#name">name</a>() == "statusid" ) {
+ <a href="tqsqlquery.html">TQSqlQuery</a> query( "SELECT name FROM status WHERE id=" +
+ field-&gt;<a href="tqsqlfield.html#value">value</a>().toString() );
<a href="ntqstring.html">TQString</a> text;
- if ( query.<a href="ntqsqlquery.html#next">next</a>() ) {
- text = query.<a href="ntqsqlquery.html#value">value</a>( 0 ).toString();
+ if ( query.<a href="tqsqlquery.html#next">next</a>() ) {
+ text = query.<a href="tqsqlquery.html#value">value</a>( 0 ).toString();
}
p-&gt;<a href="ntqpainter.html#drawText">drawText</a>( 2,2, cr.<a href="ntqrect.html#width">width</a>()-4, cr.<a href="ntqrect.html#height">height</a>()-4, fieldAlignment( field ), text );
}
else {
- TQDataTable::<a href="ntqdatatable.html#paintField">paintField</a>( p, field, cr, b) ;
+ TQDataTable::<a href="tqdatatable.html#paintField">paintField</a>( p, field, cr, b) ;
}
}
-TQWidget *CustomSqlEditorFactory::<a href="ntqsqleditorfactory.html#createEditor">createEditor</a>(
- <a href="ntqwidget.html">TQWidget</a> *parent, const <a href="ntqsqlfield.html">TQSqlField</a> *field )
+TQWidget *CustomSqlEditorFactory::<a href="tqsqleditorfactory.html#createEditor">createEditor</a>(
+ <a href="ntqwidget.html">TQWidget</a> *parent, const <a href="tqsqlfield.html">TQSqlField</a> *field )
{
- if ( field-&gt;<a href="ntqsqlfield.html#name">name</a>() == "statusid" ) {
+ if ( field-&gt;<a href="tqsqlfield.html#name">name</a>() == "statusid" ) {
<a href="ntqwidget.html">TQWidget</a> *editor = new StatusPicker( parent );
return editor;
}
@@ -115,26 +115,26 @@ int main( int argc, char *argv[] )
<a href="ntqapplication.html">TQApplication</a> app( argc, argv );
if ( createConnections() ) {
- <a href="ntqsqlcursor.html">TQSqlCursor</a> staffCursor( "staff" );
+ <a href="tqsqlcursor.html">TQSqlCursor</a> staffCursor( "staff" );
CustomTable *staffTable = new CustomTable( &amp;staffCursor );
- <a href="ntqsqlpropertymap.html">TQSqlPropertyMap</a> *propMap = new <a href="ntqsqlpropertymap.html">TQSqlPropertyMap</a>();
+ <a href="tqsqlpropertymap.html">TQSqlPropertyMap</a> *propMap = new <a href="tqsqlpropertymap.html">TQSqlPropertyMap</a>();
CustomSqlEditorFactory *editorFactory = new CustomSqlEditorFactory();
- propMap-&gt;<a href="ntqsqlpropertymap.html#insert">insert</a>( "StatusPicker", "statusid" );
- staffTable-&gt;<a href="ntqdatatable.html#installPropertyMap">installPropertyMap</a>( propMap );
- staffTable-&gt;<a href="ntqdatatable.html#installEditorFactory">installEditorFactory</a>( editorFactory );
+ propMap-&gt;<a href="tqsqlpropertymap.html#insert">insert</a>( "StatusPicker", "statusid" );
+ staffTable-&gt;<a href="tqdatatable.html#installPropertyMap">installPropertyMap</a>( propMap );
+ staffTable-&gt;<a href="tqdatatable.html#installEditorFactory">installEditorFactory</a>( editorFactory );
app.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( staffTable );
- staffTable-&gt;<a href="ntqdatatable.html#addColumn">addColumn</a>( "forename", "Forename" );
- staffTable-&gt;<a href="ntqdatatable.html#addColumn">addColumn</a>( "surname", "Surname" );
- staffTable-&gt;<a href="ntqdatatable.html#addColumn">addColumn</a>( "salary", "Annual Salary" );
- staffTable-&gt;<a href="ntqdatatable.html#addColumn">addColumn</a>( "statusid", "Status" );
+ staffTable-&gt;<a href="tqdatatable.html#addColumn">addColumn</a>( "forename", "Forename" );
+ staffTable-&gt;<a href="tqdatatable.html#addColumn">addColumn</a>( "surname", "Surname" );
+ staffTable-&gt;<a href="tqdatatable.html#addColumn">addColumn</a>( "salary", "Annual Salary" );
+ staffTable-&gt;<a href="tqdatatable.html#addColumn">addColumn</a>( "statusid", "Status" );
<a href="ntqstringlist.html">TQStringList</a> order = TQStringList() &lt;&lt; "surname" &lt;&lt; "forename";
- staffTable-&gt;<a href="ntqdatatable.html#setSort">setSort</a>( order );
+ staffTable-&gt;<a href="tqdatatable.html#setSort">setSort</a>( order );
- staffTable-&gt;<a href="ntqdatatable.html#refresh">refresh</a>();
+ staffTable-&gt;<a href="tqdatatable.html#refresh">refresh</a>();
staffTable-&gt;<a href="ntqwidget.html#show">show</a>();
return app.<a href="ntqapplication.html#exec">exec</a>();