blob: 403503479dbdde3bd1be06c720b79f4d3a940e27 [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
reed@google.comfbc21172011-09-19 19:08:33 +000033 enum Flags {
34 kSkipPDF_Flag = 1 << 0,
35 kSkipPicture_Flag = 1 << 1
36 };
37
reed@android.com00dae862009-06-10 15:38:48 +000038 void draw(SkCanvas*);
reed@android.comdd0ac282009-06-20 02:38:16 +000039 SkISize getISize() { return this->onISize(); }
reed@android.com8015dd82009-06-21 00:49:18 +000040 const char* shortName() {
41 if (fShortName.size() == 0) {
42 fShortName = this->onShortName();
43 }
44 return fShortName.c_str();
45 }
reed@android.com00dae862009-06-10 15:38:48 +000046
reed@google.comfbc21172011-09-19 19:08:33 +000047 uint32_t getFlags() const {
48 return this->onGetFlags();
49 }
reed@google.com30db5992011-08-29 17:41:02 +000050
reed@android.com00dae862009-06-10 15:38:48 +000051 protected:
reed@android.com8015dd82009-06-21 00:49:18 +000052 virtual void onDraw(SkCanvas*) = 0;
53 virtual SkISize onISize() = 0;
54 virtual SkString onShortName() = 0;
reed@google.comfbc21172011-09-19 19:08:33 +000055 virtual uint32_t onGetFlags() const { return 0; }
reed@android.com8015dd82009-06-21 00:49:18 +000056
57 private:
58 SkString fShortName;
reed@android.com00dae862009-06-10 15:38:48 +000059 };
60
61 typedef SkTRegistry<GM*, void*> GMRegistry;
62}
63
64#endif