diff options
Diffstat (limited to 'src/arkollon/wizardbase.ui.h')
-rw-r--r-- | src/arkollon/wizardbase.ui.h | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/src/arkollon/wizardbase.ui.h b/src/arkollon/wizardbase.ui.h new file mode 100644 index 0000000..2fd5bce --- /dev/null +++ b/src/arkollon/wizardbase.ui.h @@ -0,0 +1,58 @@ +#include "data.h" + +void WizardBase::setAppName( QString n ) +{ + QPixmap tmp; + tmp.convertFromImage(qembed_findImage("packageIcon")); + appIcon->setPixmap(tmp); + tmp.convertFromImage(qembed_findImage("splash")); + splash->setPixmap(tmp); + + setCaption("Installing "+n); + titleLabel->setText("<b>Installing "+n+"</b>"); + appNameLabel->setText("<b>"+n+"</b>"); + shortcutBox->setText("Place a shortcut to "+n+" on the desktop"); +} + + +void WizardBase::nextPressed() +{ + +} + + +void WizardBase::previousPressed() +{ + +} + + +void WizardBase::cancelPressed() +{ + +} + + +void WizardBase::browsePressed() +{ + +} + + +void WizardBase::runPressed() +{ + +} + + +void WizardBase::logPressed() +{ + +} + + + +void WizardBase::componentSelected( QListViewItem * ) +{ + +} |