Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
igagis committed Sep 17, 2024
1 parent 2fca7b1 commit 1d1db3d
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/bedsidemon/gui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
#include "gui.hpp"

#include <ruis/widget/button/push_button.hpp>
#include <ruis/widget/group/margins.hpp>
#include <ruis/widget/group/overlay.hpp>
#include <ruis/widget/label/gap.hpp>
#include <ruis/widget/label/image.hpp>
#include <ruis/widget/label/margins.hpp>
#include <ruis/widget/label/rectangle.hpp>
#include <ruis/widget/label/text.hpp>

Expand Down
2 changes: 1 addition & 1 deletion src/bedsidemon/menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.

#include "menu.hpp"

#include <ruis/widget/group/margins.hpp>
#include <ruis/widget/label/gap.hpp>
#include <ruis/widget/label/margins.hpp>
#include <ruis/widget/label/text.hpp>

#include "application.hpp"
Expand Down
8 changes: 4 additions & 4 deletions src/bedsidemon/quit_dialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ std::vector<utki::shared_ref<ruis::widget>> make_root_widget_structure(utki::sha
m::gap(c,
{
.layout_params{
.dims = {0_px, dimension_gap}
.dims = {1_px, dimension_gap}
}
}
),
Expand All @@ -88,7 +88,7 @@ std::vector<utki::shared_ref<ruis::widget>> make_root_widget_structure(utki::sha
m::gap(c,
{
.layout_params{
.dims = {dimension_gap, 0_px}
.dims = {dimension_gap, 1_px}
}
}
),
Expand All @@ -98,7 +98,7 @@ std::vector<utki::shared_ref<ruis::widget>> make_root_widget_structure(utki::sha
m::gap(c,
{
.layout_params{
.dims = {0_px, dimension_gap}
.dims = {1_px, dimension_gap}
}
}
)
Expand All @@ -111,7 +111,7 @@ quit_dialog::quit_dialog(utki::shared_ref<ruis::context> context) :
ruis::widget(
std::move(context), //
{
.dims{ruis::dim::max, ruis::dim::max}
.dims{ruis::dim::fill, ruis::dim::fill}
},
{}
),
Expand Down
2 changes: 1 addition & 1 deletion src/bedsidemon/rectangle_button.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
#pragma once

#include <ruis/widget/button/base/button.hpp>
#include <ruis/widget/group/margins.hpp> // TODO: should be moved into rectangle
#include <ruis/widget/label/margins.hpp> // TODO: should be moved into rectangle
#include <ruis/widget/label/rectangle.hpp>

namespace ruis {
Expand Down
2 changes: 1 addition & 1 deletion src/bedsidemon/settings_menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
#include <ratio>

#include <ruis/widget/button/selection_box.hpp>
#include <ruis/widget/group/margins.hpp>
#include <ruis/widget/label/gap.hpp>
#include <ruis/widget/label/margins.hpp>
#include <ruis/widget/label/text.hpp>

#include "application.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/bedsidemon/spo2/spo2_parameter_window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
#include <vector>

#include <ruis/layout/layout.hpp>
#include <ruis/widget/group/margins.hpp>
#include <ruis/widget/label/image.hpp>
#include <ruis/widget/label/margins.hpp>
#include <ruis/widget/label/rectangle.hpp>
#include <ruis/widget/proxy/click_proxy.hpp>

Expand Down
2 changes: 1 addition & 1 deletion src/bedsidemon/spo2/spo2_parameter_window_menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
#include "spo2_parameter_window_menu.hpp"

#include <ruis/widget/button/selection_box.hpp>
#include <ruis/widget/group/margins.hpp>
#include <ruis/widget/label/gap.hpp>
#include <ruis/widget/label/margins.hpp>
#include <ruis/widget/label/rectangle.hpp>

#include "../style.hpp"
Expand Down

0 comments on commit 1d1db3d

Please sign in to comment.