blob: 531ade2cd646bcf1046378cc848341cb32e71eb9 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
2/*
3 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
reed@android.com00dae862009-06-10 15:38:48 +00008#ifndef skiagm_DEFINED
9#define skiagm_DEFINED
10
epoger@google.comd4af56c2011-07-25 16:27:59 +000011#include "SkBitmap.h"
reed@android.comdd0ac282009-06-20 02:38:16 +000012#include "SkCanvas.h"
epoger@google.comd4af56c2011-07-25 16:27:59 +000013#include "SkDevice.h"
reed@android.comdd0ac282009-06-20 02:38:16 +000014#include "SkPaint.h"
reed@android.com00dae862009-06-10 15:38:48 +000015#include "SkRefCnt.h"
reed@android.comdd0ac282009-06-20 02:38:16 +000016#include "SkSize.h"
reed@android.com00dae862009-06-10 15:38:48 +000017#include "SkString.h"
18#include "SkTRegistry.h"
19
20namespace skiagm {
reed@android.comdd0ac282009-06-20 02:38:16 +000021
reed@android.com8015dd82009-06-21 00:49:18 +000022 static inline SkISize make_isize(int w, int h) {
reed@android.comdd0ac282009-06-20 02:38:16 +000023 SkISize sz;
24 sz.set(w, h);
25 return sz;
26 }
reed@android.com00dae862009-06-10 15:38:48 +000027
28 class GM {
29 public:
30 GM();
31 virtual ~GM();
32
33 void draw(SkCanvas*);
reed@android.comdd0ac282009-06-20 02:38:16 +000034 SkISize getISize() { return this->onISize(); }
reed@android.com8015dd82009-06-21 00:49:18 +000035 const char* shortName() {
36 if (fShortName.size() == 0) {
37 fShortName = this->onShortName();
38 }
39 return fShortName.c_str();
40 }
reed@android.com00dae862009-06-10 15:38:48 +000041
42 protected:
reed@android.com8015dd82009-06-21 00:49:18 +000043 virtual void onDraw(SkCanvas*) = 0;
44 virtual SkISize onISize() = 0;
45 virtual SkString onShortName() = 0;
46
47 private:
48 SkString fShortName;
reed@android.com00dae862009-06-10 15:38:48 +000049 };
50
51 typedef SkTRegistry<GM*, void*> GMRegistry;
52}
53
54#endif