diff options
author | crupest <crupest@outlook.com> | 2019-04-04 23:08:22 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-04-04 23:08:22 +0800 |
commit | 6268f3ca09afef812cf288f323cacff22fbfcffc (patch) | |
tree | 86e89d3b4212ae069075f799a5278c120e258e73 /src/ui/controls/button.cpp | |
parent | dbda5a8e4f0d59ad95be8fc3ee7b21e9122cc474 (diff) | |
download | cru-6268f3ca09afef812cf288f323cacff22fbfcffc.tar.gz cru-6268f3ca09afef812cf288f323cacff22fbfcffc.tar.bz2 cru-6268f3ca09afef812cf288f323cacff22fbfcffc.zip |
Finish refactor!!!
Diffstat (limited to 'src/ui/controls/button.cpp')
-rw-r--r-- | src/ui/controls/button.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/ui/controls/button.cpp b/src/ui/controls/button.cpp index a6578251..0ac65d26 100644 --- a/src/ui/controls/button.cpp +++ b/src/ui/controls/button.cpp @@ -1,7 +1,7 @@ -#include "button.hpp" +#include "cru/ui/controls/button.hpp" -#include "ui/render/border_render_object.hpp" -#include "ui/ui_manager.hpp" +#include "cru/ui/render/border_render_object.hpp" +#include "cru/ui/ui_manager.hpp" namespace cru::ui::controls { Button::Button() { @@ -14,7 +14,9 @@ Button::Button() { render_object_->SetCornerRadius(render::CornerRadius{Point{10, 5}}); } -render::RenderObject* Button::GetRenderObject() const { return render_object_.get(); } +render::RenderObject* Button::GetRenderObject() const { + return render_object_.get(); +} void Button::OnChildChanged(Control* old_child, Control* new_child) { if (old_child != nullptr) render_object_->RemoveChild(0); |