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)

0
votes
0answers
5 views

Controlling selection of row in GridTreeViewer (TreeViewer)

When I programmatically selecting a row in a GridTreeViewer: StructuredSelection s = new StructuredSelection(model); gTree.setSelection(s, true); The selection is made of the whole row: Is there ...
0
votes
0answers
17 views

Is a messaging loop required for every window in SWT?

Example loop (object extended from Shell -- using the Window Builder Eclipse addon, even though the docs say not to extend Shell?!?): while(!this.isDisposed()) { ...
0
votes
0answers
10 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 ...
0
votes
1answer
26 views

Java SwingWorker while using SWT

I have a problem as follows: I've written a simple minimalistic Application that utilizes the SWT for the GUI. In a specific tab, where it displays a table that get's filled with Informition via a ...
0
votes
1answer
15 views

How to add keyboard shortcuts to SWT dialog using messages.properties file?

I need to add keyboard shortcuts to an SWT dialog in an Eclipse RCP application. Is it possible to add shortcut using the messages.properties file, without any coding/programming needed?
0
votes
1answer
22 views

Does one need to call pack()/layout() in an SWT composite constructor?

Do I need to call pack() and/or layout() in the constructor of my widget? (I followd the instruction on Wrapping an SWT Widget) public class MyWidget extends Composite { public ...
0
votes
0answers
9 views

WindowTester - Accessing file system (tree) item in a rcp client

I am wondering weather it is possible to reach tree elements in a Java RCP-Client which display a file system by using googles windowtester pro. The tree (swt widget) shows my local file system ...
0
votes
0answers
24 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 ...
-3
votes
0answers
28 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 ...
-2
votes
1answer
58 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 ...
1
vote
1answer
31 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 ...
0
votes
0answers
25 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 ...
0
votes
1answer
42 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
34 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 ...
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 ...
1
vote
0answers
34 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
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: ...
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 ...
0
votes
0answers
17 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 ...
0
votes
2answers
50 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, ...
0
votes
1answer
33 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
21 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
1answer
39 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!
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 ...
-1
votes
2answers
42 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
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
1answer
41 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 ...
0
votes
2answers
48 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
24 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 ...
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
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 ...
1
vote
2answers
26 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
46 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 ...
0
votes
2answers
50 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
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 ...
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 ...
0
votes
0answers
49 views

Drag and Drop in Javascript

Is it possible to write javascript code that say enables drag and drop of links in google search results? Thing is we need to enable drag and drop support between an SWT based client and a web-based ...
0
votes
1answer
29 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{ ...
0
votes
0answers
23 views

URL Drag support in SWT Browser

I am writing an application which uses SWT Browser. Now I want to include a feature wherein the user can drag the hyperlinks rendered in the SWT Browser after opening some web page. For instance ...
0
votes
0answers
84 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
31 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 ...
1
vote
1answer
45 views

How can i use form toolkit to change the bordercolor of composite?

I want to change the border color of the composite using form tool kit.But the result is something unexpected.It sets the background to white. CODE: FormColors formColor = new ...
0
votes
1answer
107 views

How to handle Windows key press with SWT AWT, minimize window and go back to desktop

For my firsts steps with SWT (and more generally with Java), I try to make a simple app with few basics components. It's a simple window which maximise with NO_TRIM. Now I want to write an ...
0
votes
2answers
51 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 ...
-1
votes
0answers
26 views

Swt Table Viewer Sorter Changes The Parent node of Sub Nodes [closed]

Hello i have created a treeviewer and created a sorter for this viewer. when i clicked the header column it was sorting my records .However the sub nodes were changing for all parents node..
0
votes
1answer
112 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
0
votes
1answer
28 views

how to fix the order of the buttons in SWT?

I have scroller with 2 buttons How i can set that the order of the buttons will be in the same raw and not each control : button scroller and button will be in different row fComposite= new ...
0
votes
0answers
16 views

How to change the position of the control SWT? [duplicate]

I am new in SWT I tried to create scroller and two buttons The problem that the layout of the button is not in the right place. I want that the scroller will be in the right place and the buttons ...

1 2 3 4 5 50