You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tork/src/arkollon/wizardbase.ui.h

59 lines
723 B

#include "data.h"
void WizardBase::setAppName( TQString n )
{
TQPixmap 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( TQListViewItem * )
{
}