| * 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 SkProgressBarView_DEFINED |
| #define SkProgressBarView_DEFINED |
| #include "SkWidgetViews.h" |
| class SkProgressBarView : public SkWidgetView { |
| //SkProgressBarView(int max); |
| void reset(); //reset progress to zero |
| void setProgress(int progress); |
| void changeProgress(int diff); |
| int getProgress() const { return fProgress; } |
| int getMax() const { return fMax; } |
| virtual void onInflate(const SkDOM& dom, const SkDOM::Node* node); |
| virtual void onSizeChange(); |
| virtual void onDraw(SkCanvas* canvas); |
| virtual bool onEvent(const SkEvent& evt); |
| typedef SkWidgetView INHERITED; |