GCC Code Coverage Report


Directory: src/gate/
File: src/gate/ui/cxx_panels.cpp
Date: 2025-09-14 13:10:38
Exec Total Coverage
Lines: 0 49 0.0%
Functions: 0 10 0.0%
Branches: 0 18 0.0%

Line Branch Exec Source
1 /* GATE PROJECT LICENSE:
2 +----------------------------------------------------------------------------+
3 | Copyright(c) 2018-2025, Stefan Meislinger <sm@opengate.at> |
4 | All rights reserved. |
5 | |
6 | Redistribution and use in source and binary forms, with or without |
7 | modification, are permitted provided that the following conditions are met:|
8 | |
9 | 1. Redistributions of source code must retain the above copyright notice, |
10 | this list of conditions and the following disclaimer. |
11 | 2. Redistributions in binary form must reproduce the above copyright |
12 | notice, this list of conditions and the following disclaimer in the |
13 | documentation and/or other materials provided with the distribution. |
14 | |
15 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"|
16 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
17 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
18 | ARE DISCLAIMED.IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE |
19 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
20 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
21 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
22 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
23 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
24 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
25 | THE POSSIBILITY OF SUCH DAMAGE. |
26 +----------------------------------------------------------------------------+
27 */
28
29 #include "gate/ui/panels.hpp"
30
31 namespace gate
32 {
33 namespace ui
34 {
35
36 Panel::Panel()
37 : ControlContainer(&impl.ctrl)
38 {
39 Mem::clear(&this->impl, sizeof(this->impl));
40 gate_ui_ctrl_init(&this->impl.ctrl);
41 }
42
43 Panel::~Panel() noexcept
44 {
45 if (this->isCreated())
46 {
47 this->destroy();
48 }
49 }
50
51 void Panel::create(ControlContainer& parent, Position const& pose, uint32_t flags)
52 {
53 static char const* const funcName = "Panel::create";
54
55 this->failIfCreated(funcName);
56
57 result_t result = gate_ui_panel_create(&this->impl, *parent, &pose, flags, this);
58 GATEXX_CHECK_ERROR(result);
59
60 this->attachNativeControl(&this->impl.ctrl);
61 try
62 {
63 this->onCreated();
64 }
65 catch (...)
66 {
67 this->destroy();
68 throw;
69 }
70 }
71
72 void Panel::setLayout(Layout const* layout)
73 {
74 static char const* const funcName = "Panel::setLayout";
75 result_t result = gate_ui_panel_set_layout(&this->impl, layout);
76 GATEXX_CHECK_EXCEPTION(result);
77 }
78
79 void Panel::onCreated()
80 {
81
82 }
83
84
85
86
87
88 FramePanel::FramePanel()
89 : ControlContainer(&impl.ctrl)
90 {
91 Mem::clear(&this->impl, sizeof(this->impl));
92 gate_ui_ctrl_init(&this->impl.ctrl);
93 }
94
95 FramePanel::~FramePanel() noexcept
96 {
97 this->destroy();
98 }
99
100 void FramePanel::create(ControlContainer& parent, Position const& pose, String const& caption, uint32_t flags)
101 {
102 static char const* const funcName = "FramePanel::create";
103
104 this->failIfCreated(funcName);
105
106 result_t result = gate_ui_framepanel_create(&this->impl, *parent, &pose, caption.c_impl(), flags, this);
107 GATEXX_CHECK_ERROR(result);
108
109 this->attachNativeControl(&this->impl.ctrl);
110 try
111 {
112 this->onCreated();
113 }
114 catch (...)
115 {
116 this->destroy();
117 throw;
118 }
119 }
120
121 void FramePanel::setLayout(Layout const* layout)
122 {
123 static char const* const funcName = "FramePanel::setLayout";
124 result_t result = gate_ui_framepanel_set_layout(&this->impl, layout);
125 GATEXX_CHECK_EXCEPTION(result);
126 }
127
128 void FramePanel::onCreated()
129 {
130
131 }
132
133
134 } // end of namespace ui
135 } // end of namespace gate
136
137