Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(722)

Unified Diff: ui/base/native_theme/native_theme_android.h

Issue 10985076: NativeThemeAndroid should inherit from NativeThemeBase (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Patch Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ui/base/native_theme/native_theme_android.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/native_theme/native_theme_android.h
diff --git a/ui/base/native_theme/native_theme_android.h b/ui/base/native_theme/native_theme_android.h
index 8e0ec98366a930ef933fde25a2e06fed86e680ba..2846c797cdb93915cc3bb7a90ac44a30ec240234 100644
--- a/ui/base/native_theme/native_theme_android.h
+++ b/ui/base/native_theme/native_theme_android.h
@@ -5,170 +5,20 @@
#ifndef UI_BASE_NATIVE_THEME_NATIVE_THEME_ANDROID_H_
#define UI_BASE_NATIVE_THEME_NATIVE_THEME_ANDROID_H_
-#include "base/basictypes.h"
-#include "base/compiler_specific.h"
-#include "skia/ext/platform_canvas.h"
-#include "ui/base/native_theme/native_theme.h"
-
-namespace gfx {
-class ImageSkia;
-class Rect;
-class Size;
-}
+#include "ui/base/native_theme/native_theme_base.h"
namespace ui {
-// Android theming API.
-class NativeThemeAndroid : public NativeTheme {
+// Android implementation of native theme support.
+class NativeThemeAndroid : public NativeThemeBase {
public:
- // Gets our singleton instance.
static const NativeThemeAndroid* instance();
- // Return the size of the part.
- virtual gfx::Size GetPartSize(Part part,
- State state,
- const ExtraParams& extra) const OVERRIDE;
-
- // Paint the part to the canvas.
- virtual void Paint(SkCanvas* canvas,
- Part part,
- State state,
- const gfx::Rect& rect,
- const ExtraParams& extra) const OVERRIDE;
-
virtual SkColor GetSystemColor(ColorId color_id) const OVERRIDE;
private:
NativeThemeAndroid();
virtual ~NativeThemeAndroid();
-
- // Draw the arrow. Used by scrollbar and inner spin button.
- void PaintArrowButton(SkCanvas* gc,
- const gfx::Rect& rect,
- Part direction,
- State state) const;
-
- // Draw the checkbox.
- void PaintCheckbox(SkCanvas* canvas,
- State state,
- const gfx::Rect& rect,
- const ButtonExtraParams& button) const;
-
- // Draw the radio.
- void PaintRadio(SkCanvas* canvas,
- State state,
- const gfx::Rect& rect,
- const ButtonExtraParams& button) const;
-
- // Draw the push button.
- void PaintButton(SkCanvas* canvas,
- State state,
- const gfx::Rect& rect,
- const ButtonExtraParams& button) const;
-
- // Draw the text field.
- void PaintTextField(SkCanvas* canvas,
- State state,
- const gfx::Rect& rect,
- const TextFieldExtraParams& text) const;
-
- // Draw the menu list.
- void PaintMenuList(SkCanvas* canvas,
- State state,
- const gfx::Rect& rect,
- const MenuListExtraParams& menu_list) const;
-
- // Draw the slider track.
- void PaintSliderTrack(SkCanvas* canvas,
- State state,
- const gfx::Rect& rect,
- const SliderExtraParams& slider) const;
-
- // Draw the slider thumb.
- void PaintSliderThumb(SkCanvas* canvas,
- State state,
- const gfx::Rect& rect,
- const SliderExtraParams& slider) const;
-
- // Draw the inner spin button.
- void PaintInnerSpinButton(
- SkCanvas* canvas,
- State state,
- const gfx::Rect& rect,
- const InnerSpinButtonExtraParams& spin_button) const;
-
- // Draw the progress bar.
- void PaintProgressBar(
- SkCanvas* canvas,
- State state,
- const gfx::Rect& rect,
- const ProgressBarExtraParams& progress_bar) const;
-
- // Return true if there is intersection between the |canvas| and the given
- // rectangle.
- bool IntersectsClipRectInt(SkCanvas* canvas,
- int x,
- int y,
- int w,
- int h) const;
-
- // Draw the dest rectangle with the given image which might be scaled if its
- // size is not same as target rectangle.
- void DrawImageInt(SkCanvas* canvas,
- const gfx::ImageSkia& image,
- int src_x,
- int src_y,
- int src_w,
- int src_h,
- int dest_x,
- int dest_y,
- int dest_w,
- int dest_h) const;
-
- // Draw the target rectangle with the |bitmap| accroding the given
- // |tile_scale_x| and |tile_scale_y|
- void DrawTiledImage(SkCanvas* canvas,
- const gfx::ImageSkia& image,
- int src_x,
- int src_y,
- float tile_scale_x,
- float tile_scale_y,
- int dest_x,
- int dest_y,
- int w,
- int h) const;
-
- // Return a new color which comes from the |hsv| by adjusting saturate and
- // brighten according |saturate_amount| and |brighten_amount|
- SkColor SaturateAndBrighten(SkScalar* hsv,
- SkScalar saturate_amount,
- SkScalar brighten_amount) const;
-
- void DrawVertLine(SkCanvas* canvas,
- int x,
- int y1,
- int y2,
- const SkPaint& paint) const;
-
- void DrawHorizLine(SkCanvas* canvas,
- int x1,
- int x2,
- int y,
- const SkPaint& paint) const;
-
- void DrawBox(SkCanvas* canvas,
- const gfx::Rect& rect,
- const SkPaint& paint) const;
-
- // Return the |value| if it is between |min| and |max|, otherwise the |min|
- // or |max| is returned dependent on which is mostly near the |value|.
- SkScalar Clamp(SkScalar value, SkScalar min, SkScalar max) const;
-
- // Used to return the color of scrollbar based on the color of thumb and
- // track.
- SkColor OutlineColor(SkScalar* hsv1, SkScalar* hsv2) const;
-
- DISALLOW_COPY_AND_ASSIGN(NativeThemeAndroid);
};
} // namespace ui
« no previous file with comments | « no previous file | ui/base/native_theme/native_theme_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698