epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2011 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 7 | #include "samplecode/Sample.h" |
Mike Reed | 193d3a0 | 2018-02-08 15:45:51 -0500 | [diff] [blame] | 8 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 9 | #include "include/core/SkCanvas.h" |
| 10 | #include "include/core/SkColorFilter.h" |
| 11 | #include "include/core/SkColorPriv.h" |
| 12 | #include "include/core/SkGraphics.h" |
| 13 | #include "include/core/SkPath.h" |
| 14 | #include "include/core/SkRegion.h" |
| 15 | #include "include/core/SkShader.h" |
| 16 | #include "include/core/SkStream.h" |
| 17 | #include "include/core/SkTextBlob.h" |
| 18 | #include "include/core/SkTime.h" |
| 19 | #include "include/core/SkTypeface.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 20 | #include "include/effects/SkGradientShader.h" |
| 21 | #include "include/utils/SkRandom.h" |
| 22 | #include "modules/skshaper/include/SkShaper.h" |
| 23 | #include "src/core/SkOSFile.h" |
| 24 | #include "src/shaders/SkColorShader.h" |
| 25 | #include "src/utils/SkUTF.h" |
reed@android.com | 0bb6d06 | 2010-05-17 14:50:04 +0000 | [diff] [blame] | 26 | |
reed@google.com | d6f5a81 | 2011-03-02 14:34:11 +0000 | [diff] [blame] | 27 | static const char gText[] = |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 28 | "When in the Course of human events it becomes necessary for one people " |
| 29 | "to dissolve the political bands which have connected them with another " |
| 30 | "and to assume among the powers of the earth, the separate and equal " |
| 31 | "station to which the Laws of Nature and of Nature's God entitle them, " |
| 32 | "a decent respect to the opinions of mankind requires that they should " |
| 33 | "declare the causes which impel them to the separation."; |
reed@android.com | 0bb6d06 | 2010-05-17 14:50:04 +0000 | [diff] [blame] | 34 | |
Ben Wagner | b2c4ea6 | 2018-08-08 11:36:17 -0400 | [diff] [blame] | 35 | class TextBoxView : public Sample { |
reed@google.com | d6f5a81 | 2011-03-02 14:34:11 +0000 | [diff] [blame] | 36 | public: |
Ben Wagner | b059194 | 2019-02-15 14:46:18 -0500 | [diff] [blame] | 37 | TextBoxView() : fShaper(SkShaper::Make()) {} |
reed@google.com | d6f5a81 | 2011-03-02 14:34:11 +0000 | [diff] [blame] | 38 | |
reed@android.com | 0bb6d06 | 2010-05-17 14:50:04 +0000 | [diff] [blame] | 39 | protected: |
Hal Canary | 8a02731 | 2019-07-03 10:55:44 -0400 | [diff] [blame] | 40 | SkString name() override { return SkString("TextBox"); } |
reed@google.com | d6f5a81 | 2011-03-02 14:34:11 +0000 | [diff] [blame] | 41 | |
reed@google.com | 021b405 | 2011-09-28 15:24:00 +0000 | [diff] [blame] | 42 | void drawTest(SkCanvas* canvas, SkScalar w, SkScalar h, SkColor fg, SkColor bg) { |
| 43 | SkAutoCanvasRestore acr(canvas, true); |
| 44 | |
| 45 | canvas->clipRect(SkRect::MakeWH(w, h)); |
| 46 | canvas->drawColor(bg); |
Mike Reed | 193d3a0 | 2018-02-08 15:45:51 -0500 | [diff] [blame] | 47 | |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 48 | SkScalar margin = 20; |
reed@android.com | 0bb6d06 | 2010-05-17 14:50:04 +0000 | [diff] [blame] | 49 | |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 50 | SkPaint paint; |
reed@google.com | 021b405 | 2011-09-28 15:24:00 +0000 | [diff] [blame] | 51 | paint.setColor(fg); |
reed@android.com | 0bb6d06 | 2010-05-17 14:50:04 +0000 | [diff] [blame] | 52 | |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 53 | for (int i = 9; i < 24; i += 2) { |
Ben Wagner | 3bdb69c | 2019-04-01 19:01:09 -0400 | [diff] [blame] | 54 | SkTextBlobBuilderRunHandler builder(gText, { margin, margin }); |
Ben Wagner | 1ca5052 | 2019-10-01 17:54:28 -0400 | [diff] [blame] | 55 | SkFont srcFont(nullptr, SkIntToScalar(i)); |
| 56 | srcFont.setEdging(SkFont::Edging::kSubpixelAntiAlias); |
Hal Canary | 4484b8f | 2019-01-08 14:00:08 -0500 | [diff] [blame] | 57 | |
Ben Wagner | 1ca5052 | 2019-10-01 17:54:28 -0400 | [diff] [blame] | 58 | const char* utf8 = gText; |
| 59 | size_t utf8Bytes = sizeof(gText) - 1; |
| 60 | |
| 61 | std::unique_ptr<SkShaper::BiDiRunIterator> bidi( |
| 62 | SkShaper::MakeBiDiRunIterator(utf8, utf8Bytes, 0xfe)); |
| 63 | if (!bidi) { |
| 64 | return; |
| 65 | } |
| 66 | |
| 67 | std::unique_ptr<SkShaper::LanguageRunIterator> language( |
| 68 | SkShaper::MakeStdLanguageRunIterator(utf8, utf8Bytes)); |
| 69 | if (!language) { |
| 70 | return; |
| 71 | } |
| 72 | |
| 73 | SkFourByteTag undeterminedScript = SkSetFourByteTag('Z','y','y','y'); |
| 74 | std::unique_ptr<SkShaper::ScriptRunIterator> script( |
| 75 | SkShaper::MakeScriptRunIterator(utf8, utf8Bytes, undeterminedScript)); |
| 76 | if (!script) { |
| 77 | return; |
| 78 | } |
| 79 | |
| 80 | std::unique_ptr<SkShaper::FontRunIterator> font( |
| 81 | SkShaper::MakeFontMgrRunIterator(utf8, utf8Bytes, srcFont, SkFontMgr::RefDefault(), |
| 82 | "Arial", SkFontStyle::Bold(), &*language)); |
| 83 | if (!font) { |
| 84 | return; |
| 85 | } |
| 86 | |
| 87 | fShaper->shape(utf8, utf8Bytes, *font, *bidi, *script, *language, w - margin, &builder); |
Florin Malita | 9867f61 | 2018-12-12 10:54:49 -0500 | [diff] [blame] | 88 | canvas->drawTextBlob(builder.makeBlob(), 0, 0, paint); |
Mike Reed | 193d3a0 | 2018-02-08 15:45:51 -0500 | [diff] [blame] | 89 | |
Ben Wagner | 3bdb69c | 2019-04-01 19:01:09 -0400 | [diff] [blame] | 90 | canvas->translate(0, builder.endPoint().y()); |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 91 | } |
reed@android.com | 0bb6d06 | 2010-05-17 14:50:04 +0000 | [diff] [blame] | 92 | } |
reed@google.com | d6f5a81 | 2011-03-02 14:34:11 +0000 | [diff] [blame] | 93 | |
Mike Reed | 193d3a0 | 2018-02-08 15:45:51 -0500 | [diff] [blame] | 94 | void onDrawContent(SkCanvas* canvas) override { |
reed@google.com | 021b405 | 2011-09-28 15:24:00 +0000 | [diff] [blame] | 95 | SkScalar width = this->width() / 3; |
| 96 | drawTest(canvas, width, this->height(), SK_ColorBLACK, SK_ColorWHITE); |
| 97 | canvas->translate(width, 0); |
| 98 | drawTest(canvas, width, this->height(), SK_ColorWHITE, SK_ColorBLACK); |
| 99 | canvas->translate(width, 0); |
| 100 | drawTest(canvas, width, this->height()/2, SK_ColorGRAY, SK_ColorWHITE); |
| 101 | canvas->translate(0, this->height()/2); |
| 102 | drawTest(canvas, width, this->height()/2, SK_ColorGRAY, SK_ColorBLACK); |
| 103 | } |
| 104 | |
reed@android.com | 0bb6d06 | 2010-05-17 14:50:04 +0000 | [diff] [blame] | 105 | private: |
Ben Wagner | b059194 | 2019-02-15 14:46:18 -0500 | [diff] [blame] | 106 | std::unique_ptr<SkShaper> fShaper; |
Ben Wagner | b2c4ea6 | 2018-08-08 11:36:17 -0400 | [diff] [blame] | 107 | typedef Sample INHERITED; |
reed@android.com | 0bb6d06 | 2010-05-17 14:50:04 +0000 | [diff] [blame] | 108 | }; |
| 109 | |
| 110 | ////////////////////////////////////////////////////////////////////////////// |
| 111 | |
Ben Wagner | b2c4ea6 | 2018-08-08 11:36:17 -0400 | [diff] [blame] | 112 | DEF_SAMPLE( return new TextBoxView(); ) |