![]() |
Main Page
Class Hierarchy
Alphabetical List
Compound List
File List
Compound Members
![]() |
#include <FXWizardPage.h>
Inheritance diagram for FXEX::FXWizardPage::
Public Methods | |
FXWizardPage (FXWizardDialog *wizard, FXImage *image=NULL, FXWizardPage *prev=NULL, FXWizardPage *next=NULL, FXuint opts=FRAME_NONE) | |
void | setPrev (FXWizardPage *prev) |
void | setNext (FXWizardPage *next) |
virtual FXWizardPage * | getPrev () const |
virtual FXWizardPage * | getNext () const |
virtual bool | transferDataFromPage () |
virtual FXImage * | getImage () |
void | enableFocus () |
void | disableFocus () |
FXbool | canFocus () |
virtual | ~FXWizardPage () |
FXWizardPage is one of the screens in an FXWizardDialog: it must know what are the following and preceding pages (which may be NULL for the first/last page). Except for this extra knowledge, FXWizardPage is just a FXPacker, so the controls may be placed directly on it in the usual way.
Definition at line 49 of file FXWizardPage.h.
|
FXWizardPage Selector Types. Constructor for a FXWizardPage.
|
|
dtor.
Definition at line 129 of file FXWizardPage.h. |
|
Sets the previous page.
Definition at line 88 of file FXWizardPage.h. |
|
Sets the next page.
Definition at line 91 of file FXWizardPage.h. |
|
Get the page which should be shown when the user chooses the "Prev" button.
Definition at line 94 of file FXWizardPage.h. |
|
Get the page which should be shown when the user chooses the "Next" button.
Definition at line 97 of file FXWizardPage.h. |
|
Used to test the validity of the user input. By default, it just returns TRUE. You should normally override this function in your own code if validity checking is required. Definition at line 103 of file FXWizardPage.h. |
|
This method is called by FXWizardDialog to get the image to display alongside the page. If the image was not explicitly set (i.e. if FXNullImage is returned), the default image for the wizard should be used. If FXEmptyImage is returned, then no image should be displayed for the page. The only cases when you would want to override this function is if the page image depends dynamically on the user choices, i.e. almost never. Definition at line 115 of file FXWizardPage.h. |
|
Used by the wizard to enable the controls on this page to receive focus.
Definition at line 118 of file FXWizardPage.h. |
|
Used by the wizard to disable the controls on this page from receiving focus. Normally done when the page is not the current one being displayed. Definition at line 123 of file FXWizardPage.h. |
|
returns whether the controls on this page can receive focus or not.
Definition at line 126 of file FXWizardPage.h. |