Searched defs:control (Results 1 - 11 of 11) sorted by relevance

/sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/util/
H A DTreeColumnResizer.java41 public TreeColumnResizer(Composite control, TreeColumn column1, TreeColumn column2) { argument
42 this.mControl = control;
45 control.addListener(SWT.Resize, resizeListener);
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/ui/
H A DGridDataBuilder.java40 * Creates new {@link GridData} and associates it on the <code>control</code> composite.
42 static public GridDataBuilder create(Control control) { argument
44 control.setLayoutData(gdh.mGD);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
H A DSectionHelper.java279 * Associates a tooltip with a control.
283 * @param control The control to which associate the tooltip.
286 static public void addControlTooltip(final Control control, String tooltip) { argument
287 if (control == null || tooltip == null || tooltip.length() == 0) {
292 if (control instanceof Button) {
293 control.setToolTipText(tooltip);
297 control.setToolTipText(null);
299 final DefaultInformationControl ic = new DefaultInformationControl(control.getShell());
305 control
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
H A DSwtUtils.java365 * Get the average width of the font used by the given control
383 * @param control the control to look up the default font for
384 * @return the average width, in pixels, of the current font in the control
386 public static final int getAverageCharWidth(Control control) { argument
387 GC gc = new GC(control.getDisplay());
H A DLayoutCanvas.java106 * {@link LayoutCanvas} implements the "Canvas" control. The editor part
108 * around this control.
587 * a layout point into a control point.
589 * @return A {@link CanvasTransform} for mapping between layout and control
598 * layout point into a control point.
600 * @return A {@link CanvasTransform} for mapping between layout and control
805 * relative to the control (and not relative to the display).
809 * @return A new {@link Point} in control client coordinates (not display coordinates)
1173 * Helper to create the drag source for the given control.
1178 /* package */static DragSource createDragSource(Control control) { argument
1190 createDropTarget(Control control) argument
[all...]
H A DPaletteControl.java114 * A palette control for the {@link GraphicalEditorPart}.
195 /** The palette modes control various ways to visualize and lay out the views */
585 // Add control-click listener on custom view items to you can warp to
867 Control control = ((DragSource) event.widget).getControl();
868 GC gc = new GC(control);
869 Point size = control.getSize();
1201 private void addMenu(Control control) { argument
1202 control.addMenuDetectListener(new MenuDetectListener() {
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
H A DParameter.java183 /** The control showing this value */
185 public Control control; field in class:Parameter
187 /** The decoration associated with the control */
H A DNewProjectPage.java400 private ControlDecoration createFieldDecoration(Control control, String description) { argument
401 ControlDecoration dec = new ControlDecoration(control, SWT.LEFT);
407 control.setToolTipText(description);
H A DNewTemplatePage.java279 parameter.control = text;
331 parameter.control = checkBox;
410 // with some visual artifacts from the control decorations in the upper left corner
411 // (outside the parent widget itself) from the initial control decoration placement
413 // delay creation of the control decorations until layout has been performed.
478 parameter.control = combo;
542 private ControlDecoration createFieldDecoration(String id, Control control, argument
544 ControlDecoration decoration = new ControlDecoration(control, SWT.LEFT);
550 control.setToolTipText(description);
581 /** Returns the parameter associated with the given control */
583 getParameter(Control control) argument
858 editParameter(Control control, Object value) argument
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
H A DConfigureAssetSetPage.java448 private static void showControl(boolean show, Control control) { argument
449 Object data = control.getLayoutData();
454 control.setVisible(show);
/sdk/emulator/gps/
H A Dgps_qemu.c575 int control[2]; member in struct:__anon5
587 write( s->control[0], &cmd, 1 );
590 // close the control socket pair
591 close( s->control[0] ); s->control[0] = -1;
592 close( s->control[1] ); s->control[1] = -1;
606 do { ret=write( s->control[0], &cmd, 1 ); }
621 do { ret=write( s->control[0], &cmd, 1 ); }
671 int control_fd = state->control[
[all...]

Completed in 159 milliseconds