diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-01-14 10:52:54 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-01-14 10:52:54 +0100 |
commit | 7b9f2d9929d0e8516d42379962533df823c7c550 (patch) | |
tree | b7901c8146209506889d18f6bb01d65f7a8c7a07 /scene/gui/reference_rect.cpp | |
parent | 6c512b88c22cb9615a03deb000447e97c20c7080 (diff) | |
download | redot-engine-7b9f2d9929d0e8516d42379962533df823c7c550.tar.gz |
Finish renaming *Frame GUI classes to *Rect
ReferenceFrame had been overlooked, and the cpp files still used the old
names. Also ripgrep'ed it all to find some forgotten references.
Diffstat (limited to 'scene/gui/reference_rect.cpp')
-rw-r--r-- | scene/gui/reference_rect.cpp | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/scene/gui/reference_rect.cpp b/scene/gui/reference_rect.cpp new file mode 100644 index 0000000000..ff4cdf04fd --- /dev/null +++ b/scene/gui/reference_rect.cpp @@ -0,0 +1,44 @@ +/*************************************************************************/ +/* reference_rect.cpp */ +/*************************************************************************/ +/* This file is part of: */ +/* GODOT ENGINE */ +/* http://www.godotengine.org */ +/*************************************************************************/ +/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */ +/* */ +/* Permission is hereby granted, free of charge, to any person obtaining */ +/* a copy of this software and associated documentation files (the */ +/* "Software"), to deal in the Software without restriction, including */ +/* without limitation the rights to use, copy, modify, merge, publish, */ +/* distribute, sublicense, and/or sell copies of the Software, and to */ +/* permit persons to whom the Software is furnished to do so, subject to */ +/* the following conditions: */ +/* */ +/* The above copyright notice and this permission notice shall be */ +/* included in all copies or substantial portions of the Software. */ +/* */ +/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */ +/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */ +/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ +/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */ +/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */ +/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */ +/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +/*************************************************************************/ +#include "reference_rect.h" + +void ReferenceRect::_notification(int p_what) { + + if (p_what==NOTIFICATION_DRAW) { + + if (!is_inside_tree()) + return; + if (get_tree()->is_editor_hint()) + draw_style_box(get_stylebox("border"),Rect2(Point2(),get_size())) ; + } +} + +ReferenceRect::ReferenceRect() +{ +} |