path_2d_editor_plugin.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /*************************************************************************/
  2. /* path_2d_editor_plugin.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #ifndef PATH_2D_EDITOR_PLUGIN_H
  31. #define PATH_2D_EDITOR_PLUGIN_H
  32. #include "editor/editor_node.h"
  33. #include "editor/editor_plugin.h"
  34. #include "scene/2d/path_2d.h"
  35. #include "scene/gui/tool_button.h"
  36. /**
  37. @author Juan Linietsky <reduzio@gmail.com>
  38. */
  39. class CanvasItemEditor;
  40. class Path2DEditor : public HBoxContainer {
  41. GDCLASS(Path2DEditor, HBoxContainer);
  42. UndoRedo *undo_redo;
  43. CanvasItemEditor *canvas_item_editor;
  44. EditorNode *editor;
  45. Panel *panel;
  46. Path2D *node;
  47. HBoxContainer *base_hb;
  48. Separator *sep;
  49. enum Mode {
  50. MODE_CREATE,
  51. MODE_EDIT,
  52. MODE_EDIT_CURVE,
  53. MODE_DELETE,
  54. ACTION_CLOSE
  55. };
  56. Mode mode;
  57. ToolButton *curve_create;
  58. ToolButton *curve_edit;
  59. ToolButton *curve_edit_curve;
  60. ToolButton *curve_del;
  61. ToolButton *curve_close;
  62. enum Action {
  63. ACTION_NONE,
  64. ACTION_MOVING_POINT,
  65. ACTION_MOVING_IN,
  66. ACTION_MOVING_OUT,
  67. };
  68. Action action;
  69. int action_point;
  70. Point2 moving_from;
  71. Point2 moving_screen_from;
  72. void _mode_selected(int p_mode);
  73. void _node_visibility_changed();
  74. friend class Path2DEditorPlugin;
  75. protected:
  76. void _notification(int p_what);
  77. void _node_removed(Node *p_node);
  78. static void _bind_methods();
  79. public:
  80. bool forward_gui_input(const Ref<InputEvent> &p_event);
  81. void forward_draw_over_canvas(Control *p_canvas);
  82. void edit(Node *p_path2d);
  83. Path2DEditor(EditorNode *p_editor);
  84. };
  85. class Path2DEditorPlugin : public EditorPlugin {
  86. GDCLASS(Path2DEditorPlugin, EditorPlugin);
  87. Path2DEditor *path2d_editor;
  88. EditorNode *editor;
  89. public:
  90. virtual bool forward_canvas_gui_input(const Ref<InputEvent> &p_event) { return path2d_editor->forward_gui_input(p_event); }
  91. virtual void forward_draw_over_canvas(Control *p_canvas) { return path2d_editor->forward_draw_over_canvas(p_canvas); }
  92. virtual String get_name() const { return "Path2D"; }
  93. bool has_main_screen() const { return false; }
  94. virtual void edit(Object *p_object);
  95. virtual bool handles(Object *p_object) const;
  96. virtual void make_visible(bool p_visible);
  97. Path2DEditorPlugin(EditorNode *p_node);
  98. ~Path2DEditorPlugin();
  99. };
  100. #endif // PATH_2D_EDITOR_PLUGIN_H