rcp

How do I remove icons from menu items in an Eclipse RCP-based application?

I am working on an Eclipse RCP-based application, and we have decided that we do not want any of the menu items to display icons next to the text. The problem we are seeing is that the standard actions like Undo, Redo, Cut, Copy, Paste, and so on all display the default icons for the corresponding actions. Is there any way to tell the ...

[Eclipse] Read remote properties

First of all, Hello everyone(/world) ! I am making an Eclipse RCP app' who needs to inspect some .properties located in some plugins who's Id I know at runtime. I'd like to know if there is an easy way to read them, for example I know that in my plugin org.anyname.myplugins.mypluginthatrocks I have a file named myawsomeproperties*.prop...

SWT Multiple Monitor Support on Solaris?

I am writing an application in Java using SWT. On our Solaris machines, we have multiple monitor setups, but they are treated in isolation by the operating system. This means I can't open the application and drag it to another monitor. The right-click context menu doesn't even allow me to change the monitor the application is displayed o...

Product build based on features on Eclipse RCP

I have the following problem. I have a product build that includes several features. I have a main, product feature and I want to add some of the embedded features from eclipse, basically the features org.eclipse.rcp org.eclipse.jdt org.eclipse.platform There is two places where I can add these features: I can add them to the produc...

Building a plugin with two source folders fails

I have an Eclipse Plug-in that contains two source folders: src/ src-gen/ The reason is that, as the name implies, the second folder is filled with the results of code generation. However, when I try an Eclipse PDE build, or even a single export of the plugin, the code in src/ that refers to generated classes will not compile. It s...

Why an Eclipse RCP product build can not find classes in org.eclipse.ui during headless build?

I have a product definition that includes one feature I wrote and the org.eclipse.feature. When I build this product from eclipse, it completes successfully. However, when I try to use the Headless build, the compilation process fails as it complains that it cannot find classes included in org.eclipse.ui. One of these classes, for exa...

.Net : main resources, tools and libraries, open source or not, to build entreprise level applications?

As a young professional in .Net, I noticed that there are plenty of .Net application blocks for build an entreprise level application. Still, I could not find a place where all these resources are gathered, as an entry point to .Net development for beginners or professional. Here is my question. Which application blocks do you use in y...

What is the preferred way to load a DLL on an Eclipse RCP plugin?

I have an Eclipse RCP plugin that requires a DLL. What is the recommended best practice to add the DLL reference to the MANIFEST? Where should the DLL be located, what is the recommended directory name? I have read conflicting practices. Some ask you to create a folder with the architecture and processor type, some ask to set some pla...

How to express inter project dependencies in Eclipse PDE

I am looking for the best practice of handling inter project dependencies between mixed project types where some of the projects are eclipse plug-in/OSGI bundle projects (an RCP application) and others are just plain old java projects (web services modules). Few of the eclipse plug-ins have dependencies on Java projects. My problem is t...

CheckboxCellEditor shows text and not a check box

I'm using the following org.eclipse.jface.viewers.CheckboxCellEditor.CheckboxCellEditor(Composite parent) I'm creating a table viewer with cellEditors and doing the following CellEditor[] editors = new CellEditor[columnNames.length]; editors[7] = new CheckboxCellEditor(table); I have a CellModifier that has the following public Ob...

Vertical ruler in RCP applications

Eclipse text editors has this nice vertical rulers at both sides where bookmarks and annotations are shown with little dots, so that you navigate real quick to the line. I've got to do something similar, but not with the text editor, - with some large list or a table. How would you go about it? Is there anything in eclipse RCP I can re-u...

Dynamic language switching in an Eclipse RCP application

I am working on an Eclipse RCP application with localization. A user should be able to change the language used in the application on the fly. A restart of the application should not take place during this language switch. It should also be possible to switch between languages written from left to right and languages written from right t...

Howto hide a preference page in an eclipse RCP

I have an eclipse rcp and want to hide the security and help prerence pages. How can I do that? ...

Graph Visualization in a Eclipse RCP aplication

I am working on an Eclipse RCP application which should display an internal hierarchical structure as a graph. The nodes of the graph should be positioned on different points of a background image but should offer drag support. The graph should be zoom-able possibly without resizing the nodes on the maps (layout zoom) while the backgroun...

SWT/JFace or Eclipse RCP?

Which are the reasons to choose the Eclipse Rich Client Platform as the base of my application, instead of just using SWT/JFace? ...

Why would exporting an eclipse RCP product hang?

I am building Mac and Win versions of an RCP product using Eclipse 3.5.1. I've installed the RCP delta pack and everything looks great. However, when I go to export, the progress bar gets stuck at "Publishing Metadata" (about 20% through the export process). It never makes any progress after that. Further, cancelling has no effect at all...

Using PDE build, p2 and AdvancedInstaller together

I am building an Eclipse RCP application with the command-line version of PDE build in Eclipse 3.5.1. Then I use AdvancedInstaller to create the installer for the RCP product. I think the context would be similar with InstallShield and similar packagers instead of AdvancedInstaller. If I incorporate p2 provisioning into my build, would ...

P2 headless update not working

I have taken the org.eclipse.equinox.p2.examples.rcp.prestartupdate project and adapted it for use in my RCP application. I then setup an update repository that gets updated as part of my nightly build. When I open my application it goes through the motions like it is updating - it finds the update site, generates an uninstall and inst...

Manually trigger the CellEditor in a RCP TableViewer

Hey folks, I'd like to comfort the user by automatically jump to the next cell in a tableviewer, when a previous editing is completed. The user needs to modify start- endtimes in a list of entries. I was wondering how am I supposed to manually (programatically) trigger the CellEditor for a specific cell. I haven't seen that before in Ec...

Adding title to window border for Eclipse RCP detached view

I am working on an Eclipse RCP project which has detachable views. I would like to be able to put some text on the window border which surrounds the view once it is detached. Does anyone have any experience with this? Development environment is Eclipse 3.4 on Windows. THANKS. ...