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
|
/*
* Copyright (C) 2020 Igalia S.L.
* Copyright (C) 2022 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#if USE(THEME_ADWAITA)
#include "RenderTheme.h"
namespace WebCore {
class RenderThemeAdwaita : public RenderTheme {
public:
virtual ~RenderThemeAdwaita();
bool canCreateControlPartForRenderer(const RenderObject&) const final;
bool canCreateControlPartForBorderOnly(const RenderObject&) const final;
bool canCreateControlPartForDecorations(const RenderObject&) const final;
bool isControlStyled(const RenderStyle&, const RenderStyle& userAgentStyle) const final;
void setAccentColor(const Color&);
private:
String extraDefaultStyleSheet() final;
#if ENABLE(VIDEO)
Vector<String, 2> mediaControlsScripts() final;
String mediaControlsStyleSheet() final;
#endif
#if ENABLE(VIDEO)
String mediaControlsBase64StringForIconNameAndType(const String&, const String&) final;
String mediaControlsFormattedStringForDuration(double) final;
String m_mediaControlsStyleSheet;
#endif // ENABLE(VIDEO)
bool supportsHover() const final { return true; }
bool supportsFocusRing(const RenderObject&, const RenderStyle&) const final;
bool supportsSelectionForegroundColors(OptionSet<StyleColorOptions>) const final { return false; }
bool supportsListBoxSelectionForegroundColors(OptionSet<StyleColorOptions>) const final { return true; }
bool shouldHaveCapsLockIndicator(const HTMLInputElement&) const final;
Color platformActiveSelectionBackgroundColor(OptionSet<StyleColorOptions>) const final;
Color platformInactiveSelectionBackgroundColor(OptionSet<StyleColorOptions>) const final;
Color platformActiveSelectionForegroundColor(OptionSet<StyleColorOptions>) const final;
Color platformInactiveSelectionForegroundColor(OptionSet<StyleColorOptions>) const final;
Color platformActiveListBoxSelectionBackgroundColor(OptionSet<StyleColorOptions>) const final;
Color platformActiveListBoxSelectionForegroundColor(OptionSet<StyleColorOptions>) const final;
Color platformInactiveListBoxSelectionBackgroundColor(OptionSet<StyleColorOptions>) const final;
Color platformInactiveListBoxSelectionForegroundColor(OptionSet<StyleColorOptions>) const final;
Color platformFocusRingColor(OptionSet<StyleColorOptions>) const final;
void platformColorsDidChange() final;
void adjustTextFieldStyle(RenderStyle&, const Element*) const final;
void adjustTextAreaStyle(RenderStyle&, const Element*) const final;
void adjustSearchFieldStyle(RenderStyle&, const Element*) const final;
bool popsMenuBySpaceOrReturn() const final { return true; }
void adjustMenuListStyle(RenderStyle&, const Element*) const override;
void adjustMenuListButtonStyle(RenderStyle&, const Element*) const override;
LengthBox popupInternalPaddingBox(const RenderStyle&) const final;
Seconds animationRepeatIntervalForProgressBar(const RenderProgress&) const final;
IntRect progressBarRectForBounds(const RenderProgress&, const IntRect&) const final;
void adjustSliderThumbSize(RenderStyle&, const Element*) const final;
Color systemColor(CSSValueID, OptionSet<StyleColorOptions>) const final;
IntSize sliderTickSize() const final;
int sliderTickOffsetFromTrackCenter() const final;
void adjustListButtonStyle(RenderStyle&, const Element*) const final;
#if PLATFORM(GTK) || PLATFORM(WPE)
std::optional<Seconds> caretBlinkInterval() const override;
#endif
};
} // namespace WebCore
#endif // USE(THEME_ADWAITA)
|