1
vote
1answer
16 views

SWT — GC operations not propagated to viewport on OS X

I'm developing an Eclipse plug-in on OS X Lion. It has a view with a live histogram and a slider beside it, which regulates the quantity visualized by the histogram. In technical detail, I've got a ...
0
votes
2answers
21 views

java.lang.NoClassDefFoundError: Fast way to add lots of classpath variables at once

I'm getting tons of errors when I try to run a baby SWT/JFace application. EEach error disappears - and is replaced by a new one - as soon as I go into the BuildPath and add a Variable to satisfy what ...
0
votes
0answers
69 views

values not dispalyed on chart in ChartComposite(SWT)

I am currently working on JfreeChart to produce my data as bargraphs.But when i put my code in a shell(SWT).The values are not being displayed on Axis.I am using Chart Composite and JfreeChart Version ...
1
vote
1answer
28 views

Display a SWT Browser programmatically from plugin

I am trying to open the internal browser of Eclipse (org.eclipse.swt.browser.Browser) by calling it from an Eclipse plugin's code. So far, I could actually instantiate one and I can "open" a URL (I ...
0
votes
2answers
43 views

How to write a SWT based GUI in Eclipse plug-in?

I learned how to write a SWT based application following this tutorial. However, I don't know how to move forward to a GUI eclipse plug-in. The plug-in I am writing is right-clicking on any ...
0
votes
1answer
32 views

Problems occurred when invoking code from plug-in: “org.eclipse.jface” - Export Deployable Eclipse plug-in

I'm building an eclipse plug-in. Execution env is JavaSE-1.6 I can deploy the plug-in without any errors, but when the plug-in runs there is an error coming out of it: "Problems occurred when ...
0
votes
1answer
24 views

JFace TreeViewer, how to notify the tree, when some empty folder was popluted

I build a TreeViewer with a tree structure advisor like this: public class ExplorerTreeStructureAdvisor extends TreeStructureAdvisor { @Override public Object getParent(Object element) { ...
0
votes
0answers
39 views

Unable to use WindowBuilder in Eclipse for Java Devs

Im sure this is an easy question but I have searched and Im unable to find a solution. What Im trying to do is access the WindowBuilder utility in design view to edit the GUI of an app. When I switch ...
0
votes
1answer
96 views

eclipse rcp:how to pass selection into handler

I have a view part in my ecp application, it just contains a TreeViewer. each tree node has a action provider which will contribute to the context menu when the node is right clicked: MenuManager ...
0
votes
1answer
53 views

Is there any templating engine for standalone application(SWT/Swing etc) just like Velocity etc

As title says, is there any UI templating engine available for standalone applications (like SWT, Swing) just like we have apache velocity or freemaker available for web application? Currently we are ...
0
votes
0answers
63 views

Window Builder Pro - Generate event handlers in separate class?

After hand writing lot of complex UI for our SWT application (basically a eclipse plugin), I found out this excellent tool (Window Builder Pro) and it reduces our lot of hand writing UI effort. So I ...
0
votes
2answers
82 views

Widgets doesn't show up while launching Eclipse RCP Application

I'm developing a eclipase based plugin where i've created an application (using SWT). There are two classes viz; RunAction.java which consists of run() , dispose() and init() methods and Sample.java ...
0
votes
1answer
58 views

SWT Browser widget with Eclipse 4 RCP application

Please help to get started with Eclipse 4 RCP. Set task is to create simple application with imbedded browser (using SWT Browser widget) This Lars Vogel's Eclipse 4 RCP tutorial is used. Created ...
0
votes
3answers
158 views

Eclipse RCP - How to create and open View programtically?

I want to open a View which includes table when operation is executed. I can open view by viewId by that code: display.asyncExec(new Runnable(){ public void run() { ...
1
vote
1answer
110 views

How to create controls dynamically in JFace Wizard

I have a jFace wizard, I am using this to create a new project type eclipse plugin. As you can see from image below, I have one treeviewer on left side, and a SWT group on right side. What I want is ...
0
votes
0answers
130 views

Using WebKit for SWT Browser occurs error on x64 OS

My question is a bit like unexplored's. My enviroment: OS: windows server 2008 r2 (x64) Safari installed 5.1.7 32 bit SWT (eclipse SDK 3.7.2 * 32) 32 bit jvm (32) Add ...
0
votes
1answer
164 views

create swt.browser of mozilla with xulrunner occurs error

I use org.eclipse.swt.browser of mozilla with xulrunner to load web content,but i get error: Unhandled event loop exception XPCOM error -2147467261 My develop enviroment: OS: win7 * 32bit Eclipse : ...
0
votes
1answer
55 views

Virtual TableViewer sorting causes selection problems

Our application is an RCP appliction and needs to display table of several thousands items. For this reason, we're using SWT.VIRTUAL in our TableViewer. That works pretty well except for selection. ...
0
votes
1answer
44 views

Trying to create basic JFace application, not sure what issue is

I tried to add a composite element underneath the shell element, and now the button widgets are not being displayed. Am I missing something? import org.eclipse.swt.SWT; import ...
1
vote
2answers
93 views

Designing an mp3 equalizer in swt

Hi guys im building an mp3 application which has a equalizer.what i wanted to know is are there any eclipse project of equalizer and audio widgets in swt.?
1
vote
0answers
53 views

Setting up Window tester pro linux. SWT error

High, I have set up Google Window Tester on Open Suse Linux x64 distro and I get this error when I run the my Junit plugin test. Its RCP plugin application. Caused by: java.lang.RuntimeException: ...
0
votes
1answer
98 views

Extending or increasing horizontal scrollbar width

I used the below code to combine two canvas. public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setLayout(new FillLayout()); ...
1
vote
0answers
117 views

How enable and disable buttons using DataBinding in SWT

I'm using data binding for synchronizing b/w two button. If one is enable then other should be disable or vise-versa. In my code at starting time it works fine but when I'm changing button2 to disable ...
1
vote
0answers
107 views

Eclipse RCP Plugin application crashes / freezes in windows 7

Eclipse RCP plugin application which has a mix of SWT and swing/awt windows getting crashed randomly in Windows 7 64 bit. Especially when i open SWING/awt dialogs. I cant able to debug even when i use ...
-1
votes
1answer
92 views

Can any one explain how the control flow in this following Treeviewer code? [closed]

The program works fine but I am not able to see how it all links together. I mean, I don't call the methods in the class extended by Icontent provider or Ilabel Provider; how is it getting called? I ...
1
vote
0answers
75 views

Automate OpenOffice through SWT using OLEAutomation [closed]

How to automate OpenOffice through SWT using OLEAutomation. Note: Currently I have got succeeded to open the "OpenOffice" but for further processing it is asking for UNO service which i could not ...
0
votes
2answers
114 views

How to add an GUI component like a Button in a Editor?

im a beginner in RCP just started building RCP application today.i want to a GUI component like a Button ,comboBox,Checkbox in a Editor .I've managed to add a editor in Extensions and create a class ...
0
votes
2answers
78 views

Adding a composite to a table in Eclipse view

I wish to add a composite in a table below the table item when the user selects the table item. Is this possible. Basically it will be more details about the item.
0
votes
0answers
135 views

Modifying children in a org.eclipse.ui.forms.widgets.Section causes exception

I have a problem that I am facing with using org.eclipse.ui.forms.widgets.Section, that if I add children to it and modify the children by enabling them or setting text on them I get an exception. I ...
2
votes
0answers
69 views

How to avoid physical path in swt filedialog

I'm writing a plugin for Eclipse. The plugin is intended to run on Linux. In one of the wizard, we are using FileDialog with setFilterPath("/xx/yy/zz"); When I run the plugin, the file browser goes to ...
1
vote
1answer
132 views

Force Eclipse (Helios) to use a newer version of SWT at application runtime

I'm developing an RCP project using Eclipse-Helios. The version of SWT that is installed (in the plugins directory) is [org.eclipse.swt-win32-3.6.2, & org.eclipse.swt.jar] I require new API ...
0
votes
2answers
95 views

RCP for creating standalone application, later converted to plugin

I am developing an standalone GUI for our in-house tool. After it has matured enough, it is supposed to be integrated into Eclipse as a plugin. I am a newcomer to Java world. I have read about RCP. ...
2
votes
2answers
142 views

building the interface of an eclipse plugin with JavaFX or HTML5?

I am looking for an alternative to swt for building the interface of an Eclipse plugin I want to develop. Is it possible to build the interface of the plugin with JavaFX or HTML5 instead of swt ?. I ...
-2
votes
1answer
342 views

How to implement a simple master-detail in a JFace WizardPage

I want to implement a simple master-detail scenario in Jface WizardPage: The WizardPage will have one table with some names, upon selecting a row in the table the bottom part of the WizardPage ...
1
vote
2answers
60 views

Integrate Application With VC++ application

I have an eclipse application that creates some file and then calls upon a second external application developed in VC++ with that file as input. Is there any way by which i can integrate the VC++ ...
0
votes
2answers
277 views

What is the appropriate listener to use for Eclipse SWT Text?

I have a class of this type org.eclipse.swt.widgets.Text. It lives inside of an eclipse plugin I am developing. I want to handle the event where the user selects text from within this field. That ...
1
vote
1answer
97 views

Eclipse plug-in: bind data to a list and refresh view

I am working on an Eclipse plugin-project where I have multiple services which have to register themselves to the master-project (stored in a list). I have one view where I want to list each service ...
3
votes
1answer
403 views

How to make SWT/JFace dialogs which show similar behaviour(layouts) under all window resolutions

The JFace Dialogs I have created show difference in layouts under different resolutions.How to create dialog in JFace or SWT which show same layout under all resolutions just like the dialogs used in ...
1
vote
1answer
105 views

Javascript Does not Recognize SWT BrowserFunction

I am trying to embed html&javascript file to an Eclipse plug-in using SWT Browser. I want to call a function declared in Java in Javascript I loaded using BrowserFunction, but it seems Javascript ...
0
votes
1answer
37 views

Java Table weirdness on Mac

I am developing an Eclipse plugin that uses Table to print out to a view. I tested the system on various Eclipse and Ubuntu versions and the values in the table are visible. i.e. rows fit the content. ...
2
votes
2answers
263 views

Eclipse XWT in production?

Have anybody used Eclipse XWT in non-trivial (e.g. something more complex then tutorial) environment? I don't think Eclipse4 uses it by itself. Does it really have any advantages over SWT?
0
votes
0answers
123 views

SWT Browser Does not Load Javascript

I've been trying to create a Eclipse plug-in view that shows a simple HTML file with Javascript using SWT browser. However, it only loads HTML without executing Javascript. My friend told me it ...
0
votes
0answers
131 views

Mouse Event in SWT Browser

I have embedded SWT Browser inside Eclipse view.Is it possible to remove mouse event from Browser.i.e. If i created a html file and showing it in SWT Browser,i just want to show the content of html ...
1
vote
1answer
84 views

Custom widget is not showing up in my eclipse 4 application

I am trying to use a widget offered by Opal. I am doing the following: @PostConstruct public void createControls(Composite parent){ System.out.println("PROP3"); parent.setLayout(new ...
1
vote
1answer
59 views

Eclipse show view wizard says Use f2 to display the description… but where to set the description for the view

In Eclipse Window>Show View, in the bottom we can see a text saying "use f2 to display the description for a selected view" now if we select any view and press f2, it always show "no description ...
2
votes
2answers
176 views

How to get bean definitions in Eclipse SWT Wizard?

I am developing a SWT component in which there is a child component through which user can view the Spring reference and can change the Spring bean definition, property etc.. I am facing 2 issues: ...
0
votes
1answer
285 views

popup dynamic actions disable actions [closed]

I wrote some code for disabling the popup menu actions when we choose the particulation action.Those actions are coming dynamically. But what happens it is disabling the actions when we click the ...
2
votes
0answers
76 views

Speeding Visio Automation

I am using SWT Ole Automation to export my UML to visio.But the problem is the process of Export is very slow and it slows down as the number of visio pages increase.How can i speed up the export to ...
0
votes
1answer
104 views

ViewPart comes up blank

I have a view, this view is initialized but when it could comes up totally blank. As I haven't worked with ViewParts that much are there any obvious things to look for? I'm thinking of the ...
0
votes
2answers
224 views

Using SWT inside eclipse plugin

I'm trying to use SWT to create dialogs inside an eclipse plugin. I can create a Shell and a Display object and the code compiles with no problems but I can not see any kind of dialogs when I'm ...

1 2 3 4