css_computed_values_updater.h
1 /*
2 ** ClanLib SDK
3 ** Copyright (c) 1997-2013 The ClanLib Team
4 **
5 ** This software is provided 'as-is', without any express or implied
6 ** warranty. In no event will the authors be held liable for any damages
7 ** arising from the use of this software.
8 **
9 ** Permission is granted to anyone to use this software for any purpose,
10 ** including commercial applications, and to alter it and redistribute it
11 ** freely, subject to the following restrictions:
12 **
13 ** 1. The origin of this software must not be misrepresented; you must not
14 ** claim that you wrote the original software. If you use this software
15 ** in a product, an acknowledgment in the product documentation would be
16 ** appreciated but is not required.
17 ** 2. Altered source versions must be plainly marked as such, and must not be
18 ** misrepresented as being the original software.
19 ** 3. This notice may not be removed or altered from any source distribution.
20 **
21 ** Note: Some of the libraries ClanLib may link to may have additional
22 ** requirements or restrictions.
23 **
24 ** File Author(s):
25 **
26 ** Magnus Norddahl
27 */
28 
29 #pragma once
30 
31 #include "../api_csslayout.h"
32 #include "css_computed_background.h"
33 #include "css_computed_border.h"
34 #include "css_computed_box.h"
35 #include "css_computed_counter.h"
36 #include "css_computed_flex.h"
37 #include "css_computed_font.h"
38 #include "css_computed_generic.h"
39 #include "css_computed_list_style.h"
40 #include "css_computed_margin.h"
41 #include "css_computed_misc.h"
42 #include "css_computed_outline.h"
43 #include "css_computed_padding.h"
44 #include "css_computed_table.h"
45 #include "css_computed_text.h"
46 
47 namespace clan
48 {
51 
52 class CL_API_CSSLAYOUT CSSComputedValuesUpdater
53 {
54 public:
55  virtual CSSComputedBox &get_box() = 0;
56  virtual CSSComputedBackground &get_background() = 0;
57  virtual CSSComputedBorder &get_border() = 0;
58  virtual CSSComputedCounter &get_counter() = 0;
59  virtual CSSComputedFlex &get_flex() = 0;
60  virtual CSSComputedFont &get_font() = 0;
61  virtual CSSComputedGeneric &get_generic() = 0;
62  virtual CSSComputedListStyle &get_list_style() = 0;
63  virtual CSSComputedMargin &get_margin() = 0;
64  virtual CSSComputedMiscReset &get_misc_reset() = 0;
65  virtual CSSComputedMiscInherit &get_misc_inherit() = 0;
66  virtual CSSComputedOutline &get_outline() = 0;
67  virtual CSSComputedPadding &get_padding() = 0;
68  virtual CSSComputedTableReset &get_table_reset() = 0;
69  virtual CSSComputedTableInherit &get_table_inherit() = 0;
70  virtual CSSComputedTextReset &get_text_reset() = 0;
71  virtual CSSComputedTextInherit &get_text_inherit() = 0;
72 };
73 
75 }
Definition: css_computed_misc.h:72
Definition: css_computed_generic.h:42
Definition: css_computed_table.h:45
Definition: css_computed_misc.h:54
Definition: css_computed_values_updater.h:52
Definition: css_computed_counter.h:42
Definition: css_computed_text.h:61
Definition: css_computed_padding.h:41
Definition: css_computed_border.h:49
Definition: css_computed_text.h:50
Definition: css_computed_list_style.h:43
Definition: css_computed_box.h:55
Definition: css_computed_table.h:53
Definition: css_computed_margin.h:41
Definition: css_computed_outline.h:43
Definition: css_computed_flex.h:50
Definition: css_computed_background.h:48
Definition: css_computed_font.h:46