OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SwtDrawingStyle
(Results
1 - 3
of
3
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
EmptyViewsOverlay.java
62
mBorderColor = new Color(device,
SwtDrawingStyle
.EMPTY.getStrokeColor());
77
gc.setLineStyle(
SwtDrawingStyle
.EMPTY.getLineStyle());
79
gc.setAlpha(
SwtDrawingStyle
.EMPTY.getStrokeAlpha());
80
gc.setLineWidth(
SwtDrawingStyle
.EMPTY.getLineWidth());
OutlineOverlay.java
63
mOutlineColor = new Color(device,
SwtDrawingStyle
.OUTLINE.getStrokeColor());
79
gc.setLineStyle(
SwtDrawingStyle
.OUTLINE.getLineStyle());
81
gc.setAlpha(
SwtDrawingStyle
.OUTLINE.getStrokeAlpha());
SwtDrawingStyle.java
33
public enum
SwtDrawingStyle
{
174
private
SwtDrawingStyle
(RGB stroke, int strokeAlpha, RGB fill, int fillAlpha, int lineWidth,
193
private
SwtDrawingStyle
(RGB stroke, int strokeAlpha, int lineStyle) {
240
* Return the corresponding
SwtDrawingStyle
for the given
242
* @param style The style to convert from a {@link DrawingStyle} to a {@link
SwtDrawingStyle
}.
243
* @return A corresponding {@link
SwtDrawingStyle
}.
245
public static
SwtDrawingStyle
of(DrawingStyle style) {
Completed in 5384 milliseconds