Home | History | Annotate | Download | only in native_theme
      1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 #ifndef UI_NATIVE_THEME_COMMON_THEME_H_
      6 #define UI_NATIVE_THEME_COMMON_THEME_H_
      7 
      8 #include "ui/native_theme/native_theme.h"
      9 
     10 class SkCanvas;
     11 
     12 namespace ui {
     13 
     14 // Drawing code that is common for all platforms.
     15 
     16 // Returns true and |color| if |color_id| is found, or false otherwise.
     17 bool NATIVE_THEME_EXPORT CommonThemeGetSystemColor(
     18     NativeTheme::ColorId color_id,
     19     SkColor* color);
     20 
     21 gfx::Size NATIVE_THEME_EXPORT CommonThemeGetPartSize(
     22     NativeTheme::Part part,
     23     NativeTheme::State state,
     24     const NativeTheme::ExtraParams& extra);
     25 
     26 void NATIVE_THEME_EXPORT CommonThemePaintMenuSeparator(
     27     SkCanvas* canvas,
     28     const gfx::Rect& rect,
     29     const NativeTheme::MenuSeparatorExtraParams& extra);
     30 
     31 void NATIVE_THEME_EXPORT CommonThemePaintMenuGutter(SkCanvas* canvas,
     32                                                     const gfx::Rect& rect);
     33 
     34 void NATIVE_THEME_EXPORT CommonThemePaintMenuBackground(SkCanvas* canvas,
     35                                                         const gfx::Rect& rect);
     36 
     37 void NATIVE_THEME_EXPORT CommonThemePaintMenuItemBackground(
     38     SkCanvas* canvas,
     39     NativeTheme::State state,
     40     const gfx::Rect& rect);
     41 
     42 }  // namespace ui
     43 
     44 #endif  // UI_NATIVE_THEME_COMMON_THEME_H_
     45