diff options
Diffstat (limited to 'tqtinterface/qt4/tools/designer/examples/book/book7/book.ui.h')
-rw-r--r-- | tqtinterface/qt4/tools/designer/examples/book/book7/book.ui.h | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/tqtinterface/qt4/tools/designer/examples/book/book7/book.ui.h b/tqtinterface/qt4/tools/designer/examples/book/book7/book.ui.h deleted file mode 100644 index 1cb2f0b..0000000 --- a/tqtinterface/qt4/tools/designer/examples/book/book7/book.ui.h +++ /dev/null @@ -1,33 +0,0 @@ -void BookForm::editClicked() -{ - EditBookForm *dialog = new EditBookForm( this, "Edit Book Form", TRUE ); - TQSqlCursor cur( "book" ); - dialog->BookDataBrowser->setSqlCursor( &cur ); - dialog->BookDataBrowser->setFilter( BookDataTable->filter() ); - dialog->BookDataBrowser->setSort(TQSqlIndex::fromStringList( - BookDataTable->sort(), &cur ) ); - dialog->BookDataBrowser->refresh(); - int i = BookDataTable->currentRow(); - if ( i == -1 ) i = 0; // Always use the first row - dialog->BookDataBrowser->seek( i ); - dialog->exec(); - delete dialog; - BookDataTable->refresh(); -} - -void BookForm::newCurrentAuthor( TQSqlRecord *author ) -{ - BookDataTable->setFilter( "authorid=" + author->value( "id" ).toString() ); - BookDataTable->refresh(); -} - -void BookForm::primeInsertAuthor( TQSqlRecord *buffer ) -{ - TQSqlQuery query; - query.exec( "UPDATE sequence SET sequence = sequence + 1 WHERE tablename='author';" ); - query.exec( "SELECT sequence FROM sequence WHERE tablename='author';" ); - if ( query.next() ) { - buffer->setValue( "id", query.value( 0 ) ); - } -} - |