style_cascade.h
1 /*
2 ** UICore
3 ** Copyright (c) 1997-2015 The UICore 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 UICore 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 <memory>
32 #include <string>
33 #include <vector>
34 #include "style_get_value.h"
35 
36 namespace uicore
37 {
38  class Style;
39  class StyleGetValue;
40  class Canvas;
41  typedef std::shared_ptr<Canvas> CanvasPtr;
42  class Font;
43  typedef std::shared_ptr<Font> FontPtr;
44  class ViewGeometry;
45 
46 #if defined(MICROSOFT_FINALLY_IMPLEMENTED_CONSTEXPR_TEN_YEARS_AFTER_EVERYONE_ELSE)
47  class PropertyNameConst
49  {
50  public:
51  template<std::size_t Length>
52  constexpr PropertyNameConst(const char(&text)[Length]) : text(text), length(Length - 1) { }
53 
54  constexpr char operator[](std::size_t index) const { return index < length ? text[index] : throw std::out_of_range("PropertyNameConst operator[] out of bounds"); }
55  constexpr std::size_t size() const { return length; }
56  constexpr std::size_t hash() const { return hash(2166136261U, 0); }
57 
58  private:
59  constexpr std::size_t hash(std::size_t value, std::size_t index) const { return index == length ? value : hash((value ^ (std::size_t)text[index]) * 16777619U, index + 1); }
60 
61  const char * const text;
62  const std::size_t length;
63  };
64 #endif
65 
68  {
69  public:
71  StyleCascade(std::vector<Style *> cascade, const StyleCascade *parent = nullptr) : cascade(std::move(cascade)), parent(parent) { }
72 
74  std::vector<Style *> cascade;
75 
77  const StyleCascade *parent = nullptr;
78 
80  StyleGetValue cascade_value(const char *property_name) const;
81  StyleGetValue cascade_value(const std::string &property_name) const { return cascade_value(property_name.c_str()); }
82 
84  StyleGetValue specified_value(const char *property_name) const;
85  StyleGetValue specified_value(const std::string &property_name) const { return specified_value(property_name.c_str()); }
86 
90  StyleGetValue computed_value(const char *property_name) const;
91  StyleGetValue computed_value(const std::string &property_name) const { return computed_value(property_name.c_str()); }
92 
95 
98 
101 
104 
107 
109  int array_size(const char *property_name) const;
110  int array_size(const std::string &property_name) const { return array_size(property_name.c_str()); }
111 
113  void render_background(const CanvasPtr &canvas, const ViewGeometry &geometry) const;
114 
116  void render_border(const CanvasPtr &canvas, const ViewGeometry &geometry) const;
117 
119  FontPtr font() const;
120  };
121 }
StyleCascade(std::vector< Style * > cascade, const StyleCascade *parent=nullptr)
Definition: style_cascade.h:71
Definition: view_geometry.h:38
StyleGetValue compute_frequency(const StyleGetValue &frequency) const
Convert frequency to Hz.
int array_size(const char *property_name) const
Value array size for the property.
StyleGetValue compute_time(const StyleGetValue &time) const
Convert time to seconds.
StyleGetValue compute_angle(const StyleGetValue &angle) const
Convert angle into radians.
std::vector< Style * > cascade
Property sets to be examined.
Definition: style_cascade.h:74
STL namespace.
Style value resolver.
Definition: style_cascade.h:67
void render_border(const CanvasPtr &canvas, const ViewGeometry &geometry) const
Render styled border.
StyleGetValue compute_resolution(const StyleGetValue &resolution) const
Convert resolution to dots per px unit (pixel ratio scale)
void render_background(const CanvasPtr &canvas, const ViewGeometry &geometry) const
Render styled background.
FontPtr font() const
Font used by this style cascade.
StyleGetValue specified_value(const std::string &property_name) const
Definition: style_cascade.h:85
const StyleCascade * parent
Parent cascade used for inheritance.
Definition: style_cascade.h:77
StyleGetValue computed_value(const std::string &property_name) const
Definition: style_cascade.h:91
int array_size(const std::string &property_name) const
Definition: style_cascade.h:110
std::shared_ptr< Font > FontPtr
Definition: path.h:39
StyleGetValue specified_value(const char *property_name) const
Resolve any inheritance or initial values for the cascade value.
StyleGetValue cascade_value(const std::string &property_name) const
Definition: style_cascade.h:81
StyleGetValue cascade_value(const char *property_name) const
Find the first declared value in the cascade for the specified property.
StyleCascade()
Definition: style_cascade.h:70
StyleGetValue computed_value(const char *property_name) const
Style value returned by style classes.
Definition: style_get_value.h:39
StyleGetValue compute_length(const StyleGetValue &length) const
Convert length into px (device independent pixel) units.
std::shared_ptr< Canvas > CanvasPtr
Definition: canvas.h:126
Definition: Application/application.h:35