1 /*
2  * The MIT License
3  *
4  * Copyright (c) 2016-2018, Torsten Paul <torsten.paul@gmx.de>,
5  *                          Marius Kintel <marius@kintel.net>
6  *
7  * Permission is hereby granted, free of charge, to any person obtaining a
8  * copy of this software and associated documentation files (the "Software"),
9  * to deal in the Software without restriction, including without limitation
10  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11  * and/or sell copies of the Software, and to permit persons to whom the
12  * Software is furnished to do so, subject to the following conditions:
13  *
14  * The above copyright notice and this permission notice shall be included in
15  * all copies or substantial portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23  * THE SOFTWARE.
24  */
25 #pragma once
26 
27 #include "path.h"
28 
29 namespace libsvg {
30 
31 class rect : public path
32 {
33 protected:
34     double width;
35     double height;
36     double rx;
37     double ry;
38 
39 public:
40     rect();
41     ~rect();
42 
get_width()43     double get_width() const { return width; }
get_height()44     double get_height() const { return height; }
get_rx()45     double get_rx() const { return rx; }
get_ry()46     double get_ry() const { return ry; }
47 
48     void set_attrs(attr_map_t& attrs) override;
49     const std::string dump() const override;
get_name()50     const std::string& get_name() const override { return rect::name; };
51 
52     static const std::string name;
53 };
54 
55 }
56