Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 147456 Details for
Bug 268602
Cell editors not accessible
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
Modified patch
CellEditorsNotAccessable.txt (text/plain), 3.13 KB, created by
Lidija Grahek
on 2009-09-17 12:25:13 EDT
(
hide
)
Description:
Modified patch
Filename:
MIME Type:
Creator:
Lidija Grahek
Created:
2009-09-17 12:25:13 EDT
Size:
3.13 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.gmf.runtime.common.ui.services.properties >Index: src/org/eclipse/gmf/runtime/common/ui/services/properties/extended/MultiButtonCellEditor.java >=================================================================== >RCS file: /cvsroot/modeling/org.eclipse.gmf/plugins/org.eclipse.gmf.runtime.common.ui.services.properties/src/org/eclipse/gmf/runtime/common/ui/services/properties/extended/MultiButtonCellEditor.java,v >retrieving revision 1.3 >diff -u -r1.3 MultiButtonCellEditor.java >--- src/org/eclipse/gmf/runtime/common/ui/services/properties/extended/MultiButtonCellEditor.java 3 Oct 2006 15:01:54 -0000 1.3 >+++ src/org/eclipse/gmf/runtime/common/ui/services/properties/extended/MultiButtonCellEditor.java 17 Sep 2009 16:17:38 -0000 >@@ -20,6 +20,8 @@ > import org.eclipse.swt.events.KeyEvent; > import org.eclipse.swt.events.SelectionAdapter; > import org.eclipse.swt.events.SelectionEvent; >+import org.eclipse.swt.events.TraverseEvent; >+import org.eclipse.swt.events.TraverseListener; > import org.eclipse.swt.graphics.Color; > import org.eclipse.swt.graphics.Font; > import org.eclipse.swt.graphics.Point; >@@ -267,6 +269,21 @@ > } > } > }); >+ >+ button.addTraverseListener(new TraverseListener() { >+ >+ public void keyTraversed(TraverseEvent e) { >+ if (e.detail == SWT.TRAVERSE_TAB_PREVIOUS) { >+ e.doit = false; >+ getControl().traverse(SWT.TRAVERSE_TAB_PREVIOUS); >+ } >+ >+ if (e.detail == SWT.TRAVERSE_TAB_NEXT) { >+ e.doit = false; >+ getControl().traverse(SWT.TRAVERSE_TAB_NEXT); >+ } >+ } >+ }); > > buttonList.add(button); > } >Index: src/org/eclipse/gmf/runtime/common/ui/services/properties/extended/ExtendedComboBoxCellEditor.java >=================================================================== >RCS file: /cvsroot/modeling/org.eclipse.gmf/plugins/org.eclipse.gmf.runtime.common.ui.services.properties/src/org/eclipse/gmf/runtime/common/ui/services/properties/extended/ExtendedComboBoxCellEditor.java,v >retrieving revision 1.3 >diff -u -r1.3 ExtendedComboBoxCellEditor.java >--- src/org/eclipse/gmf/runtime/common/ui/services/properties/extended/ExtendedComboBoxCellEditor.java 2 Nov 2007 21:10:30 -0000 1.3 >+++ src/org/eclipse/gmf/runtime/common/ui/services/properties/extended/ExtendedComboBoxCellEditor.java 17 Sep 2009 16:17:38 -0000 >@@ -1,5 +1,5 @@ > /****************************************************************************** >- * Copyright (c) 2002, 2007 IBM Corporation and others. >+ * Copyright (c) 2002, 2009 IBM Corporation and others. > * All rights reserved. This program and the accompanying materials > * are made available under the terms of the Eclipse Public License v1.0 > * which accompanies this distribution, and is available at >@@ -200,7 +200,7 @@ > > public void widgetSelected(SelectionEvent e) { > // called when combo box selected >- widgetDefaultSelected(e); >+ selection = comboBox.getSelectionIndex(); > } > }); >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 268602
:
128784
| 147456