Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [pde-dev] Wizard click of Next button

This is great. You are right Chris. It works.
Only issue with this is this method is called multiple times again.

It's bad that Eclipse Wizard/ WizardPage itself doesn't provide methods like:

nextButtonClicked()
prevButtonClicked()
finishButtonClicked()
wizardPageLoaded() - Actual display of page

If they provide these methods we can define some validations for each page/ wizard and some operations which can be done only when these events happen.

Thanks,
Rama



Chris Dennett <Dessimat0r@xxxxxxxxxxxx> wrote:
Leen Toelen wrote:
> Hi,
>
> when the user clicks next, finish or enters the wizard, the
> setVisible(true/false) gets called on the leaving and entering page.
>
You can also get the first page to call a method in the second page on
completion of the page. In this method, you can code whatever you need
to do on pressing the next button.

Chris
_______________________________________________
pde-dev mailing list
pde-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/pde-dev


Back to the top