summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/paint/theme_painter_default.h
blob: 344b66868301a07aa86f503c39f2eaa4bd171f0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/*
 * This file is part of the WebKit project.
 *
 * Copyright (C) 2006 Apple Computer, Inc.
 * Copyright (C) 2006 Michael Emmel mike.emmel@gmail.com
 * Copyright (C) 2007 Holger Hans Peter Freyther
 * Copyright (C) 2007 Alp Toker <alp@atoker.com>
 * Copyright (C) 2008, 2009 Google, Inc.
 * All rights reserved.
 * Copyright (C) 2009 Kenneth Rohde Christiansen
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public License
 * along with this library; see the file COPYING.LIB.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 *
 */

#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_PAINT_THEME_PAINTER_DEFAULT_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_PAINT_THEME_PAINTER_DEFAULT_H_

#include "third_party/blink/public/platform/web_theme_engine.h"
#include "third_party/blink/renderer/core/paint/theme_painter.h"

namespace blink {

class LayoutThemeDefault;

class ThemePainterDefault final : public ThemePainter {
 public:
  explicit ThemePainterDefault(LayoutThemeDefault&);

 private:
  bool PaintCheckbox(const Element&,
                     const Document&,
                     const ComputedStyle&,
                     const PaintInfo&,
                     const IntRect&) override;
  bool PaintRadio(const Element&,
                  const Document&,
                  const ComputedStyle&,
                  const PaintInfo&,
                  const IntRect&) override;
  bool PaintButton(const Element&,
                   const Document&,
                   const ComputedStyle&,
                   const PaintInfo&,
                   const IntRect&) override;
  bool PaintTextField(const Element&,
                      const ComputedStyle&,
                      const PaintInfo&,
                      const IntRect&) override;
  bool PaintMenuList(const Element&,
                     const Document&,
                     const ComputedStyle&,
                     const PaintInfo&,
                     const IntRect&) override;
  bool PaintMenuListButton(const Element&,
                           const Document&,
                           const ComputedStyle&,
                           const PaintInfo&,
                           const IntRect&) override;
  bool PaintSliderTrack(const Element& element,
                        const LayoutObject&,
                        const PaintInfo&,
                        const IntRect&) override;
  bool PaintSliderThumb(const Element&,
                        const ComputedStyle&,
                        const PaintInfo&,
                        const IntRect&) override;
  bool PaintInnerSpinButton(const Element&,
                            const ComputedStyle&,
                            const PaintInfo&,
                            const IntRect&) override;
  bool PaintProgressBar(const Element& element,
                        const LayoutObject&,
                        const PaintInfo&,
                        const IntRect&) override;
  bool PaintTextArea(const Element&,
                     const ComputedStyle&,
                     const PaintInfo&,
                     const IntRect&) override;
  bool PaintSearchField(const Element&,
                        const ComputedStyle&,
                        const PaintInfo&,
                        const IntRect&) override;
  bool PaintSearchFieldCancelButton(const LayoutObject&,
                                    const PaintInfo&,
                                    const IntRect&) override;

  void SetupMenuListArrow(const Document&,
                          const ComputedStyle&,
                          const IntRect&,
                          WebThemeEngine::ExtraParams&);

  // ThemePaintDefault is a part object of m_theme.
  LayoutThemeDefault& theme_;
};

}  // namespace blink

#endif  // ThemePainerDefault_h