~mmach/netext73/webkit2gtk

« back to all changes in this revision

Viewing changes to Source/WebCore/rendering/style/StyleCursorImage.h

  • Committer: mmach
  • Date: 2023-06-16 17:21:37 UTC
  • Revision ID: netbit73@gmail.com-20230616172137-2rqx6yr96ga9g3kp
1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
 
3
 *           (C) 2000 Antti Koivisto (koivisto@kde.org)
 
4
 *           (C) 2000 Dirk Mueller (mueller@kde.org)
 
5
 * Copyright (C) 2003, 2005-2008, 2016 Apple Inc. All rights reserved.
 
6
 * Copyright (C) 2020 Noam Rosenthal (noam@webkit.org)
 
7
  *
 
8
 * This library is free software; you can redistribute it and/or
 
9
 * modify it under the terms of the GNU Library General Public
 
10
 * License as published by the Free Software Foundation; either
 
11
 * version 2 of the License, or (at your option) any later version.
 
12
 *
 
13
 * This library is distributed in the hope that it will be useful,
 
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
16
 * Library General Public License for more details.
 
17
 *
 
18
 * You should have received a copy of the GNU Library General Public License
 
19
 * along with this library; see the file COPYING.LIB.  If not, write to
 
20
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
21
 * Boston, MA 02110-1301, USA.
 
22
 *
 
23
 */
 
24
 
 
25
#pragma once
 
26
 
 
27
#include "StyleMultiImage.h"
 
28
 
 
29
namespace WebCore {
 
30
 
 
31
class CSSCursorImageValue;
 
32
 
 
33
struct ImageWithScale;
 
34
 
 
35
class StyleCursorImage final : public StyleMultiImage {
 
36
    WTF_MAKE_FAST_ALLOCATED;
 
37
public:
 
38
    static Ref<StyleCursorImage> create(CSSCursorImageValue&);
 
39
    virtual ~StyleCursorImage();
 
40
    bool operator==(const StyleImage& other) const;
 
41
 
 
42
private:
 
43
    void setContainerContextForRenderer(const RenderElement& renderer, const FloatSize& containerSize, float containerZoom) final;
 
44
    Ref<CSSValue> cssValue() const final;
 
45
    ImageWithScale selectBestFitImage(const Document&) const final;
 
46
 
 
47
    explicit StyleCursorImage(CSSCursorImageValue&);
 
48
    Ref<CSSCursorImageValue> m_cssValue;
 
49
};
 
50
 
 
51
} // namespace WebCore
 
52
 
 
53
SPECIALIZE_TYPE_TRAITS_STYLE_IMAGE(StyleCursorImage, isCursorImage)