Questions tagged [eclipse-rcp]

For questions about the Eclipse Rich Client Platform which is a generic Java platform for running applications. It provides the basic blocks for building rich client application using the OSGi framework.

The characteristics of Eclipse RCP include:

  • Components - Eclipse includes a robust component model. These loosely coupled components are usually called plug-ins. The component model is based on the OSGi standard.

  • Middleware and infrastructure - On top of the component model is a set of frameworks and facilities that make the job of writing client applications much easier.

  • Native user experience - The Eclipse Standard Widget Toolkit (SWT) provides a graphical user interface (GUI) toolkit for java that allows efficient and portable access to the native UI facilities of the operating system (OS).

  • Portability - Eclipse provides support for heterogeneous OSs and client environments, ranging from traditional PCs, to thinner devices such as tablets and kiosks, down to mobile devices and embedded smart phones.

  • Intelligent install and update - Eclipse's component framework enables plug-ins to be deployed and updated using any number of mechanisms: HTTP, Java Web Start, repositories, or simple file copying.

  • Component libraries - The Eclipse community has produced plug-ins for building pluggable UIs, managing Help content, install and update support, text editing, consoles, product introductions, graphical editing frameworks, modeling frameworks, reporting, data manipulation, and many more.

The Eclipse IDE itself is an Eclipse RCP.

Documentation

5588 questions
1
vote
1 answer

Using the Selection service on something that is *not* a JFace view

I am building an image Editor as an Eclipse plugin. I would like to use the Properties view to view & edit properties of the model underneath the image. Accordingly I am calling .. getSite().setSelectionProvider( this ); .. within…
Martin Cowie
  • 2,788
  • 7
  • 38
  • 74
1
vote
1 answer

How can I add an AdminPermission to my plugin?

I've created a RCP application with a plugin that requires to invoke the method Bundle.findEntries. In debugging mode (i.e., when I launch my app from eclipse) everything works correctly, but when I run the "real" application (i.e., I export the RCP…
Matteo
  • 1,367
  • 7
  • 25
1
vote
1 answer

Configure FTP-Proxy in Eclipse RCP Application

my update site is only via ftp reachable and the customer needs to set a proxy. But i can't select a FTP-Proxy in the preference page (General -> Network Connections). How can i add the ftp schema? There are no buttons like 'add proxy'
Absurd-Mind
  • 7,884
  • 5
  • 35
  • 47
1
vote
2 answers

Refresh ViewPart after maximize

How can I refresh my ViewPart on maximizing? Which listener is responsible for that?
Nawa
  • 2,058
  • 8
  • 26
  • 48
1
vote
1 answer

eclipse rcp : layout a custom compound widget

I am trying to write a custom widget: package amarsoft.rcp.base.widgets; import org.eclipse.swt.SWT; import org.eclipse.swt.events.ControlAdapter; import org.eclipse.swt.events.ControlEvent; import org.eclipse.swt.graphics.Point; import…
CaiNiaoCoder
  • 3,269
  • 9
  • 52
  • 82
1
vote
1 answer

Reading program arguments in a RCP application?

I have created an eclipse application and a product configuration. In the product configuration on the "Launching" tab its possible to specify "Program arguments" and "VM Arguments". Is it possible to access these arguments from the Application…
u123
  • 15,603
  • 58
  • 186
  • 303
1
vote
1 answer

How to know which row has been selected in a TableViewer?

I'm using Viewer Framework in my Eclipse RCP Application, i was stuck at a situation wherein i need to get(know which row has been selected in the UI) the selected row from a TableViewer. In UI user can be able to select a row.Below is my…
srk
  • 4,857
  • 12
  • 65
  • 109
1
vote
1 answer

Localized DateTime Control for an SWT application

I'm using Eclipse RCP and I'm looking for a DateTime Control which can be localized. Before I write my own I wish to know whethere there are some ready-to-use alternatives. Although a Calendar object can be localized according to this bug this is…
Adam Arold
  • 29,285
  • 22
  • 112
  • 207
1
vote
0 answers

Opening duplicate instances of same view next to each other on an Eclipse RCP application does not work as expected

I have configured my code to open multiple instances of the same view but the secondary view opens in a different tab in a different location in the same perspective but I would like the duplicate view instances to open next to the original view…
Sangli
  • 373
  • 4
  • 20
1
vote
0 answers

Open multiple instances of same view next to each other on an Eclipse RCP application

I have configured my code to open multiple instances of the same view but the secondary view opens in a different tab in a different location in the same perspective but I would like the duplicate view instances to open next to the original view…
Sangli
  • 373
  • 4
  • 20
1
vote
2 answers

Convert IFileStore to IPath in Eclipse RCP

Given an IFileStore and knowledge that it represents a file in the local file system, how can it be converted to the IPath?
Alexey Romanov
  • 167,066
  • 35
  • 309
  • 487
1
vote
1 answer

Eclipse RCP using Nebula - Action taking snapshots looping over several editor's pages

I have a Java - Eclipse RCP application. The Editor has several pages, some of which contain nebula.XYGraph graphs. The toolbar has an Action, which loops over these pages to take a snapshot of each graph. In the loop, I retrieve the page, use…
Felix
  • 31
  • 2
1
vote
0 answers

ECLIPSE RCP: Extend Generic Editor to add custom background image to the editor

Following Vogella article Developing a customer text editor for the Eclipse IDE in which is defined a series of extension points to contribute to the Generic Editor, I need to contribute to Generic Editor to add a custom background image (vertical…
J Robes
  • 467
  • 1
  • 6
  • 19
1
vote
1 answer

Make a customized widget observable?

I had create a simple keywords highlighting editor, it just wrap a StyledText widget: public class SQLSegmentEditor extends Composite { private StyledText st; public SQLSegmentEditor(Composite parent) { super(parent, SWT.NONE); …
CaiNiaoCoder
  • 3,269
  • 9
  • 52
  • 82
1
vote
0 answers

How to prevent RCP exit failure?

When I was writing a program yesterday, I failed to exit Eclipse. The UI is closed, but the console is still running (eclipsec.exe). This kind of problem is not common. I checked the error log and found no reason. How can I avoid this kind of…
user18256711