Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Rich Client Platform (RCP) » key assist in a rcp application
key assist in a rcp application [message #468006] Mon, 03 August 2009 15:03 Go to next message
philipp huebner is currently offline philipp huebnerFriend
Messages: 65
Registered: July 2009
Member
Hello folks,
I'm looking for a way to get the key assist feature of eclipse in my rcp
application without loading the ide plugin, because it makes some other
nonesense contributions. Is there a way to do this?
Re: key assist in a rcp application [message #468007 is a reply to message #468006] Mon, 03 August 2009 15:19 Go to previous messageGo to next message
Lars Vogel is currently offline Lars VogelFriend
Messages: 1098
Registered: July 2009
Senior Member

Hello,

do you mean field assists? See here for an example with the IDE plugin:
http://www.vogella.de/articles/RichClientPlatform/article.ht ml#fieldassist

Best regards, Lars

philipp huebner wrote:
> Hello folks,
> I'm looking for a way to get the key assist feature of eclipse in my rcp
> application without loading the ide plugin, because it makes some other
> nonesense contributions. Is there a way to do this?
>



--
http://www.vogella.de/ - Eclipse plugin and Eclipse RCP Tutorials
Re: key assist in a rcp application [message #468123 is a reply to message #468007] Tue, 04 August 2009 09:44 Go to previous messageGo to next message
philipp huebner is currently offline philipp huebnerFriend
Messages: 65
Registered: July 2009
Member
eh no ...I mean key assist...like in the eclipse ide under help...
Re: key assist in a rcp application [message #479368 is a reply to message #468006] Mon, 10 August 2009 18:55 Go to previous message
Paul Webster is currently offline Paul WebsterFriend
Messages: 6859
Registered: July 2009
Location: Ottawa
Senior Member

The KeyAssistDialog comes from the org.eclipse.ui.workbench (org.eclipse.ui) plugin. There are a couple of ways to open it, the easiest from a global action being:

final IWorkbench workbench = PlatformUI.getWorkbench();
final IBindingService bindingService = (IBindingService) workbench.getService(IBindingService.class);
bindingService.openKeyAssistDialog();

PW


Previous Topic:Re: Building tables made easy: TableViewerBuilder
Next Topic:contribute toolbar to a view
Goto Forum:
  


Current Time: Fri Apr 26 09:02:32 GMT 2024

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

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

Back to the top