HomeSort by relevance Sort by last modified time
    Searched refs:Control (Results 1 - 25 of 250) sorted by null

1 2 3 4 5 6 7 8 910

  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
Panel.java 20 import org.eclipse.swt.widgets.Control;
28 public final Control createPanel(Composite parent) {
29 Control panelControl = createControl(parent);
39 * Creates a control capable of displaying some information. This is
42 protected abstract Control createControl(Composite parent);
45 * Sets the focus to the proper control inside the panel.
  /external/icu4c/data/brkitr/
char.txt 17 $Control = [\p{Grapheme_Cluster_Break = Control}];
44 [^$Control $CR $LF] $Extend;
46 [^$Control $CR $LF] $SpacingMark;
47 $Prepend [^$Control $CR $LF];
58 $Extend [^$Control $CR $LF];
59 $SpacingMark [^$Control $CR $LF];
60 [^$Control $CR $LF] $Prepend;
char_th.txt 17 $Control = [\p{Grapheme_Cluster_Break = Control}];
42 [^$Control $CR $LF] $Extend;
52 $Extend [^$Control $CR $LF];
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
PhysicsControl.java 5 package com.jme3.bullet.control;
8 import com.jme3.scene.control.Control;
14 public interface PhysicsControl extends Control {
21 * The physics object is removed from the physics space when the control
22 * is disabled. When the control is enabled again the physics object is
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/
SwtUtils.java 20 import org.eclipse.swt.widgets.Control;
23 public static int getFontWidth(Control c) {
AndroidPreferencePage.java 21 import org.eclipse.swt.widgets.Control;
36 protected Control createContents(Composite parent) {
  /system/bluetooth/data/
audio.conf 8 Enable=Sink,Control
16 #Disable=Control,Source
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/
IPage.java 15 import org.eclipse.swt.widgets.Control;
25 * Creates the {@link Control} for this page.
36 * control may never have been created.
41 * @return the {@link Control} of this page, may be <code>null</code>.
43 Control getControl();
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
Control.java 33 package com.jme3.scene.control;
43 * <code>Control</code>s are used to specify certain update and render logic
48 public interface Control extends Savable {
51 * Creates a clone of the Control, the given Spatial is the cloned
52 * version of the spatial to which this control is attached to.
54 * @return A clone of this control for the spatial
56 public Control cloneForSpatial(Spatial spatial);
65 * @param enabled Enable or disable the control. If disabled, update()
72 * @see Control#setEnabled(boolean)
77 * Updates the control. This should not be called from user code
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
SwtUtils.java 20 import org.eclipse.swt.widgets.Control;
27 public static int getApproximateFontWidth(Control c) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/detail/
IDetailProvider.java 21 import org.eclipse.swt.widgets.Control;
32 /** Obtain the top level control used by this detail provider. */
33 Control getControl();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
ExportFieldsPart.java 21 import org.eclipse.swt.widgets.Control;
73 HashMap<String, Control> map = getNameToField();
84 protected void setFieldModifyListener(Control field, ModifyListener markDirtyListener) {
90 protected String getFieldText(Control field) {
96 protected void setFieldText(Control field, String value) {
AbstractPropertiesFieldsPart.java 30 import org.eclipse.swt.widgets.Control;
46 private final HashMap<String, Control> mNameToField = new HashMap<String, Control>();
57 protected HashMap<String, Control> getNameToField() {
78 * @see #setFieldModifyListener(Control, ModifyListener)
92 for (Control field : mNameToField.values()) {
98 * Sets a listener that will mark the part as dirty when the control is modified.
102 * The listener must call {@link #markDirty()} when the control is modified by the user.
104 * @param field A control previously registered with {@link #getNameToField()}.
109 protected void setFieldModifyListener(Control field, ModifyListener markDirtyListener)
    [all...]
  /tools/motodev/src/plugins/emulator/src/com/motorola/studio/android/emulator/device/ui/
AbstractPropertiesComposite.java 31 import org.eclipse.swt.widgets.Control;
106 private Collection<Control> affectedControls;
108 public PropertyInstanceListener(Collection<Control> affectedControls)
188 protected void addInstanceListener(Collection<Control> affectedControls)
201 protected void updateWidgetEnableStatus(boolean enabled, Collection<Control> controlsToUpdate)
203 for (Control control : controlsToUpdate)
205 if (!control.isDisposed())
207 control.setEnabled(enabled);
  /tools/motodev/src/plugins/emulator/src/com/motorola/studio/android/emulator/ui/controls/
UIHelper.java 23 import org.eclipse.swt.widgets.Control;
46 * Retrieves the instance related to a given control
48 * @param control The control associated to an instance, which is to be retrieved
50 * @return The instance associated with the control
52 public static IAndroidEmulatorInstance getInstanceAssociatedToControl(Control control)
55 Control composite = null;
58 if (control instanceof ScrolledComposite)
60 composite = ((ScrolledComposite) control).getContent()
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
PropertyTooltipTextProvider.java 14 import org.eclipse.swt.widgets.Control;
31 public Control createTooltipControl(Property property,
49 // create tooltip Control
PropertyTooltipProvider.java 18 import org.eclipse.swt.widgets.Control;
45 * Create tooltip control.
47 public abstract Control createTooltipControl(Property property,
60 * Returns position for tooltip control. Usually we should show directly on same row, because we
94 Control tooltipControl = (Control) event.widget;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/binding/editors/controls/
DefaultControlActionsManager.java 17 import org.eclipse.swt.widgets.Control;
21 * Default manager for installing/unistalling global handlers for {@link Control} actions commands.
31 public DefaultControlActionsManager(final Control control) {
32 super(control);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
PixelConverter.java 16 import org.eclipse.swt.widgets.Control;
33 public PixelConverter(Control control) {
34 GC gc = new GC(control);
35 gc.setFont(control.getFont());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
FlagValueCellEditor.java 22 import org.eclipse.swt.widgets.Control;
39 protected Object openDialogBox(Control cellEditorWindow) {
ResourceValueCellEditor.java 23 import org.eclipse.swt.widgets.Control;
40 protected Object openDialogBox(Control cellEditorWindow) {
  /tools/motodev/src/plugins/android/src/com/motorola/studio/android/preferences/ui/
MotodevStudioPreference.java 21 import org.eclipse.swt.widgets.Control;
67 protected Control createContents(Composite parent)
  /external/jmonkeyengine/engine/src/core/com/jme3/app/
StatsView.java 44 import com.jme3.scene.control.Control;
62 public class StatsView extends Node implements Control {
114 public Control cloneForSpatial(Spatial spatial) {
115 return (Control) spatial;
  /tools/motodev/src/plugins/android/src/com/motorola/studio/android/wizards/monkey/
AbstractPropertiesComposite.java 26 import org.eclipse.swt.widgets.Control;
149 protected void updateWidgetEnableStatus(boolean enabled, Collection<Control> controlsToUpdate)
151 for (Control control : controlsToUpdate)
153 if (!control.isDisposed())
155 control.setEnabled(enabled);
  /tools/motodev/src/plugins/launch/src/com/motorola/studio/android/launch/ui/
AndroidProjectsSelectionDialog.java 21 import org.eclipse.swt.widgets.Control;
65 protected Control createDialogArea(Composite parent)
67 Control control = super.createDialogArea(parent); local
70 PlatformUI.getWorkbench().getHelpSystem().setHelp(control, PRJ_SELECTION_CONTEXT_HELP_ID);
71 return control;

Completed in 677 milliseconds

1 2 3 4 5 6 7 8 910