summaryrefslogtreecommitdiffstats
path: root/editor/rename_dialog.h
diff options
context:
space:
mode:
authorYuri Sizov <yuris@humnom.net>2023-04-07 18:59:49 +0200
committerYuri Sizov <yuris@humnom.net>2023-04-07 18:59:49 +0200
commit4154039832cb79459975e46a3007c83c4864ccb3 (patch)
tree53babcd74fa2e04315e57c4be0be75c2f65e3993 /editor/rename_dialog.h
parentc151d3231f8e5d207f64055c60c70967dd5351b5 (diff)
downloadredot-engine-4154039832cb79459975e46a3007c83c4864ccb3.tar.gz
Improve includes of EditorNode (and everything else)
Also start organizing editor-specific GUI components into a dedicated folder, `editor/gui`. Also move `editor_file_server` next to the rest of debugger classes.
Diffstat (limited to 'editor/rename_dialog.h')
-rw-r--r--editor/rename_dialog.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/editor/rename_dialog.h b/editor/rename_dialog.h
index 47ff51f52a..6821cab982 100644
--- a/editor/rename_dialog.h
+++ b/editor/rename_dialog.h
@@ -34,13 +34,17 @@
#include "modules/modules_enabled.gen.h" // For regex.
#ifdef MODULE_REGEX_ENABLED
-#include "editor/scene_tree_editor.h"
-#include "scene/gui/check_box.h"
-#include "scene/gui/check_button.h"
+#include "editor/gui/scene_tree_editor.h"
#include "scene/gui/dialogs.h"
-#include "scene/gui/option_button.h"
-#include "scene/gui/spin_box.h"
-#include "scene/gui/tab_container.h"
+#include "scene/gui/line_edit.h"
+
+class Button;
+class CheckBox;
+class CheckButton;
+class Label;
+class OptionButton;
+class SpinBox;
+class TabContainer;
class RenameDialog : public ConfirmationDialog {
GDCLASS(RenameDialog, ConfirmationDialog);