blob: db8391002021510eacbaefd3a38de255cc37fc41 [file] [log] [blame]
/*
* This file is part of the WebKit project.
*
* Copyright (C) 2006 Apple 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 INdT - Instituto Nokia de Tecnologia
* Copyright (C) 2009-2010 ProFUSION embedded systems
* Copyright (C) 2009-2010 Samsung Electronics
* All rights reserved.
*
* 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.
*
*/
#pragma once
#include "RenderTheme.h"
#include <Eina.h>
#include <cairo.h>
#include <wtf/efl/UniquePtrEfl.h>
namespace WebCore {
enum FormType { // KEEP IN SYNC WITH edjeGroupFromFormType()
Button,
RadioButton,
TextField,
CheckBox,
ComboBox,
ProgressBar,
ScrollbarHorizontalThumb,
ScrollbarHorizontalTrackBackground,
ScrollbarVerticalThumb,
ScrollbarVerticalTrackBackground,
SearchField,
SearchFieldResultsButton,
SearchFieldResultsDecoration,
SearchFieldCancelButton,
SliderVertical,
SliderHorizontal,
SliderThumbVertical,
SliderThumbHorizontal,
Spinner,
FormTypeLast
};
class RenderThemeEfl final : public RenderTheme {
private:
explicit RenderThemeEfl(Page*);
virtual ~RenderThemeEfl();
public:
static Ref<RenderTheme> create(Page*);
// A method asking if the theme's controls actually care about redrawing when hovered.
bool supportsHover(const RenderStyle&) const override { return true; }
// A method Returning whether the control is styled by css or not e.g specifying background-color.
bool isControlStyled(const RenderStyle&, const BorderData&, const FillLayer&, const Color& backgroundColor) const override;
// A method asking if the theme is able to draw the focus ring.
bool supportsFocusRing(const RenderStyle&) const override;
// A method asking if the control changes its tint when the window has focus or not.
bool controlSupportsTints(const RenderObject&) const override;
// A general method asking if any control tinting is supported at all.
bool supportsControlTints() const override { return true; }
// A general method asking if foreground colors of selection are supported.
bool supportsSelectionForegroundColors() const override;
// A method to obtain the baseline position for a "leaf" control. This will only be used if a baseline
// position cannot be determined by examining child content. Checkboxes and radio buttons are examples of
// controls that need to do this.
int baselinePosition(const RenderBox&) const override;
Color platformActiveSelectionBackgroundColor() const override;
Color platformInactiveSelectionBackgroundColor() const override;
Color platformActiveSelectionForegroundColor() const override;
Color platformInactiveSelectionForegroundColor() const override;
Color platformFocusRingColor() const override;
// Set platform colors; remember to call platformColorDidChange after.
void setColorFromThemeClass(const char* colorClass);
void setButtonTextColor(int foreR, int foreG, int foreB, int foreA, int backR, int backG, int backB, int backA);
void setComboTextColor(int foreR, int foreG, int foreB, int foreA, int backR, int backG, int backB, int backA);
void setEntryTextColor(int foreR, int foreG, int foreB, int foreA, int backR, int backG, int backB, int backA);
void setSearchTextColor(int foreR, int foreG, int foreB, int foreA, int backR, int backG, int backB, int backA);
void adjustSizeConstraints(RenderStyle&, FormType) const;
void adjustCheckboxStyle(StyleResolver&, RenderStyle&, const Element*) const override;
bool paintCheckbox(const RenderObject&, const PaintInfo&, const IntRect&) override;
void adjustRadioStyle(StyleResolver&, RenderStyle&, const Element*) const override;
bool paintRadio(const RenderObject&, const PaintInfo&, const IntRect&) override;
void adjustButtonStyle(StyleResolver&, RenderStyle&, const Element*) const override;
bool paintButton(const RenderObject&, const PaintInfo&, const IntRect&) override;
void adjustTextFieldStyle(StyleResolver&, RenderStyle&, const Element*) const override;
bool paintTextField(const RenderObject&, const PaintInfo&, const FloatRect&) override;
void adjustTextAreaStyle(StyleResolver&, RenderStyle&, const Element*) const override;
bool paintTextArea(const RenderObject&, const PaintInfo&, const FloatRect&) override;
void adjustMenuListStyle(StyleResolver&, RenderStyle&, const Element*) const override;
bool paintMenuList(const RenderObject&, const PaintInfo&, const FloatRect&) override;
void adjustMenuListButtonStyle(StyleResolver&, RenderStyle&, const Element*) const override;
bool paintMenuListButtonDecorations(const RenderBox&, const PaintInfo&, const FloatRect&) override;
void adjustSearchFieldResultsDecorationPartStyle(StyleResolver&, RenderStyle&, const Element*) const override;
bool paintSearchFieldResultsDecorationPart(const RenderBox&, const PaintInfo&, const IntRect&) override;
void adjustSearchFieldStyle(StyleResolver&, RenderStyle&, const Element*) const override;
bool paintSearchField(const RenderObject&, const PaintInfo&, const IntRect&) override;
void adjustSearchFieldResultsButtonStyle(StyleResolver&, RenderStyle&, const Element*) const override;
bool paintSearchFieldResultsButton(const RenderBox&, const PaintInfo&, const IntRect&) override;
void adjustSearchFieldCancelButtonStyle(StyleResolver&, RenderStyle&, const Element*) const override;
bool paintSearchFieldCancelButton(const RenderBox&, const PaintInfo&, const IntRect&) override;
void adjustSliderTrackStyle(StyleResolver&, RenderStyle&, const Element*) const override;
bool paintSliderTrack(const RenderObject&, const PaintInfo&, const IntRect&) override;
void adjustSliderThumbStyle(StyleResolver&, RenderStyle&, const Element*) const override;
void adjustSliderThumbSize(RenderStyle&, const Element*) const override;
#if ENABLE(DATALIST_ELEMENT)
IntSize sliderTickSize() const override;
int sliderTickOffsetFromTrackCenter() const override;
LayoutUnit sliderTickSnappingThreshold() const override;
#endif
bool supportsDataListUI(const AtomicString&) const override;
bool paintSliderThumb(const RenderObject&, const PaintInfo&, const IntRect&) override;
void adjustInnerSpinButtonStyle(StyleResolver&, RenderStyle&, const Element*) const override;
bool paintInnerSpinButton(const RenderObject&, const PaintInfo&, const IntRect&) override;
static void setDefaultFontSize(int fontsize);
void adjustProgressBarStyle(StyleResolver&, RenderStyle&, const Element*) const override;
bool paintProgressBar(const RenderObject&, const PaintInfo&, const IntRect&) override;
double animationRepeatIntervalForProgressBar(RenderProgress&) const override;
double animationDurationForProgressBar(RenderProgress&) const override;
#if ENABLE(VIDEO)
String mediaControlsStyleSheet() override;
String mediaControlsScript() override;
#endif
#if ENABLE(VIDEO_TRACK)
bool supportsClosedCaptioning() const override { return true; }
#endif
void setThemePath(const String&);
String themePath() const;
bool paintThemePart(const GraphicsContext&, FormType, const IntRect&);
protected:
static float defaultFontSize;
private:
bool loadTheme();
ALWAYS_INLINE bool loadThemeIfNeeded() const
{
return m_edje || (!m_themePath.isEmpty() && const_cast<RenderThemeEfl*>(this)->loadTheme());
}
// System fonts.
void updateCachedSystemFontDescription(CSSValueID, FontCascadeDescription&) const override;
ALWAYS_INLINE Ecore_Evas* canvas() const { return m_canvas.get(); }
ALWAYS_INLINE Evas_Object* edje() const { return m_edje.get(); }
void applyPartDescriptionsFrom(const String& themePath);
void applyEdjeStateFromForm(Evas_Object*, const ControlStates*, bool);
void applyEdjeRTLState(Evas_Object*, const RenderObject&, FormType, const IntRect&);
bool paintThemePart(const RenderObject&, FormType, const PaintInfo&, const IntRect&);
Page* m_page;
Color m_activeSelectionBackgroundColor;
Color m_activeSelectionForegroundColor;
Color m_inactiveSelectionBackgroundColor;
Color m_inactiveSelectionForegroundColor;
Color m_focusRingColor;
Color m_sliderThumbColor;
String m_themePath;
// Order so that the canvas gets destroyed at last.
EflUniquePtr<Ecore_Evas> m_canvas;
EflUniquePtr<Evas_Object> m_edje;
bool m_supportsSelectionForegroundColor;
struct ThemePartDesc {
FormType type;
LengthSize min;
LengthSize max;
LengthBox padding;
};
void applyPartDescriptionFallback(struct ThemePartDesc*);
void applyPartDescription(Evas_Object*, struct ThemePartDesc*);
struct ThemePartCacheEntry {
static std::unique_ptr<RenderThemeEfl::ThemePartCacheEntry> create(const String& themePath, FormType, const IntSize&);
void reuse(const String& themePath, FormType, const IntSize&);
ALWAYS_INLINE Ecore_Evas* canvas() { return m_canvas.get(); }
ALWAYS_INLINE Evas_Object* edje() { return m_edje.get(); }
ALWAYS_INLINE cairo_surface_t* surface() { return m_surface.get(); }
FormType type;
IntSize size;
private:
// Order so that the canvas gets destroyed at last.
EflUniquePtr<Ecore_Evas> m_canvas;
EflUniquePtr<Evas_Object> m_edje;
RefPtr<cairo_surface_t> m_surface;
};
struct ThemePartDesc m_partDescs[FormTypeLast];
// List of ThemePartCacheEntry* sorted so that the most recently
// used entries come first. We use a list for efficient moving
// of items within the container.
Vector<std::unique_ptr<ThemePartCacheEntry>> m_partCache;
ThemePartCacheEntry* getThemePartFromCache(FormType, const IntSize&);
void clearThemePartCache();
};
} // namespace WebCore