summaryrefslogtreecommitdiffstats
path: root/scene/gui/panel.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2020-03-31 11:56:58 +0200
committerRémi Verschelde <rverschelde@gmail.com>2020-03-31 11:56:58 +0200
commite5033d39523abd7bcf14b6d2886b659613cea78f (patch)
treeb4ce4cea5a18360fe97808c354d8764902741d4a /scene/gui/panel.cpp
parent0926c192e8cca7509ace4cf015c9a1dd529393f1 (diff)
downloadredot-engine-e5033d39523abd7bcf14b6d2886b659613cea78f.tar.gz
doc: Sync classref with DisplayServer/Window changes
Diffstat (limited to 'scene/gui/panel.cpp')
-rw-r--r--scene/gui/panel.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/scene/gui/panel.cpp b/scene/gui/panel.cpp
index ae51463a15..a17d0eb9c6 100644
--- a/scene/gui/panel.cpp
+++ b/scene/gui/panel.cpp
@@ -29,6 +29,7 @@
/*************************************************************************/
#include "panel.h"
+
#include "core/print_string.h"
void Panel::_notification(int p_what) {
@@ -54,7 +55,11 @@ void Panel::_bind_methods() {
ClassDB::bind_method(D_METHOD("get_mode"), &Panel::get_mode);
ADD_PROPERTY(PropertyInfo(Variant::INT, "mode", PROPERTY_HINT_ENUM, "Background,Foreground"), "set_mode", "get_mode");
+
+ BIND_ENUM_CONSTANT(MODE_BACKGROUND);
+ BIND_ENUM_CONSTANT(MODE_FOREGROUND);
}
+
Panel::Panel() {
// Has visible stylebox, so stop by default.
set_mouse_filter(MOUSE_FILTER_STOP);