| * 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 SkAnimatorView_DEFINED |
| #define SkAnimatorView_DEFINED |
| class SkAnimatorView : public SkView { |
| virtual ~SkAnimatorView(); |
| SkAnimator* getAnimator() const { return fAnimator; } |
| bool decodeFile(const char path[]); |
| bool decodeMemory(const void* buffer, size_t size); |
| bool decodeStream(SkStream* stream); |
| virtual bool onEvent(const SkEvent&); |
| virtual void onDraw(SkCanvas*); |
| virtual void onInflate(const SkDOM&, const SkDOM::Node*); |
| typedef SkView INHERITED; |