OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SelectionHandle
(Results
1 - 6
of
6
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionHandles.java
22
import com.android.ide.eclipse.adt.internal.editors.layout.gle2.
SelectionHandle
.Position;
32
* {@link
SelectionHandle
} objects (possibly empty, for non-resizable objects) the user
35
public class SelectionHandles implements Iterable<
SelectionHandle
> {
37
private List<
SelectionHandle
> mHandles;
51
* Find a specific {@link
SelectionHandle
} from this set of {@link SelectionHandles},
53
* {@link
SelectionHandle
}.
57
* @return a {@link
SelectionHandle
} under the point, or null if not found
59
public
SelectionHandle
findHandle(LayoutPoint point, int distance) {
60
for (
SelectionHandle
handle : mHandles) {
70
* Create the {@link
SelectionHandle
} objects for the selection item, according to it
[
all
...]
SelectionHandle.java
24
public class
SelectionHandle
{
64
/** Is the {@link
SelectionHandle
} somewhere on the left edge? */
69
/** Is the {@link
SelectionHandle
} somewhere on the right edge? */
74
/** Is the {@link
SelectionHandle
} somewhere on the top edge? */
79
/** Is the {@link
SelectionHandle
} somewhere on the bottom edge? */
93
* Constructs a new {@link
SelectionHandle
} at the given layout coordinate
100
public
SelectionHandle
(int centerX, int centerY, Position position) {
ResizeGesture.java
23
import com.android.ide.eclipse.adt.internal.editors.layout.gle2.
SelectionHandle
.Position;
36
* by a drag of a {@link
SelectionHandle
}.
46
private
SelectionHandle
mHandle;
62
public ResizeGesture(LayoutCanvas canvas, SelectionItem item,
SelectionHandle
handle) {
223
private static SegmentType getHorizontalEdgeType(
SelectionHandle
handle) {
241
private static SegmentType getVerticalEdgeType(
SelectionHandle
handle) {
SelectionOverlay.java
236
int radius =
SelectionHandle
.PIXEL_RADIUS;
238
for (
SelectionHandle
handle : item.getSelectionHandles()) {
GestureManager.java
319
Pair<SelectionItem,
SelectionHandle
> handlePair =
322
SelectionHandle
handle = handlePair.getSecond();
474
Pair<SelectionItem,
SelectionHandle
> handlePair =
727
Pair<SelectionItem,
SelectionHandle
> handle =
[
all
...]
SelectionManager.java
23
import static com.android.ide.eclipse.adt.internal.editors.layout.gle2.
SelectionHandle
.PIXEL_MARGIN;
24
import static com.android.ide.eclipse.adt.internal.editors.layout.gle2.
SelectionHandle
.PIXEL_RADIUS;
[
all
...]
Completed in 2124 milliseconds