2011-07-28 14:26:00 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
/*
|
2011-07-28 14:26:00 +00:00
|
|
|
* Copyright 2006 The Android Open Source Project
|
2008-12-17 15:59:43 +00:00
|
|
|
*
|
2011-07-28 14:26:00 +00:00
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
2008-12-17 15:59:43 +00:00
|
|
|
*/
|
|
|
|
|
2011-07-28 14:26:00 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
#ifndef SkProgressBarView_DEFINED
|
|
|
|
#define SkProgressBarView_DEFINED
|
|
|
|
|
|
|
|
#include "SkView.h"
|
|
|
|
#include "SkWidgetViews.h"
|
|
|
|
#include "SkAnimator.h"
|
|
|
|
|
|
|
|
class SkProgressBarView : public SkWidgetView {
|
|
|
|
public:
|
|
|
|
SkProgressBarView();
|
|
|
|
//SkProgressBarView(int max);
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
//inflate: "sk-progress"
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
void reset(); //reset progress to zero
|
|
|
|
void setProgress(int progress);
|
|
|
|
void changeProgress(int diff);
|
|
|
|
void setMax(int max);
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
int getProgress() const { return fProgress; }
|
|
|
|
int getMax() const { return fMax; }
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
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);
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
private:
|
|
|
|
SkAnimator fAnim;
|
|
|
|
int fProgress;
|
|
|
|
int fMax;
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
typedef SkWidgetView INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|