SWT: The Standard Widget Toolkit is a user interface library for Java maintained by the Eclipse Foundation. SWT uses native widgets wherever possible to provide a look and feel consistent with the host platform. SWT is a third-party library (not included in the JVM) and applications that rely on ...

learn more… | top users | synonyms (1)

1
vote
1answer
45 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: ...
0
votes
1answer
29 views

Display.getDefault().addFilter() does not work as intended for SWT.ARROW_LEFT and SWT.ARROW_RIGHT

I have an Eclipse Plugin project written in SWT. I have added a Global listener to listen to the keys "SWT.ARROW_LEFT" and "SWT.ARROW_RIGHT". This is done by the Display.getDefault().addFilter() ...
1
vote
1answer
116 views

SWT Browser advanced functionality with WEBKIT [closed]

I am currently building an SWT application that must be easily portable and have a simple, fully functional web browser. I chose to use webkit mostly because it is already installed on osx, major ...
2
votes
2answers
87 views

Java SWT Link widget - How can I remove the hyperlink underline?

I knew that we can use: setText("<a> href="url"> Link </a>"); to set up a link. But the output of this is underlined. I want to have a link that is not underlined, so I tried ...
2
votes
1answer
84 views

Can I hide the file extensions in an SWT FileDialog filter?

I have an SWT FileDialog (style: SWT.OPEN) with multiple filters each with multiple file extensions. I want to include an "All known formats" filter with every file extension the application ...
0
votes
0answers
62 views

SWT styledText custom painting - scrolling

Upon scrolling, with a vertical scrollbar, my styledtext with many controls, the buttons sometimes appear to be drawn one on top of each other, they are active and they are destroyed on the ...
0
votes
1answer
92 views

org.eclipse.ui can't be resolved?

Could you please tell me how to resolve that package import, I thought it is an element of SWT and I've already have SWT installed into Eclipse IDE. Why is it so bothersome? I guess I have to download ...
-1
votes
2answers
75 views

Java SWT Spinner with text inside?

I have JAVA SWT/RCP application (Equinox OSGi), I am just creating Wizard which should look like one the picture: The problem I just caught that standard SWT class Spinner, does not offer this kind ...
2
votes
0answers
96 views

Writing non-GUI JUnit test cases for an app that relies on the SWT event loop being pumped on OS X?

I'm working on an SWT-based application on OS X, and I'd like to write some JUnit test cases (not automated GUI tests) on some utility code that requires the SWT event loop being pumped, but not ...
1
vote
1answer
75 views

Detect whether running on HiDPI display

How to detect from an SWT application that it is running on a HiDPI ("retina") display?
0
votes
2answers
570 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 ...
1
vote
1answer
39 views

“Navigation Bar” SWT control

Does already someone has written an SWT control like the "Navigation Bar" in IDEA? For those who don't know what I mean: it looks like path1 > path2 > path3 > where each "path" is a part ...
0
votes
0answers
32 views

Jface tableviewer refresh vs EraseItem event

I was inspired by this question and the article linked there to do a custom selection effect to my table. It all works ok, But when a refresh() is called on the TableViewer, it looks like the event is ...
-1
votes
1answer
54 views

Implement Java code formatter in a StyledText area [closed]

I want to try and implement a key binding much like Ctrl + i in eclipse for a StyledText area so that the Java code in the area will be formatted correctly. I've been looking around for a while and ...
0
votes
0answers
39 views

JFace Change the icon displayed while dragging in multi column TreeViewer

I have implemented a Multi Column TreeViewer using JFace/SWT. When I drag a row from the tree, I see multiple colums being dragged. Can I change that to show only the text of a single column? ...
0
votes
1answer
98 views

while designing a Java EE application the package org.eclipse.swt.dnd is showing error

The problem which i have faced while designing the interface is as follows: For incorporating the feature of drag and drop i am using SWT and all the SWT drag and drop classes are defined in the ...
0
votes
0answers
43 views

SWT Table - Deselecting a Row after it has been selected

When I select a row in my table, there is no way to deselect that row. Unless there is two rows in the table. Then I can select the other row. Now the 2nd row is selected and the 1st row is ...
0
votes
0answers
69 views

Changing Text To Hyperlink In Java RCP Application

My application is in Java RCP. In the text area, I have a lot of paragraph text. I want to change one of the paragraph to hyperlink. When I use this piece of code: Link link = new Link (<parent ...
-1
votes
2answers
58 views

Best way to identify which button was pressed for method logic

I have a method that is used for two different actions. The actions are identified by which button the user presses. I am using a boolean to identify the button press. ...
0
votes
1answer
35 views

add AWT listener to SWT component

Is there a way to add AWT listener to a SWT component? I previously made an app running mostly in AWT and Swing components. Now, I have hotkeys function which is dependent on a custom-made library ...
0
votes
1answer
96 views

Set tooltip text for each element in an SWT Combo widget

I've been looking around for ages and can't seem to find whether this is possible or not. I have a Combo widget populated with some strings and wan't to set the tool tip text to be something ...
0
votes
1answer
237 views

SWT Table Sorting by clicking the column header

In swt table- sorting works for Strings how to do sorting for Integer, Double and Date values. And this only works for String ascending. Can anyone suggest a better way to do it. TableItem item ...
3
votes
1answer
46 views

2D Transformation in SWT - converting coordinates with Transform

Assumed I aplied a 2D Transformation to the gc: Transform trRotated = new Transform(display); trRotated.rotate(-90); gc.setTransform(trRotated); The coordinate system is rotated ...
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
47 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 ...
-1
votes
1answer
30 views

Java SWT Transform - how to inverse a point? [closed]

Is there a possibility to apply a transform object to a Point object? I would like to inverse every transformation caused by a Transform.
0
votes
1answer
38 views

Change default keybinding for TableViewer

By default a JFace TableViewer moves the selection up and down when the user presses the up or the down arrow key. This makes sense most of the time, but in my application the business logic will be ...
0
votes
0answers
61 views

Correct way do preserve shell aspect ratio in SWT

I've been trying to find a way to force a shell to resize preserving a certain aspect ratio. This is the only way I've come up with: shell.addControlListener(new ControlListener() { @Override ...
5
votes
1answer
134 views

JavaFX - SWT interop: application freezes

I am building a RCP application, based on Eclipse 3.5. Thanks to two articles[1][2] that I've found on oracle.com, I have been able to implement a working RCP view, that displays a pie chart. ...
3
votes
4answers
220 views

Enabling Google Chrome Frame on DJ Native Swing

I have Google Chrome Frame installed on my Windows XP + IE8 machine. When I navigate to chrome frame enabled page using IE8, it works. But when I navigate to the site through a Java application that ...
0
votes
0answers
22 views

swt issue of returning the content of each column of a table

I have an issue when I try to insert the data into the table widget. While I am successed to creat the table, and the data in my join table was inserted. But no matter what I do with another table, ...
0
votes
3answers
177 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
0answers
178 views

Java SWT Selection and MenuDetection Creating Pop-Up Menu from TrayIcon Differently (OSX)

I am developing an OSX application using SWT and I have a TrayIcon in the system tray. I got it to work, but there is this one little thing that really bugs me. When you right click the icon, the ...
2
votes
1answer
84 views

SWT Browser component blocks SWT UI thread

I am embedding an org.eclipse.swt.browser.Browser into a view in a modified eclipse (Indigo), for use as a preview pane of a form editor component. On a form model change or an element selection ...
1
vote
1answer
64 views

How to show a handle on SWT's SashForm?

How can I show a handle/visual indication on a SWT's SashForm? With my code, there is no feedback to the user, that there is infact a sash form: import org.eclipse.swt.custom.SashForm; // ... ...
1
vote
1answer
106 views

how to change colour of label in swt tree editor

I have a TreeEditor and some text in its first column. I need to append some text to it using a label or string. In addition, I want to change the color of the appended string to green. I tried to ...
0
votes
1answer
33 views

Porting wxPython to SWT/JFace

I use some nice controls/widgets in a simple wxPython app I developed taking inspiration from the sample demo. Call it my prototype. I am now ready to migrate my prototype to Java/SWT. Some controls ...
0
votes
2answers
83 views

Eclipse RCP or SWT/JFace demo or “examples with code”?

I learned the little I know of wxPython (as in: Python wrappers for wx widgets) from the absolutely outstanding demo app: http://wxpython.org/download.php With that demo app, you get examples for ...
0
votes
1answer
33 views

Hiding a Dialog from users with out closing it

My application is written to run within an OOTB Application. The users can select data from the OOTB application and store it in a WritableList in my application. The users then can click a button ...
0
votes
1answer
140 views

SWT TreeViewer Drag n Drop: SWTException Widget is disposed

I have a CTabFolder containing a few disposable tabs which contain a TreeViewer each. I want every Viewer to have a DragSupport. So naturally i used the method TreeViewer#addDragSupport for that. ...
1
vote
0answers
41 views

Method getProperty of OleAutomation class of SWT.jar returning null for property ActiveSheet

I am using SWT.jar to create an excel sheet and populate data. I am using these lines of java code: int[] rgdispid = theOleAutomation.getIDsOfNames(new String[]{thePropName}); Variant ...
1
vote
1answer
116 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 ...
1
vote
1answer
42 views

using keyboard with swtbot test

I'm trying to run SWTbot test case that uses keyboard short-cuts. I could not find any reference for how to do it. I'm pretty sure that should not be that difficult. I'll appreciate it if someone can ...
0
votes
0answers
56 views

SWT group composite border disappers

SWT group composite border disappers when i press TAB key. Shell has 3 group composites but the disappering problem is only with one group. Group grpCustomerDetails = new Group(this, SWT.NONE); ...
0
votes
1answer
58 views

Bidirectional multilanguage String conversation

Im trying to print a bidi String using SWT,Paperclips and Java. When I Print the String to the screen - everything is OK (on Java-SWT label) But when I try to print it with paperclips the String is ...
0
votes
0answers
43 views

SWT gc.setAdvanced(true) causes blocking state

I have some heavy system resources image manipulation (need to zoom image really deep) and draw some part of zoomed image (let's call it viewport) to a canvas. Because image resizing to such a huge ...
0
votes
2answers
41 views

createButton - SWT.PUSH verses OK

This is my createButtonsForButtonsBar Method. protected void createButtonsForButtonBar(Composite parent) { Button okButton = createButton(parent, SWT.PUSH, "Close Aplot", true); ...
0
votes
2answers
78 views

Avoid Tree Resize after Section expand

I've got a question I couldn't resolve myself for quite a while now. I have a RCP ViewPage containing two sections. The sections are inside a SashForm so that the user is able to resize the expanded ...
0
votes
1answer
28 views

org.eclipse.swt.SWTExecption: Widget is Disposed

My user selects data from a main application workspace. The data is stored in a Writeable list. The user then proceeds to open a dialog to display the selected data in a table. When my users opens ...
1
vote
1answer
66 views

How can I set the margin/padding of the text displayed on an SWT Button?

How can I set the margin/padding of the text displayed on an SWT Button? Button b = new Button(parent, SWT.LEFT); b.setText("Click me"); I got: +-----------------+ |Click me | ...

1 2 3 4 5 50