Searched refs:m_arrow (Results 1 – 2 of 2) sorted by relevance
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/ |
D | CCombo3.java | 43 private final Button m_arrow; field in CCombo3 73 m_arrow = new Button(this, SWT.ARROW | SWT.DOWN); in CCombo3() 74 addEvents(m_arrow, m_arrowListener, new int[]{SWT.Selection, SWT.FocusIn, SWT.FocusOut}); in CCombo3() 98 || m_arrow.isFocusControl() in CCombo3() 503 Point buttonSize = m_arrow.computeSize(areaHeight, areaHeight); in doResize() 506 m_arrow.setLocation(areaWidth - buttonSize.x, 0); in doResize() 507 m_arrow.setSize(buttonSize); in doResize()
|
D | CTableCombo.java | 47 protected Button m_arrow; field in CTableCombo 65 m_arrow = new Button(this, SWT.ARROW | SWT.DOWN | SWT.NO_FOCUS); in init() 86 if (m_arrow == event.widget) { in init() 154 m_arrow.addListener(arrowEvents[i], listener); in init() 178 if (focusControl == m_text || focusControl == m_arrow) { in handleTableEvent() 299 m_arrow = null; in handleComboEvent() 355 || focusControl == m_arrow in handleTextEvent() 545 Point arrowSize = m_arrow.computeSize(SWT.DEFAULT, SWT.DEFAULT, changed); in computeSize() 567 Point arrowSize = m_arrow.computeSize(SWT.DEFAULT, height); in internalLayout() 569 m_arrow.setBounds(rect.x + width - arrowSize.x, rect.y, arrowSize.x, arrowSize.y); in internalLayout() [all …]
|