0
votes
1answer
12 views

How to dynamically create an SWT Text based on a combo selection

I have a Combo and a text widget in my dialog. When the dialog is initially loaded i only want the combo to be present , but based on a combo selection i want the Text to be displayed. Here is the ...
0
votes
0answers
12 views

JFace -SWT How to make TitleAreaDialog similaire to Eclipse one

I would design TitleAreaDialog similar to those Eclipse but without sucess, below there is two screenshot, Eclipse form and my own form, i have problem to get the top and bottom separator, if you ...
0
votes
0answers
23 views

Enable/Disable an SWT Text based on a combo selection

I have a Text and a combo widgets and i have a selection listener for combo : class MyDialog extends org.eclipse.jface.dialogs.Dialog { private Text text; private Combo combo; public void ...
0
votes
1answer
24 views

Open Class extended from ViewPart in another

I'm writing a program in Java in eclipse. I have two classes which extend from the super class ViewPart. Now I want to open only one of the classes automatically (that means when I run the program) ...
0
votes
1answer
21 views

Adding a button to a RCP application

I want to add a button to a RCP client. The window needs to display my barChart as well as 3 buttons. When i add the line: panel.add(button); it returns an error: ...
1
vote
0answers
26 views

push button on the same composite of radio group is getting focus for arrow keys

Push button with a group of radio buttons on the same composite getting focus for arrow keys which is supposed to be used for selecting an option from radio group. can we prevent this for PUSH button ...
0
votes
0answers
72 views
+50

Ctrl+X working but Ctrl+C not working using Text SWT

Our application uses org.eclipse.swt.widgets.Text as a textfield. I went through this How to restore default keybindings (Ctrl+A, Ctrl+C, etc) for widgets in SWT? but strangely without attaching ...
0
votes
0answers
15 views

SWT NullPointerExceptions on add row with yql data

I have made a simple app that takes a yahoo finance url that points to csv that gets read and stored in a class. I found this class from here http://java.sys-con.com/node/39248. Then I made a SWT UI ...
1
vote
1answer
33 views

SWT GridLayout automatic column count

I'm using a SWT GridLayout for displaying different images in, such a wonder - a Grid. Now my problem is, that the GridLayout has always a fixed column count, lets say 5. Is there any way to make the ...
0
votes
0answers
20 views

Automatically add new element to JFace ComboBoxViewerCellEditor

I've got a JFace ComboBoxViewerCellEditor that uses a List of Strings as content: ComboBoxViewerCellEditor editor = new ComboBoxViewerCellEditor(parent, SWT.DROP_DOWN); editor.setContentProvider(new ...
0
votes
0answers
18 views

WindowBuilderPro- How to connect to Database?

I am going to use WindowBuilderPro with Eclipse-Helios for the very first time. I searched and read a lot about application building with WindowbuilderPro but I couldn't find any thing about Database ...
1
vote
0answers
92 views

Deselect all SWT radio buttons of a group

I have a couple of SWT ToolItems with style SWT.RADIO in a tool bar. I would like to deselect all of them programmatically using toolItem.setSelection(false), but it is not possible. The ToolItem ...
0
votes
1answer
74 views

How to get exactly Eclipse Editor kind of Tool Tip in RCP/SWT Table cell

I want to get Exactly eclipse editor kind highly customized tooltip like below- I used eclipse provided snippets of customized Tooltips but none of them were so highly improvised performance and ...
3
votes
2answers
60 views

Eclipse runs out of handles

I am working using Eclipse Juno Version: 4.2.2 , but frequently I am facing a problem Problem 1. And After clicking ok or cross button another screen is appearing. Problem 2. If I click no ...
0
votes
0answers
17 views

FilteredTree refresh for big Trees

Is there a Solution to get the SearchField in the Eclipse FilteredTree more responsible ? I thought of the possibility tho have seperate Jobs for the Filter and the FilteredTree so you can Type as ...
-3
votes
0answers
30 views

Implementing Eclipse Plugin functionality directly in Java class - not in Eclipse [closed]

Eclipse provides an extension point org.eclipse.compare.contentMergeViewers that allows the Java Source Compare feature to be modified. I would like to implement my own Java Source Compare, but ...
0
votes
2answers
22 views

Properties editor Ui to use in swt/jface application

I am currently working on a project where i have a need to integrate/build a properties editor (like Jboss tools properties editor open in eclipse for editing hibernate configuration files) in my ...
1
vote
0answers
89 views

Defining custom widget style using SWT's style property

Each Composite (View) in SWT can be specified with a set of predefined SWT styles. I want to create a custom set of widgets and want to reuse style property for custom styles supported by these ...
0
votes
2answers
28 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 ...
1
vote
1answer
43 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
1answer
151 views

JGraph in an eclipse plugin

does anyone knows whether I can use JGraph in an eclipse plugin to draw some graphs? I read about that JGraph is for Swing and Eclipse plugins are in SWT, is there a problem? Cheers, Simon
3
votes
3answers
124 views

Layouting the parent of a parent of a parent

We have a tool, that has a GUI which contains multiple Sections. In these sections, we have Expandable Composites which are not expanded by default. When we try to expand these composites, the + ...
0
votes
0answers
41 views

Eclipse view scroll

I have implemented an Eclipse view. The problem is that when the content is taller than the view height the bottom is depicted and you always have to scroll it up. I'd like to change it ...
0
votes
0answers
62 views

Glitch when updating Eclipse viewpart

I am implementing an Eclipse view which embeds another Composite. When a selection change happens in the current editor I succesfully update the view. The problem is that when the view is repainted ...
0
votes
1answer
35 views

SWT lining up ICON_WARNING with Label

I want to add a Composite to Eclipse that appears when a certain checkbox is checked. The composite will be comprised of 2 parts: a WARNING_ICON and a label with some text. I can't seem to get the ...
0
votes
1answer
53 views

Eclipse Juno says SWT not installed, but Available Software panel says it is

Trying to do some development with SWT, but am unable too as it keeps saying the SWT package is not installed. See following screenshot However when I go to Help->Install New ...
0
votes
2answers
90 views

How to select an individual cell in a SWT Tree with a TreeCursor

First I was surprised that TreeCursor.setSelection(TreeItem row, int column) didn't select anything. Then I looked into the source of this method and found that they call Tree.indexOf(). Of course it ...
1
vote
0answers
69 views

Disable spell check in SWT Browser widget

I'm working on an Eclipse based application in which we use a Browser widget. When typing text in this widget, a spell check is executed. We would like to deactivate it. Is it possible ?
0
votes
0answers
41 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 ...
1
vote
0answers
87 views

Eclipse Docking Windows implementation: does Eclipse reimplement Docking Windows on top of Graphic Context instead of using native ones?

I'm trying to implement docking windows in my application on GTK+ and decided to mimic to their implementation in SWT over GTK+. I'm interested in moving docking subwindows and creating and moving ...
0
votes
2answers
87 views

Java element icons SWT ECLIPSE

How to add the java element icons (e.g. class, methods, package, etc as that in the package explorer) in SWT's Tree control? e.g, I have the following tree structure: somePackage --> ...
1
vote
0answers
92 views

Drag and Drop extension in Eclipse

I am implementing the drag and drop feature in an Eclipse based product that we use. Essentially we are extending the behavior to add our own. I have created a custom view using Eclipse templates. ...
0
votes
2answers
102 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 ...
1
vote
1answer
51 views

Which way is better to open browser in eclipse?

I have found 2 ways to open a url in an external browser in an Eclipse application. Any clues on which way is better? (portability, reliability, ...) 1- simple straight forward use System default: ...
1
vote
2answers
914 views

Eclipse Bug: Unhandled event loop exception No more handles

I've built a GUI using Swing and the MigLayout. I am using Eclipse 4.2.2 (64-bit) on Windows 7 Ultimate. Every time I click back into the window to edit my code, a popup comes up, then I'm prompted ...
0
votes
0answers
17 views

Exporting a MacApplication.app from Eclipse SWT/JFace project

If I have a GUI done in Swing, I can use Eclipse to export a .jar with the code and all dependencies so that it may be run as "stand-alone". With SWT/JFace, I obviously need to do much more work: ...
0
votes
3answers
49 views

Positioning a new view within Eclipse Plugin

I have successfully created a new view, passing in the primary ID from my plugin.xml and a unique secondary ID. All is well. It pops up as one would want. However ... it pops up in completely the ...
0
votes
1answer
30 views

SWT Issue with Display settings of Windows

I have a fixed shell sized (800x600) application developed in SWT. The issue is, if I change the display settings of Windows ( from smaller - to medium/larger ) few parts of the application are being ...
0
votes
1answer
142 views

Print using SWT Browser Widget

I want to print the contents of a SWT Browser Widget. but it prints the only the visible part of the browser not the full content of it. Please help.
0
votes
1answer
55 views

Create a Composite that adapt to my data in Eclipse SWT

My First try is: public MultiLangugeText(Composite parent, int style) { super(parent, style); setLayout(new RowLayout(SWT.HORIZONTAL)); Map<Locale, String> texts = new ...
0
votes
0answers
155 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
118 views

Expand all items on Jface FilteredTree when filtertext is empty

i'm a bit lost, with the following problem. I'm using a class which expands "org.eclipse.dialogs.FilterTree". When the filtertext is empty every node in the tree is collapsed. But i want expand the ...
0
votes
1answer
72 views

Create logical GUI components group using windows builder

I am writing a GUI app in WindowsBuilder eclipse java and have some questions: I have a check button that if it's checked some controls are enabled. Is there an elgant way to allow all of them by ...
0
votes
1answer
159 views

SWT getText() from Text widget returning NULL string

This SWT program has a Group called mBuy, which includes Text Field to enter a stock's buy price. Once the calculate button is pressed and event listener is activated, I want to assign whatever ...
0
votes
1answer
40 views

How do I make an resizable layout in SWT with standard sizes

I'm currently trying to make an application using SWT, I want to have something like in Finder where I can resize the different composites by dragging the edges. I also want to be able to set default ...
1
vote
1answer
130 views

How to verifying input from SWT Text widget and assign to variable?

This SWT program has a Group called mBuy, which includes Text Field to enter a stock's buy price. Once the calculate button is pressed and event listener is activated, I want to assign whatever ...
1
vote
1answer
103 views

Java editing program to println directly to SWT text widget instead of console

I have a java program that uses println to print a nicely formated 2d array. In eclipse, this array is of course printed to the console. However, I have made a seperate SWT program in the same project ...
0
votes
1answer
95 views

Adding a selection provider to a view that contains only widgets?

Can we Add a selection provider to a view that contains only widgets?If so how What should be the setSelection's Parameter.
0
votes
0answers
52 views

Could Outdated GTK Affect Eclipse/SWT App (RSSOwl) Font Rendering?

RSSOwl, an Eclipse/SWT app, on a CentOS 6.3 Gnome 2 desktop is not rendering fonts as well as other applications, and Gnome itself. CentOS 6.3's GTK version is considerably older than the version ...
0
votes
0answers
140 views

Linux Lubuntu Eclipse Checkstyle SWT Error

I have Lubuntu 12.10 64bit installed and Eclipse Juno Distribution. If I switch to Preferences- Checkstsyle and there on configure (to open a checkstyle config) I get the following exception: ...

1 2 3 4 5 11