| Index: include/views/animated/SkScrollBarView.h
|
| diff --git a/include/views/animated/SkScrollBarView.h b/include/views/animated/SkScrollBarView.h
|
| deleted file mode 100644
|
| index 05042f06fe5de93cf830d7f3a4c87a6f1b177ecc..0000000000000000000000000000000000000000
|
| --- a/include/views/animated/SkScrollBarView.h
|
| +++ /dev/null
|
| @@ -1,44 +0,0 @@
|
| -
|
| -/*
|
| - * 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 SkScrollBarView_DEFINED
|
| -#define SkScrollBarView_DEFINED
|
| -
|
| -#include "SkView.h"
|
| -#include "SkWidgetViews.h"
|
| -#include "SkAnimator.h"
|
| -
|
| -class SkScrollBarView : public SkWidgetView {
|
| -public:
|
| - SkScrollBarView();
|
| -
|
| - unsigned getStart() const { return fStartPoint; }
|
| - unsigned getShown() const { return fShownLength; }
|
| - unsigned getTotal() const { return fTotalLength; }
|
| -
|
| - void setStart(unsigned start);
|
| - void setShown(unsigned shown);
|
| - void setTotal(unsigned total);
|
| -
|
| -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;
|
| - unsigned fTotalLength, fStartPoint, fShownLength;
|
| -
|
| - void adjust();
|
| -
|
| - typedef SkWidgetView INHERITED;
|
| -};
|
| -#endif
|
|
|