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

how to embed the Eclipse CSS Editor inside Eclipse MultiPageEditor

I want to embed the eclipse defualt CSS Editor inside a page of Eclipse MultiPage Editor. How to achieve the same.
Abhishek Choudhary
  • 8,255
  • 19
  • 69
  • 128
1
vote
2 answers

How do I apply styling to my custom intro page?

I made my own welcome intro page using org.eclipse.ui.intro and I'm able to show my welcome extended with other contributors. Now I'd like to decore my welcome with some css, and I have two question: 1) How can I apply predefined eclipse css (i.e…
Achille
  • 219
  • 2
  • 12
1
vote
1 answer

How to set recent working set list size limit in eclipse RCP?

I'm building an eclipse RCP using working sets. I programmatically add some working sets to my project explorer (CommonNavigator) and then add in recent working set list by IWorkingSetManager.addRecentWorkingSet. In javadoc, it says "The last…
yolgecad
  • 73
  • 1
  • 10
1
vote
0 answers

Client app distribution build with Maven Tycho & Eclipse RCP

Current situation: I am very new in developing on Eclipse Platform. I have old Eclipse RCP multi-module application (Java 6), I mavenized it (each module has its own pom.xml with dependencies) and I tried to integrate Maven Tycho (version 0.22.0)…
BatmanGirl
  • 23
  • 5
1
vote
0 answers

Unable to clear the table in RCP

I am new in RCP. I have created one table and using TableEditor for some columns for putting Label and Progress bar. But For some cases I want to clear the table. For textual content table.removeAll(); is working but its not clear the Label and…
Dum
  • 13
  • 3
1
vote
1 answer

Eclipse plugin fragment dependency

I have an Eclipse applications with some framents to test the plugin functionality. Now I need to develop some utility classes, to be used across fragmens, just for the sake of testing. So I need a plugin (or fragment) to be included ONLY in…
Gionata
  • 133
  • 11
1
vote
0 answers

SchemaTypeSystemImpl cannot be found by org.apache.poi.ooxml.schemas

I try to upgrade the xmlbeans from 2.6.0 to 3.1.0 and poi-ooxml-schemas 3.15 to 4.1.1. I have a target platform file where I add the update site for xmlbeans-3.1.0 and poi-ooxml-schemas-4.1.1. There are no compiling issues in the code but at runtime…
georgiana_e
  • 1,809
  • 10
  • 35
  • 54
1
vote
1 answer

drag and drop for images

I want to use image drag and drop for our application. I have got one sample application from the http://www.vogella.de/articles/EclipseDragAndDrop/article.html. It is very useful in fact. But instead of TextTransfer what could I use for transfer…
1
vote
2 answers

How can I view SWT Image while debugging?

I added a breakpoint on my SWT-based application, and when Eclipse stops at it during a debug session I want to view the image referenced by an Image variable. If I right click the variable and choose watch or inspect, all I see is what is returned…
Mario Marinato
  • 4,561
  • 3
  • 29
  • 49
1
vote
1 answer

Eclipse doesn't copy my native libs

I'm trying to build a plugin that contains some native libraries. The project has the standard maven layout but is currently not configured as a maven project for m2e. (I will do this after eclipse can build my plugin) I put my native libs under…
Marc-Christian Schulze
  • 3,154
  • 3
  • 35
  • 45
1
vote
1 answer

Eclipse : Is it possible to open one resource in two different editors as per requirement?

In my current project, there is a situation where we have one file let's say "File1.cfg" in project explorer. There is a default editor "Editor 1" registered using "*.editors" extension. Requirement Function: When a user double click on the…
1
vote
1 answer

How can I programatically list all the features in a running Eclipse instance

I'm want to write a simple dependency visualisation plugin for Eclipse. I've currently based it on the Eclipse PDE Incubator Dependency Project. However, I would like to group plugins into features to simplify the diagram. I have started by using…
Jeff James
  • 11
  • 1
1
vote
1 answer

eclipse rcp : how to use virtual table?

I just created a TableViewer with SWT.VIRTUAL, is this enough ? How can I check whether TableItem is lazily created ? I am using eclipse 3.6
CaiNiaoCoder
  • 3,269
  • 9
  • 52
  • 82
1
vote
3 answers

Can you embed Flash (SWF) in Eclipse-RCP apps

I have no background in Eclipse-RCP. My understanding is that a eclipse-rcp app is a rich client technology similar to Adobe Air. Is it possible to embed a swf flash movie in a panel inside a eclipse-rcp app? Can the flash talk via ExternalInterface…
dan
  • 5,664
  • 8
  • 45
  • 59
1
vote
1 answer

eclipse rcp : about dialog contribution

How can I let my plugin icon appear at here : Another question : how to write about text with format like above picture? As you can see, there are hyperlinks and line breaks, but in the product configuration only plain text is allowed.
CaiNiaoCoder
  • 3,269
  • 9
  • 52
  • 82
1 2 3
99
100