HomeSort by relevance Sort by last modified time
    Searched full:igraphics (Results 1 - 11 of 11) sorted by null

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/gscripts/
BaseView.groovy 49 void onSelected(IGraphics gc, INode selectedNode,
58 gc.setLineStyle(IGraphics.LineStyle.LINE_SOLID);
73 void onChildSelected(IGraphics gc, INode parentNode, INode childNode) {
79 gc.setLineStyle(IGraphics.LineStyle.LINE_DOT);
android.widget.LinearLayout.groovy 75 gc.setLineStyle(IGraphics.LineStyle.LINE_SOLID);
79 gc.setLineStyle(IGraphics.LineStyle.LINE_DOT);
97 gc.setLineStyle(IGraphics.LineStyle.LINE_SOLID);
android.widget.RelativeLayout.groovy 30 void onChildSelected(IGraphics gc, INode parentNode, INode childNode) {
323 void drawRelativeDropFeedback(IGraphics gc, INode layoutNode, DropFeedback feedback) {
332 gc.setLineStyle(IGraphics.LineStyle.LINE_SOLID);
336 gc.setLineStyle(IGraphics.LineStyle.LINE_DOT);
370 gc.setLineStyle(IGraphics.LineStyle.LINE_SOLID);
android.widget.AbsoluteLayout.groovy 40 gc.setLineStyle(IGraphics.LineStyle.LINE_SOLID);
android.widget.FrameLayout.groovy 40 gc.setLineStyle(IGraphics.LineStyle.LINE_SOLID);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/editors/layout/gscripts/
IColor.java 20 * A color, to be used with {@link IGraphics} draw operations.
IViewRule.java 80 * @param gc An {@link IGraphics} instance, to perform drawing operations.
85 void onSelected(IGraphics gc, INode selectedNode,
96 * @param gc An {@link IGraphics} instance, to perform drawing operations.
100 void onChildSelected(IGraphics gc, INode parentNode, INode childNode);
DropFeedback.java 39 * - The {@link IGraphics} context to use for painting. Must not be cached. <br/>
IGraphics.java 27 public interface IGraphics {
70 * A line style for {@link IGraphics#setLineStyle(LineStyle)}.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GCWrapper.java 20 import com.android.ide.eclipse.adt.editors.layout.gscripts.IGraphics;
35 * Wraps an SWT {@link GC} into an {@link IGraphics} interface so that {@link IViewRule} objects
40 public class GCWrapper implements IGraphics {
91 throw new RuntimeException("IGraphics used without a valid context.");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
RulesEngine.java 22 import com.android.ide.eclipse.adt.editors.layout.gscripts.IGraphics;
159 * Invokes {@link IViewRule#onSelected(IGraphics, INode, String, boolean)}
162 * @param gc An {@link IGraphics} instance, to perform drawing operations.
167 public void callOnSelected(IGraphics gc, NodeProxy selectedNode,
185 * Invokes {@link IViewRule#onChildSelected(IGraphics, INode, INode)}
188 * @param gc An {@link IGraphics} instance, to perform drawing operations.
192 public void callOnChildSelected(IGraphics gc, NodeProxy parentNode, NodeProxy childNode) {
304 public void callDropFeedbackPaint(IGraphics gc, NodeProxy targetNode, DropFeedback feedback) {

Completed in 263 milliseconds