Questions tagged [rcp]

RCP stands for Rich Client Platform, and is software that provides a platform for application developers to build on. It may also refer to the "remote copy" command in Unix. Use the eclipse-rcp tag for questions about Eclipse RCP.

RCP stands for Rich Client Platform, which is software that provides a platform for application developers to build on. This speeds production, allowing proven framework to be used rather than re-implemented. An example is the Eclipse RCP.

http://wiki.eclipse.org/index.php/Rich_Client_Platform

It may also refer to the "remote copy" command in Unix.

1706 questions
0
votes
1 answer

Associate newWizard with nature of selected project

I am trying to add a contribution to the org.eclipse.ui.newWizards extension point so that the entry in the new-menu is only shown, when the selected project has a certain nature. Is this possible only by declarative use of this extension…
angrybobcat
  • 268
  • 1
  • 10
0
votes
1 answer

How to restrict the window of RCP app from resizing?

I want to restrict the window size of an RCP app from resizing. So in prewindowopen of ApplicationWorkbenchWindowAdvisor class I tried IWorkbenchWindowConfigurer configurer = getWindowConfigurer(); configurer.setShellStyle(SWT.CLOSE | SWT.MIN…
Rajesh Kumar Dash
  • 2,203
  • 6
  • 28
  • 57
0
votes
1 answer

Failed to create the part's control treeviewer. ClassCastException

I want to create a project tree explorer in my RCP application. This is my viewpart for tree: public class ProjectExplorer extends ViewPart{ public static final String ID = "rcp.projectexplorer"; public ProjectExplorer() { } …
0
votes
0 answers

Eclipse 4 RCP - Part class constructor not called

I'm new to Eclipse 4 RCP and just learning the basics. I created a part and gave it a class URI. For some reason the class's constructor isn't being called. What could be the reason? PlaygroundPart code: package…
dlvhdr
  • 482
  • 4
  • 19
0
votes
1 answer

Eclipse RCP OS X Preferences/About menu integration works inside Eclipse but not outside?

I'm developing an Eclipse RCP 4 application targeted to several platforms including OS X. When testing the application within the Eclipse development environment under OS X, application menu integration works correctly. Preferences and About can…
Dave
  • 1
  • 1
  • 2
0
votes
1 answer

how do I add a RCP project to eclipse menu?

I have an eclipse RCP application (already built). I need to integrate it with eclipse UI itself. What I mean is -- I want to add a menu option in eclipse User Interface and a command in the menu which when clicked runs the application. It is…
clearb
  • 43
  • 1
  • 6
0
votes
0 answers

How to open 2 workbench windows when start an RCP application?

I created a RCP product and want to open 2 workbench windows when I start it. Each window has its own default perspective.
Leen Shi
  • 48
  • 1
  • 5
0
votes
0 answers

Eclipse RCP TableViewer decorators have no visible effect on icons

I'm trying to use ILabelDecorators to decorate icons in the TableViewer. I use two-column table to show properties of some model object. The first column displays the property name, the second column it the property value. Some objects in the second…
Vladimir
  • 447
  • 5
  • 16
0
votes
1 answer

How to include Switch Workspace in File menu

I am trying to develop an Eclipse RCP application but I have a problem. I don't know how to implement "switch workspace " in file menu. Can somebody please help me?
Sawsen
  • 83
  • 2
  • 11
0
votes
0 answers

E4 application Generate part from xsd with xml binding

I can generate beans from an .xsd file using JAXB. What I would like to do is generate a part in an eclipse 4 application from a .xsd file. This can all be done manually using JFace binding with a simple example of a name property. I need to do this…
0
votes
0 answers

How Can i display a confirmation popup before closing a eclipse(e4)rcp application

Here is the code which i am using to call the popup before closing, @PostContextCreate void postContextCreate() { } @Execute public void execute(final Shell shell, MWindow window) { IWindowCloseHandler handler = new…
Vishal89
  • 43
  • 1
  • 7
0
votes
1 answer

Antler matches a similar rule (but fails on the parts that differ)

I'm creating an Xtext plugin and for some reason, the following line incorrectly matches the StringStatement rule when it should match the UnstringStatement rule: UNSTRING test2 DELIMITED BY " " INTO test2 END-UNSTRING Here is my grammar: Program: …
Erik Hunter
  • 211
  • 3
  • 8
0
votes
1 answer

How to build two different versions of an e4 RCP application with Maven/Tycho?

I have got an e4 RCP application A. I extend this application with a plugin B which adds GUI functionality via fragments. My project structure looks like this: Application A Plugin B Target-Platform project deployment project (with the .product…
user3726374
  • 583
  • 1
  • 4
  • 24
0
votes
2 answers

Opening multiple windows in e4 locks previous windows

I am building an application with E4 and SWT . For a button click, sometimes a new window(shell) is opened. The problem is when I open a new window, I am unable to use the other windows, in a sense, it's getting locked. Unless I close the latest…
Lishus
  • 15
  • 7
0
votes
1 answer

How to Call a RCP perspective from IntroPage(HTML) of RCP application

I have built a RCP application with Intropage in HTML. I also have other perspectives in the application. How do call (or load) a perspective from a button click in the HTML intro page ?
clearb
  • 43
  • 1
  • 6