123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- #ifndef GODOTSHARP_EDITOR_H
- #define GODOTSHARP_EDITOR_H
- #include "godotsharp_builds.h"
- #include "monodevelop_instance.h"
- class GodotSharpEditor : public Node {
- GDCLASS(GodotSharpEditor, Object)
- EditorNode *editor;
- MenuButton *menu_button;
- PopupMenu *menu_popup;
- AcceptDialog *error_dialog;
- AcceptDialog *about_dialog;
- CheckBox *about_dialog_checkbox;
- ToolButton *bottom_panel_btn;
- GodotSharpBuilds *godotsharp_builds;
- MonoDevelopInstance *monodevelop_instance;
- #ifdef OSX_ENABLED
- MonoDevelopInstance *visualstudio_mac_instance;
- #endif
- bool _create_project_solution();
- void _make_api_solutions_if_needed();
- void _make_api_solutions_if_needed_impl();
- void _remove_create_sln_menu_option();
- void _show_about_dialog();
- void _toggle_about_dialog_on_start(bool p_enabled);
- void _menu_option_pressed(int p_id);
- static GodotSharpEditor *singleton;
- protected:
- void _notification(int p_notification);
- static void _bind_methods();
- public:
- enum MenuOptions {
- MENU_CREATE_SLN,
- MENU_ABOUT_CSHARP,
- };
- enum ExternalEditor {
- EDITOR_NONE,
- #ifdef WINDOWS_ENABLED
-
- EDITOR_MONODEVELOP,
- EDITOR_VSCODE
- #elif OSX_ENABLED
- EDITOR_VISUALSTUDIO_MAC,
- EDITOR_MONODEVELOP,
- EDITOR_VSCODE
- #elif UNIX_ENABLED
- EDITOR_MONODEVELOP,
- EDITOR_VSCODE
- #endif
- };
- _FORCE_INLINE_ static GodotSharpEditor *get_singleton() { return singleton; }
- static void register_internal_calls();
- void show_error_dialog(const String &p_message, const String &p_title = "Error");
- Error open_in_external_editor(const Ref<Script> &p_script, int p_line, int p_col);
- bool overrides_external_editor();
- GodotSharpEditor(EditorNode *p_editor);
- ~GodotSharpEditor();
- };
- class MonoReloadNode : public Node {
- GDCLASS(MonoReloadNode, Node)
- Timer *reload_timer;
- void _reload_timer_timeout();
- static MonoReloadNode *singleton;
- protected:
- static void _bind_methods();
- void _notification(int p_what);
- public:
- _FORCE_INLINE_ static MonoReloadNode *get_singleton() { return singleton; }
- void restart_reload_timer();
- MonoReloadNode();
- ~MonoReloadNode();
- };
- #endif
|