eclipse-rcp

what should I use eclipse rcp or eclipse scout?

前提是你 提交于 2019-12-03 07:54:26
问题 i am planning to develop desktop application using java code, and wanted to use any ready made framework and then i got know about eclipse RCP / eclipse scout but i am in doubt that which framework should i use whether eclipse rcp or eclipse scout ? could somebody suggest me please. 回答1: first of all I'd like to add another option: Eclipse Riena. Eclipse Riena is comparable to Eclipse Scout as it is based on Eclipse RCP and provides some useful abstractions. You should have a look at it. But

Anyone have experience in building an Eclipse RCP application with Gradle?

夙愿已清 提交于 2019-12-03 07:25:16
问题 Does anyone have experience in building an application based on Eclipse RCP with Gradle? I'd like especially to know: How reasonable is it to build Eclipse RCP plugins and products with Gradle? Are there any Gradle plugins to achieve this task (like the Tycho plugin for Maven)? Do you know any tutorials or articles describing such an approach? 回答1: Questions is three years old, nevertheless... Here is the solution: https://github.com/akhikhl/wuff 回答2: there is a pdePlugin available for Gradle

How to create an Eclipse RCP application re-using some “Eclipse IDE plugins”?

☆樱花仙子☆ 提交于 2019-12-03 07:09:17
How can I create a RCP application, which looks exactly like the Eclipse IDE with all menus, views, dialogs...? Here is one example: http://richclientplatform.blogspot.com/2007/12/oil-and-gas-industry-using-eclipse.html I followed Lars Vogel's tutorial to create a simple RCP application: http://www.vogella.de/articles/EclipseRCP/article.html . ... what are the next steps? The ide bundle provides you with classes and extension points that allow you to use the workspace metaphor but it does not include the extensions that add all the functionality that you would see in the Eclipse IDE. Since

How can I use a local directory as target platform for a Tycho build?

孤街醉人 提交于 2019-12-03 06:04:55
问题 I want to build an RCP-Application with a target platform which is a directory with Maven/Tycho. Now I have some troubles that the dependencies could not be resolved. Internal error: java.lang.RuntimeException: "No solution found because the problem is unsatisfiable.": ["Unable to satisfy dependency from de.test.prototype.main 1.0.0.qualifier to bundle org.eclipse.ui 0.0.0.", "Unable to satisfy dependency from de.test.prototype.main 1.0.0.qualifier to bundle org.eclipse.core.runtime 0.0.0.",

Where to store “global” data in Eclipse RCP Application?

和自甴很熟 提交于 2019-12-03 05:04:18
I'm a beginner with Eclipse RCP and I'm trying to build an application for myself to give it a go. I'm confused about how one actually goes about handling model objects. None of the examples I can find deal with the problem I'm having, so I suspect I'm going about it the wrong way. Say I need to initialise the application with a class that holds authenticated user info. I used my WorkbenchWindowAdvisor (wrong place?) to perform some initialisation (e.g. authentication) to decide what view to show. Once that's done, a view is shown. Now, that view also needs access to the user info I had

Java 7 update 45 broke my Web Start SWT application

半腔热情 提交于 2019-12-03 04:56:07
I maintain an Eclipse RCP application launched with WebStart. Java 7 u45 made some security changes, and now my application crashes on startup. I've added to the manifest: Permissions: all-permissions Codebase: * Trusted-Library: true This removed all of the warning messages from the Control Panel. But I still have a classloader issue when trying to load my IApplication implemenentation, probably the first of my classes to load. This is new to update 45. I have experienced the same issue and managed to solve it by doing following: In all manifest files (for each JAR in your RCP project) add

How to use IntelliJ IDEA for Eclipse plugin development?

老子叫甜甜 提交于 2019-12-03 04:04:55
问题 I have to develop a plugin for Eclipse but I prefer IntelliJ IDEA as IDE. Is it possible to configure IDEA for Eclipse plugin development? 回答1: It should be possible by using Eclipse Tycho. You'll be using maven and that works perfectly with IntellIj. Tycho is focused on a Maven-centric, manifest-first approach to building Eclipse plug-ins, features, update sites, RCP applications and OSGi bundles. Tycho is a set of Maven plugins and extensions for building Eclipse plugins and OSGi bundles

How to create new Eclipse RCP project using Maven?

為{幸葍}努か 提交于 2019-12-03 03:57:06
How to create new Eclipse RCP project using Maven ( preferably m2eclipse )? I read that there's plug-in for Maven that have idea about Eclipse. ( Maven Eclipse Plugin ) And then it looks like I need to find some Maven Archetype to create Eclipse RCP project, but I could not. At this point I am in doubt if I go right way. I just want to use maven dependencies resolution and other features in my RCP application development. P.S. I found that it is possible to "Enable Dependency Management" via m2eclipse. The other option is to make 2 project: maven project and Eclipse RCP project that will

Learning Eclipse RCP and SWT/JFace

依然范特西╮ 提交于 2019-12-03 03:41:23
I am new to to Eclipse RCP and SWT/JFace. I intend to purchase the Second Edition of the well known Eclipse Rich Client Platform book by Jeff McAffer, Jean-Michel Lemieux, Chris Aniszczyk. I wish to know from people who have read any of the editions of the book whether the book serves as a good introduction to both the topics (RCP and SWT/JFace)? Or would I need separate reading material for SWT/JFace? I read the first edition of the book in 2007 when I started a project with Eclipse RCP development. It was a really useful introduction on how to build RCP applications and what concepts are

Eclipse look & feel customization

让人想犯罪 __ 提交于 2019-12-03 03:38:56
I need to customize the look & feel of my RCP application. I took a look at Eclipse Presentation API and I suppose it allows to customize everything in workbench except controls. So is there any solution to customize controls? I made some research work and implemented some ad-hoc SWT cunstomization using control canvas drawning. May be there are better solutions? In Swing you can use Synth theme. It would be great if some 'skin' framework exists for SWT. One way of customizing an RCP app is by using a plugin_customization.ini file. Like this: Create a new file called "plugin_customization.ini"