/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/ |
IPropertyTooltipSite.java | 22 * @return the {@link PropertyTable} of this site. 24 PropertyTable getTable();
|
PropertyTableTooltipHelper.java | 31 private final PropertyTable m_table; 39 public PropertyTableTooltipHelper(PropertyTable table) { 82 * {@link PropertyTable} call this method to inform that cursor location was changed. 106 public PropertyTable getTable() {
|
PropertyTooltipProvider.java | 97 PropertyTable table = m_site.getTable();
|
HtmlTooltipHelper.java | 96 styles = DesignerPlugin.readFile(PropertyTable.class.getResourceAsStream("Tooltip.css"), 272 ClassLoader classLoader = PropertyTable.class.getClassLoader();
|
PropertyTable.java | 64 public class PropertyTable extends Canvas implements ISelectionProvider { 147 public PropertyTable(Composite parent, int style) { 762 * the {@link PropertyTable} relative coordinate. 764 * the {@link PropertyTable} relative coordinate. 959 * @return the {@link PropertyCategory} that is used by this {@link PropertyTable} to display. [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/ |
PropertyEditorPresentation.java | 15 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 30 public abstract int show(PropertyTable propertyTable, 40 public abstract void hide(PropertyTable propertyTable, Property property);
|
ButtonPropertyEditorPresentation.java | 16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 58 public final void setSelection(PropertyTable propertyTable, Property property, boolean selected) { 59 m_impl.setSelection(propertyTable, property, selected); 68 public final int show(final PropertyTable propertyTable, 74 return m_impl.show(propertyTable, property, x, y, width, height); 78 public final void hide(PropertyTable propertyTable, Property property) { 79 m_impl.hide(propertyTable, property) [all...] |
ButtonPropertyEditorPresentationImplMac.java | 15 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 43 protected final Control createControlImpl(final PropertyTable propertyTable, Property property) { 44 CFlatButton button = new CFlatButton(propertyTable, SWT.NONE); 51 public final void setSelection(PropertyTable propertyTable, Property property, boolean selected) { 52 CFlatButton button = (CFlatButton) m_propertyToControl.get(propertyTable, property);
|
CompoundPropertyEditorPresentation.java | 16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 49 public int show(PropertyTable propertyTable, 57 int presentationWidth = presentation.show(propertyTable, property, x, y, width, height); 65 public void hide(PropertyTable propertyTable, Property property) { 67 presentation.hide(propertyTable, property);
|
ButtonPropertyEditorPresentationImpl.java | 22 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 53 public final void hide(PropertyTable propertyTable, Property property) { 54 Control control = m_propertyToControl.remove(propertyTable, property); 61 public final int show(PropertyTable propertyTable, 68 Control control = m_propertyToControl.get(propertyTable, property); 70 control = createControl(propertyTable, property); 82 public void setSelection(PropertyTable propertyTable, Property property, boolean selected) [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
PropertyEditor.java | 22 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 56 * happens when user selects property in {@link PropertyTable}. {@link PropertyEditor} should 69 public boolean activate(PropertyTable propertyTable, Property property, Point location) 82 * {@link Control}'s created before in {@link #activate(PropertyTable, Property, Point)}. 90 public void deactivate(PropertyTable propertyTable, Property property, boolean save) { 94 * Handles double click on {@link Property} value in {@link PropertyTable}. 103 * Handles {@link SWT#KeyDown} event in {@link PropertyTable}. 105 public void keyDown(PropertyTable propertyTable, Property property, KeyEvent event [all...] |
TextDialogPropertyEditor.java | 16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 34 protected void onClick(PropertyTable propertyTable, Property property) throws Exception { 50 public boolean activate(PropertyTable propertyTable, Property property, Point location)
|
AbstractComboBoxPropertyEditor.java | 16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 49 public final boolean activate(final PropertyTable propertyTable, 52 m_combo = new CComboBox(propertyTable, SWT.NONE); 60 handleKeyPressed(propertyTable, property, e); 66 propertyTable.deactivateEditor(true); 72 propertyTable.deactivateEditor(true); 91 private void handleKeyPressed(PropertyTable propertyTable, Property property, KeyEvent e) { 93 propertyTable.deactivateEditor(false) [all...] |
AbstractTextPropertyEditor.java | 35 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 59 private final PropertyTable m_propertyTable; 67 PropertyTable propertyTable) { 70 m_propertyTable = propertyTable; 158 public boolean activate(final PropertyTable propertyTable, final Property property, Point location) 162 m_textControl = new Text(propertyTable, SWT.NONE); 176 propertyTable); 192 handleKeyPressed(propertyTable, property, e) [all...] |
AbstractComboPropertyEditor.java | 15 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 45 public boolean activate(final PropertyTable propertyTable, final Property property, Point location) 49 m_combo = new CCombo3(propertyTable, SWT.NONE); 60 propertyTable.deactivateEditor(true); 67 toProperty(propertyTable, property, index); 74 propertyTable.deactivateEditor(false); 82 propertyTable.handleException(e); 83 propertyTable.deactivateEditor(false); 94 toProperty(propertyTable, property, index) [all...] |
BooleanObjectPropertyEditor.java | 15 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 84 public boolean activate(PropertyTable propertyTable, Property property, Point location)
|
BooleanPropertyEditor.java | 18 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 82 public boolean activate(PropertyTable propertyTable, Property property, Point location)
|
TextDisplayPropertyEditor.java | 15 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 21 * {@link PropertyTable}.
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/string/ |
StringPropertyEditor.java | 18 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 46 protected void onClick(PropertyTable propertyTable, Property property) throws Exception { 47 openDialog(propertyTable, property); 94 private void openDialog(PropertyTable propertyTable, Property property) throws Exception { 95 StringPropertyDialog dialog = new StringPropertyDialog(propertyTable.getShell(), property);
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/ |
ComplexProperty.java | 16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 194 public boolean activate(PropertyTable propertyTable, Property property, Point location)
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/ |
CCombo3.java | 14 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 35 * Combo control for {@link PropertyTable} and combo property editors.
|
CComboBox.java | 55 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 61 * Extended ComboBox control for {@link PropertyTable} and combo property editors.
|