aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/graphics/SkProgressBarView.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/graphics/SkProgressBarView.h')
-rw-r--r--include/graphics/SkProgressBarView.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/include/graphics/SkProgressBarView.h b/include/graphics/SkProgressBarView.h
new file mode 100644
index 0000000000..64351c8bc4
--- /dev/null
+++ b/include/graphics/SkProgressBarView.h
@@ -0,0 +1,41 @@
+#ifndef SkProgressBarView_DEFINED
+#define SkProgressBarView_DEFINED
+
+#include "SkView.h"
+#include "SkWidgetViews.h"
+#include "SkAnimator.h"
+
+class SkProgressBarView : public SkWidgetView {
+ public:
+ SkProgressBarView();
+ //SkProgressBarView(int max);
+
+ //inflate: "sk-progress"
+
+ void reset(); //reset progress to zero
+ void setProgress(int progress);
+ void changeProgress(int diff);
+ void setMax(int max);
+
+ int getProgress() const { return fProgress; }
+ int getMax() const { return fMax; }
+
+ protected:
+ //overrides
+ virtual void onInflate(const SkDOM& dom, const SkDOM::Node* node);
+ virtual void onSizeChange();
+ virtual void onDraw(SkCanvas* canvas);
+ virtual bool onEvent(const SkEvent& evt);
+
+ private:
+ SkAnimator fAnim;
+ int fProgress;
+ int fMax;
+
+ typedef SkWidgetView INHERITED;
+};
+
+
+
+
+#endif