SWT: The Standard Widget Toolkit SWT 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 ...

learn more… | top users | synonyms (1)

0
votes
1answer
177 views

Enter Key Listener for Date is not working in linux flavours

Here is my full coding.I have Two class firstone MyDateTime and Second one is Employee. i have included currently working coding of mine.For the EmployeePart class,AbstractEditorPart is our own parent ...
0
votes
1answer
64 views

SWT Button image limit

When an image is set on a SWT Button and the image is bigger (in this case the width), the limits of the button are not honored, and the image from one button can "touch" the image from another. ...
2
votes
1answer
151 views

Miller columns in SWT? [closed]

Is there an SWT widget that implements Miller columns? Here is what I mean: A kind of recursive master details widget, who add a new column dynamically when the user select an item in the ...
0
votes
2answers
72 views

Eclipse RCP & SWT Widgets & NLS

Does anyone know if its possible to do NLS to some SWT Widgets in SWT\RCP application? remark: With JFace components its possible if you create own equinox fragment to plugin org.eclipse.jface, ...
0
votes
1answer
37 views

“+” and “-” keys seems to toggle SWT Buttons, is it possible to override this behavior?

I am working on a Eclipse Plugin Project that uses SWT. It seems like "+" and "-" toggles the selected SWT button. Is there a way to override this behavior, I have tried setting the Event.doit ...
1
vote
1answer
87 views

How can i disable a button when the model is not updated?

In my UI i have 2 text field and and 2 buttons .I am using jface data binding to bind the text field and i am doing the validation and depending on the validation success the model is updated other ...
0
votes
1answer
94 views

Can one I drop multiple controls in window builder at once?

Is it possible to drop more than one control at once in window builder? I tried the obvious combinations of mouse drag and drop with ctrl, alt, shift but could not find it as of yet. ...
0
votes
2answers
74 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 --> ...
0
votes
1answer
64 views

resize/grow jface treeviewer dynamically

Is it possible to resize/growthe Jface treeviewer dynamically ? I mean we have a composite and treeviewer has some contents, and user is clicking on the expand button to expand the contents, now ...
1
vote
0answers
73 views

Eclipse on Mac: Adding SWT reference to Swing app: App doesn't launch

On Mac, when I add a SWT reference to a Swing app, the app/.jar doesn't launch anymore. However doing the same thing on Windows works fine and I can load a Swing JFrame with SWT components. On Mac, ...
1
vote
0answers
83 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
1answer
54 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
1answer
39 views

Detect caret movement in Text control

I feel really stupid, but I can't seem to get a listener be notified when the user changes the caret in a Text or StyledText input field. I've tried SelectionListener as well as CaretListener ...
0
votes
1answer
34 views

SWT Table switching using SWT/Jface

I have table which get's loaded when application starts. This table is created in composite. Now i have another function search button which will populate the same table based on search input. I am ...
1
vote
1answer
61 views

JFace dialog button translation

I am creating a standalone SWT/JFace application. I used to use plain old SWT MessageBox: int style = SWT.APPLICATION_MODAL | SWT.YES | SWT.NO; MessageBox messageBox = new MessageBox (getShell(), ...
3
votes
1answer
57 views

Java SWT and Invalid Thread Access

I've seen this but it doesn't work for my code. This is my unique class: public static void main(String[] args) { try { Main window = new Main(); window.open(); ...
0
votes
0answers
64 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
1answer
20 views

jface.resource.ImageDescriptor - How to tell which kind of file properties will be properly displayed?

I am desperate. I have the following code in my application to load PNG files: public static Image loadImageFromLocal(Class<?> clazz, String fileName) { ImageDescriptor imageDesc = ...
0
votes
1answer
50 views

SWT problems with saving data in the data base

I am trying to make an editable table by using swt, while I have trouble to save dates which are modified in the database by using toplink: if ...
0
votes
0answers
33 views

SWT statusText change when mouse no longer hovering over link

I am creating a web browser with SWT and am having trouble with the status text listener. It updates when the mouse hovers over a link but does not update when the mouse is no longer over a link. I ...
0
votes
0answers
25 views

IFolderLayout.placeholder is not working properly

String editorArea = layout.getEditorArea(); layout.setEditorAreaVisible(false); layout.addStandaloneView(ServiceDesignTreeView.ID, true, IPageLayout.LEFT, 0.2f, ...
1
vote
1answer
63 views

Java SWT menubar item stuck “on” after subshell created

This is undoubtedly a trivial problem, but I just cannot seem to figure out what I'm doing wrong. The situation is very simple: I have an application that creates an additional dialog window to show ...
0
votes
1answer
21 views

Child Composites not appearing in layout

I'm trying to build a GUI where multiple composites are layed out vertically. I put my approach in a minimal example: public class LayoutTest { public static void main(String[] args) { ...
2
votes
1answer
44 views

Get SWT element's parent Part

I need to reference the Part object that created an SWT element. The Part is creating a Label in Part's @PostConstruct like that (e4): public class SomePart { @PostConstruct public void ...
0
votes
2answers
83 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
59 views

Java SWT shell window closing event

I just have a quick question. How do you override the window closing event for a shell in an swt application? I want the X-Button to simple hide the shell, not close the program. I tried something ...
0
votes
1answer
39 views

varying sizes of rows in table for any particular column using swt/Jface

Please let me know how to get varying sizes of rows in table for any particular column using swt/Jface?
1
vote
1answer
77 views

How to increase the textbox height at runtime?

I want my text box height to be increased if the text in the text box reaches the limit. In fact, if the width of the text box can accommodate up to 15 characters, then after 15 characters my textbox ...
0
votes
0answers
57 views

Unexpected behavior while extracting files from the command prompt

Hi all i am working on a installation wizard for my application in which i am using command line unzip utility for extracting application specific files in the target directory selected by user. For ...
0
votes
1answer
32 views

setting different window title for different IWizardPages

I have a JFace Wizard and I want to set different window title for different wizard page. Currently I've overridden method named as setWindowTitle and I'm calling this method from wizard pages, but ...
0
votes
1answer
63 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
0answers
85 views

SWT Text Widget & Modal Dialog

Why is the modality ignored when a Text widget has V_SCROLL as style? MainWindow.java public class MainWindow { private Display display; private Shell shell; public MainWindow() { ...
0
votes
3answers
119 views

SWT: Periodically update GUI

I have an SWT GUI which displays a list taken from a database. What I would like for it to do is to periodically update the GUI, which would involve clearing everything in the shell and running the ...
0
votes
0answers
33 views

Best way to display video using OpenGL

I have a small windows application that I developed using AWT that captures video input and displays it in an AWT frame. The code does image captures at a rate of about 20 or so FPS and uses the AWT ...
0
votes
1answer
38 views

Not able to get SWT.UNDERLINE_LINK working in combination with StyledText and TextStyle

I am very new to using StyledText, TextStyle. I am trying to give a hyperlink look for a text that is displayed. I am using TextStyle object to create a hyper link style text. For TextStyle ...
0
votes
0answers
55 views

Advanced SWT Browser widget

Are there advanced SWT Browser widgets? The documentation says IMPORTANT: This class is not intended to be subclassed. UPDATE. We are developing Eclipse-based Node.js IDE, and I am researching ...
0
votes
1answer
46 views

use StyledText.append() from other thread at high speed

I am writing a desktop app using SWT which receive log data from network at high speed rate (nearly 100 packet per second). Each packet contains a line which must be appended to a StyledText. Since I ...
0
votes
1answer
34 views

Platform.getBundle method missing in SWT 4.2

I'm trying the use the snippet shown here but method getBundle() for class org.eclipse.core.runtime.Platform seems not to be defied in SWT 4.2. Did they move/remove it?
0
votes
1answer
38 views

How to edit a label in swt in runtime?

I want my label to be editable on clicking Without disposing that label.
0
votes
1answer
26 views

Grabbing Excess Space Equally

When using "Grab Excess Horizontal Space" on multiple SWT controls within the same space, the default behavior does not divide the space between them exactly equally. Some sort of behind-the-scenes ...
0
votes
1answer
25 views

how to exit the other window while maintaining the original window

i'm doing a pop-out error window. and I tried various things but it didn't work. what i want to do is just close the error window that popped-out while still maintaining the original window. in my ...
0
votes
1answer
46 views

How clear window History in Java SWT?

I'm working on an Java SWT program and i need a login form for user authorization. The entry point of my program is the LoginWindow, when the user has successfully logged in the LoginWindow opens a ...
0
votes
2answers
95 views

Trouble with Browser type SWT.MOZILLA on windows 8 64 bit

after spending a day reading here and there I decided to ask help as I could not find a solution to my problem. I have to create a java/swt application embedding a browser with full HTML5 support. ...
0
votes
1answer
79 views

SWT Grid Layout width

I'm trying to create a simple display using SWT. So far, I am successfully displaying information from my database and displaying it using a RowLayout, with each row containing a GridLayout. It looks ...
1
vote
1answer
44 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
28 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
113 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
85 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
79 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
59 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 ...

1 2 3 4 5 50