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 | */ |
reed@android.com | 0bb6d06 | 2010-05-17 14:50:04 +0000 | [diff] [blame] | 7 | #include "SampleCode.h" |
| 8 | #include "SkView.h" |
| 9 | #include "SkBlurMaskFilter.h" |
| 10 | #include "SkCanvas.h" |
reed@google.com | 021b405 | 2011-09-28 15:24:00 +0000 | [diff] [blame] | 11 | #include "SkColorShader.h" |
reed@android.com | 0bb6d06 | 2010-05-17 14:50:04 +0000 | [diff] [blame] | 12 | #include "SkGradientShader.h" |
| 13 | #include "SkGraphics.h" |
reed@android.com | 0bb6d06 | 2010-05-17 14:50:04 +0000 | [diff] [blame] | 14 | #include "SkPath.h" |
| 15 | #include "SkRandom.h" |
| 16 | #include "SkRegion.h" |
| 17 | #include "SkShader.h" |
| 18 | #include "SkUtils.h" |
reed@android.com | 0bb6d06 | 2010-05-17 14:50:04 +0000 | [diff] [blame] | 19 | #include "SkColorPriv.h" |
| 20 | #include "SkColorFilter.h" |
| 21 | #include "SkTime.h" |
| 22 | #include "SkTypeface.h" |
| 23 | #include "SkTextBox.h" |
| 24 | #include "SkOSFile.h" |
| 25 | #include "SkStream.h" |
| 26 | #include "SkKey.h" |
| 27 | |
reed@google.com | 021b405 | 2011-09-28 15:24:00 +0000 | [diff] [blame] | 28 | extern void skia_set_text_gamma(float blackGamma, float whiteGamma); |
| 29 | |
bungeman@google.com | b49d989 | 2012-08-16 17:35:58 +0000 | [diff] [blame] | 30 | #if defined(SK_BUILD_FOR_WIN) && defined(SK_FONTHOST_WIN_GDI) |
reed@google.com | b652427 | 2011-03-01 15:18:14 +0000 | [diff] [blame] | 31 | extern SkTypeface* SkCreateTypefaceFromLOGFONT(const LOGFONT&); |
reed@google.com | d6f5a81 | 2011-03-02 14:34:11 +0000 | [diff] [blame] | 32 | #endif |
reed@google.com | b652427 | 2011-03-01 15:18:14 +0000 | [diff] [blame] | 33 | |
reed@google.com | d6f5a81 | 2011-03-02 14:34:11 +0000 | [diff] [blame] | 34 | static const char gText[] = |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 35 | "When in the Course of human events it becomes necessary for one people " |
| 36 | "to dissolve the political bands which have connected them with another " |
| 37 | "and to assume among the powers of the earth, the separate and equal " |
| 38 | "station to which the Laws of Nature and of Nature's God entitle them, " |
| 39 | "a decent respect to the opinions of mankind requires that they should " |
| 40 | "declare the causes which impel them to the separation."; |
reed@android.com | 0bb6d06 | 2010-05-17 14:50:04 +0000 | [diff] [blame] | 41 | |
reed@google.com | 17fb387 | 2011-05-04 14:31:07 +0000 | [diff] [blame] | 42 | class TextBoxView : public SampleView { |
reed@google.com | d6f5a81 | 2011-03-02 14:34:11 +0000 | [diff] [blame] | 43 | public: |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 44 | TextBoxView() { |
bungeman@google.com | b49d989 | 2012-08-16 17:35:58 +0000 | [diff] [blame] | 45 | #if defined(SK_BUILD_FOR_WIN) && defined(SK_FONTHOST_WIN_GDI) |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 46 | LOGFONT lf; |
| 47 | sk_bzero(&lf, sizeof(lf)); |
| 48 | lf.lfHeight = 9; |
| 49 | SkTypeface* tf0 = SkCreateTypefaceFromLOGFONT(lf); |
| 50 | lf.lfHeight = 12; |
| 51 | SkTypeface* tf1 = SkCreateTypefaceFromLOGFONT(lf); |
| 52 | // we assert that different sizes should not affect which face we get |
| 53 | SkASSERT(tf0 == tf1); |
| 54 | tf0->unref(); |
| 55 | tf1->unref(); |
reed@google.com | d6f5a81 | 2011-03-02 14:34:11 +0000 | [diff] [blame] | 56 | #endif |
reed@google.com | 021b405 | 2011-09-28 15:24:00 +0000 | [diff] [blame] | 57 | } |
reed@google.com | d6f5a81 | 2011-03-02 14:34:11 +0000 | [diff] [blame] | 58 | |
reed@android.com | 0bb6d06 | 2010-05-17 14:50:04 +0000 | [diff] [blame] | 59 | protected: |
| 60 | // overrides from SkEventSink |
| 61 | virtual bool onQuery(SkEvent* evt) { |
| 62 | if (SampleCode::TitleQ(*evt)) { |
tfarina@chromium.org | 45369a3 | 2012-09-30 11:30:01 +0000 | [diff] [blame] | 63 | SampleCode::TitleR(evt, "TextBox"); |
reed@android.com | 0bb6d06 | 2010-05-17 14:50:04 +0000 | [diff] [blame] | 64 | return true; |
| 65 | } |
| 66 | return this->INHERITED::onQuery(evt); |
| 67 | } |
reed@google.com | d6f5a81 | 2011-03-02 14:34:11 +0000 | [diff] [blame] | 68 | |
reed@google.com | 021b405 | 2011-09-28 15:24:00 +0000 | [diff] [blame] | 69 | void drawTest(SkCanvas* canvas, SkScalar w, SkScalar h, SkColor fg, SkColor bg) { |
| 70 | SkAutoCanvasRestore acr(canvas, true); |
| 71 | |
| 72 | canvas->clipRect(SkRect::MakeWH(w, h)); |
| 73 | canvas->drawColor(bg); |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 74 | SkScalar margin = 20; |
reed@android.com | 0bb6d06 | 2010-05-17 14:50:04 +0000 | [diff] [blame] | 75 | SkTextBox tbox; |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 76 | tbox.setMode(SkTextBox::kLineBreak_Mode); |
| 77 | tbox.setBox(margin, margin, |
| 78 | w - margin, h - margin); |
| 79 | tbox.setSpacing(SkIntToScalar(3)/3, 0); |
reed@android.com | 0bb6d06 | 2010-05-17 14:50:04 +0000 | [diff] [blame] | 80 | |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 81 | SkPaint paint; |
| 82 | paint.setAntiAlias(true); |
reed@google.com | 261b8e2 | 2011-04-14 17:53:24 +0000 | [diff] [blame] | 83 | paint.setLCDRenderText(true); |
reed@google.com | 021b405 | 2011-09-28 15:24:00 +0000 | [diff] [blame] | 84 | paint.setColor(fg); |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 85 | tbox.setText(gText, strlen(gText), paint); |
reed@android.com | 0bb6d06 | 2010-05-17 14:50:04 +0000 | [diff] [blame] | 86 | |
rmistry@google.com | ae933ce | 2012-08-23 18:19:56 +0000 | [diff] [blame] | 87 | for (int i = 9; i < 24; i += 2) { |
| 88 | paint.setTextSize(SkIntToScalar(i)); |
| 89 | tbox.draw(canvas); |
| 90 | canvas->translate(0, tbox.getTextHeight() + paint.getFontSpacing()); |
| 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 | |
reed@google.com | 021b405 | 2011-09-28 15:24:00 +0000 | [diff] [blame] | 94 | virtual void onDrawContent(SkCanvas* canvas) { |
| 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: |
reed@google.com | 4ee1433 | 2011-09-08 13:37:07 +0000 | [diff] [blame] | 106 | typedef SampleView INHERITED; |
reed@android.com | 0bb6d06 | 2010-05-17 14:50:04 +0000 | [diff] [blame] | 107 | }; |
| 108 | |
| 109 | ////////////////////////////////////////////////////////////////////////////// |
| 110 | |
| 111 | static SkView* MyFactory() { return new TextBoxView; } |
| 112 | static SkViewRegister reg(MyFactory); |