Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Standard Widget Toolkit (SWT) » WizardSelectionPage example?
WizardSelectionPage example? [message #447641] Wed, 15 December 2004 19:06 Go to next message
Horst Dehmer is currently offline Horst DehmerFriend
Messages: 18
Registered: July 2009
Junior Member
Hi,

I'm trying to set up a wizard which should
display a wizard selection page up front
to select the actual wizard/wizard pages to
use in following steps.

After selecting a wizard and proceeding to
the next page (first page of the selected
wizard) the dialog's content area goes blank.
No exception and the dialogs title is updated
correctly to the selected wizards title.
Going back to the selection page results in
a blank content area, too.

Any ideas?

Is there a simple example around which uses
- org.eclipse.jface.wizard.WizardSelectionPage
- org.eclipse.jface.wizard.IWizardNode

Thanks
Horst
Re: WizardSelectionPage example? [message #447651 is a reply to message #447641] Wed, 15 December 2004 22:52 Go to previous message
Horst Dehmer is currently offline Horst DehmerFriend
Messages: 18
Registered: July 2009
Junior Member
Horst Dehmer wrote:
> Hi,
>
> I'm trying to set up a wizard which should
> display a wizard selection page up front
> to select the actual wizard/wizard pages to
> use in following steps.
>
> After selecting a wizard and proceeding to
> the next page (first page of the selected
> wizard) the dialog's content area goes blank.
> No exception and the dialogs title is updated
> correctly to the selected wizards title.
> Going back to the selection page results in
> a blank content area, too.
>
> Any ideas?
>
> Is there a simple example around which uses
> - org.eclipse.jface.wizard.WizardSelectionPage
> - org.eclipse.jface.wizard.IWizardNode
>
> Thanks
> Horst

Just got to put a Composite between parent
and my widgets:

public void createControl(Composite parent) {
Composite container = new Composite(parent, SWT.NONE);
setControl(container);
// add more widgets to container (AND NOT to parent!)
}
Previous Topic:forcing repaint on a control
Next Topic:What is that drop-down Coolbar button widget?
Goto Forum:
  


Current Time: Thu Apr 25 14:20:35 GMT 2024

Powered by FUDForum. Page generated in 0.02810 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top