diff options
Diffstat (limited to 'doc/html/sql-overview-table4-main-cpp.html')
-rw-r--r-- | doc/html/sql-overview-table4-main-cpp.html | 52 |
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> & cr, bool b) { if ( !field ) return; - if ( field-><a href="ntqsqlfield.html#name">name</a>() == "statusid" ) { - <a href="ntqsqlquery.html">TQSqlQuery</a> query( "SELECT name FROM status WHERE id=" + - field-><a href="ntqsqlfield.html#value">value</a>().toString() ); + if ( field-><a href="tqsqlfield.html#name">name</a>() == "statusid" ) { + <a href="tqsqlquery.html">TQSqlQuery</a> query( "SELECT name FROM status WHERE id=" + + field-><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-><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-><a href="ntqsqlfield.html#name">name</a>() == "statusid" ) { + if ( field-><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( &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-><a href="ntqsqlpropertymap.html#insert">insert</a>( "StatusPicker", "statusid" ); - staffTable-><a href="ntqdatatable.html#installPropertyMap">installPropertyMap</a>( propMap ); - staffTable-><a href="ntqdatatable.html#installEditorFactory">installEditorFactory</a>( editorFactory ); + propMap-><a href="tqsqlpropertymap.html#insert">insert</a>( "StatusPicker", "statusid" ); + staffTable-><a href="tqdatatable.html#installPropertyMap">installPropertyMap</a>( propMap ); + staffTable-><a href="tqdatatable.html#installEditorFactory">installEditorFactory</a>( editorFactory ); app.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( staffTable ); - staffTable-><a href="ntqdatatable.html#addColumn">addColumn</a>( "forename", "Forename" ); - staffTable-><a href="ntqdatatable.html#addColumn">addColumn</a>( "surname", "Surname" ); - staffTable-><a href="ntqdatatable.html#addColumn">addColumn</a>( "salary", "Annual Salary" ); - staffTable-><a href="ntqdatatable.html#addColumn">addColumn</a>( "statusid", "Status" ); + staffTable-><a href="tqdatatable.html#addColumn">addColumn</a>( "forename", "Forename" ); + staffTable-><a href="tqdatatable.html#addColumn">addColumn</a>( "surname", "Surname" ); + staffTable-><a href="tqdatatable.html#addColumn">addColumn</a>( "salary", "Annual Salary" ); + staffTable-><a href="tqdatatable.html#addColumn">addColumn</a>( "statusid", "Status" ); <a href="ntqstringlist.html">TQStringList</a> order = TQStringList() << "surname" << "forename"; - staffTable-><a href="ntqdatatable.html#setSort">setSort</a>( order ); + staffTable-><a href="tqdatatable.html#setSort">setSort</a>( order ); - staffTable-><a href="ntqdatatable.html#refresh">refresh</a>(); + staffTable-><a href="tqdatatable.html#refresh">refresh</a>(); staffTable-><a href="ntqwidget.html#show">show</a>(); return app.<a href="ntqapplication.html#exec">exec</a>(); |