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
0 answers

How to make Eclipse RCP 3.x EditorPart unclosable

It seems like I couldn't find a way to remove the "close" icon next to each Editor to make it unclosable. I guess with RCP e4, its possible to make editor unclosable, but my application is 3.x, is there any way?
Doan Linh
  • 107
  • 8
0
votes
1 answer

Open Java Viewport in dialog

I am developing a standalone RCP program in Java. There I have a plugin which opens a perspective in the current workbench, when I click on it. IWorkbench workbench = PlatformUI.getWorkbench(); IWorkbenchWindow window = …
0
votes
1 answer

JavaFX AreaChat graph in RCP application

I am new to JavaFX/RCP and trying to execute one sample JavaFX graph in RCP application. It is displaying empty dialogue, without graph. Can anyone help me in identifying the issue ? @Execute public void execute(final Shell shell) { if…
0
votes
1 answer

ClassNotFoundException when starting Maven 2 RCP application

I've started a very basic Eclipse (Helios) RCP application with the "Hello RCP" template. I enabled Maven dependency management and added Spring 3 to the POM. After that I created a view and added the following code to my view. @Override public void…
wsams
  • 2,499
  • 7
  • 40
  • 51
0
votes
1 answer

How to make HandledMenuItem unselected when the application is started

I have HandledMenuItem in my Application.e4xmi. But if I check this item, close my application and start it again, this item stay selected. I can suspect that this item should be tagged or something like this, but I can't find any information about…
0
votes
1 answer

Checking if a Part inside of a PartStack was closed by pressing the close icon on the corresponding tab

Platform: Windows 8.1 Pro, E4 with e(fx)clipse I'm currently working on caching opened Parts to reopen then when reloading the PartStack. This reloading method uses EPartService.hidePart() to close all Parts in the PartStack. Since I also need to…
Hobbit9797
  • 35
  • 7
0
votes
1 answer

Eclipse RCP Window / Dialog Registry

Is there any standard mechanism in RCP or JFace to register a window or dialog so that if the user calls a handler which brings up a dialog two times, and the second time the selection hasn't changed, instead of bringing up a new dialog, the dialog…
dasPing
  • 337
  • 1
  • 2
  • 19
0
votes
1 answer

Eclipse 4 Replacement for WorkbenchWindow restoreState and closeAllPages

Eclipse 3.* had the method restoreState and closeAllPages for the WorkbenchWindow. What is the 4.* replacement? I have thousands of persisted WorkbenchWindow saveState(IMemento memento) results in a database. I need to either convert them somehow,…
dasPing
  • 337
  • 1
  • 2
  • 19
0
votes
1 answer

Eclipse RCP: move createPartControl into background

I am using RCP for a while now and I want to open an editor in the background with the possibility to abort and to do something in the meantime. The Composite created by createPartControl can be quite large. But so far I could not find anything that…
Ruth
  • 856
  • 2
  • 13
  • 26
0
votes
1 answer

Custom toggle management in Eclipse RCP ToolBar

I have a toolbar that I use to switch over perspectives. Each button in my toolbar opens a different perspective. I want to emphasize the user feeling what is opened at the time and I want to work my buttons as toggles with states "DOWN" and "UP".…
Bartek Szczypien
  • 333
  • 4
  • 17
0
votes
1 answer

3.6.2 PDE Headless (feature) build doesn't recognize included features

I use topLevelElementType = feature and topLevelElementId = my.main.feature as properties. 'my.main.feature' contains two included features and one plugin. 3.6.2 PDE plugin generates feature build.xml with empty "all.features" target. Plugin…
0
votes
1 answer

Multiple instances of Eclipse4 RCP application

I have created an Eclipse4 RCP application and I would like to be able to launch multiple instances. By default when a second RCP instance is launched it says "The workspace is already in use". I know that it is possible to use options so that the…
Dmitry
  • 2,033
  • 1
  • 22
  • 31
0
votes
1 answer

How to pass parameter to wizard

I have a wizard called "ui.wizard.new.project" which will be launched by the command service framework programmatically like below. However, how do I pass parameters to the "ui.wizard.new.project" wizard under this framework? IWorkbenchWindow window…
zqzwxec
  • 51
  • 4
0
votes
1 answer

How to use console view in Eclipse RCP Application

I just started using RCP to write Java-based applications. I am trying to add a console view in my app, and output info of log4j to the console. Now it works. But there is a problem, it cannot perform as eclipse witch output once per line, but…
John
  • 365
  • 2
  • 5
  • 15
0
votes
1 answer

A long operation of org.eclipse.core.expressions.PropertyTester makes UI not responsive

I try to monitor the activeEditor and once the activeEditor changes, one property tester will performed to test some conditions. I need to implement some operations involving networking and IO in public boolean test(Object receiver, String…
zqzwxec
  • 51
  • 4