blob: 947ed8ec1ebe5b8808f9d627114e1111aea3f291 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001/*
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.com0bb6d062010-05-17 14:50:04 +00007#include "SampleCode.h"
8#include "SkView.h"
9#include "SkBlurMaskFilter.h"
10#include "SkCanvas.h"
reed@google.com021b4052011-09-28 15:24:00 +000011#include "SkColorShader.h"
reed@android.com0bb6d062010-05-17 14:50:04 +000012#include "SkGradientShader.h"
13#include "SkGraphics.h"
reed@android.com0bb6d062010-05-17 14:50:04 +000014#include "SkPath.h"
15#include "SkRandom.h"
16#include "SkRegion.h"
17#include "SkShader.h"
18#include "SkUtils.h"
reed@android.com0bb6d062010-05-17 14:50:04 +000019#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.com021b4052011-09-28 15:24:00 +000028extern void skia_set_text_gamma(float blackGamma, float whiteGamma);
29
bungeman@google.comb49d9892012-08-16 17:35:58 +000030#if defined(SK_BUILD_FOR_WIN) && defined(SK_FONTHOST_WIN_GDI)
reed@google.comb6524272011-03-01 15:18:14 +000031extern SkTypeface* SkCreateTypefaceFromLOGFONT(const LOGFONT&);
reed@google.comd6f5a812011-03-02 14:34:11 +000032#endif
reed@google.comb6524272011-03-01 15:18:14 +000033
reed@google.comd6f5a812011-03-02 14:34:11 +000034static const char gText[] =
rmistry@google.comae933ce2012-08-23 18:19:56 +000035 "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.com0bb6d062010-05-17 14:50:04 +000041
reed@google.com17fb3872011-05-04 14:31:07 +000042class TextBoxView : public SampleView {
reed@google.comd6f5a812011-03-02 14:34:11 +000043public:
rmistry@google.comae933ce2012-08-23 18:19:56 +000044 TextBoxView() {
bungeman@google.comb49d9892012-08-16 17:35:58 +000045#if defined(SK_BUILD_FOR_WIN) && defined(SK_FONTHOST_WIN_GDI)
rmistry@google.comae933ce2012-08-23 18:19:56 +000046 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.comd6f5a812011-03-02 14:34:11 +000056#endif
reed@google.com021b4052011-09-28 15:24:00 +000057 }
reed@google.comd6f5a812011-03-02 14:34:11 +000058
reed@android.com0bb6d062010-05-17 14:50:04 +000059protected:
60 // overrides from SkEventSink
61 virtual bool onQuery(SkEvent* evt) {
62 if (SampleCode::TitleQ(*evt)) {
tfarina@chromium.org45369a32012-09-30 11:30:01 +000063 SampleCode::TitleR(evt, "TextBox");
reed@android.com0bb6d062010-05-17 14:50:04 +000064 return true;
65 }
66 return this->INHERITED::onQuery(evt);
67 }
reed@google.comd6f5a812011-03-02 14:34:11 +000068
reed@google.com021b4052011-09-28 15:24:00 +000069 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.comae933ce2012-08-23 18:19:56 +000074 SkScalar margin = 20;
reed@android.com0bb6d062010-05-17 14:50:04 +000075 SkTextBox tbox;
rmistry@google.comae933ce2012-08-23 18:19:56 +000076 tbox.setMode(SkTextBox::kLineBreak_Mode);
77 tbox.setBox(margin, margin,
78 w - margin, h - margin);
79 tbox.setSpacing(SkIntToScalar(3)/3, 0);
reed@android.com0bb6d062010-05-17 14:50:04 +000080
rmistry@google.comae933ce2012-08-23 18:19:56 +000081 SkPaint paint;
82 paint.setAntiAlias(true);
reed@google.com261b8e22011-04-14 17:53:24 +000083 paint.setLCDRenderText(true);
reed@google.com021b4052011-09-28 15:24:00 +000084 paint.setColor(fg);
rmistry@google.comae933ce2012-08-23 18:19:56 +000085 tbox.setText(gText, strlen(gText), paint);
reed@android.com0bb6d062010-05-17 14:50:04 +000086
rmistry@google.comae933ce2012-08-23 18:19:56 +000087 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.com0bb6d062010-05-17 14:50:04 +000092 }
reed@google.comd6f5a812011-03-02 14:34:11 +000093
reed@google.com021b4052011-09-28 15:24:00 +000094 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.com0bb6d062010-05-17 14:50:04 +0000105private:
reed@google.com4ee14332011-09-08 13:37:07 +0000106 typedef SampleView INHERITED;
reed@android.com0bb6d062010-05-17 14:50:04 +0000107};
108
109//////////////////////////////////////////////////////////////////////////////
110
111static SkView* MyFactory() { return new TextBoxView; }
112static SkViewRegister reg(MyFactory);