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 ...
0
votes
0answers
9 views
draw red border around wrong text
I'm trying to implement a method which draws a red border around a Control like a text, if the user didn't enter anything. i'm using eclipse swt.
My Method looks like that:
protected void ...
0
votes
1answer
33 views
Close button in CTabFolderRenderer in SWT
I have a requirement to have a close Button(Native) in CTabFolder for close action. To say precisely I need a native Button with text "close".
I have a CustomCTabFolderRenderer with drawClose method ...
0
votes
2answers
49 views
Invalid thread access in SWT (progressBar help)
first of all I'm sorry about my English level, I'm Spanish.
I have a little problem with a progressBar in SWT application:
I have 1 Class(The application (SWT)) with all controls(progressBar, ...
8
votes
3answers
8k views
Why does an SWT Composite sometimes require a call to resize() to layout correctly?
Sometimes we encounter an SWT composite that absolutely refuses to lay itself out correctly. Often we encounter this when we have called dispose on a composite, and then replaced it with another; ...
-3
votes
0answers
26 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 ...
1
vote
1answer
23 views
Style TreeViewer's scrollbar
I have an editor that has both draw2d tree and Nebula's GridTreeViewer (basically a JFace TreeViewer). What I need is working, except scrollbars. In draw2d I get scrollbars provided by ...
-2
votes
1answer
56 views
Create an eclipse-like IDE in Java [closed]
I am trying to come up with a custom-made IDE to suit my needs. I tried Swing libraries to create a GUI but it doesn't look that good, plus I haven't figured out how to show something like a project ...
0
votes
0answers
20 views
SWT treeviewer contentprovider
I am trying to modify a tableviewer to a treeviewer in order to add some parents to the elements in the list, and I have used the same tableviewer of tableviewer but I implemented ...
1
vote
1answer
45 views
+50
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 + ...
3
votes
2answers
3k views
RCP with SWT.Browser and XULRunner
I'm developing an RCP application (Windows) with SWT.Browser (SWT.MOZILLA):
Browser browser = new Browser(parent, SWT.MOZILLA);
It's working fine with the old XULRunner 3.6.23 and the installation ...
0
votes
2answers
12 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 ...
0
votes
2answers
32 views
How to change theme in SWT application
I'm new to developing SWT applications and am looking for an easy way to change the theme of a small application which I have already developed.
After doing some googling I'm able to tell that there ...
1
vote
1answer
198 views
Control IDs in Java/SWT application
I have a third-party application and I need to read the values of some controls to use them in my own application developed in Delphi. The other application runs on Windows and is obviously written in ...
0
votes
2answers
49 views
Java GUI (SWT) - display text while performing other actions like reading that text
I'm new to JAVA GUI.
What I have is a java class which reads a text file.
For each read line, this class (called X), writes a record on a database.
This works without any GUI, only from a linux ...
0
votes
1answer
27 views
Can't compile a simple JFACE program; java.lang.NoClassDefFoundError
I am trying to run a very simple JFace program:
import org.eclipse.jface.window.*;
import org.eclipse.swt.*;
import org.eclipse.swt.widgets.*;
public class HelloSWT_JFace extends ApplicationWindow{
...
1
vote
0answers
32 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
1answer
36 views
Spinner, add up/down arrow button listener
is it possible to add click listener for Spinner up/down buttons?
I need this behavior, because when I add Modify or Selection listeners, all changes that I enter manually to the Spinner field are ...
1
vote
1answer
103 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 ...
4
votes
5answers
10k views
Can't OPEN Eclipse in Ubuntu 12.04 - java.lang.UnsatisfiedLinkError: Could not load SWT library
I have installed Ubuntu 12.04 newly. Also i installed Java 7. I try to install eclipse-java-indigo-SR2-linux-gtk.tar.gz. i extracted this file in /home/ramprabhu location. Then i try to run eclipse ...
0
votes
1answer
16 views
How to make a TableEditor editable when there is nothing in it
I am having a problem with the TableEditor in SWT. I am working from the code in this link:
...
1
vote
1answer
37 views
Drag and drop SWT container composite
Is it possible to drag and drop a container composite in SWT (Eclipse RCP)?
If it is can anyone explain how? Thanks!
-3
votes
2answers
131 views
SWT - Snap display to right hand side of the screen
I'm creating an SWT application and have been unsuccessfully searching around on the net for a way to snap my window to the right of the screen (in a similar fashion to the way google desktop used to ...
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 ...
0
votes
0answers
301 views
Resize problems with Java 2D
I am currently creating an Eclipse View that has to contribute an Eclipse RCP app' and which must be nice (and only this one, I don't need an eclipse skin or something like that because my eclipse RCP ...
0
votes
0answers
15 views
Jface ContentProposalAdapter not working on first typed char
I'm trying to make field-assisting for a Text widget I'm using in a SWT/JFace application.
I have a ModifyListener added on the Text component, and when this is triggered by a ModifyEvent, the ...
1
vote
0answers
34 views
When to call Composite.changed() in SWT?
After reading Composite#changed(Control[]) I have a hard time understanding when I need to call changed(). In case of a GUI build from several layers of composites with associated layouts, do I need ...
0
votes
1answer
32 views
SWT: Running an application developed on OSX in Windows
I have an SWT application that I've developed on OSX, so it contains the Mac version of the SWT libraries.
Now I need to run this application on a Windows machine. I export the application to a .jar ...
0
votes
0answers
13 views
SWT: Store GUI in XML
Is there any chance to store GUI in a separate XML file? I think this is more readable.
I know, there's swtxml but I guess this is only an Eclipse plugin and not available in the Maven repositories. ...
0
votes
0answers
19 views
change the color of selected TableItems of SWT Table once its out of Focus
Once we make the SWT table get focus out, all selected item becomes very light grey. That is creating lots of confusion to user.
How to change the color of selected item once the focus is out.
I added ...
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: ...
-1
votes
2answers
39 views
Style of the Button in SWT/JFace [closed]
I am new to SWT/JFace development. I am trying to change the style of the
Button displayed in the JFace Dialog Box like color, font, size and add image to the button.
for e.g; i have to create a ...
0
votes
2answers
23 views
Eclipse RCP authentication
I would like to know how to implement authentication in Eclipse RCP. I have started an app and I have two views, one for admin and one for a regular user. At startup I want to show the login dialog ...
0
votes
2answers
24 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
2answers
47 views
How to track mouse over SWT composite made from sub controls?
I have a created my own control:
I want to track the mouse and added a MouseTrackListener. Unfortunately MouseEnter and MouseLeave events are also generated, when the mouse moves over the parts of ...
0
votes
2answers
256 views
How to sort glazed TreeList?
I have a pretty weird question - how to sort glazed TreeList? I am using it in SWT NatTable, and when my data provider is set to GlazedListsDataProvider with TreeList inside it, sorting works in a ...
0
votes
1answer
95 views
paperclips in NatTable
I am new to NatTable and was looking to print the NatTable.
I know about paperClips for SWT tables but couldn't find anything similar for Nattable.
has anyone tried printing or even saving the ...
1
vote
2answers
3k views
Advanced SWT table widgets
There are a couple of "advanced" table/spreadsheet SWT widgets out there (Nattable, Nebula Grid), but none of them support really large datasets. Nattable is the one which comes closest, but it still ...
1
vote
1answer
79 views
Using NatTable for large data which is slow to retrieve
I got a question about the NatTable SWT datagrid widget which I want to use to display a huge log file.
As the log file can be several GB in size, I cannot load it in memory entirely. The application ...
0
votes
1answer
39 views
SWT Splitpane thats scrollable
I have been working with JPanels and such to build my GUI's. where I work now they use SWT to build their GUI's. I have a composite that I've added a sash to which splits the sash vertically or ...
1
vote
0answers
23 views
Get Active Shell in SWT, even if the Shell is not on focus
Display.getActiveShell() seems to only consider a Shell as active if it's focused. If at the moment another application has focus that means Display.getActiveShell() returns null.
I need a method ...
0
votes
1answer
29 views
swt widget (pallet widget) for group selection
I am looking to have a widget like below screen in my rcp application. I tried to find an existing one however I could not find one. Anyone can please help. Do you think I will have to create my own ...
0
votes
0answers
26 views
SWT - Check button mark doesn't appear when setSelection
I some buttons between some text on a "StyledText" after I change the text the selected buttons does't retain it's previous state.
After the text is changed the same method is fired that creates the ...
1
vote
2answers
35 views
SWT: Is it possible to move multiple widgets at the same time?
I successfully implement an animation for widget based on user desired position and duration. However, if I set two widgets to move, they can only animate one at a time. When I start moving widget A ...
4
votes
3answers
409 views
Is Google Suggests like functionality possible in Java SWT?
I want a drop down ComboBox like Google Search (i.e. when we type one letter then the elements starting with that letter are displayed). When the drop down list appears, then we can select one of word ...
86
votes
12answers
46k views
Java Desktop application: SWT vs. Swing
I'm a web developer at day and thinking about building my first real desktop application. The idea is to build a tool that automates a very repetitive task in a web application where no API is ...
1
vote
2answers
25 views
SWT disable window causes lose focus
I'm making custom dialogs that I want to pop up and disable the main shell behind it so that it cannot be clicked while the dialog is active.
My initial plan was something like as follows:
...
0
votes
1answer
44 views
org.eclipse.swt.widgets vs. javax.swing.table: Why redefine it?
I'm creating a table now using the Table type defined in org.eclipse.swt.widgets. Eclipse however is letting me know that there is also a Table I can use in javax.swing.table.
Upon investigation, the ...
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 ...
2
votes
3answers
2k views
Open eclipse juno with error “No more handles …” in Ubuntu 12.04
Starting today, every time I open up the eclipse, I got a message box with title "Problem Occured" pops up saying:
No more handles [Unknown Mozilla path (MOZILLA_FIVE_HOME not set)] possible args: ...
1
vote
0answers
54 views
How to get rid of wasted space in SWT ScrolledComposite when the scrollbars are not shown
I have a horizontal ScrolledComposite holding two buttons (actually a composite
with two buttons). The space for the scroll bar is allocated even if the scroll
bars are hidden. (They get hidden, when ...



