summaryrefslogtreecommitdiff
path: root/src/mbgl/style/layers/background_layer.cpp
blob: 42cd76d01f3d91c571b30da914291c976c90677b (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
// This file is generated. Edit scripts/generate-style-code.js, then run `make style-code`.

#include <mbgl/style/layers/background_layer.hpp>
#include <mbgl/style/layers/background_layer_impl.hpp>

namespace mbgl {
namespace style {

BackgroundLayer::BackgroundLayer(const std::string& layerID)
    : Layer(Type::Background, std::make_unique<Impl>())
    , impl(static_cast<Impl*>(baseImpl.get())) {
    impl->id = layerID;
}

BackgroundLayer::BackgroundLayer(const Impl& other)
    : Layer(Type::Background, std::make_unique<Impl>(other))
    , impl(static_cast<Impl*>(baseImpl.get())) {
}

BackgroundLayer::~BackgroundLayer() = default;

std::unique_ptr<Layer> BackgroundLayer::Impl::clone() const {
    return std::make_unique<BackgroundLayer>(*this);
}

std::unique_ptr<Layer> BackgroundLayer::Impl::cloneRef(const std::string& id_) const {
    auto result = std::make_unique<BackgroundLayer>(*this);
    result->impl->id = id_;
    result->impl->ref = this->id;
    result->impl->paint = BackgroundPaintProperties();
    return std::move(result);
}


// Layout properties


// Paint properties

PropertyValue<Color> BackgroundLayer::getBackgroundColor() const {
    return impl->paint.backgroundColor.get();
}

void BackgroundLayer::setBackgroundColor(PropertyValue<Color> value, const optional<std::string>& klass) {
    impl->paint.backgroundColor.set(value, klass);
}

PropertyValue<std::string> BackgroundLayer::getBackgroundPattern() const {
    return impl->paint.backgroundPattern.get();
}

void BackgroundLayer::setBackgroundPattern(PropertyValue<std::string> value, const optional<std::string>& klass) {
    impl->paint.backgroundPattern.set(value, klass);
}

PropertyValue<float> BackgroundLayer::getBackgroundOpacity() const {
    return impl->paint.backgroundOpacity.get();
}

void BackgroundLayer::setBackgroundOpacity(PropertyValue<float> value, const optional<std::string>& klass) {
    impl->paint.backgroundOpacity.set(value, klass);
}

} // namespace style
} // namespace mbgl