skia2/gm/verttext2.cpp
rmistry@google.com ae933ce0ea Result of running tools/sanitize_source_files.py (which was added in https://codereview.appspot.com/6465078/)
This CL is part III of IV (I broke down the 1280 files into 4 CLs).
Review URL: https://codereview.appspot.com/6475053

git-svn-id: http://skia.googlecode.com/svn/trunk@5264 2bbb7eff-a529-9590-31e7-b0007b416f81
2012-08-23 18:19:56 +00:00

99 lines
2.9 KiB
C++

/*
* Copyright 2011 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
/* Tests text vertical text rendering with different fonts and centering.
*/
#include "gm.h"
#include "SkCanvas.h"
#include "SkTypeface.h"
namespace skiagm {
class VertText2GM : public GM {
public:
VertText2GM() {
const int pointSize = 24;
textHeight = SkIntToScalar(pointSize);
fProp = SkTypeface::CreateFromName("Helvetica", SkTypeface::kNormal);
fMono = SkTypeface::CreateFromName("Courier New", SkTypeface::kNormal);
}
virtual ~VertText2GM() {
SkSafeUnref(fProp);
SkSafeUnref(fMono);
}
protected:
SkString onShortName() {
return SkString("verttext2");
}
SkISize onISize() { return make_isize(640, 480); }
virtual void onDraw(SkCanvas* canvas) {
for (int i = 0; i < 3; ++i) {
SkPaint paint;
paint.setColor(SK_ColorRED);
paint.setAntiAlias(true);
y = textHeight;
canvas->drawLine(0, SkIntToScalar(10),
SkIntToScalar(110), SkIntToScalar(10), paint);
canvas->drawLine(0, SkIntToScalar(240),
SkIntToScalar(110), SkIntToScalar(240), paint);
canvas->drawLine(0, SkIntToScalar(470),
SkIntToScalar(110), SkIntToScalar(470), paint);
drawText(canvas, SkString("Proportional / Top Aligned"),
fProp, SkPaint::kLeft_Align);
drawText(canvas, SkString("< Proportional / Centered >"),
fProp, SkPaint::kCenter_Align);
drawText(canvas, SkString("Monospaced / Top Aligned"),
fMono, SkPaint::kLeft_Align);
drawText(canvas, SkString("< Monospaced / Centered >"),
fMono, SkPaint::kCenter_Align);
canvas->rotate(SkIntToScalar(-15));
canvas->translate(textHeight * 4, SkIntToScalar(50));
if (i > 0) {
canvas->translate(0, SkIntToScalar(50));
}
}
}
void drawText(SkCanvas* canvas, const SkString& string,
SkTypeface* family, SkPaint::Align alignment) {
SkPaint paint;
paint.setColor(SK_ColorBLACK);
paint.setAntiAlias(true);
paint.setVerticalText(true);
paint.setTextAlign(alignment);
paint.setTypeface(family);
paint.setTextSize(textHeight);
canvas->drawText(string.c_str(), string.size(), y,
SkIntToScalar(alignment == SkPaint::kLeft_Align ? 10 : 240),
paint);
y += textHeight;
}
private:
typedef GM INHERITED;
SkScalar y, textHeight;
SkTypeface* fProp;
SkTypeface* fMono;
};
///////////////////////////////////////////////////////////////////////////////
static GM* MyFactory(void*) { return new VertText2GM; }
static GMRegistry reg(MyFactory);
}