Qyoto
4.0.5
Qyoto is a C# language binding for Qt
|
Public Member Functions | |
void | CurrentIdChanged (int id) |
| |
void | HelpRequested () |
| |
void | CustomButtonClicked (int which) |
| |
void | PageAdded (int id) |
| |
void | PageRemoved (int id) |
| |
Public Member Functions inherited from QtGui.IQDialogSignals | |
void | Finished (int result) |
| |
void | Accepted () |
| |
void | Rejected () |
| |
Public Member Functions inherited from QtGui.IQWidgetSignals | |
void | CustomContextMenuRequested (QPoint pos) |
| |
Public Member Functions inherited from QtCore.IQObjectSignals | |
void | Destroyed (QObject arg1) |
void | Destroyed () |
| |
void QtGui.IQWizardSignals.CurrentIdChanged | ( | int | id | ) |
This signal is emitted when the current page changes, with the new current id.
See also currentId() and currentPage().
void QtGui.IQWizardSignals.CustomButtonClicked | ( | int | which | ) |
This signal is emitted when the user clicks a custom button. which can be CustomButton1, CustomButton2, or CustomButton3.
By default, no custom button is shown. Call setOption() with HaveCustomButton1, HaveCustomButton2, or HaveCustomButton3 to have one, and use setButtonText() or setButton() to configure it.
See also helpRequested().
void QtGui.IQWizardSignals.HelpRequested | ( | ) |
This signal is emitted when the user clicks the Help button.
By default, no Help button is shown. Call setOption(HaveHelpButton, true) to have one.
Example:
LicenseWizard::LicenseWizard(QWidget *parent)
: QWizard(parent)
{
...
setOption(HaveHelpButton, true);
connect(this, SIGNAL(helpRequested()), this, SLOT(showHelp()));
...
}
void LicenseWizard::showHelp()
{
static QString lastHelpMessage;
QString message;
switch (currentId()) {
case Page_Intro:
message = tr("The decision you make here will affect which page you "
"get to see next.");
break;
...
default:
message = tr("This help is likely not to be of any help.");
}
QMessageBox::information(this, tr("License Wizard Help"), message);
}
See also customButtonClicked().
void QtGui.IQWizardSignals.PageAdded | ( | int | id | ) |
This signal is emitted whenever a page is added to the wizard. The page's id is passed as parameter.
This function was introduced in Qt 4.7.
See also addPage(), setPage(), and startId().
void QtGui.IQWizardSignals.PageRemoved | ( | int | id | ) |
This signal is emitted whenever a page is removed from the wizard. The page's id is passed as parameter.
This function was introduced in Qt 4.7.
See also removePage() and startId().