GCC Code Coverage Report


Directory: src/gate/
File: src/gate/ui/cxx_panels.cpp
Date: 2025-12-12 23:40:09
Exec Total Coverage
Lines: 17 49 34.7%
Functions: 4 10 40.0%
Branches: 3 18 16.7%

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 result_t result = gate_ui_panel_set_layout(&this->impl, layout);
75 GATEXX_CHECK_EXCEPTION(result);
76 }
77
78 void Panel::onCreated()
79 {
80 }
81
82
83
84
85 1 FramePanel::FramePanel()
86 1 : ControlContainer(&impl.ctrl)
87 {
88 1 Mem::clear(&this->impl, sizeof(this->impl));
89
1/2
✓ Branch 1 taken 1 times.
✗ Branch 2 not taken.
1 gate_ui_ctrl_init(&this->impl.ctrl);
90 1 }
91
92 2 FramePanel::~FramePanel() noexcept
93 {
94 2 this->destroy();
95 2 }
96
97 1 void FramePanel::create(ControlContainer& parent, Position const& pose, String const& caption, uint32_t flags)
98 {
99 static char const* const funcName = "FramePanel::create";
100
101 1 this->failIfCreated(funcName);
102
103 1 result_t result = gate_ui_framepanel_create(&this->impl, *parent, &pose, caption.c_impl(), flags, this);
104
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
1 GATEXX_CHECK_ERROR(result);
105
106 1 this->attachNativeControl(&this->impl.ctrl);
107 try
108 {
109
1/2
✓ Branch 1 taken 1 times.
✗ Branch 2 not taken.
1 this->onCreated();
110 }
111 catch (...)
112 {
113 this->destroy();
114 throw;
115 }
116 1 }
117
118 void FramePanel::setLayout(Layout const* layout)
119 {
120 result_t result = gate_ui_framepanel_set_layout(&this->impl, layout);
121 GATEXX_CHECK_EXCEPTION(result);
122 }
123
124 1 void FramePanel::onCreated()
125 {
126
127 1 }
128
129
130 } // end of namespace ui
131 } // end of namespace gate
132
133