Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
361 views

What does JFace add to SWT?

What is the difference betweem the following: TreeViewer & Tree TableViewer & Table TreeViewerColumn & TreeColumn 4.TableViewerColumn & TableColumn When to use viewer & regular ...
5
votes
1answer
301 views

Changing the look and feel of an SWT tabs

I'm using SWT CTabFolder to build tabs in my application. I kind of dislike the visual appearance of tabs, it too Eclipse-like. Is there a way to change the aspects of tabs? I'd like to change the ...
3
votes
4answers
143 views

Need good material on SWT layouts

I am learning SWT and I am in need of some good material on SWT layouts. Anyone have some good material or links for SWT layouts? Thanks for any help
2
votes
1answer
630 views

SCons: Copy external libraries to build output directory

We're using SCons + swtoolkit for our build system on Mac, Linux, and Windows. We have a svn repository that contains all of our external library dependencies, the path to which is located in the ...
1
vote
0answers
136 views

ProgressMonitorDialog Implentation suggestion

I wish to Show progress of a long running operation(process) in UI so that user can understand the status of the background job. This is the way i implemented and i feel like the code is not apt and ...
1
vote
1answer
302 views

Binding SWT List to an ArrayList

I am trying to bind an ArrayList of objects to a Java SWT List widget. This is what I have: DataBindingContext bindingContext = new DataBindingContext(); // myModel= new ...
1
vote
2answers
313 views

Getting the size of Menu control in Java SWT

How do I get the height of a menu bar control in a Java SWT shell window? It seems that different OS has different height for the menu bar at the top of the shell window. So it will be great if I ...
1
vote
2answers
398 views

Setting size of inner region of Java SWT shell window

In a Java SWT shell window, how do I set its inner size than its whole window frame size? For instance, if I use shell.setSize(300, 250) this would make the whole window appearing as exactly 300x250. ...
0
votes
1answer
91 views

Fire an event on mouseClick in SWT?

In SWT, for MouseListener interface, the methods available are mouseUp(), mouseDown() and mouseDoubleClick() How to fire an event based on the user click? We can do this by conjunction of mouseUp() ...
0
votes
1answer
88 views

How to Autofit the widgets in a view to variable window size automatically

I have an RCP application in which i changed position of the window(shell) and its size by overriding the postWindowCreate() method in ApplicationWorkbenchWindowAdvisor class, the widgets in the views ...
0
votes
3answers
253 views

error at building libjingle on Mac OS X 10.7.2 like “error: string.h: No such file or directory”

I failed to build libjingle on Mac OS X 10.7.2. The output was the following when I run $path_to_swtoolkit/hammer.sh according to the README of libjingle. MBP17:talk rei25$ ...
0
votes
2answers
67 views

How to filter out the TreeNodes(grandchildren level) from treeviewer using Viewfilter in SWT

How to filter out the Tree Nodes (grandchildren level) from tree viewer using View filter in SWT.I want to filter out the grand children node from the treeviewer.
0
votes
1answer
52 views

ECLIPSE RCP app: editing and updating a table viewer

I made the table viewer editable by adding setEditingSupport to the columns. But that seem to be not enough. How to access the modified fields if I want to save them in the DB? What is available to me ...
0
votes
1answer
138 views

default value/Item for SWT Combo

i would like to add default text when the Drop Down menu is loaded on my view. Any ideas how to do this in SWT jface?
0
votes
1answer
60 views

what is the order of events that SWT styleText monitors?

There are a lot of events that styleText can listen to and handle using _listeners of different kinds. How can I find out which events fired when? For example, key event, line event, paint event, and ...
-1
votes
1answer
34 views

swttoolkits: what are the diffrences between swt 3.5 to swt 3.6?

Does anybody know what are the main differences among these two SWT toolkits versions ? thanks.
-2
votes
1answer
125 views

How to create a balloon tool tip for text box in SWT

I wanna create balloon tool tip for text box in SWT. please any one help me?