Community
Participate
Working Groups
When clicking on a ToolItem that was created with the SWT.CHECK style, the Toolbar isn't notified about mouseUp events. Depends on qooxdoo bug: 816: qx.ui.toolbar.CheckBox prevents mouseUp event propagation http://bugzilla.qooxdoo.org/show_bug.cgi?id=816
Rüdiger, for me it seems that this is fixed in 0.7.4. At least the rev 16820 affects the files in the 0.7.4 source. Do you have a test to check this?
For a test case I've used a modified ToolBarTab in Controls Demo - add mouse listener to the ToolBar: -------------- line 53 -------------- toolBar = new ToolBar( parent, getStyle() ); toolBar.addMouseListener( new MouseListener() { public void mouseDoubleClick( MouseEvent e ) { System.out.println("toolbar mouseDoubleClick"); } public void mouseDown( MouseEvent e ) { System.out.println("toolbar mouseDown"); } public void mouseUp( MouseEvent e ) { System.out.println("toolbar mouseUp"); } } ); registerControl( toolBar ); ---------------------------------- The mouseDown and mouseUp events are fired as expected on ToolItem with SWT.CHECK style. We can close this bug.
This bug was resolved with the migration to qx 0.7.4 (bug 257022)