Tagged Questions
0
votes
0answers
13 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
1answer
126 views
SWT getText() from Text widget returning NULL string
This SWT program has a Group called mBuy, which includes Text Field to enter a stock's buy price. Once the calculate button is pressed and event listener is activated, I want to assign whatever ...
0
votes
0answers
56 views
SWT, XULrunner, OS X - mouse hover events not working
We have an Eclipse SWT application that makes use of several SWT Browser controls, backed by XULrunner. We are using SWT 4.2 and XULrunner 10.0.4esr (the latest release that is supported by SWT).
We ...
1
vote
1answer
186 views
Mouse events in SWT
I defined a Node class extends Canvas class and handle the mouse event.
public class Node extends Canvas {
String name;
public String getName() { return name; }
public Node(Composite parent, int ...
0
votes
1answer
262 views
SWT and full disabling and hide mouse pointer
I need some help to hide and disabling mouse pointer. But I need to send all mouse events to an other device.
So main scenario is: open SWT application --> press button (or label, or what you want...) ...
1
vote
2answers
126 views
widgetDefaultSelected() method never triggered?
Suppose I have two radio buttons, I want one to be default selected, and I want the SelectionListener to do some action.
When I tried the obvious way it didn't work:
Button button = new ...
0
votes
2answers
442 views
SWT MouseMove Listener when mouse is… out
I use a mouse move listener to handle mouse moves on a canvas in SWT.
But I'd like to have two behaviours, one when the mouse is moving into the canvas area and another one when the mouse is quiting ...
0
votes
1answer
468 views
How do I fire a custom event in SWT?
I am building an application in swt, I also have a thread running which polls the database for any changes (made directly to the db or by another application).
I am able to pick up the changes but I ...
1
vote
2answers
1k views
How to be notified that a composite's child received/lost focus?
I have an SWT Composite that I need to pass to some other code which will add children to it at will. Is there any way to be notified that a child of the composite received and lost focus?
Just to ...
0
votes
1answer
158 views
Which event is fired in SWT when table content changes
I have a TableViewer object in SWT with some filters. So when the filter changes the content of the Table of TableViewerchanges too. I searched for an event that is fired when a TableItem is added or ...
0
votes
1answer
396 views
Traversal using UP and DOWN arrow keys - Handling Button's FocusOut
what i am trying to archive here is to traverse within controls using the UP and DOWN arrow keys
the code goes something like this in the display object. Might seem strange but this is a requirement ...
1
vote
1answer
152 views
Event.gc error in GUI creation using SWT
I'm having trouble with printing a rectangle to a shell using PaintListeners and
GCs in SWT. If necessary I can post the main method as well, but all that method does is produce an input screen and ...
1
vote
1answer
323 views
MouseClick on Label
I am trying to register a click on a label, but i can't get it to work.
So far I've tried to set the SelectionAdapter to the label but click-events aren't fired.
0
votes
1answer
245 views
SWT: addFilter or addKeyListener on Composite
i want to have some composite-wide keyboard-shortcuts. The composites in question are in a tab-folder. I have a little function, which traverses all children of my composite and adds a KeyboardAdapter ...
4
votes
1answer
913 views
SWT event propagation
I'm trying to detect click events on a Composite control that contains a number of other composites. I tried:
topComposite.addMouseListener(new MouseListener() {
...
@Override
...
5
votes
1answer
201 views
Events are causing a chain reaction
I'm using an Eclipse RCP based framework that suffers from an inefficient event model. Specifically, events emitted by controls often 'cascade'. For example, a control will emit a COLOR_CHANGED event ...
1
vote
2answers
596 views
Java swt change typed character
I have swt browser widget in which user can type with keyboard, I need for certain character user press change it to others.
for example when user press x, I change it y.
I add key listener where I ...
0
votes
2answers
2k views
How to detect SWT Table's scroll bar visibility changes
How can I detect when a Java SWT Table's vertical ScrollBar becomes visible? I need that information to recompute the columns' widths. Seems like no event (besides Selection) is ever fired on the ...
1
vote
1answer
476 views
How to restore default keybindings (Ctrl+A, Ctrl+C, etc) for widgets in SWT?
When I edit a text field and press Ctrl + A, then instead of selecting all text in the field, the main menu's handler for Ctrl + A is called.
How to restore the default behaviour, without losing the ...
1
vote
2answers
2k views
Java SWT: apply key events from List to Text field
I am making a component in SWT that contains a text field and a list. Whenever text is entered it filters the list. So far everything is working great and I am just trying to add some nice usability ...
1
vote
1answer
789 views
SWT: problems with clicking button after using setEnabled() on Linux
I have a strange case with SWT and Button after using setEnabled() - seems if I disable and enable button at least once - I cannot properly click with mouse on it anymore... Already minify code to ...
0
votes
4answers
384 views
SWT: How do you register KeyUp events when no Control have focus?
Im am making an Java SWT program that is required to run on both Linux and Windows.
I use the following Code to listen for KeyUp events:
Control.addListener(SWT.KeyUp, new Listener() {
public void ...
0
votes
1answer
678 views
How can I stop an SWT composite control from firing a MouseExit event when the mouse enters a component control?
I have subclassed org.eclipse.swt.widgets.Composite to create a new composite control. I want to capture MouseEnter and MouseExit events in this control but the problem I have is that when the mouse ...
2
votes
3answers
1k views
How to disable SWT event listening if the action is not triggered by user
I notice that the ModifyListener will be triggered regardless the action is caused by user or system itself, for instance,
Text t = new Text(shell, SWT.BORDER);
t.addModifyListener(new ...