vote up 1 vote down star

I've created a dialog class filling some common widgets, like text, combo, and tree. It annoys to have the default behavior to dismiss this dialog (same as the default 'OK' button is pressed) when enter/return is pressed whichever widget I was in.

To prevent this behavior, I have to add a traverse listener for each widget to filter the traverse key:

if (SWT::TRAVERSE_RETURN == event.detail) {
  event.doit = false 
}

This is somewhat annoying. Is there a way to globally do in the dialog level?

flag
@bryantsai Thank you for your feedback: if you do solve this issue, do not forget to post an answer here (you will be able to select it as the official answer) – VonC Jun 29 at 3:51

2 Answers

vote up 0 vote down

You could probably set the default button to null (Shell#setDefaultButton(null)) to prevent the behaviour for the complete dialog, otherwise I guess you'll have to single out the widgets where you want to supress the Enter key.

link|flag
vote up 0 vote down

According to this thread, this seems to be the only way, also illustrated by Snippet127 ("prevent Tab from traversing out of a control")

May be this Dialog class illustrates a global use of a TraverseListener with their keyTraversed() method.

link|flag
Just experimented with implementing TraverseListener in the dialog class, but it turns out the event would go to individual widget first, then 'maybe' go to the containing dialog (not sure, since I can't observe this behavior). Anyway, globally defining in dialog class doesn't seem to be a solution. – bryantsai Jun 29 at 2:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.