#include <cstddef>#include <functional>#include <memory>#include <string>#include <vector>#include "absl/status/status.h"#include "app/editor/agent/agent_ui_controller.h"#include "app/editor/code/project_file_editor.h"#include "app/editor/editor.h"#include "app/editor/menu/activity_bar.h"#include "app/editor/core/editor_context.h"#include "app/editor/core/event_bus.h"#include "app/editor/menu/menu_builder.h"#include "app/editor/menu/menu_orchestrator.h"#include "app/editor/menu/right_panel_manager.h"#include "app/editor/menu/status_bar.h"#include "app/editor/session_types.h"#include "app/editor/system/panel_manager.h"#include "app/editor/system/editor_activator.h"#include "app/editor/system/editor_registry.h"#include "app/editor/ui/popup_manager.h"#include "app/editor/system/project_manager.h"#include "app/editor/system/proposal_drawer.h"#include "app/editor/system/rom_file_manager.h"#include "app/editor/system/session_coordinator.h"#include "app/editor/ui/toast_manager.h"#include "app/editor/system/user_settings.h"#include "app/editor/layout/layout_coordinator.h"#include "app/editor/layout/layout_manager.h"#include "app/editor/layout/window_delegate.h"#include "app/editor/ui/dashboard_panel.h"#include "app/editor/ui/rom_load_options_dialog.h"#include "app/editor/ui/project_management_panel.h"#include "app/editor/ui/selection_properties_panel.h"#include "app/editor/ui/ui_coordinator.h"#include "app/editor/ui/welcome_screen.h"#include "app/editor/ui/workspace_manager.h"#include "app/editor/layout_designer/layout_designer_window.h"#include "app/emu/emulator.h"#include "app/startup_flags.h"#include "rom/rom.h"#include "core/project.h"#include "core/version_manager.h"#include "imgui/imgui.h"#include "yaze_config.h"#include "zelda3/overworld/overworld.h"Go to the source code of this file.
Classes | |
| class | yaze::editor::EditorManager |
| The EditorManager controls the main editor window and manages the various editor classes. More... | |
| class | yaze::editor::EditorManager::SessionScope |
Namespaces | |
| namespace | yaze |
| namespace | yaze::agent |
| namespace | yaze::editor |
| Editors are the view controllers for the application. | |
Macros | |
| #define | IMGUI_DEFINE_MATH_OPERATORS |
| #define IMGUI_DEFINE_MATH_OPERATORS |
Definition at line 4 of file editor_manager.h.