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
3
votes
6 answers

Eclipse RCP application - Create a window programmatically

In an RCP application, how I can programmatically define and open a new window? I want to open several window - each window show different data. How can I set different input for each window? I want to simulate the same functionality of Eclipse IDE…
Ley
3
votes
1 answer

Use Maven's Dependency Management without the build functionality for RCP applications?

I want to build an Eclipse RCP application, and for ease of use also want to use Maven's Dependency Management, so that dependencies are automatically resolved. I've tried Tycho, but to no avail (I guess I haven't found the right way to set up my…
s.d
  • 4,017
  • 5
  • 35
  • 65
3
votes
5 answers

Memory leak in Eclipse RCP applications

How can the memory leak in Eclipse RCP applications detected?
Reji
  • 3,426
  • 2
  • 21
  • 25
3
votes
3 answers

RCP SaveAndRestore does not reopen views

I have a RCP application. Its default perspective opens two views on thew left and the bottom, in relation to the editor area. The option SaveAndRestore is set to true. Upon the next startup of the app, both views are closed. Why? What am i doing…
Coxer
  • 1,694
  • 2
  • 26
  • 44
3
votes
0 answers

Is it possible to add a page to Multipage Editor from outside the FormEditor?

I have a multipage editor to which I want to add a page if the user double cliks on a box in another page of the multipage editor (which is a graphical editor). Is this possible? without multipage editor, I can do that using the following…
jean24
  • 189
  • 3
  • 9
3
votes
1 answer

embed Video Display in SWT/RCP

How to display a video (or mjpeg) in a SWT/RCP aplication while the video must has as less as possible impact from the other UI interation? At moment I paint MJPEGs in a Canvas wihtin UI Thread, and it will lag when I did other UI interactions. Is…
rnd_nr_gen
  • 2,203
  • 3
  • 36
  • 55
3
votes
1 answer

Best way to go for taking up fat clients in Java desktop apps

I mostly work in the server side but I have developed desktop apps in Swing. I want to make a "fat" desktop application for management of a small office that needs to incorporate the ability to print and display neet reports from data from a…
Cratylus
  • 52,998
  • 69
  • 209
  • 339
3
votes
1 answer

Eclipse RCP program with debug info

I have written an RCP program. Somewhere in my underlying plug-in there is a NullPointerException. I get the stack trace and everything, but the code doesn't seem to be generated with debug info in it because I don't get the line info: at…
kaidentity
  • 609
  • 4
  • 10
  • 26
3
votes
3 answers

How to extend the source menu in Eclipse? (or: What is its locationURI?)

I am developing an eclipse plugin and trying to extend the source menu (mainMenubar/Source - visible when editing in the java-editor) in Eclipse 3.7. The documentation says to rely on the org.eclipse.ui.menus-extension point since the older…
mtsz
  • 2,725
  • 7
  • 28
  • 41
3
votes
2 answers

Where is localization done in the Eclipse code?

I have a contributed view in an Eclipse RCP application. This view has a localized name %view.name, with the translation on a plugin.properties file to "My View Part". I am looking into the source code of Eclipse to understand how the…
Mario Ortegón
  • 18,670
  • 17
  • 71
  • 81
3
votes
4 answers

Hide instead of dispose viewpart when x is clicked

I have a viewpart with closable set to true. The user clicks the x. I want to hide the viewpart rather then close it. how can this be done?
Xander
  • 9,069
  • 14
  • 70
  • 129
3
votes
1 answer

RCP Placeholder for StandaloneView

I'm very new to RCP and I want to build a window with a TreeViewer as a menu on the left and views on the right. When clicking on a TreeItem the current view should be replaced with the new page. The Views shall not be moveable or closeable. The…
MatF
  • 1,728
  • 2
  • 14
  • 31
3
votes
1 answer

How to fix "Missing Constraint: Import-Package:" and "Require-Bundle" in Eclipse RCP

I am developing an Eclipse RCP application. Therefore I am trying to implement an ISelectionListener. Therefore I have to import the package "org.eclipse.ui". When i wanted to import the package the error that I have add the package to my project.…
Brudi_Voeller
  • 91
  • 2
  • 11
3
votes
1 answer

Change Netbeans Platform Main Window Background Color

I'm building a Netbeans Platform application for the first time. I'm looking for a way to change the background color of the main window (the window which has the menubar & toolbar). Is there any way to do this?
PatrixCR
  • 131
  • 4
3
votes
3 answers

How can I set an EList as an input in JFace TableViewer?

This is my first SO question. I hope i provide enough details. I have an EMF Model with a class called ScopeContainer, which has two containment References as ELists of Different Types. I have generated the model model.edit and model.editor…
Fuhry
  • 43
  • 7