summaryrefslogtreecommitdiffstats
path: root/tools/designer/examples/receiver1/mainform.ui.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/designer/examples/receiver1/mainform.ui.h')
-rw-r--r--tools/designer/examples/receiver1/mainform.ui.h25
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 0000000..5318e2e
--- /dev/null
+++ b/tools/designer/examples/receiver1/mainform.ui.h
@@ -0,0 +1,25 @@
+void MainForm::init()
+{
+
+}
+
+void MainForm::destroy()
+{
+
+}
+
+void MainForm::creditDialog()
+{
+ QDialog *creditForm = (QDialog *)
+ QWidgetFactory::create( "../credit/creditformbase.ui" );
+ // Set up the dynamic dialog here
+
+ if ( creditForm->exec() ) {
+ // The user accepted, act accordingly
+ QSpinBox *amount = (QSpinBox *) creditForm->child( "amountSpinBox", "QSpinBox" );
+ if ( amount )
+ ratingTextLabel->setText( amount->text() );
+ }
+ delete creditForm;
+}
+