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
2 answers

Create our own property page for project explorer eclipse plugin

I have created a custom project in project explorer. I have various folders in the project explorer and also images in one of the folder. I want to create my own property page and want to customize the same on clicking any resource in the project…
1
vote
2 answers

Remove Install New Software from help menu (p2)

I have a question for a RCP project in Eclipse where is installed p2. I have the help menu with "install new software" and "check for updates" options and I have to remove the "install new software" option from the product. Can I do that? And if so,…
Tommaso Bicego
  • 113
  • 1
  • 15
1
vote
1 answer

contribution to main menu

How to determine which plugins are contributing to the main menu? Probably there is a problem with a project configuration and sometimes new elements are added to the main menu when I add plugins to the run configuration.
michael nesterenko
  • 14,222
  • 25
  • 114
  • 182
1
vote
0 answers

Spring Load Time Weaving in Eclipse RCP

I'm trying to use Spring's load-time-weaving capabilities with @Configurable within an Eclipse RCP application. I am using Spring OSGI Extender to load my application context.
Philipp Jardas
  • 3,222
  • 3
  • 29
  • 42
1
vote
1 answer

What benefits has Spring RCP (or another RCP framework worth mentioning) over Eclipse RCP?

In 2005 I built some smaller applications using eclipse rcp and I found this framework very handy. Now I am back at rich client development and need to decide in staying with eclipse rcp or switch to something more state of the art(?). Because I…
cenobit
  • 81
  • 7
1
vote
0 answers

Read Recently Opened Files and display in a custom Dialog

I am creating an RCP application where I need to read the list of Recently Opened Files and display it in a dialog. I have tried using IContributionItem reEdit = ContributionItemFactory.REOPEN_EDITORS.create(window); but the history attribute is…
1
vote
2 answers

How to enable autoscroll for a StyledText Component

I'm using StyledText component which behaves somewhat similar to the popular eclipse IDE console view, (which appends the log), but here, in my StyledText component the scroll-lock is enabled. I mean for each line appended to the StyledText, the…
srk
  • 4,857
  • 12
  • 65
  • 109
1
vote
1 answer

Eclipse setting editor location programmatically

I have an Eclipse RCP application in which I'm writing an editor which opens a palette to let user draw flows. Everything is working fine with editor itself. However I have problem with its default opening location in perspective layout. Although…
cacert
  • 2,677
  • 10
  • 33
  • 56
1
vote
2 answers

Show previous instance of RCP application

I had an rcp application which runs for only first run, when a user attempts to re-execute the application, second instance behaves as a client which encodes and sends its arguments over the socket to the first instance which acts as a server and…
srk
  • 4,857
  • 12
  • 65
  • 109
1
vote
2 answers

Eclipse rcp : How can the welcome page appear full screen everytime?

I want to fixed the workbench and appear the weclome page everytime full screen. But when I call the method layout.setfixed(true) in the Class Perspective the welcom page can't be full screen.
Glen Song
  • 11
  • 3
1
vote
2 answers

Eclipse Plugin: Opening A New Window From The WorkBench

I am new in developing Eclipse plugin and i have manage to do a lot of work. This is where i have got stuck. I have a view with a button. When a user cklicks on the button i want a new window to be opened(The window is a form with Text areas,…
Eddy Freeman
1
vote
2 answers

Launch eclipse wizard from junit test?

I am writing an eclipse 3.6 RCP application with various menus, navigators, views, wizards etc. Now I need to add a new wizard. But each time I would like to check how it looks I need to start the whole application, navigate to the menu that…
u123
  • 15,603
  • 58
  • 186
  • 303
1
vote
0 answers

Little example for nested wizards in eclipse rcp?

I would like to implement a nested wizards, for example: wizard A -> startWizard wizard A delegates to Wizard B or Wizard C (user input controls it) I see on the eclipse api a class called WizardSelectionPage, that should be correct. Unfortunately I…
1
vote
1 answer

add the same menu contribution to two registered context menus(in different views)

I have two views in my application.there are treeviewer in both the views on which i want to add context menus. I registered the context menues using getsite().registerCOntextMenu(menu,treeviewer); in both the views Now i added the menu…
umang
  • 11
  • 1
1
vote
2 answers

How to use LWJGL in an Eclipse (RCP) application?

I want to use LWJGL in an Eclipse RCP application, but either using the plug-in from http://lwjgl.org/update or manually placing the jars in the classpath and adding Bundle-NativeCode entries, my application hangs at startup after having…
thSoft
  • 21,755
  • 5
  • 88
  • 103