Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Platform - User Assistance (UA) » Removing the 'question mark' in the wizard
Removing the 'question mark' in the wizard [message #473814] Mon, 26 May 2008 19:58 Go to next message
Matt is currently offline MattFriend
Messages: 40
Registered: July 2009
Member
Hello,

I've added a custom Help capability to my Eclipse wizard, and I'd like to
get rid of the question mark in the corner. I've made four attempts:

1. setHelpAvailable(false) in the Wizard constructor
2. WizardDialog.setHelpAvailable(false) in the wizard constructor and in the
wizard page constructors.
3. Setting performHelp() in the WizardPages to an empty method.
4. Accessing the TrayDialog with getContainer().getTray() and calling its
setHelpAvailable(false).

None of this works. It would probably be easier to get rid of the
Next/Finish/Cancel buttons. Has anyone else had any success?

Thanks,

Matt
Re: Removing the 'question mark' in the wizard [message #473820 is a reply to message #473814] Wed, 28 May 2008 09:57 Go to previous message
Conor O'Mahony is currently offline Conor O'MahonyFriend
Messages: 108
Registered: July 2009
Senior Member
Hi Matt,

I was able to get rid of the question mark in my application by doing the following -


MyWizard wizard = new MyWizard();

WizardDialog wizardDialog = new WizardDialog(Display.getDefault().getActiveShell(), wizard);

wizardDialog.setHelpAvailable(false);
wizardDialog.open();



Matt wrote:
> Hello,
>
> I've added a custom Help capability to my Eclipse wizard, and I'd like to
> get rid of the question mark in the corner. I've made four attempts:
>
> 1. setHelpAvailable(false) in the Wizard constructor
> 2. WizardDialog.setHelpAvailable(false) in the wizard constructor and in the
> wizard page constructors.
> 3. Setting performHelp() in the WizardPages to an empty method.
> 4. Accessing the TrayDialog with getContainer().getTray() and calling its
> setHelpAvailable(false).
>
> None of this works. It would probably be easier to get rid of the
> Next/Finish/Cancel buttons. Has anyone else had any success?
>
> Thanks,
>
> Matt
>
>
Re: Removing the 'question mark' in the wizard [message #614392 is a reply to message #473814] Wed, 28 May 2008 09:57 Go to previous message
Conor O'Mahony is currently offline Conor O'MahonyFriend
Messages: 108
Registered: July 2009
Senior Member
Hi Matt,

I was able to get rid of the question mark in my application by doing the following -


MyWizard wizard = new MyWizard();

WizardDialog wizardDialog = new WizardDialog(Display.getDefault().getActiveShell(), wizard);

wizardDialog.setHelpAvailable(false);
wizardDialog.open();



Matt wrote:
> Hello,
>
> I've added a custom Help capability to my Eclipse wizard, and I'd like to
> get rid of the question mark in the corner. I've made four attempts:
>
> 1. setHelpAvailable(false) in the Wizard constructor
> 2. WizardDialog.setHelpAvailable(false) in the wizard constructor and in the
> wizard page constructors.
> 3. Setting performHelp() in the WizardPages to an empty method.
> 4. Accessing the TrayDialog with getContainer().getTray() and calling its
> setHelpAvailable(false).
>
> None of this works. It would probably be easier to get rid of the
> Next/Finish/Cancel buttons. Has anyone else had any success?
>
> Thanks,
>
> Matt
>
>
Previous Topic:How make infocenter use pre-built plugin indexes?
Next Topic:Migrating Eclipse 3.2 Help system to 3.3 - language packs
Goto Forum:
  


Current Time: Sat Apr 20 11:47:29 GMT 2024

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

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

Back to the top