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 place a gif image in Label of a view in RCP application

I have a Lable(org.eclipse.swt.widgets.Label) in a view for which I've set an image which is a gif image,named ajax.gif using label.setImage(); In this case image is shown without animation, is there a way do this(show animated gif)?
srk
  • 4,857
  • 12
  • 65
  • 109
1
vote
2 answers

JFreeChart: Add and sync a srollbar when zooming a chart (Eclipse plugin / SWT)

I am using JFreeChart library to plot something in an Eclipse view and currently my code for view initialization looks as follows: @Override public void createPartControl(Composite parent) { JFreeChart chart = null; // Created via different…
unexplored
  • 1,414
  • 3
  • 18
  • 37
1
vote
2 answers

RCP/SWT/JFace ProgressBar inside Login dialog

I want to show a ProgressBar inside a normal jface Dialog at the start of an Eclipse RCP App. I have a Login dialog which is shown at the start of the Application, before the Workbench is created: LoginDialog loginDialog = new…
Lori
  • 562
  • 5
  • 24
1
vote
3 answers

Add Package explorer in RCP-Application result in loosing some icon

In my eclispe rcp application I added a package explorer adding org.eclipse.jdt.ui When I use my rcp-app, as I create a new Project by "New Project Wizard" to add a "General Project", the project is correctely created, but the corresponding icon…
picciopiccio
  • 309
  • 1
  • 4
  • 13
1
vote
2 answers

CDT: How can I analyze the AST of a c/c++ file which are not linked to some project in an Eclipse workspace

In my source code analysis Eclipse RCP project, I want to getAST to analyze the AST of some c/c++ files, which is neither a source file of a project within an eclipse workspace, nor a link resources of a project within an eclipse workspace.…
Yi.
  • 515
  • 1
  • 7
  • 19
1
vote
1 answer

Designing a RCP-based application using the MVP pattern

I am about to start the development of a medium-sized CRUD RCP-based application and I intend to use the MVP (model view presenter) pattern. I understand that the main difference between the MVP and the MVC is that the presenter updates the view…
balteo
  • 23,602
  • 63
  • 219
  • 412
1
vote
1 answer

Using Spring 3.x AnnotationConfigApplicationContext in Eclipse RCP

I have a server based component wired up using Spring. I have a client interface that also uses Spring to connect to the server. I need to connect to the server from an Eclipse RCP application. I have included the required spring libraries in my…
1
vote
3 answers

Eclipse RCP Buildtool

I want to automate the Build Process of an existing RCP application with an own target platform. Now I can't decide between Ant and Maven ore maybe there is a better tool?! The tool should be easy to set up, and should run JUnit and SWTBot…
Orri
  • 920
  • 1
  • 8
  • 20
1
vote
1 answer

Keybindings on a per-perspective basis in Eclipse RCP

I have an Eclipse RCP application which uses some bindings from org.eclipse.ui.defaultAcceleratorConfiguration in addition to its own keybindigs, which are defined through the extension org.eclipse.ui.binding. I defined my own binding scheme and set…
Kristóf Marussy
  • 1,202
  • 8
  • 18
1
vote
0 answers

Correct way to handle copy/paste from a View into a GraphicalEditor

We're developing an application in which we handle local copy/pastes within the diagram by using the extension point org.eclipse.gmf.runtime.emf.clipboard.core.clipboardSupport Copy/Paste events of resources in views are handled using a handler with…
Protostome
  • 5,569
  • 5
  • 30
  • 45
1
vote
1 answer

Has Eclipse RAP a standard API

this question might sound a little bit weired... But I will try to explain: I got an Android App, that makes calls against a RAP-Build Website (to that I only have access via Webbrowser). Until now I am sending pure HTTP Requests for example: …
Mark
  • 7,507
  • 12
  • 52
  • 88
1
vote
1 answer

XML or HTML based UI for Java Desktop Application

I am working on Java Desktop Application. I have .NET background and have worked heavily with XAML/WPF technology. Coming to my question, is there any framework for Java which allows me to create UI for the application using HTML or XML. I wouldnt…
Naveen
  • 1,067
  • 2
  • 14
  • 36
1
vote
1 answer

Adding XML Catalog contributions programmatically

How can I add new entries to Eclipse's XML Catalog programmatically (instead of using org.eclipse.wst.xml.core.catalogContributions extension point)?
Alexey Romanov
  • 167,066
  • 35
  • 309
  • 487
1
vote
1 answer

Is there a hover Event for a table row in a TableViewer

i have a JFace table-viewer, which consists of large number of rows, i thought that it would be better if there is a short description for each row,as a workaround i was trying to implement doubleclick listner but that's not apt to my need,i don't…
srk
  • 4,857
  • 12
  • 65
  • 109
1
vote
1 answer

Activating/Creating/Showing a ViewPart from an internal method

Is there an easier way to do this (retaining the ability to use VIEW_VISIBLE, VIEW_ACTIVATE, and VIEW_CREATE)? public class MyView extends ViewPart { ... public void myMethod() { try { getSite().getPage().showView(ID,…
Ethan Reesor
  • 2,090
  • 1
  • 23
  • 40