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)

-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 ...
-2
votes
1answer
55 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
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 ...
0
votes
0answers
16 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
0answers
30 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
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 ...
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
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
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
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 ...
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, ...
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
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!
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
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

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
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 ...
0
votes
2answers
46 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
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 ...
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
24 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
43 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
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
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
26 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
21 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
80 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
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 ...
1
vote
1answer
40 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
104 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
49 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
22 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 ...
0
votes
1answer
48 views

Eclipse RCP change Task-Icon of Splash-Screen

I have a Splash screen in my Eclipse RCP project. While the application is loading (and splash-screen is shown) there is the eclipse-icon shown in the taskbar. Is it possible to change the taskicon?
1
vote
1answer
27 views

How to add image to scale?

I want to add image to the min value and to the max value. The idea that the scanner will have two icons of + and - and text in the - area and text in the plus area for example Zoom out (- ...
0
votes
1answer
38 views

Problems occurred when invoking code from plug-in: “org.eclipse.jface” - Export Deployable Eclipse plug-in

I'm building an eclipse plug-in. Execution env is JavaSE-1.6 I can deploy the plug-in without any errors, but when the plug-in runs there is an error coming out of it: "Problems occurred when ...
-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
1answer
35 views

SWT Table cannot be edited

I want to use Table to make a table that can be edited all over its cells. ...
0
votes
1answer
25 views

SWT: Get system image for “settings” (cog?)

I would like to make it as native as possible. So I need a possibility to get system icons. The only thing I can find on this is how to get dialog icons like SWT.ICON_ERROR and so on. Is there a ...
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 + ...
0
votes
0answers
44 views

How can change the validators of textbox depending on radiobutton selection?

I want to change the textbox validatrs depending on radio button selection.In 1st selection i want the text field to be 16bits long in 2nd selection it should be 32bits long.So thats why i have tried ...

1 2 3 4 5 50