blob: 4259c39df933aad296349f9658949d09eceb0fcc [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
bsalomon@google.com48dd1a22011-10-31 14:18:20 +000038 void draw(SkCanvas*);
39 void drawBackground(SkCanvas*);
40 void drawContent(SkCanvas*);
41
reed@android.comdd0ac282009-06-20 02:38:16 +000042 SkISize getISize() { return this->onISize(); }
bsalomon@google.com48dd1a22011-10-31 14:18:20 +000043 const char* shortName();
reed@android.com00dae862009-06-10 15:38:48 +000044
reed@google.comfbc21172011-09-19 19:08:33 +000045 uint32_t getFlags() const {
46 return this->onGetFlags();
47 }
bsalomon@google.com48dd1a22011-10-31 14:18:20 +000048
49 void setBGColor(SkColor);
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;
bsalomon@google.com48dd1a22011-10-31 14:18:20 +000053 virtual void onDrawBackground(SkCanvas*);
reed@android.com8015dd82009-06-21 00:49:18 +000054 virtual SkISize onISize() = 0;
55 virtual SkString onShortName() = 0;
reed@google.comfbc21172011-09-19 19:08:33 +000056 virtual uint32_t onGetFlags() const { return 0; }
reed@android.com8015dd82009-06-21 00:49:18 +000057
58 private:
59 SkString fShortName;
bsalomon@google.com48dd1a22011-10-31 14:18:20 +000060 SkColor fBGColor;
reed@android.com00dae862009-06-10 15:38:48 +000061 };
62
63 typedef SkTRegistry<GM*, void*> GMRegistry;
64}
65
66#endif