aboutsummaryrefslogtreecommitdiffhomepage
path: root/samplecode/SampleCode.h
diff options
context:
space:
mode:
Diffstat (limited to 'samplecode/SampleCode.h')
-rw-r--r--samplecode/SampleCode.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/samplecode/SampleCode.h b/samplecode/SampleCode.h
index d09022f350..02590f17a9 100644
--- a/samplecode/SampleCode.h
+++ b/samplecode/SampleCode.h
@@ -36,6 +36,7 @@ public:
static bool FastTextQ(const SkEvent&);
+private:
static SkMSec GetAnimTime();
static SkMSec GetAnimTimeDelta();
static SkScalar GetAnimSecondsDelta();
@@ -44,6 +45,8 @@ public:
static SkScalar GetAnimSinScalar(SkScalar amplitude,
SkScalar periodInSec,
SkScalar phaseInSec = 0);
+
+ friend class SampleWindow;
};
//////////////////////////////////////////////////////////////////////////////
@@ -117,6 +120,7 @@ public:
{}
void setBGColor(SkColor color) { fBGColor = color; }
+ bool animatePulse(SkMSec curr, SkMSec prev) { return this->onAnimatePulse(curr, prev); }
static bool IsSampleView(SkView*);
static bool SetRepeatDraw(SkView*, int count);
@@ -136,6 +140,7 @@ public:
protected:
virtual void onDrawBackground(SkCanvas*);
virtual void onDrawContent(SkCanvas*) = 0;
+ virtual bool onAnimatePulse(SkMSec curr, SkMSec prev) { return false; }
// overrides
virtual bool onEvent(const SkEvent& evt);