blob: 8540ca456f94b3bf67bffefe5ec7809ad962f0b1 [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"
19#include "SkXfermode.h"
20#include "SkColorPriv.h"
21#include "SkColorFilter.h"
22#include "SkTime.h"
23#include "SkTypeface.h"
24#include "SkTextBox.h"
25#include "SkOSFile.h"
26#include "SkStream.h"
27#include "SkKey.h"
28
reed@google.com021b4052011-09-28 15:24:00 +000029extern void skia_set_text_gamma(float blackGamma, float whiteGamma);
30
bungeman@google.comb49d9892012-08-16 17:35:58 +000031#if defined(SK_BUILD_FOR_WIN) && defined(SK_FONTHOST_WIN_GDI)
reed@google.comb6524272011-03-01 15:18:14 +000032extern SkTypeface* SkCreateTypefaceFromLOGFONT(const LOGFONT&);
reed@google.comd6f5a812011-03-02 14:34:11 +000033#endif
reed@google.comb6524272011-03-01 15:18:14 +000034
reed@google.comd6f5a812011-03-02 14:34:11 +000035static const char gText[] =
rmistry@google.comae933ce2012-08-23 18:19:56 +000036 "When in the Course of human events it becomes necessary for one people "
37 "to dissolve the political bands which have connected them with another "
38 "and to assume among the powers of the earth, the separate and equal "
39 "station to which the Laws of Nature and of Nature's God entitle them, "
40 "a decent respect to the opinions of mankind requires that they should "
41 "declare the causes which impel them to the separation.";
reed@android.com0bb6d062010-05-17 14:50:04 +000042
reed@google.com17fb3872011-05-04 14:31:07 +000043class TextBoxView : public SampleView {
reed@google.comd6f5a812011-03-02 14:34:11 +000044public:
rmistry@google.comae933ce2012-08-23 18:19:56 +000045 TextBoxView() {
bungeman@google.comb49d9892012-08-16 17:35:58 +000046#if defined(SK_BUILD_FOR_WIN) && defined(SK_FONTHOST_WIN_GDI)
rmistry@google.comae933ce2012-08-23 18:19:56 +000047 LOGFONT lf;
48 sk_bzero(&lf, sizeof(lf));
49 lf.lfHeight = 9;
50 SkTypeface* tf0 = SkCreateTypefaceFromLOGFONT(lf);
51 lf.lfHeight = 12;
52 SkTypeface* tf1 = SkCreateTypefaceFromLOGFONT(lf);
53 // we assert that different sizes should not affect which face we get
54 SkASSERT(tf0 == tf1);
55 tf0->unref();
56 tf1->unref();
reed@google.comd6f5a812011-03-02 14:34:11 +000057#endif
reed@google.com021b4052011-09-28 15:24:00 +000058 }
reed@google.comd6f5a812011-03-02 14:34:11 +000059
reed@android.com0bb6d062010-05-17 14:50:04 +000060protected:
61 // overrides from SkEventSink
62 virtual bool onQuery(SkEvent* evt) {
63 if (SampleCode::TitleQ(*evt)) {
tfarina@chromium.org45369a32012-09-30 11:30:01 +000064 SampleCode::TitleR(evt, "TextBox");
reed@android.com0bb6d062010-05-17 14:50:04 +000065 return true;
66 }
67 return this->INHERITED::onQuery(evt);
68 }
reed@google.comd6f5a812011-03-02 14:34:11 +000069
reed@google.com021b4052011-09-28 15:24:00 +000070 void drawTest(SkCanvas* canvas, SkScalar w, SkScalar h, SkColor fg, SkColor bg) {
71 SkAutoCanvasRestore acr(canvas, true);
72
73 canvas->clipRect(SkRect::MakeWH(w, h));
74 canvas->drawColor(bg);
rmistry@google.comae933ce2012-08-23 18:19:56 +000075 SkScalar margin = 20;
reed@android.com0bb6d062010-05-17 14:50:04 +000076 SkTextBox tbox;
rmistry@google.comae933ce2012-08-23 18:19:56 +000077 tbox.setMode(SkTextBox::kLineBreak_Mode);
78 tbox.setBox(margin, margin,
79 w - margin, h - margin);
80 tbox.setSpacing(SkIntToScalar(3)/3, 0);
reed@android.com0bb6d062010-05-17 14:50:04 +000081
rmistry@google.comae933ce2012-08-23 18:19:56 +000082 SkPaint paint;
83 paint.setAntiAlias(true);
reed@google.com261b8e22011-04-14 17:53:24 +000084 paint.setLCDRenderText(true);
reed@google.com021b4052011-09-28 15:24:00 +000085 paint.setColor(fg);
rmistry@google.comae933ce2012-08-23 18:19:56 +000086 tbox.setText(gText, strlen(gText), paint);
reed@android.com0bb6d062010-05-17 14:50:04 +000087
rmistry@google.comae933ce2012-08-23 18:19:56 +000088 for (int i = 9; i < 24; i += 2) {
89 paint.setTextSize(SkIntToScalar(i));
90 tbox.draw(canvas);
91 canvas->translate(0, tbox.getTextHeight() + paint.getFontSpacing());
92 }
reed@android.com0bb6d062010-05-17 14:50:04 +000093 }
reed@google.comd6f5a812011-03-02 14:34:11 +000094
reed@google.com021b4052011-09-28 15:24:00 +000095 virtual void onDrawContent(SkCanvas* canvas) {
96 SkScalar width = this->width() / 3;
97 drawTest(canvas, width, this->height(), SK_ColorBLACK, SK_ColorWHITE);
98 canvas->translate(width, 0);
99 drawTest(canvas, width, this->height(), SK_ColorWHITE, SK_ColorBLACK);
100 canvas->translate(width, 0);
101 drawTest(canvas, width, this->height()/2, SK_ColorGRAY, SK_ColorWHITE);
102 canvas->translate(0, this->height()/2);
103 drawTest(canvas, width, this->height()/2, SK_ColorGRAY, SK_ColorBLACK);
104 }
105
reed@android.com0bb6d062010-05-17 14:50:04 +0000106private:
reed@google.com4ee14332011-09-08 13:37:07 +0000107 typedef SampleView INHERITED;
reed@android.com0bb6d062010-05-17 14:50:04 +0000108};
109
110//////////////////////////////////////////////////////////////////////////////
111
112static SkView* MyFactory() { return new TextBoxView; }
113static SkViewRegister reg(MyFactory);