customize the org.eclipse.ui.newWizard extension point

View: New views
6 Messages — Rating Filter:   Alert me  

customize the org.eclipse.ui.newWizard extension point

by pitaeva :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Dear all,

I am using the org.eclipse.ui.newWizard extension point in my project and need to do some changes on its first page (which displays a tree with the different wizard categories):
 1.  by changing of the page title/description
 2.  by adding an invocation of the SelectionService to get the selection parameters from the last active  vew.

What is the best way to do that?

Many thanks in advance,

pit

Re: customize the org.eclipse.ui.newWizard extension point

by Jacek Pospychala :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Hi Pit,
you'd best ask on the Platform newsgroup (see http://www.eclipse.org/newsgroups), which as well as other newsgroups, is targeted at the users of Eclipse platform - developers.
This list is intended for PDE developers.

My first idea would be to press Ctrl+Shift+F1 on the first wizard page to identify which class implements it and then get it's source code and see how it can be changed if at all..


Jacek Pospychala                                                
Technical Support Engineer                                      
Eclipse Support Center                                          
IBM Software Group



From: pitaeva <anna.pitaev@...>
To: pde-ui-dev@...
Date: 2009-06-03 15:08
Subject: [pde-ui-dev] customize the org.eclipse.ui.newWizard extension point






Dear all,

I am using the org.eclipse.ui.newWizard extension point in my project and
need to do some changes on its first page (which displays a tree with the
different wizard categories):
1.  by changing of the page title/description
2.  by adding an invocation of the SelectionService to get the selection
parameters from the last active  vew.

What is the best way to do that?

Many thanks in advance,

pit
--
View this message in context:
http://www.nabble.com/customize-the-org.eclipse.ui.newWizard-extension-point-tp23851069p23851069.html
Sent from the Eclipse PDE - UI mailing list archive at Nabble.com.

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



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

AW: customize the org.eclipse.ui.newWizard extensionpoint

by pitaeva :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Some parts of this message have been removed. Learn more about Nabble's security policy.

 

Hi Jacek,

 

It is exactly what I am looking for: the implementation class of this page.

But I could not retrieve this information by press of Ctrl+Shift+F1.

 

Many thanks for your help!

 


Von: pde-ui-dev-bounces@... [mailto:pde-ui-dev-bounces@...] Im Auftrag von Jacek Pospychala
Gesendet: Mittwoch, 3. Juni 2009 15:20
An: Eclipse PDE UI developers list.
Cc: pde-ui-dev@...; pde-ui-dev-bounces@...
Betreff: Re: [pde-ui-dev] customize the org.eclipse.ui.newWizard extensionpoint

 


Hi Pit,
you'd best ask on the Platform newsgroup (see http://www.eclipse.org/newsgroups), which as well as other newsgroups, is targeted at the users of Eclipse platform - developers.
This list is intended for PDE developers.

My first idea would be to press Ctrl+Shift+F1 on the first wizard page to identify which class implements it and then get it's source code and see how it can be changed if at all..


Jacek Pospychala                                                
Technical Support Engineer                                      
Eclipse Support Center                                          
IBM Software Group


From:

pitaeva <anna.pitaev@...>

To:

pde-ui-dev@...

Date:

2009-06-03 15:08

Subject:

[pde-ui-dev] customize the org.eclipse.ui.newWizard extension point

 






Dear all,

I am using the org.eclipse.ui.newWizard extension point in my project and
need to do some changes on its first page (which displays a tree with the
different wizard categories):
1.  by changing of the page title/description
2.  by adding an invocation of the SelectionService to get the selection
parameters from the last active  vew.

What is the best way to do that?

Many thanks in advance,

pit
--
View this message in context:
http://www.nabble.com/customize-the-org.eclipse.ui.newWizard-extension-point-tp23851069p23851069.html
Sent from the Eclipse PDE - UI mailing list archive at Nabble.com.

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


Please help Logica to respect the environment by not printing this email / Pour contribuer comme Logica au respect de l'environnement, merci de ne pas imprimer ce mail / Bitte drucken Sie diese Nachricht nicht aus und helfen Sie so Logica dabei die Umwelt zu schuetzen / Por favor ajude a Logica a respeitar o ambiente não imprimindo este correio electrónico. This e-mail and any attachment is for authorised use by the intended recipient(s) only. It may contain proprietary material, confidential information and/or be subject to legal privilege. It should not be copied, disclosed to, retained or used by, any other party. If you are not an intended recipient then please promptly delete this e-mail and any attachment and all copies and inform the sender. Thank you.
_______________________________________________
pde-ui-dev mailing list
pde-ui-dev@...
https://dev.eclipse.org/mailman/listinfo/pde-ui-dev

Re: AW: customize the org.eclipse.ui.newWizard extensionpoint

by Benjamin Cabé-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Some parts of this message have been removed. Learn more about Nabble's security policy.

Pitaev, Anna a écrit :

 

Hi Jacek,

 

It is exactly what I am looking for: the implementation class of this page.

But I could not retrieve this information by press of Ctrl+Shift+F1.

 

I think it is ALT+SHIFT+F1...!

Benjamin-


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

Re: AW: customize the org.eclipse.ui.newWizard extensionpoint

by Jacek Pospychala :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


It's org.eclipse.ui.internal.dialogs.NewWizardSelectionPage
from org.eclipse.ui.workbench plug-in.

Ctrl+Shift+F1 (PDE Spy) should work as long as you have Eclipse 3.4 or up, with org.eclipse.pde.runtime plug-in installed. Make sure you have it, it's extremely useful!

Jacek Pospychala                                                
Technical Support Engineer                                      
Eclipse Support Center                                          
IBM Software Group



From: "Pitaev, Anna" <anna.pitaev@...>
To: "Eclipse PDE UI developers list." <pde-ui-dev@...>
Date: 2009-06-03 15:32
Subject: AW: [pde-ui-dev] customize the org.eclipse.ui.newWizard extensionpoint





 
Hi Jacek,
 
It is exactly what I am looking for: the implementation class of this page.
But I could not retrieve this information by press of Ctrl+Shift+F1.
 
Many thanks for your help!
 



Von: pde-ui-dev-bounces@... [pde-ui-dev-bounces@...] Im Auftrag von Jacek Pospychala
Gesendet:
Mittwoch, 3. Juni 2009 15:20
An:
Eclipse PDE UI developers list.
Cc:
pde-ui-dev@...; pde-ui-dev-bounces@...
Betreff:
Re: [pde-ui-dev] customize the org.eclipse.ui.newWizard extensionpoint

 

Hi Pit,

you'd best ask on the Platform newsgroup (see
http://www.eclipse.org/newsgroups), which as well as other newsgroups, is targeted at the users of Eclipse platform - developers.
This list is intended for PDE developers.


My first idea would be to press Ctrl+Shift+F1 on the first wizard page to identify which class implements it and then get it's source code and see how it can be changed if at all..



Jacek Pospychala                                                
Technical Support Engineer                                      
Eclipse Support Center                                          
IBM Software Group


From: pitaeva <anna.pitaev@...>
To: pde-ui-dev@...
Date: 2009-06-03 15:08
Subject: [pde-ui-dev] customize the org.eclipse.ui.newWizard extension point

 








Dear all,

I am using the org.eclipse.ui.newWizard extension point in my project and
need to do some changes on its first page (which displays a tree with the
different wizard categories):
1.  by changing of the page title/description
2.  by adding an invocation of the SelectionService to get the selection
parameters from the last active  vew.

What is the best way to do that?

Many thanks in advance,

pit
--
View this message in context:
http://www.nabble.com/customize-the-org.eclipse.ui.newWizard-extension-point-tp23851069p23851069.html
Sent from the Eclipse PDE - UI mailing list archive at Nabble.com.

_______________________________________________
pde-ui-dev mailing list
pde-ui-dev@...

https://dev.eclipse.org/mailman/listinfo/pde-ui-dev


Please help Logica to respect the environment by not printing this email / Pour contribuer comme Logica au respect de l'environnement, merci de ne pas imprimer ce mail / Bitte drucken Sie diese Nachricht nicht aus und helfen Sie so Logica dabei die Umwelt zu schuetzen / Por favor ajude a Logica a respeitar o ambiente não imprimindo este correio electrónico. This e-mail and any attachment is for authorised use by the intended recipient(s) only. It may contain proprietary material, confidential information and/or be subject to legal privilege. It should not be copied, disclosed to, retained or used by, any other party. If you are not an intended recipient then please promptly delete this e-mail and any attachment and all copies and inform the sender. Thank you.
_______________________________________________
pde-ui-dev mailing list
pde-ui-dev@...
https://dev.eclipse.org/mailman/listinfo/pde-ui-dev


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


Re: AW: customize the org.eclipse.ui.newWizard extensionpoint

by Jacek Pospychala :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


oh my fault... am pressing it 10 times/day and still don't remember :-P

Jacek Pospychala                                                
Technical Support Engineer                                      
Eclipse Support Center                                          
IBM Software Group



From: Benjamin CABÉ <benjamin.cabe@...>
To: "Eclipse PDE UI developers list." <pde-ui-dev@...>
Date: 2009-06-03 15:35
Subject: Re: AW: [pde-ui-dev] customize the org.eclipse.ui.newWizard        extensionpoint






Pitaev, Anna a écrit :

 
Hi Jacek,
 
It is exactly what I am looking for: the implementation class of this page.
But I could not retrieve this information by press of Ctrl+Shift+F1.
 

I think it is ALT+SHIFT+F1...!

Benjamin-
_______________________________________________
pde-ui-dev mailing list
pde-ui-dev@...
https://dev.eclipse.org/mailman/listinfo/pde-ui-dev


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