blob: 41953ed280112ad11598af8f2bd2f06d65b8dfa5 [file] [log] [blame]
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.graphics;
18
Xavier Ducrohet3f9b0372011-01-13 10:59:34 -080019import com.android.ide.common.rendering.api.LayoutLog;
Xavier Ducroheta6e51d52010-12-23 07:16:21 -080020import com.android.layoutlib.bridge.Bridge;
Xavier Ducrohet3bd98982010-11-09 18:25:03 -080021import com.android.layoutlib.bridge.impl.DelegateManager;
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -080022import com.android.tools.layoutlib.annotations.LayoutlibDelegate;
Xavier Ducrohetef44aea2010-10-28 11:52:00 -070023
24import android.graphics.Paint.FontMetrics;
25import android.graphics.Paint.FontMetricsInt;
Xavier Ducrohet37f21802010-11-01 16:17:18 -070026import android.text.TextUtils;
Xavier Ducrohetef44aea2010-10-28 11:52:00 -070027
Xavier Ducrohet37f21802010-11-01 16:17:18 -070028import java.awt.BasicStroke;
Xavier Ducrohetef44aea2010-10-28 11:52:00 -070029import java.awt.Font;
Xavier Ducrohetb9761242010-12-23 10:22:14 -080030import java.awt.Shape;
31import java.awt.Stroke;
Xavier Ducrohetef44aea2010-10-28 11:52:00 -070032import java.awt.Toolkit;
33import java.awt.font.FontRenderContext;
34import java.awt.geom.AffineTransform;
35import java.util.ArrayList;
36import java.util.Collections;
37import java.util.List;
Xavier Ducrohet43526ab2012-04-23 17:41:37 -070038import java.util.Locale;
Xavier Ducrohetef44aea2010-10-28 11:52:00 -070039
40/**
41 * Delegate implementing the native methods of android.graphics.Paint
42 *
43 * Through the layoutlib_create tool, the original native methods of Paint have been replaced
44 * by calls to methods of the same name in this delegate class.
45 *
46 * This class behaves like the original native implementation, but in Java, keeping previously
47 * native data into its own objects and mapping them to int that are sent back and forth between
48 * it and the original Paint class.
49 *
50 * @see DelegateManager
51 *
52 */
53public class Paint_Delegate {
54
55 /**
56 * Class associating a {@link Font} and it's {@link java.awt.FontMetrics}.
57 */
Xavier Ducrohet37f21802010-11-01 16:17:18 -070058 /*package*/ static final class FontInfo {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -070059 Font mFont;
60 java.awt.FontMetrics mMetrics;
61 }
62
63 // ---- delegate manager ----
64 private static final DelegateManager<Paint_Delegate> sManager =
Xavier Ducrohetb2de8392011-02-23 16:51:08 -080065 new DelegateManager<Paint_Delegate>(Paint_Delegate.class);
Xavier Ducrohetef44aea2010-10-28 11:52:00 -070066
67 // ---- delegate helper data ----
68 private List<FontInfo> mFonts;
69 private final FontRenderContext mFontContext = new FontRenderContext(
70 new AffineTransform(), true, true);
71
72 // ---- delegate data ----
73 private int mFlags;
74 private int mColor;
75 private int mStyle;
76 private int mCap;
77 private int mJoin;
Xavier Ducrohet37f21802010-11-01 16:17:18 -070078 private int mTextAlign;
Xavier Ducrohet91672792011-02-22 11:54:37 -080079 private Typeface_Delegate mTypeface;
Xavier Ducrohetef44aea2010-10-28 11:52:00 -070080 private float mStrokeWidth;
81 private float mStrokeMiter;
82 private float mTextSize;
83 private float mTextScaleX;
84 private float mTextSkewX;
Xavier Ducrohetb6f7f572011-08-22 13:13:16 -070085 private int mHintingMode = Paint.HINTING_ON;
Xavier Ducrohetef44aea2010-10-28 11:52:00 -070086
Xavier Ducrohet91672792011-02-22 11:54:37 -080087 private Xfermode_Delegate mXfermode;
88 private ColorFilter_Delegate mColorFilter;
89 private Shader_Delegate mShader;
90 private PathEffect_Delegate mPathEffect;
91 private MaskFilter_Delegate mMaskFilter;
92 private Rasterizer_Delegate mRasterizer;
Xavier Ducroheta313b652010-11-01 18:45:20 -070093
Xavier Ducrohet43526ab2012-04-23 17:41:37 -070094 private Locale mLocale = Locale.getDefault();
95
Xavier Ducrohetef44aea2010-10-28 11:52:00 -070096
97 // ---- Public Helper methods ----
98
Xavier Ducrohet37f21802010-11-01 16:17:18 -070099 public static Paint_Delegate getDelegate(int native_paint) {
100 return sManager.getDelegate(native_paint);
101 }
102
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700103 /**
104 * Returns the list of {@link Font} objects. The first item is the main font, the rest
105 * are fall backs for characters not present in the main font.
106 */
107 public List<FontInfo> getFonts() {
108 return mFonts;
109 }
110
Xavier Ducroheta313b652010-11-01 18:45:20 -0700111 public boolean isAntiAliased() {
112 return (mFlags & Paint.ANTI_ALIAS_FLAG) != 0;
113 }
114
Xavier Ducrohet37f21802010-11-01 16:17:18 -0700115 public boolean isFilterBitmap() {
116 return (mFlags & Paint.FILTER_BITMAP_FLAG) != 0;
117 }
118
119 public int getStyle() {
120 return mStyle;
121 }
122
123 public int getColor() {
124 return mColor;
125 }
126
Xavier Ducrohet66225222010-12-21 01:33:04 -0800127 public int getAlpha() {
128 return mColor >>> 24;
129 }
130
Xavier Ducrohetcf2030c2010-12-21 06:20:28 -0800131 public void setAlpha(int alpha) {
132 mColor = (alpha << 24) | (mColor & 0x00FFFFFF);
133 }
134
Xavier Ducrohet37f21802010-11-01 16:17:18 -0700135 public int getTextAlign() {
136 return mTextAlign;
137 }
138
139 public float getStrokeWidth() {
140 return mStrokeWidth;
141 }
142
Xavier Ducrohet66225222010-12-21 01:33:04 -0800143 /**
144 * returns the value of stroke miter needed by the java api.
145 */
146 public float getJavaStrokeMiter() {
Xavier Ducrohetcf2030c2010-12-21 06:20:28 -0800147 float miter = mStrokeMiter * mStrokeWidth;
148 if (miter < 1.f) {
149 miter = 1.f;
150 }
151 return miter;
Xavier Ducrohet37f21802010-11-01 16:17:18 -0700152 }
153
154 public int getJavaCap() {
155 switch (Paint.sCapArray[mCap]) {
156 case BUTT:
157 return BasicStroke.CAP_BUTT;
158 case ROUND:
159 return BasicStroke.CAP_ROUND;
160 default:
161 case SQUARE:
162 return BasicStroke.CAP_SQUARE;
163 }
164 }
165
166 public int getJavaJoin() {
167 switch (Paint.sJoinArray[mJoin]) {
168 default:
169 case MITER:
170 return BasicStroke.JOIN_MITER;
171 case ROUND:
172 return BasicStroke.JOIN_ROUND;
173 case BEVEL:
174 return BasicStroke.JOIN_BEVEL;
175 }
176 }
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700177
Xavier Ducrohetb9761242010-12-23 10:22:14 -0800178 public Stroke getJavaStroke() {
Xavier Ducrohet91672792011-02-22 11:54:37 -0800179 if (mPathEffect != null) {
180 if (mPathEffect.isSupported()) {
181 Stroke stroke = mPathEffect.getStroke(this);
Xavier Ducrohetb9761242010-12-23 10:22:14 -0800182 assert stroke != null;
183 if (stroke != null) {
184 return stroke;
185 }
186 } else {
Xavier Ducrohet3f9b0372011-01-13 10:59:34 -0800187 Bridge.getLog().fidelityWarning(LayoutLog.TAG_PATHEFFECT,
Xavier Ducrohet91672792011-02-22 11:54:37 -0800188 mPathEffect.getSupportMessage(),
Xavier Ducrohetf69bb292011-01-14 16:40:43 -0800189 null, null /*data*/);
Xavier Ducrohetb9761242010-12-23 10:22:14 -0800190 }
191 }
192
193 // if no custom stroke as been set, set the default one.
194 return new BasicStroke(
195 getStrokeWidth(),
196 getJavaCap(),
197 getJavaJoin(),
198 getJavaStrokeMiter());
199 }
200
Xavier Ducroheta6e51d52010-12-23 07:16:21 -0800201 /**
202 * Returns the {@link Xfermode} delegate or null if none have been set
203 *
204 * @return the delegate or null.
205 */
206 public Xfermode_Delegate getXfermode() {
Xavier Ducrohet91672792011-02-22 11:54:37 -0800207 return mXfermode;
Xavier Ducrohetf1a174522010-11-01 22:02:08 -0700208 }
209
Xavier Ducroheta6e51d52010-12-23 07:16:21 -0800210 /**
211 * Returns the {@link ColorFilter} delegate or null if none have been set
212 *
213 * @return the delegate or null.
214 */
215 public ColorFilter_Delegate getColorFilter() {
Xavier Ducrohet91672792011-02-22 11:54:37 -0800216 return mColorFilter;
Xavier Ducrohetf1a174522010-11-01 22:02:08 -0700217 }
218
Xavier Ducroheta6e51d52010-12-23 07:16:21 -0800219 /**
220 * Returns the {@link Shader} delegate or null if none have been set
221 *
222 * @return the delegate or null.
223 */
224 public Shader_Delegate getShader() {
Xavier Ducrohet91672792011-02-22 11:54:37 -0800225 return mShader;
Xavier Ducrohetf1a174522010-11-01 22:02:08 -0700226 }
227
Xavier Ducroheta6e51d52010-12-23 07:16:21 -0800228 /**
Xavier Ducroheta6e51d52010-12-23 07:16:21 -0800229 * Returns the {@link MaskFilter} delegate or null if none have been set
230 *
231 * @return the delegate or null.
232 */
233 public MaskFilter_Delegate getMaskFilter() {
Xavier Ducrohet91672792011-02-22 11:54:37 -0800234 return mMaskFilter;
Xavier Ducroheta6e51d52010-12-23 07:16:21 -0800235 }
236
237 /**
238 * Returns the {@link Rasterizer} delegate or null if none have been set
239 *
240 * @return the delegate or null.
241 */
242 public Rasterizer_Delegate getRasterizer() {
Xavier Ducrohet91672792011-02-22 11:54:37 -0800243 return mRasterizer;
Xavier Ducrohetf1a174522010-11-01 22:02:08 -0700244 }
245
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700246 // ---- native methods ----
247
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800248 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700249 /*package*/ static int getFlags(Paint thisPaint) {
250 // get the delegate from the native int.
251 Paint_Delegate delegate = sManager.getDelegate(thisPaint.mNativePaint);
252 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700253 return 0;
254 }
255
256 return delegate.mFlags;
257 }
258
Xavier Ducrohet43526ab2012-04-23 17:41:37 -0700259
260
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800261 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700262 /*package*/ static void setFlags(Paint thisPaint, int flags) {
263 // get the delegate from the native int.
264 Paint_Delegate delegate = sManager.getDelegate(thisPaint.mNativePaint);
265 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700266 return;
267 }
268
269 delegate.mFlags = flags;
270 }
271
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800272 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700273 /*package*/ static void setFilterBitmap(Paint thisPaint, boolean filter) {
Xavier Ducrohet37f21802010-11-01 16:17:18 -0700274 setFlag(thisPaint, Paint.FILTER_BITMAP_FLAG, filter);
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700275 }
276
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800277 @LayoutlibDelegate
Xavier Ducrohetb6f7f572011-08-22 13:13:16 -0700278 /*package*/ static int getHinting(Paint thisPaint) {
279 // get the delegate from the native int.
280 Paint_Delegate delegate = sManager.getDelegate(thisPaint.mNativePaint);
281 if (delegate == null) {
282 return Paint.HINTING_ON;
283 }
284
285 return delegate.mHintingMode;
286 }
287
288 @LayoutlibDelegate
289 /*package*/ static void setHinting(Paint thisPaint, int mode) {
290 // get the delegate from the native int.
291 Paint_Delegate delegate = sManager.getDelegate(thisPaint.mNativePaint);
292 if (delegate == null) {
293 return;
294 }
295
296 delegate.mHintingMode = mode;
297 }
298
299 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700300 /*package*/ static void setAntiAlias(Paint thisPaint, boolean aa) {
301 setFlag(thisPaint, Paint.ANTI_ALIAS_FLAG, aa);
302 }
303
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800304 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700305 /*package*/ static void setSubpixelText(Paint thisPaint, boolean subpixelText) {
306 setFlag(thisPaint, Paint.SUBPIXEL_TEXT_FLAG, subpixelText);
307 }
308
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800309 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700310 /*package*/ static void setUnderlineText(Paint thisPaint, boolean underlineText) {
311 setFlag(thisPaint, Paint.UNDERLINE_TEXT_FLAG, underlineText);
312 }
313
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800314 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700315 /*package*/ static void setStrikeThruText(Paint thisPaint, boolean strikeThruText) {
316 setFlag(thisPaint, Paint.STRIKE_THRU_TEXT_FLAG, strikeThruText);
317 }
318
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800319 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700320 /*package*/ static void setFakeBoldText(Paint thisPaint, boolean fakeBoldText) {
321 setFlag(thisPaint, Paint.FAKE_BOLD_TEXT_FLAG, fakeBoldText);
322 }
323
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800324 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700325 /*package*/ static void setDither(Paint thisPaint, boolean dither) {
326 setFlag(thisPaint, Paint.DITHER_FLAG, dither);
327 }
328
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800329 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700330 /*package*/ static void setLinearText(Paint thisPaint, boolean linearText) {
331 setFlag(thisPaint, Paint.LINEAR_TEXT_FLAG, linearText);
332 }
333
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800334 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700335 /*package*/ static int getColor(Paint thisPaint) {
336 // get the delegate from the native int.
337 Paint_Delegate delegate = sManager.getDelegate(thisPaint.mNativePaint);
338 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700339 return 0;
340 }
341
342 return delegate.mColor;
343 }
344
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800345 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700346 /*package*/ static void setColor(Paint thisPaint, int color) {
347 // get the delegate from the native int.
348 Paint_Delegate delegate = sManager.getDelegate(thisPaint.mNativePaint);
349 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700350 return;
351 }
352
353 delegate.mColor = color;
354 }
355
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800356 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700357 /*package*/ static int getAlpha(Paint thisPaint) {
358 // get the delegate from the native int.
359 Paint_Delegate delegate = sManager.getDelegate(thisPaint.mNativePaint);
360 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700361 return 0;
362 }
363
Xavier Ducrohet66225222010-12-21 01:33:04 -0800364 return delegate.getAlpha();
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700365 }
366
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800367 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700368 /*package*/ static void setAlpha(Paint thisPaint, int a) {
369 // get the delegate from the native int.
370 Paint_Delegate delegate = sManager.getDelegate(thisPaint.mNativePaint);
371 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700372 return;
373 }
374
Xavier Ducrohetcf2030c2010-12-21 06:20:28 -0800375 delegate.setAlpha(a);
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700376 }
377
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800378 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700379 /*package*/ static float getStrokeWidth(Paint thisPaint) {
380 // get the delegate from the native int.
381 Paint_Delegate delegate = sManager.getDelegate(thisPaint.mNativePaint);
382 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700383 return 1.f;
384 }
385
386 return delegate.mStrokeWidth;
387 }
388
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800389 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700390 /*package*/ static void setStrokeWidth(Paint thisPaint, float width) {
391 // get the delegate from the native int.
392 Paint_Delegate delegate = sManager.getDelegate(thisPaint.mNativePaint);
393 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700394 return;
395 }
396
397 delegate.mStrokeWidth = width;
398 }
399
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800400 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700401 /*package*/ static float getStrokeMiter(Paint thisPaint) {
402 // get the delegate from the native int.
403 Paint_Delegate delegate = sManager.getDelegate(thisPaint.mNativePaint);
404 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700405 return 1.f;
406 }
407
408 return delegate.mStrokeMiter;
409 }
410
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800411 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700412 /*package*/ static void setStrokeMiter(Paint thisPaint, float miter) {
413 // get the delegate from the native int.
414 Paint_Delegate delegate = sManager.getDelegate(thisPaint.mNativePaint);
415 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700416 return;
417 }
418
419 delegate.mStrokeMiter = miter;
420 }
421
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800422 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700423 /*package*/ static void nSetShadowLayer(Paint thisPaint, float radius, float dx, float dy,
424 int color) {
425 // FIXME
Xavier Ducrohet3f9b0372011-01-13 10:59:34 -0800426 Bridge.getLog().fidelityWarning(LayoutLog.TAG_UNSUPPORTED,
Xavier Ducrohetf69bb292011-01-14 16:40:43 -0800427 "Paint.setShadowLayer is not supported.", null, null /*data*/);
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700428 }
429
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800430 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700431 /*package*/ static float getTextSize(Paint thisPaint) {
432 // get the delegate from the native int.
433 Paint_Delegate delegate = sManager.getDelegate(thisPaint.mNativePaint);
434 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700435 return 1.f;
436 }
437
438 return delegate.mTextSize;
439 }
440
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800441 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700442 /*package*/ static void setTextSize(Paint thisPaint, float textSize) {
443 // get the delegate from the native int.
444 Paint_Delegate delegate = sManager.getDelegate(thisPaint.mNativePaint);
445 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700446 return;
447 }
448
449 delegate.mTextSize = textSize;
Xavier Ducrohet42e2b282010-12-06 11:08:37 -0800450 delegate.updateFontObject();
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700451 }
452
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800453 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700454 /*package*/ static float getTextScaleX(Paint thisPaint) {
455 // get the delegate from the native int.
456 Paint_Delegate delegate = sManager.getDelegate(thisPaint.mNativePaint);
457 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700458 return 1.f;
459 }
460
461 return delegate.mTextScaleX;
462 }
463
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800464 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700465 /*package*/ static void setTextScaleX(Paint thisPaint, float scaleX) {
466 // get the delegate from the native int.
467 Paint_Delegate delegate = sManager.getDelegate(thisPaint.mNativePaint);
468 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700469 return;
470 }
471
472 delegate.mTextScaleX = scaleX;
Xavier Ducrohet42e2b282010-12-06 11:08:37 -0800473 delegate.updateFontObject();
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700474 }
475
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800476 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700477 /*package*/ static float getTextSkewX(Paint thisPaint) {
478 // get the delegate from the native int.
479 Paint_Delegate delegate = sManager.getDelegate(thisPaint.mNativePaint);
480 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700481 return 1.f;
482 }
483
484 return delegate.mTextSkewX;
485 }
486
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800487 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700488 /*package*/ static void setTextSkewX(Paint thisPaint, float skewX) {
489 // get the delegate from the native int.
490 Paint_Delegate delegate = sManager.getDelegate(thisPaint.mNativePaint);
491 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700492 return;
493 }
494
495 delegate.mTextSkewX = skewX;
Xavier Ducrohet42e2b282010-12-06 11:08:37 -0800496 delegate.updateFontObject();
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700497 }
498
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800499 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700500 /*package*/ static float ascent(Paint thisPaint) {
Xavier Ducrohetdf67eab2010-12-13 16:42:01 -0800501 // get the delegate
502 Paint_Delegate delegate = sManager.getDelegate(thisPaint.mNativePaint);
503 if (delegate == null) {
Xavier Ducrohetdf67eab2010-12-13 16:42:01 -0800504 return 0;
505 }
506
507 if (delegate.mFonts.size() > 0) {
508 java.awt.FontMetrics javaMetrics = delegate.mFonts.get(0).mMetrics;
509 // Android expects negative ascent so we invert the value from Java.
510 return - javaMetrics.getAscent();
511 }
512
513 return 0;
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700514 }
515
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800516 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700517 /*package*/ static float descent(Paint thisPaint) {
Xavier Ducrohetdf67eab2010-12-13 16:42:01 -0800518 // get the delegate
519 Paint_Delegate delegate = sManager.getDelegate(thisPaint.mNativePaint);
520 if (delegate == null) {
Xavier Ducrohetdf67eab2010-12-13 16:42:01 -0800521 return 0;
522 }
523
524 if (delegate.mFonts.size() > 0) {
525 java.awt.FontMetrics javaMetrics = delegate.mFonts.get(0).mMetrics;
526 return javaMetrics.getDescent();
527 }
528
529 return 0;
530
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700531 }
532
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800533 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700534 /*package*/ static float getFontMetrics(Paint thisPaint, FontMetrics metrics) {
Xavier Ducrohet37f21802010-11-01 16:17:18 -0700535 // get the delegate
536 Paint_Delegate delegate = sManager.getDelegate(thisPaint.mNativePaint);
537 if (delegate == null) {
Xavier Ducrohet37f21802010-11-01 16:17:18 -0700538 return 0;
539 }
540
Xavier Ducrohetdf67eab2010-12-13 16:42:01 -0800541 return delegate.getFontMetrics(metrics);
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700542 }
543
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800544 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700545 /*package*/ static int getFontMetricsInt(Paint thisPaint, FontMetricsInt fmi) {
Xavier Ducrohet37f21802010-11-01 16:17:18 -0700546 // get the delegate
547 Paint_Delegate delegate = sManager.getDelegate(thisPaint.mNativePaint);
548 if (delegate == null) {
Xavier Ducrohet37f21802010-11-01 16:17:18 -0700549 return 0;
550 }
551
552 if (delegate.mFonts.size() > 0) {
553 java.awt.FontMetrics javaMetrics = delegate.mFonts.get(0).mMetrics;
554 if (fmi != null) {
555 // Android expects negative ascent so we invert the value from Java.
556 fmi.top = - javaMetrics.getMaxAscent();
557 fmi.ascent = - javaMetrics.getAscent();
558 fmi.descent = javaMetrics.getDescent();
559 fmi.bottom = javaMetrics.getMaxDescent();
560 fmi.leading = javaMetrics.getLeading();
561 }
562
563 return javaMetrics.getHeight();
564 }
565
566 return 0;
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700567 }
568
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800569 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700570 /*package*/ static float native_measureText(Paint thisPaint, char[] text, int index,
Deepanshu Guptac398f182013-05-23 15:20:04 -0700571 int count, int bidiFlags) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700572 // get the delegate
573 Paint_Delegate delegate = sManager.getDelegate(thisPaint.mNativePaint);
574 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700575 return 0;
576 }
577
Deepanshu Guptaa6b207a2013-07-12 11:38:05 -0700578 return delegate.measureText(text, index, count, isRtl(bidiFlags));
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700579 }
580
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800581 @LayoutlibDelegate
Deepanshu Guptac398f182013-05-23 15:20:04 -0700582 /*package*/ static float native_measureText(Paint thisPaint, String text, int start, int end,
583 int bidiFlags) {
584 return native_measureText(thisPaint, text.toCharArray(), start, end - start, bidiFlags);
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700585 }
586
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800587 @LayoutlibDelegate
Deepanshu Guptac398f182013-05-23 15:20:04 -0700588 /*package*/ static float native_measureText(Paint thisPaint, String text, int bidiFlags) {
589 return native_measureText(thisPaint, text.toCharArray(), 0, text.length(), bidiFlags);
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700590 }
591
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800592 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700593 /*package*/ static int native_breakText(Paint thisPaint, char[] text, int index, int count,
Deepanshu Guptac398f182013-05-23 15:20:04 -0700594 float maxWidth, int bidiFlags, float[] measuredWidth) {
Xavier Ducrohetf4d52a62011-02-23 09:53:56 -0800595
596 // get the delegate
597 Paint_Delegate delegate = sManager.getDelegate(thisPaint.mNativePaint);
598 if (delegate == null) {
599 return 0;
600 }
601
602 int inc = count > 0 ? 1 : -1;
603
604 int measureIndex = 0;
605 float measureAcc = 0;
606 for (int i = index; i != index + count; i += inc, measureIndex++) {
607 int start, end;
608 if (i < index) {
609 start = i;
610 end = index;
611 } else {
612 start = index;
613 end = i;
614 }
615
616 // measure from start to end
Deepanshu Guptaa6b207a2013-07-12 11:38:05 -0700617 float res = delegate.measureText(text, start, end - start + 1, isRtl(bidiFlags));
Xavier Ducrohetf4d52a62011-02-23 09:53:56 -0800618
619 if (measuredWidth != null) {
620 measuredWidth[measureIndex] = res;
621 }
622
623 measureAcc += res;
624 if (res > maxWidth) {
625 // we should not return this char index, but since it's 0-based
626 // and we need to return a count, we simply return measureIndex;
627 return measureIndex;
628 }
629
630 }
631
632 return measureIndex;
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700633 }
634
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800635 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700636 /*package*/ static int native_breakText(Paint thisPaint, String text, boolean measureForwards,
Deepanshu Guptac398f182013-05-23 15:20:04 -0700637 float maxWidth, int bidiFlags, float[] measuredWidth) {
Xavier Ducrohetf4d52a62011-02-23 09:53:56 -0800638 return native_breakText(thisPaint, text.toCharArray(), 0, text.length(), maxWidth,
Deepanshu Guptac398f182013-05-23 15:20:04 -0700639 bidiFlags, measuredWidth);
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700640 }
641
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800642 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700643 /*package*/ static int native_init() {
644 Paint_Delegate newDelegate = new Paint_Delegate();
Xavier Ducrohet91672792011-02-22 11:54:37 -0800645 return sManager.addNewDelegate(newDelegate);
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700646 }
647
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800648 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700649 /*package*/ static int native_initWithPaint(int paint) {
650 // get the delegate from the native int.
651 Paint_Delegate delegate = sManager.getDelegate(paint);
652 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700653 return 0;
654 }
655
656 Paint_Delegate newDelegate = new Paint_Delegate(delegate);
Xavier Ducrohet91672792011-02-22 11:54:37 -0800657 return sManager.addNewDelegate(newDelegate);
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700658 }
659
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800660 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700661 /*package*/ static void native_reset(int native_object) {
662 // get the delegate from the native int.
663 Paint_Delegate delegate = sManager.getDelegate(native_object);
664 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700665 return;
666 }
667
668 delegate.reset();
669 }
670
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800671 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700672 /*package*/ static void native_set(int native_dst, int native_src) {
673 // get the delegate from the native int.
674 Paint_Delegate delegate_dst = sManager.getDelegate(native_dst);
675 if (delegate_dst == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700676 return;
677 }
678
679 // get the delegate from the native int.
680 Paint_Delegate delegate_src = sManager.getDelegate(native_src);
681 if (delegate_src == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700682 return;
683 }
684
685 delegate_dst.set(delegate_src);
686 }
687
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800688 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700689 /*package*/ static int native_getStyle(int native_object) {
690 // get the delegate from the native int.
691 Paint_Delegate delegate = sManager.getDelegate(native_object);
692 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700693 return 0;
694 }
695
696 return delegate.mStyle;
697 }
698
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800699 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700700 /*package*/ static void native_setStyle(int native_object, int style) {
701 // get the delegate from the native int.
702 Paint_Delegate delegate = sManager.getDelegate(native_object);
703 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700704 return;
705 }
706
707 delegate.mStyle = style;
708 }
709
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800710 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700711 /*package*/ static int native_getStrokeCap(int native_object) {
712 // get the delegate from the native int.
713 Paint_Delegate delegate = sManager.getDelegate(native_object);
714 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700715 return 0;
716 }
717
718 return delegate.mCap;
719 }
720
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800721 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700722 /*package*/ static void native_setStrokeCap(int native_object, int cap) {
723 // get the delegate from the native int.
724 Paint_Delegate delegate = sManager.getDelegate(native_object);
725 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700726 return;
727 }
728
729 delegate.mCap = cap;
730 }
731
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800732 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700733 /*package*/ static int native_getStrokeJoin(int native_object) {
734 // get the delegate from the native int.
735 Paint_Delegate delegate = sManager.getDelegate(native_object);
736 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700737 return 0;
738 }
739
740 return delegate.mJoin;
741 }
742
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800743 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700744 /*package*/ static void native_setStrokeJoin(int native_object, int join) {
745 // get the delegate from the native int.
746 Paint_Delegate delegate = sManager.getDelegate(native_object);
747 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700748 return;
749 }
750
751 delegate.mJoin = join;
752 }
753
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800754 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700755 /*package*/ static boolean native_getFillPath(int native_object, int src, int dst) {
Xavier Ducrohetb9761242010-12-23 10:22:14 -0800756 Paint_Delegate paint = sManager.getDelegate(native_object);
757 if (paint == null) {
758 return false;
759 }
760
761 Path_Delegate srcPath = Path_Delegate.getDelegate(src);
762 if (srcPath == null) {
763 return true;
764 }
765
766 Path_Delegate dstPath = Path_Delegate.getDelegate(dst);
767 if (dstPath == null) {
768 return true;
769 }
770
771 Stroke stroke = paint.getJavaStroke();
772 Shape strokeShape = stroke.createStrokedShape(srcPath.getJavaShape());
773
774 dstPath.setJavaShape(strokeShape);
775
776 // FIXME figure out the return value?
777 return true;
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700778 }
779
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800780 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700781 /*package*/ static int native_setShader(int native_object, int shader) {
Xavier Ducroheta313b652010-11-01 18:45:20 -0700782 // get the delegate from the native int.
783 Paint_Delegate delegate = sManager.getDelegate(native_object);
784 if (delegate == null) {
Xavier Ducroheta313b652010-11-01 18:45:20 -0700785 return shader;
786 }
787
Xavier Ducrohet91672792011-02-22 11:54:37 -0800788 delegate.mShader = Shader_Delegate.getDelegate(shader);
789
790 return shader;
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700791 }
792
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800793 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700794 /*package*/ static int native_setColorFilter(int native_object, int filter) {
Xavier Ducroheta313b652010-11-01 18:45:20 -0700795 // get the delegate from the native int.
796 Paint_Delegate delegate = sManager.getDelegate(native_object);
797 if (delegate == null) {
Xavier Ducroheta313b652010-11-01 18:45:20 -0700798 return filter;
799 }
800
Xavier Ducrohet91672792011-02-22 11:54:37 -0800801 delegate.mColorFilter = ColorFilter_Delegate.getDelegate(filter);;
Xavier Ducroheta6e51d52010-12-23 07:16:21 -0800802
803 // since none of those are supported, display a fidelity warning right away
Xavier Ducrohet91672792011-02-22 11:54:37 -0800804 if (delegate.mColorFilter != null && delegate.mColorFilter.isSupported() == false) {
Xavier Ducrohet3f9b0372011-01-13 10:59:34 -0800805 Bridge.getLog().fidelityWarning(LayoutLog.TAG_COLORFILTER,
Xavier Ducrohet91672792011-02-22 11:54:37 -0800806 delegate.mColorFilter.getSupportMessage(), null, null /*data*/);
Xavier Ducroheta6e51d52010-12-23 07:16:21 -0800807 }
808
809 return filter;
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700810 }
811
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800812 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700813 /*package*/ static int native_setXfermode(int native_object, int xfermode) {
Xavier Ducroheta313b652010-11-01 18:45:20 -0700814 // get the delegate from the native int.
815 Paint_Delegate delegate = sManager.getDelegate(native_object);
816 if (delegate == null) {
Xavier Ducroheta313b652010-11-01 18:45:20 -0700817 return xfermode;
818 }
819
Xavier Ducrohet91672792011-02-22 11:54:37 -0800820 delegate.mXfermode = Xfermode_Delegate.getDelegate(xfermode);
821
822 return xfermode;
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700823 }
824
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800825 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700826 /*package*/ static int native_setPathEffect(int native_object, int effect) {
Xavier Ducroheta313b652010-11-01 18:45:20 -0700827 // get the delegate from the native int.
828 Paint_Delegate delegate = sManager.getDelegate(native_object);
829 if (delegate == null) {
Xavier Ducroheta313b652010-11-01 18:45:20 -0700830 return effect;
831 }
832
Xavier Ducrohet91672792011-02-22 11:54:37 -0800833 delegate.mPathEffect = PathEffect_Delegate.getDelegate(effect);
834
835 return effect;
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700836 }
837
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800838 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700839 /*package*/ static int native_setMaskFilter(int native_object, int maskfilter) {
Xavier Ducroheta313b652010-11-01 18:45:20 -0700840 // get the delegate from the native int.
841 Paint_Delegate delegate = sManager.getDelegate(native_object);
842 if (delegate == null) {
Xavier Ducroheta313b652010-11-01 18:45:20 -0700843 return maskfilter;
844 }
845
Xavier Ducrohet91672792011-02-22 11:54:37 -0800846 delegate.mMaskFilter = MaskFilter_Delegate.getDelegate(maskfilter);
Xavier Ducroheta6e51d52010-12-23 07:16:21 -0800847
848 // since none of those are supported, display a fidelity warning right away
Xavier Ducrohet91672792011-02-22 11:54:37 -0800849 if (delegate.mMaskFilter != null && delegate.mMaskFilter.isSupported() == false) {
Xavier Ducrohet3f9b0372011-01-13 10:59:34 -0800850 Bridge.getLog().fidelityWarning(LayoutLog.TAG_MASKFILTER,
Xavier Ducrohet91672792011-02-22 11:54:37 -0800851 delegate.mMaskFilter.getSupportMessage(), null, null /*data*/);
Xavier Ducroheta6e51d52010-12-23 07:16:21 -0800852 }
853
854 return maskfilter;
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700855 }
856
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800857 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700858 /*package*/ static int native_setTypeface(int native_object, int typeface) {
859 // get the delegate from the native int.
860 Paint_Delegate delegate = sManager.getDelegate(native_object);
861 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700862 return 0;
863 }
864
Xavier Ducrohet91672792011-02-22 11:54:37 -0800865 delegate.mTypeface = Typeface_Delegate.getDelegate(typeface);
Xavier Ducrohet42e2b282010-12-06 11:08:37 -0800866 delegate.updateFontObject();
Xavier Ducrohet91672792011-02-22 11:54:37 -0800867 return typeface;
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700868 }
869
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800870 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700871 /*package*/ static int native_setRasterizer(int native_object, int rasterizer) {
Xavier Ducroheta6e51d52010-12-23 07:16:21 -0800872 // get the delegate from the native int.
873 Paint_Delegate delegate = sManager.getDelegate(native_object);
874 if (delegate == null) {
875 return rasterizer;
876 }
877
Xavier Ducrohet91672792011-02-22 11:54:37 -0800878 delegate.mRasterizer = Rasterizer_Delegate.getDelegate(rasterizer);
Xavier Ducroheta6e51d52010-12-23 07:16:21 -0800879
880 // since none of those are supported, display a fidelity warning right away
Xavier Ducrohet91672792011-02-22 11:54:37 -0800881 if (delegate.mRasterizer != null && delegate.mRasterizer.isSupported() == false) {
Xavier Ducrohet3f9b0372011-01-13 10:59:34 -0800882 Bridge.getLog().fidelityWarning(LayoutLog.TAG_RASTERIZER,
Xavier Ducrohet91672792011-02-22 11:54:37 -0800883 delegate.mRasterizer.getSupportMessage(), null, null /*data*/);
Xavier Ducroheta6e51d52010-12-23 07:16:21 -0800884 }
885
886 return rasterizer;
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700887 }
888
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800889 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700890 /*package*/ static int native_getTextAlign(int native_object) {
891 // get the delegate from the native int.
892 Paint_Delegate delegate = sManager.getDelegate(native_object);
893 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700894 return 0;
895 }
896
Xavier Ducrohet37f21802010-11-01 16:17:18 -0700897 return delegate.mTextAlign;
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700898 }
899
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800900 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700901 /*package*/ static void native_setTextAlign(int native_object, int align) {
902 // get the delegate from the native int.
903 Paint_Delegate delegate = sManager.getDelegate(native_object);
904 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700905 return;
906 }
907
Xavier Ducrohet37f21802010-11-01 16:17:18 -0700908 delegate.mTextAlign = align;
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700909 }
910
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800911 @LayoutlibDelegate
Xavier Ducrohet43526ab2012-04-23 17:41:37 -0700912 /*package*/ static void native_setTextLocale(int native_object, String locale) {
913 // get the delegate from the native int.
914 Paint_Delegate delegate = sManager.getDelegate(native_object);
915 if (delegate == null) {
916 return;
917 }
918
919 delegate.setTextLocale(locale);
920 }
921
922 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700923 /*package*/ static int native_getTextWidths(int native_object, char[] text, int index,
Deepanshu Guptac398f182013-05-23 15:20:04 -0700924 int count, int bidiFlags, float[] widths) {
Xavier Ducrohetf4d52a62011-02-23 09:53:56 -0800925 // get the delegate from the native int.
926 Paint_Delegate delegate = sManager.getDelegate(native_object);
927 if (delegate == null) {
928 return 0;
929 }
930
931 if (delegate.mFonts.size() > 0) {
932 // FIXME: handle multi-char characters (see measureText)
933 float totalAdvance = 0;
934 for (int i = 0; i < count; i++) {
935 char c = text[i + index];
936 boolean found = false;
937 for (FontInfo info : delegate.mFonts) {
938 if (info.mFont.canDisplay(c)) {
939 float adv = info.mMetrics.charWidth(c);
940 totalAdvance += adv;
941 if (widths != null) {
942 widths[i] = adv;
943 }
944
945 found = true;
946 break;
947 }
948 }
949
950 if (found == false) {
951 // no advance for this char.
952 if (widths != null) {
953 widths[i] = 0.f;
954 }
955 }
956 }
957
958 return (int) totalAdvance;
959 }
960
Xavier Ducrohet1eeaea02011-02-09 19:39:52 -0800961 return 0;
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700962 }
963
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800964 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700965 /*package*/ static int native_getTextWidths(int native_object, String text, int start,
Deepanshu Guptac398f182013-05-23 15:20:04 -0700966 int end, int bidiFlags, float[] widths) {
967 return native_getTextWidths(native_object, text.toCharArray(), start, end - start,
968 bidiFlags, widths);
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700969 }
970
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800971 @LayoutlibDelegate
Xavier Ducrohet81efa7f2011-06-15 14:43:42 -0700972 /* package */static int native_getTextGlyphs(int native_object, String text, int start,
973 int end, int contextStart, int contextEnd, int flags, char[] glyphs) {
974 // FIXME
975 return 0;
976 }
977
978 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700979 /*package*/ static float native_getTextRunAdvances(int native_object,
980 char[] text, int index, int count, int contextIndex, int contextCount,
Deepanshu Guptac398f182013-05-23 15:20:04 -0700981 int flags, float[] advances, int advancesIndex) {
Deepanshu Guptaa6b207a2013-07-12 11:38:05 -0700982
983 if (advances != null)
984 for (int i = advancesIndex; i< advancesIndex+count; i++)
985 advances[i]=0;
Xavier Ducrohet37f21802010-11-01 16:17:18 -0700986 // get the delegate from the native int.
987 Paint_Delegate delegate = sManager.getDelegate(native_object);
Deepanshu Guptaa6b207a2013-07-12 11:38:05 -0700988 if (delegate == null || delegate.mFonts == null || delegate.mFonts.size() == 0) {
Xavier Ducrohet37f21802010-11-01 16:17:18 -0700989 return 0.f;
990 }
Deepanshu Guptaa6b207a2013-07-12 11:38:05 -0700991 boolean isRtl = isRtl(flags);
Xavier Ducrohet37f21802010-11-01 16:17:18 -0700992
Deepanshu Guptaa6b207a2013-07-12 11:38:05 -0700993 int limit = index + count;
994 return new BidiRenderer(null, delegate, text).renderText(
995 index, limit, isRtl, advances, advancesIndex, false, 0, 0);
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700996 }
997
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800998 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -0700999 /*package*/ static float native_getTextRunAdvances(int native_object,
1000 String text, int start, int end, int contextStart, int contextEnd,
Deepanshu Guptac398f182013-05-23 15:20:04 -07001001 int flags, float[] advances, int advancesIndex) {
Deepanshu Guptaa6b207a2013-07-12 11:38:05 -07001002 // FIXME: support contextStart and contextEnd
Xavier Ducrohet37f21802010-11-01 16:17:18 -07001003 int count = end - start;
1004 char[] buffer = TemporaryBuffer.obtain(count);
1005 TextUtils.getChars(text, start, end, buffer, 0);
1006
1007 return native_getTextRunAdvances(native_object, buffer, 0, count, contextStart,
Deepanshu Guptac398f182013-05-23 15:20:04 -07001008 contextEnd - contextStart, flags, advances, advancesIndex);
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001009 }
1010
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -08001011 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001012 /*package*/ static int native_getTextRunCursor(Paint thisPaint, int native_object, char[] text,
1013 int contextStart, int contextLength, int flags, int offset, int cursorOpt) {
1014 // FIXME
Xavier Ducrohet1eeaea02011-02-09 19:39:52 -08001015 Bridge.getLog().fidelityWarning(LayoutLog.TAG_UNSUPPORTED,
1016 "Paint.getTextRunCursor is not supported.", null, null /*data*/);
1017 return 0;
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001018 }
1019
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -08001020 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001021 /*package*/ static int native_getTextRunCursor(Paint thisPaint, int native_object, String text,
1022 int contextStart, int contextEnd, int flags, int offset, int cursorOpt) {
1023 // FIXME
Xavier Ducrohet1eeaea02011-02-09 19:39:52 -08001024 Bridge.getLog().fidelityWarning(LayoutLog.TAG_UNSUPPORTED,
1025 "Paint.getTextRunCursor is not supported.", null, null /*data*/);
1026 return 0;
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001027 }
1028
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -08001029 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001030 /*package*/ static void native_getTextPath(int native_object, int bidiFlags,
1031 char[] text, int index, int count, float x, float y, int path) {
1032 // FIXME
Xavier Ducrohet1eeaea02011-02-09 19:39:52 -08001033 Bridge.getLog().fidelityWarning(LayoutLog.TAG_UNSUPPORTED,
1034 "Paint.getTextPath is not supported.", null, null /*data*/);
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001035 }
1036
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -08001037 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001038 /*package*/ static void native_getTextPath(int native_object, int bidiFlags,
1039 String text, int start, int end, float x, float y, int path) {
1040 // FIXME
Xavier Ducrohet1eeaea02011-02-09 19:39:52 -08001041 Bridge.getLog().fidelityWarning(LayoutLog.TAG_UNSUPPORTED,
1042 "Paint.getTextPath is not supported.", null, null /*data*/);
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001043 }
1044
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -08001045 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001046 /*package*/ static void nativeGetStringBounds(int nativePaint, String text, int start,
Deepanshu Guptac398f182013-05-23 15:20:04 -07001047 int end, int bidiFlags, Rect bounds) {
1048 nativeGetCharArrayBounds(nativePaint, text.toCharArray(), start, end - start, bidiFlags,
1049 bounds);
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001050 }
1051
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -08001052 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001053 /*package*/ static void nativeGetCharArrayBounds(int nativePaint, char[] text, int index,
Deepanshu Guptac398f182013-05-23 15:20:04 -07001054 int count, int bidiFlags, Rect bounds) {
Xavier Ducrohetf4d52a62011-02-23 09:53:56 -08001055
1056 // get the delegate from the native int.
1057 Paint_Delegate delegate = sManager.getDelegate(nativePaint);
Deepanshu Guptaa6b207a2013-07-12 11:38:05 -07001058 if (delegate == null || delegate.mFonts == null || delegate.mFonts.size() == 0) {
Xavier Ducrohetf4d52a62011-02-23 09:53:56 -08001059 return;
1060 }
Deepanshu Guptaa6b207a2013-07-12 11:38:05 -07001061 int w = (int) delegate.measureText(text, index, count, isRtl(bidiFlags));
1062 int h= delegate.getFonts().get(0).mMetrics.getHeight();
1063 bounds.set(0, 0, w, h);
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001064 }
1065
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -08001066 @LayoutlibDelegate
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001067 /*package*/ static void finalizer(int nativePaint) {
Xavier Ducrohet91672792011-02-22 11:54:37 -08001068 sManager.removeJavaReferenceFor(nativePaint);
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001069 }
1070
1071 // ---- Private delegate/helper methods ----
1072
Xavier Ducrohetcf2030c2010-12-21 06:20:28 -08001073 /*package*/ Paint_Delegate() {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001074 reset();
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001075 }
1076
1077 private Paint_Delegate(Paint_Delegate paint) {
1078 set(paint);
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001079 }
1080
1081 private void set(Paint_Delegate paint) {
1082 mFlags = paint.mFlags;
1083 mColor = paint.mColor;
1084 mStyle = paint.mStyle;
1085 mCap = paint.mCap;
1086 mJoin = paint.mJoin;
Xavier Ducrohet37f21802010-11-01 16:17:18 -07001087 mTextAlign = paint.mTextAlign;
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001088 mTypeface = paint.mTypeface;
1089 mStrokeWidth = paint.mStrokeWidth;
1090 mStrokeMiter = paint.mStrokeMiter;
1091 mTextSize = paint.mTextSize;
1092 mTextScaleX = paint.mTextScaleX;
1093 mTextSkewX = paint.mTextSkewX;
Xavier Ducroheta313b652010-11-01 18:45:20 -07001094 mXfermode = paint.mXfermode;
1095 mColorFilter = paint.mColorFilter;
1096 mShader = paint.mShader;
1097 mPathEffect = paint.mPathEffect;
1098 mMaskFilter = paint.mMaskFilter;
Xavier Ducroheta6e51d52010-12-23 07:16:21 -08001099 mRasterizer = paint.mRasterizer;
Xavier Ducrohetb6f7f572011-08-22 13:13:16 -07001100 mHintingMode = paint.mHintingMode;
Xavier Ducrohet42e2b282010-12-06 11:08:37 -08001101 updateFontObject();
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001102 }
1103
1104 private void reset() {
1105 mFlags = Paint.DEFAULT_PAINT_FLAGS;
Xavier Ducrohetcf2030c2010-12-21 06:20:28 -08001106 mColor = 0xFF000000;
Xavier Ducrohet66225222010-12-21 01:33:04 -08001107 mStyle = Paint.Style.FILL.nativeInt;
1108 mCap = Paint.Cap.BUTT.nativeInt;
1109 mJoin = Paint.Join.MITER.nativeInt;
Xavier Ducrohet37f21802010-11-01 16:17:18 -07001110 mTextAlign = 0;
Xavier Ducrohet91672792011-02-22 11:54:37 -08001111 mTypeface = Typeface_Delegate.getDelegate(Typeface.sDefaults[0].native_instance);
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001112 mStrokeWidth = 1.f;
Xavier Ducrohetcf2030c2010-12-21 06:20:28 -08001113 mStrokeMiter = 4.f;
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001114 mTextSize = 20.f;
1115 mTextScaleX = 1.f;
1116 mTextSkewX = 0.f;
Xavier Ducrohet91672792011-02-22 11:54:37 -08001117 mXfermode = null;
1118 mColorFilter = null;
1119 mShader = null;
1120 mPathEffect = null;
1121 mMaskFilter = null;
1122 mRasterizer = null;
Xavier Ducrohet42e2b282010-12-06 11:08:37 -08001123 updateFontObject();
Xavier Ducrohetb6f7f572011-08-22 13:13:16 -07001124 mHintingMode = Paint.HINTING_ON;
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001125 }
1126
1127 /**
1128 * Update the {@link Font} object from the typeface, text size and scaling
1129 */
Xavier Ducroheta6e51d52010-12-23 07:16:21 -08001130 @SuppressWarnings("deprecation")
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001131 private void updateFontObject() {
Xavier Ducrohet91672792011-02-22 11:54:37 -08001132 if (mTypeface != null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001133 // Get the fonts from the TypeFace object.
Xavier Ducrohet91672792011-02-22 11:54:37 -08001134 List<Font> fonts = mTypeface.getFonts();
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001135
1136 // create new font objects as well as FontMetrics, based on the current text size
1137 // and skew info.
1138 ArrayList<FontInfo> infoList = new ArrayList<FontInfo>(fonts.size());
1139 for (Font font : fonts) {
1140 FontInfo info = new FontInfo();
1141 info.mFont = font.deriveFont(mTextSize);
1142 if (mTextScaleX != 1.0 || mTextSkewX != 0) {
1143 // TODO: support skew
1144 info.mFont = info.mFont.deriveFont(new AffineTransform(
Xavier Ducrohet8f109102011-10-04 19:39:18 -07001145 mTextScaleX, mTextSkewX, 0, 1, 0, 0));
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001146 }
Deepanshu Guptaa6b207a2013-07-12 11:38:05 -07001147 // The metrics here don't have anti-aliasing set.
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001148 info.mMetrics = Toolkit.getDefaultToolkit().getFontMetrics(info.mFont);
1149
1150 infoList.add(info);
1151 }
1152
1153 mFonts = Collections.unmodifiableList(infoList);
1154 }
1155 }
1156
Deepanshu Guptaa6b207a2013-07-12 11:38:05 -07001157 /*package*/ float measureText(char[] text, int index, int count, boolean isRtl) {
1158 return new BidiRenderer(null, this, text).renderText(
1159 index, index + count, isRtl, null, 0, false, 0, 0);
Xavier Ducrohet37f21802010-11-01 16:17:18 -07001160 }
1161
Xavier Ducrohetdf67eab2010-12-13 16:42:01 -08001162 private float getFontMetrics(FontMetrics metrics) {
1163 if (mFonts.size() > 0) {
1164 java.awt.FontMetrics javaMetrics = mFonts.get(0).mMetrics;
1165 if (metrics != null) {
1166 // Android expects negative ascent so we invert the value from Java.
1167 metrics.top = - javaMetrics.getMaxAscent();
1168 metrics.ascent = - javaMetrics.getAscent();
1169 metrics.descent = javaMetrics.getDescent();
1170 metrics.bottom = javaMetrics.getMaxDescent();
1171 metrics.leading = javaMetrics.getLeading();
1172 }
1173
1174 return javaMetrics.getHeight();
1175 }
1176
1177 return 0;
1178 }
1179
Xavier Ducrohet43526ab2012-04-23 17:41:37 -07001180 private void setTextLocale(String locale) {
1181 mLocale = new Locale(locale);
1182 }
Xavier Ducrohetdf67eab2010-12-13 16:42:01 -08001183
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001184 private static void setFlag(Paint thisPaint, int flagMask, boolean flagValue) {
1185 // get the delegate from the native int.
1186 Paint_Delegate delegate = sManager.getDelegate(thisPaint.mNativePaint);
1187 if (delegate == null) {
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001188 return;
1189 }
1190
1191 if (flagValue) {
1192 delegate.mFlags |= flagMask;
1193 } else {
1194 delegate.mFlags &= ~flagMask;
1195 }
1196 }
Xavier Ducrohet43526ab2012-04-23 17:41:37 -07001197
Deepanshu Guptaa6b207a2013-07-12 11:38:05 -07001198 private static boolean isRtl(int flag) {
1199 switch(flag) {
1200 case Paint.BIDI_RTL:
1201 case Paint.BIDI_FORCE_RTL:
1202 case Paint.BIDI_DEFAULT_RTL:
1203 return true;
1204 default:
1205 return false;
1206 }
1207 }
Xavier Ducrohetef44aea2010-10-28 11:52:00 -07001208}