blob: b0ce234df1207eff044bb12f5cfa0e6d00b83221 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/*
* Copyright 2006 The Android Open Source Project
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkTextOnPath_DEFINED
#define SkTextOnPath_DEFINED
#include "SkBoundable.h"
#include "SkMemberInfo.h"
class SkDrawPath;
class SkText;
class SkTextOnPath : public SkBoundable {
DECLARE_MEMBER_INFO(TextOnPath);
SkTextOnPath();
virtual bool draw(SkAnimateMaker& );
private:
SkScalar offset;
SkDrawPath* path;
SkText* text;
typedef SkBoundable INHERITED;
};
#endif // SkTextOnPath_DEFINED
|