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

Modal RCP Dialog not modal

I'm having some trouble creating a modal Dialog in the e4 workbench. There is a predefined dialog(org.eclipse.e4.ui.model.application.ui.basic.impl.DialogImpl), but the problem is that I can't figure out how to make it modal. Maybe you guys have…
0
votes
2 answers

E4 RCP How to set selection of ToolBarItem that contains Radio Buttons

In Eclipse E4 (Luna), using the application model to create parts, handlers, commands, handled menu items etc, (these are not created programatically). I have a toolbar. This contains a sub-Menu item called "Filter" that contains another sub-menu…
Marv
  • 77
  • 9
0
votes
2 answers

swt rcp message dialog without any button and no modal

I need your help, In my swt app I need to show a simple message while some jfreechart chart is loading. Simply I put a shell at the beginning of the chart generating method and I close that shell at the end of the method. I know is not the best…
Monik Eliz
  • 107
  • 9
0
votes
0 answers

Long method execution within Eclipse RCP

I have a java project, with a method that parses a file. When I execute it from Junit it takes about 120 milliseconds to finish. When I add this project build path of Eclipse RCP plugin project, and execute same method it takes 40000 milliseconds to…
Tirmean
  • 398
  • 7
  • 18
0
votes
1 answer

What is the euquivalent of Maven Tycho to build NetBeans Applications?

More generally, how are bigger (meaning lots of dependencies or many modules) RCP Applications build? Eclipse RCP uses Tycho and p2. What does NB use to build apps headless?
kerner1000
  • 3,382
  • 1
  • 37
  • 57
0
votes
1 answer

How to retain the state of a treeviewer in Java RCP application?

I have a simple RCP application having couple of wizards out of which one is having a tree viewer. I want to retain the state of the selected item in the tree viewer next time I open that particular view. As of now I have implemented using static…
Srikant Barik
  • 133
  • 2
  • 12
0
votes
1 answer

RCP e4 programmatically create Toolbar with HandledToolItem in Part

I'm having a problem regarding the HandledToolItem in my MToolbar. When pressing a button the application should create a new Part with a Toolbar and one HandledToolItem. The problem is that the HandledToolItem is always greyed out and I don't know…
0
votes
2 answers

How to listen to selection changes on TableViewer?

I'm working on an Eclipse RCP application and I'm trying to update an expression value which is provided by MySourceProvider according to selection changes on a TableViewer in MyEditorPart. MyEditorPart instance defines a TableViewer like…
emrekgn
  • 624
  • 9
  • 25
0
votes
1 answer

RCP part is open as dirty when a radioButton Selected

I am using Mdirtyable in my code. I want that when user chose a different radiobutton, the part will be dirty(*). There is a group of radiobutton on a part in my design. One of the radiobutton is default selected. The problem is that when the code…
eponymous
  • 2,090
  • 5
  • 23
  • 29
0
votes
1 answer

Eclipse/SWT: Rectangle taking up entire canvas

I am writing an Eclipse RCP-based application and am trying to draw a rectangle on top of a ViewPart. However, the rectangle seems to take up the whole screen even when specifiying the bounds. The following is my code. public void…
Ohanes Dadian
  • 625
  • 1
  • 9
  • 17
0
votes
0 answers

How to listen to lose focus event of a part in Eclipse E4 RCP?

I have multiple views in a perspective, these are shown as tabs. I want to catch the event when I switch from one Part to another (by clicking on the other parts tab). In other words I want to catch the event when a part looses focus. How can I do…
Jehan Zeb
  • 155
  • 12
0
votes
0 answers

Java SWT Clipboard feature for Copy/Paste if not working for multiple items belonging to the same data type

I am making use of SWT Clipboard for copying multiple items to the clipboard using the method setContents(Object[] data, Transfer[] dataTypes), where in the same method works well with more than one type of data having their respective Transfer…
0
votes
1 answer

How to open a messagedialog in a RAP application

I'm trying to open a messagedialog in a RAP application by using this code MessageDialog.openInformation(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(), "Test","Testtitle"); My problem is, that I can't get a proper shell…
Martin1979
  • 41
  • 3
0
votes
1 answer

Eclipse E4 RCP global error handling

My problem is the same as the one in this thread: "I want to set a custom error handler, which is called each time an unexpected error occurs. How can I achieve that?" How can I do this in E4? In E3 it can be achieved by overriding the…
Jehan Zeb
  • 155
  • 12
0
votes
1 answer

Eclipse RCP Spring Framework java.lang.ClassNotFoundException for classes

I'm working on an Eclipse RCP project, and after changing new Spring plugins and other plugins, I got a bunch of java.lang.ClassNotFoundException. The project compiled with no errors... What did I miss? Caused by: java.lang.ClassNotFoundException: …
Springgrass
  • 41
  • 1
  • 5