diff options
Diffstat (limited to 'tools/designer/examples/receiver1/mainform.ui.h')
-rw-r--r-- | tools/designer/examples/receiver1/mainform.ui.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tools/designer/examples/receiver1/mainform.ui.h b/tools/designer/examples/receiver1/mainform.ui.h new file mode 100644 index 000000000..e19324e95 --- /dev/null +++ b/tools/designer/examples/receiver1/mainform.ui.h @@ -0,0 +1,25 @@ +void MainForm::init() +{ + +} + +void MainForm::destroy() +{ + +} + +void MainForm::creditDialog() +{ + TQDialog *creditForm = (TQDialog *) + TQWidgetFactory::create( "../credit/creditformbase.ui" ); + // Set up the dynamic dialog here + + if ( creditForm->exec() ) { + // The user accepted, act accordingly + TQSpinBox *amount = (TQSpinBox *) creditForm->child( "amountSpinBox", "TQSpinBox" ); + if ( amount ) + ratingTextLabel->setText( amount->text() ); + } + delete creditForm; +} + |