| 219 | } |
| 220 | |
| 221 | bool |
| 222 | LayerProperties::operator== (const LayerProperties &d) const |
| 223 | { |
| 224 | ensure_realized (); |
| 225 | d.ensure_realized (); |
| 226 | |
| 227 | // do not consider the derived and "real" properties - these is not really a property |
| 228 | return m_frame_color == d.m_frame_color && |
| 229 | m_fill_color == d.m_fill_color && |
| 230 | m_frame_brightness == d.m_frame_brightness && |
| 231 | m_fill_brightness == d.m_fill_brightness && |
| 232 | m_dither_pattern == d.m_dither_pattern && |
| 233 | m_line_style == d.m_line_style && |
| 234 | m_valid == d.m_valid && |
| 235 | m_visible == d.m_visible && |
| 236 | m_transparent == d.m_transparent && |
| 237 | m_width == d.m_width && |
| 238 | m_marked == d.m_marked && |
| 239 | m_xfill == d.m_xfill && |
| 240 | m_animation == d.m_animation && |
| 241 | m_name == d.m_name && |
| 242 | m_source == d.m_source; |
| 243 | } |
| 244 | |
| 245 | bool |
| 246 | LayerProperties::is_visual () const |
nothing calls this directly
no test coverage detected