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

RCP Part Toolbar Handled Tool Item removal

I seem to have a problem with removing parts programatically, which contain a toolbar. I create the parts with the following commands: final MPart newPart =…
0
votes
1 answer

How to refresh Eclipse RCP plugin with jar libraries

I have one Eclipse RCP plugin (A) that include another one with jar libraries (B) and it works but i want to add there another jar library and i cant refresh my Eclipse RCP Plugin (A) to make packages from new jar visible. I added new jar in…
Bartek Szczypien
  • 333
  • 4
  • 17
0
votes
1 answer

pure E4 usage activeWhen Expression

I'm migrating my E3 to a pure E4 application. The E3 application used the activeWhen-Core Expression in Combination with propertyTesters to enable/disable ToolItems live. Now in E4 there is only the VisibleWhen Core Expression supported…
Elias S
  • 118
  • 10
0
votes
2 answers

Using ContextInjectionFactory with Type

What is the correct way to use DependencyInjection / ContextInjectionFactory without generating a type safety warning? public class MyClass {...} // Without Dependency Injection MyClass x = new MyClass(); // With Dependency…
ekjcfn3902039
  • 1,673
  • 3
  • 29
  • 54
0
votes
0 answers

Eclipse RCP application - cant build project

My Eclipse RCP project stopped running and i havent changed anything. I have two run configurations, one is .product and another one is application (both had run before problem occured). When i try to run .product configuration, build is terminated…
Bartek Szczypien
  • 333
  • 4
  • 17
0
votes
1 answer

Eclipse e4 RCP part activation event sent multiple times

In my Eclipse e4 RCP application, I'm using annotations to get notified when a Part is activated, using the approach proposed here : http://www.vogella.com/tutorials/Eclipse4ModelEvents/article.html @Inject @Optional public void …
FH35
  • 75
  • 11
0
votes
1 answer

How to invoke the eclipse search dialog programmatically?

I am working on an eclipse RCP project which has added its own search dialog. I would like to be able to find that dialog, pre-fill some of the fields (depending on selected items etc) and then open the dialog for the user to be able change settings…
paul
  • 13,312
  • 23
  • 81
  • 144
0
votes
1 answer

Eclipse RCP - cant resolve importing libraries in final build

I try to build/export Eclipse RCP product. I have several JAR libraries (not external JARs but they are inside project root folder). I am able to launch application/product in Eclipse environment but i cannot export it as Plug-in Development/Eclipse…
Bartek Szczypien
  • 333
  • 4
  • 17
0
votes
1 answer

RCP and external browser inclusion

I'm working on an RCP desktop application and I'm showing google map on the embedded eclipse org.eclipse.swt.browser.Browser class. Now, this class uses the default browser or whatever browser you specify. The problem is when the app is going to be…
Majid
  • 654
  • 2
  • 7
  • 28
0
votes
1 answer

Replace default pop-up window when exception throws on top level in RCP 4 application

How can I replace default pop-up window when exception throws on top level in RCP 4 application?
Sergey
  • 304
  • 3
  • 9
0
votes
1 answer

how to resolve eclipse update site dependency

I build up update site project form eclipse,I do not know how to resolve plug-in dependency in feature.xml,I am setting "Included Features" and "Dependencies",but at the end when add locations for target definition throw "package javax.crypto…
ProEditor
  • 59
  • 5
0
votes
1 answer

DeferredTreeContentManager in e4?

I´m wondering how to implement the DeferredTreeContentManager (org.eclipse.e4.ui.progress.DeferredTreeContentManager) in an e4 rcp? I googled a little but I only saw some e3-concerning threads. Thanks in advance!
Elias S
  • 118
  • 10
0
votes
1 answer

Eclipse RCP Target can't Add Feature because jar file not found in bundle pool

For my RCP app I created two targets, one that points to a p2 site in a repository directory of the target project, so users can use the target when not connected to the Internet. The p2 repository is a mirror created with an ant script, and I…
MidnightJava
  • 1,927
  • 2
  • 18
  • 38
0
votes
2 answers

RCP app & change background color and putting image in center of application

I would like to set the background color of my RCP application to white and show a center image (logo). This is because due to the fact, that no views or editors are shown beforehand and the user should select which perspective to open. This is…
Raven
  • 561
  • 6
  • 19
0
votes
2 answers

E4 Preference Initializer won´t get called

I´m trying to migrate my e3-rcp-app to a e4-rcp-app. Therefore I need to define my default Preferences. (Not the Pref.Pages) And by doing and trying so, I just can´t get my Initializer called. Here Is my initializer-class: public class…
Elias S
  • 118
  • 10