#include <dungeon_workbench_content.h>


Public Member Functions | |
| DungeonWorkbenchContent (DungeonRoomSelector *room_selector, int *current_room_id, std::function< void(int)> on_room_selected, std::function< void(int, RoomSelectionIntent)> on_room_selected_with_intent, std::function< void(int)> on_save_room, std::function< DungeonCanvasViewer *()> get_viewer, std::function< DungeonCanvasViewer *()> get_compare_viewer, std::function< const std::deque< int > &()> get_recent_rooms, std::function< void(int)> forget_recent_room, std::function< void(const std::string &)> show_panel, std::function< void(bool)> set_workflow_mode, Rom *rom=nullptr) | |
| std::string | GetId () const override |
| Unique identifier for this panel. | |
| std::string | GetDisplayName () const override |
| Human-readable name shown in menus and title bars. | |
| std::string | GetIcon () const override |
| Material Design icon for this panel. | |
| std::string | GetEditorCategory () const override |
| Editor category this panel belongs to. | |
| int | GetPriority () const override |
| Get display priority for menu ordering. | |
| void | SetRom (Rom *rom) |
| void | NotifyRoomChanged (int previous_room_id) |
| Called by the editor when the current room changes. | |
| void | SetUndoRedoProvider (std::function< bool()> can_undo, std::function< bool()> can_redo, std::function< void()> on_undo, std::function< void()> on_redo, std::function< std::string()> undo_desc, std::function< std::string()> redo_desc, std::function< int()> undo_depth) |
| void | SetToolModeProvider (std::function< const char *()> provider) |
| void | Draw (bool *p_open) override |
| Draw the panel content. | |
Public Member Functions inherited from yaze::editor::WindowContent | |
| virtual | ~WindowContent ()=default |
| virtual void | OnFirstDraw () |
| Called once before the first Draw() in a session. | |
| virtual bool | RequiresLazyInit () const |
| Whether this panel uses lazy initialization. | |
| void | InvalidateLazyInit () |
| Reset lazy init state so OnFirstDraw() runs again. | |
| virtual void | OnOpen () |
| Called when panel becomes visible. | |
| virtual void | OnClose () |
| Called when panel is hidden. | |
| virtual void | OnFocus () |
| Called when panel receives focus. | |
| virtual WindowLifecycle | GetWindowLifecycle () const |
| Get the lifecycle category for this window. | |
| virtual WindowContextScope | GetContextScope () const |
| Optional context binding for this window (room/selection/etc) | |
| virtual WindowScope | GetScope () const |
| Get the registration scope for this window. | |
| virtual bool | IsEnabled () const |
| Check if this panel is currently enabled. | |
| virtual std::string | GetDisabledTooltip () const |
| Get tooltip text when panel is disabled. | |
| virtual std::string | GetShortcutHint () const |
| Get keyboard shortcut hint for display. | |
| virtual std::string | GetWorkflowGroup () const |
| Optional workflow group for hack-centric actions. | |
| virtual std::string | GetWorkflowLabel () const |
| Optional workflow label for menus/command palette. | |
| virtual std::string | GetWorkflowDescription () const |
| Optional workflow description for menus/command palette. | |
| virtual int | GetWorkflowPriority () const |
| Optional workflow ordering priority (lower sorts first). | |
| virtual float | GetPreferredWidth () const |
| Get preferred width for this panel (optional) | |
| virtual bool | PreferAutoHideTabBar () const |
| Whether the dock node hosting this panel should auto-hide its tab bar. | |
| virtual bool | IsVisibleByDefault () const |
| Whether this panel should be visible by default. | |
| virtual std::string | GetParentPanelId () const |
| Get parent panel ID for cascade behavior. | |
| virtual bool | CascadeCloseChildren () const |
| Whether closing this panel should close child panels. | |
| void | DrawWithLazyInit (bool *p_open) |
| Execute lazy initialization if needed, then call Draw() | |
Private Types | |
| enum class | SidebarMode : uint8_t { Rooms , Entrances } |
| enum class | InspectorFocus : uint8_t { Room , Selection } |
Private Member Functions | |
| void | DrawRecentRoomTabs () |
| void | DrawSidebarPane (float width, float height, float button_size, bool compact) |
| void | DrawSidebarHeader (float button_size, bool compact) |
| void | DrawSidebarModeTabs (bool stacked, float segment_height) |
| void | DrawSidebarContent () |
| void | DrawCanvasPane (float width, float height, DungeonCanvasViewer *primary_viewer, bool left_sidebar_visible) |
| void | DrawSplitView (DungeonCanvasViewer &primary_viewer) |
| void | DrawInspectorPane (float width, float height, float button_size, bool compact, DungeonCanvasViewer *viewer) |
| void | DrawInspectorHeader (float button_size, bool compact) |
| void | DrawInspector (DungeonCanvasViewer &viewer) |
| void | DrawInspectorPrimarySelector (float segment_height) |
| void | DrawInspectorCompactSummary (DungeonCanvasViewer &viewer) |
| void | DrawInspectorShelf (DungeonCanvasViewer &viewer) |
| void | DrawInspectorShelfRoom (DungeonCanvasViewer &viewer) |
| void | DrawInspectorShelfSelection (DungeonCanvasViewer &viewer) |
| void | DrawInspectorShelfView (DungeonCanvasViewer &viewer) |
| void | DrawInspectorShelfTools (DungeonCanvasViewer &viewer) |
| void | BuildRoomDungeonCache () |
Private Attributes | |
| DungeonRoomSelector * | room_selector_ = nullptr |
| int * | current_room_id_ = nullptr |
| int | previous_room_id_ = -1 |
| bool | split_view_enabled_ = false |
| int | compare_room_id_ = -1 |
| DungeonWorkbenchLayoutState | layout_state_ {} |
| std::function< void(int)> | on_room_selected_ |
| std::function< void(int, RoomSelectionIntent)> | on_room_selected_with_intent_ |
| std::function< void(int)> | on_save_room_ |
| std::function< DungeonCanvasViewer *()> | get_viewer_ |
| std::function< DungeonCanvasViewer *()> | get_compare_viewer_ |
| std::function< const std::deque< int > &()> | get_recent_rooms_ |
| std::function< void(int)> | forget_recent_room_ |
| std::function< void(const std::string &) | show_panel_ ) |
| std::function< void(bool)> | set_workflow_mode_ |
| Rom * | rom_ = nullptr |
| SidebarMode | sidebar_mode_ = SidebarMode::Rooms |
| InspectorFocus | inspector_focus_ = InspectorFocus::Selection |
| char | compare_search_buf_ [64] = {} |
| std::unordered_map< int, std::string > | room_dungeon_cache_ |
| bool | room_dungeon_cache_built_ = false |
| std::function< bool()> | can_undo_ |
| std::function< bool()> | can_redo_ |
| std::function< void()> | on_undo_ |
| std::function< void()> | on_redo_ |
| std::function< std::string()> | undo_desc_ |
| std::function< std::string()> | redo_desc_ |
| std::function< int()> | undo_depth_ |
| std::function< const char *()> | get_tool_mode_ |
| bool | show_shortcut_legend_ = false |
Additional Inherited Members | |
Protected Member Functions inherited from yaze::editor::WindowContent | |
| void | InvalidateCache () |
| Invalidate all cached computations. | |
| template<typename T > | |
| T & | GetCached (const std::string &key, std::function< T()> compute) |
| Get or compute a cached value. | |
| bool | IsCacheValid () const |
| Check if cache has been invalidated. | |
| void | ClearCache () |
| Clear all cached values (more aggressive than InvalidateCache) | |
Definition at line 24 of file dungeon_workbench_content.h.
|
strongprivate |
| Enumerator | |
|---|---|
| Rooms | |
| Entrances | |
Definition at line 122 of file dungeon_workbench_content.h.
|
strongprivate |
| Enumerator | |
|---|---|
| Room | |
| Selection | |
Definition at line 124 of file dungeon_workbench_content.h.
| yaze::editor::DungeonWorkbenchContent::DungeonWorkbenchContent | ( | DungeonRoomSelector * | room_selector, |
| int * | current_room_id, | ||
| std::function< void(int)> | on_room_selected, | ||
| std::function< void(int, RoomSelectionIntent)> | on_room_selected_with_intent, | ||
| std::function< void(int)> | on_save_room, | ||
| std::function< DungeonCanvasViewer *()> | get_viewer, | ||
| std::function< DungeonCanvasViewer *()> | get_compare_viewer, | ||
| std::function< const std::deque< int > &()> | get_recent_rooms, | ||
| std::function< void(int)> | forget_recent_room, | ||
| std::function< void(const std::string &)> | show_panel, | ||
| std::function< void(bool)> | set_workflow_mode, | ||
| Rom * | rom = nullptr ) |
Definition at line 232 of file dungeon_workbench_content.cc.
|
overridevirtual |
Unique identifier for this panel.
IDs should be:
Implements yaze::editor::WindowContent.
Definition at line 256 of file dungeon_workbench_content.cc.
|
overridevirtual |
Human-readable name shown in menus and title bars.
Implements yaze::editor::WindowContent.
Definition at line 259 of file dungeon_workbench_content.cc.
|
overridevirtual |
Material Design icon for this panel.
Implements yaze::editor::WindowContent.
Definition at line 262 of file dungeon_workbench_content.cc.
References ICON_MD_WORKSPACES.
|
overridevirtual |
Editor category this panel belongs to.
Implements yaze::editor::WindowContent.
Definition at line 265 of file dungeon_workbench_content.cc.
|
overridevirtual |
Get display priority for menu ordering.
Reimplemented from yaze::editor::WindowContent.
Definition at line 268 of file dungeon_workbench_content.cc.
| void yaze::editor::DungeonWorkbenchContent::SetRom | ( | Rom * | rom | ) |
Definition at line 272 of file dungeon_workbench_content.cc.
References rom_, room_dungeon_cache_, and room_dungeon_cache_built_.
|
inline |
Called by the editor when the current room changes.
Definition at line 48 of file dungeon_workbench_content.h.
References previous_room_id_.
Referenced by yaze::editor::DungeonEditorV2::OnRoomSelected().
|
inline |
Definition at line 53 of file dungeon_workbench_content.h.
References can_redo_, can_undo_, on_redo_, on_undo_, redo_desc_, undo_depth_, and undo_desc_.
Referenced by yaze::editor::DungeonEditorV2::Initialize().
|
inline |
Definition at line 70 of file dungeon_workbench_content.h.
References get_tool_mode_.
|
overridevirtual |
Draw the panel content.
| p_open | Pointer to visibility flag (nullptr if not closable) |
Called by WorkspaceWindowManager when the panel is visible. Do NOT call ImGui::Begin/End - the PanelWindow wrapper handles that. Just draw your content directly.
Implements yaze::editor::WindowContent.
Definition at line 395 of file dungeon_workbench_content.cc.
References yaze::editor::DungeonWorkbenchToolbarParams::compare_room_id, compare_room_id_, yaze::editor::DungeonWorkbenchToolbarParams::compare_search_buf, compare_search_buf_, yaze::editor::DungeonWorkbenchToolbarParams::compare_search_buf_size, yaze::editor::DungeonWorkbenchToolbarParams::compare_viewer, yaze::editor::DungeonWorkbenchToolbarParams::current_room_id, current_room_id_, yaze::editor::DungeonWorkbenchToolbar::Draw(), DrawCanvasPane(), DrawInspectorPane(), DrawSidebarPane(), get_compare_viewer_, yaze::editor::DungeonWorkbenchToolbarParams::get_recent_rooms, get_recent_rooms_, get_viewer_, yaze::editor::AgentUI::GetTheme(), yaze::gui::LayoutHelpers::GetTouchSafeWidgetHeight(), ICON_MD_INFO, yaze::Rom::is_loaded(), yaze::gui::UIConfig::kContentMinWidthSidebar, yaze::gui::UIConfig::kSplitterWidth, yaze::editor::DungeonWorkbenchToolbarParams::layout, layout_state_, yaze::editor::DungeonWorkbenchToolbarParams::left_sidebar_visible, yaze::editor::DungeonWorkbenchLayoutState::left_width, yaze::editor::DungeonWorkbenchToolbarParams::on_room_selected, on_room_selected_, yaze::editor::DungeonWorkbenchToolbarParams::previous_room_id, previous_room_id_, yaze::editor::DungeonWorkbenchToolbarParams::primary_viewer, yaze::editor::DungeonWorkbenchLayoutState::right_width, rom_, room_selector_, yaze::editor::DungeonWorkbenchToolbarParams::set_workflow_mode, set_workflow_mode_, yaze::editor::DungeonWorkbenchLayoutState::show_left_sidebar, yaze::editor::DungeonWorkbenchLayoutState::show_right_inspector, yaze::editor::DungeonWorkbenchToolbarParams::split_view_enabled, and split_view_enabled_.
|
private |
Definition at line 658 of file dungeon_workbench_content.cc.
References yaze::gui::BeginThemedTabBar(), compare_room_id_, current_room_id_, yaze::gui::EndThemedTabBar(), forget_recent_room_, get_recent_rooms_, yaze::zelda3::GetRoomLabel(), ICON_MD_CLOSE, ICON_MD_COMPARE_ARROWS, ICON_MD_OPEN_IN_NEW, yaze::gui::LayoutHelpers::IsTouchDevice(), yaze::editor::kOpenStandalone, on_room_selected_, on_room_selected_with_intent_, and split_view_enabled_.
Referenced by DrawCanvasPane().

|
private |
Definition at line 278 of file dungeon_workbench_content.cc.
References DrawSidebarContent(), and DrawSidebarHeader().
Referenced by Draw().

|
private |
Definition at line 290 of file dungeon_workbench_content.cc.
References DrawSidebarModeTabs(), yaze::gui::LayoutHelpers::GetTouchSafeWidgetHeight(), ICON_MD_CHEVRON_LEFT, ICON_MD_GRID_VIEW, ICON_MD_MAP, ICON_MD_MORE_HORIZ, ICON_MD_VIEW_SIDEBAR, layout_state_, yaze::editor::DungeonWorkbenchLayoutState::show_left_sidebar, and show_panel_.
Referenced by DrawSidebarPane().

|
private |
Definition at line 356 of file dungeon_workbench_content.cc.
References Entrances, ICON_MD_DOOR_FRONT, ICON_MD_LIST, Rooms, and sidebar_mode_.
Referenced by DrawSidebarHeader().
|
private |
Definition at line 377 of file dungeon_workbench_content.cc.
References yaze::editor::DungeonRoomSelector::DrawEntranceBrowser(), yaze::editor::DungeonRoomSelector::DrawRoomBrowser(), Entrances, room_selector_, Rooms, and sidebar_mode_.
Referenced by DrawSidebarPane().

|
private |
Definition at line 553 of file dungeon_workbench_content.cc.
References yaze::editor::DungeonStatusBar::BuildState(), can_redo_, can_undo_, current_room_id_, yaze::editor::DungeonStatusBar::Draw(), yaze::editor::DungeonCanvasViewer::DrawDungeonCanvas(), DrawRecentRoomTabs(), DrawSplitView(), get_tool_mode_, on_redo_, on_undo_, redo_desc_, split_view_enabled_, undo_depth_, and undo_desc_.
Referenced by Draw().
|
private |
Definition at line 745 of file dungeon_workbench_content.cc.
References yaze::gui::LayoutHelpers::BeginContentChild(), yaze::editor::DungeonCanvasViewer::canvas(), compare_room_id_, current_room_id_, yaze::editor::DungeonCanvasViewer::DrawDungeonCanvas(), yaze::gui::LayoutHelpers::EndContentChild(), get_compare_viewer_, get_recent_rooms_, yaze::gui::Canvas::GetConfig(), yaze::zelda3::GetRoomLabel(), ICON_MD_COMPARE_ARROWS, ICON_MD_CROP_FREE, yaze::gui::UIConfig::kContentMinHeightCanvas, layout_state_, split_view_enabled_, and yaze::editor::DungeonWorkbenchLayoutState::sync_split_view.
Referenced by DrawCanvasPane().
|
private |
Definition at line 605 of file dungeon_workbench_content.cc.
References DrawInspector(), and DrawInspectorHeader().
Referenced by Draw().

|
private |
Definition at line 623 of file dungeon_workbench_content.cc.
References DrawInspectorPrimarySelector(), yaze::gui::LayoutHelpers::GetTouchSafeWidgetHeight(), ICON_MD_CHEVRON_RIGHT, ICON_MD_TUNE, layout_state_, and yaze::editor::DungeonWorkbenchLayoutState::show_right_inspector.
Referenced by DrawInspectorPane().

|
private |
Definition at line 875 of file dungeon_workbench_content.cc.
References DrawInspectorShelf().
Referenced by DrawInspectorPane().

|
private |
Definition at line 883 of file dungeon_workbench_content.cc.
References ICON_MD_CASTLE, ICON_MD_SELECT_ALL, inspector_focus_, Room, and Selection.
Referenced by DrawInspectorHeader().
|
private |
Definition at line 904 of file dungeon_workbench_content.cc.
References yaze::editor::DungeonCanvasViewer::current_room_id(), current_room_id_, DrawInspectorShelfTools(), DrawInspectorShelfView(), yaze::zelda3::GetRoomLabel(), yaze::editor::DungeonObjectInteraction::GetSelectionCount(), ICON_MD_BUILD, ICON_MD_CASTLE, ICON_MD_OPEN_IN_FULL, ICON_MD_SAVE, ICON_MD_SELECT_ALL, ICON_MD_SUMMARIZE, ICON_MD_VISIBILITY, inspector_focus_, yaze::editor::DungeonCanvasViewer::object_interaction(), on_save_room_, Room, Selection, and show_panel_.
Referenced by DrawInspectorShelf().
|
private |
Definition at line 960 of file dungeon_workbench_content.cc.
References DrawInspectorCompactSummary(), DrawInspectorShelfRoom(), DrawInspectorShelfSelection(), DrawInspectorShelfTools(), DrawInspectorShelfView(), ICON_MD_BUILD, ICON_MD_VISIBILITY, inspector_focus_, and Room.
Referenced by DrawInspector().
|
private |
Definition at line 982 of file dungeon_workbench_content.cc.
References BuildRoomDungeonCache(), yaze::editor::DungeonCanvasViewer::current_room_id(), current_room_id_, yaze::zelda3::GetRoomLabel(), yaze::editor::AgentUI::GetTheme(), ICON_MD_BUILD, ICON_MD_CASTLE, ICON_MD_CLOSE, ICON_MD_CONTENT_COPY, ICON_MD_IMAGE, ICON_MD_OPEN_IN_NEW, ICON_MD_SAVE, ICON_MD_SETTINGS, ICON_MD_TUNE, yaze::gui::InputHexByteEx(), yaze::Rom::is_loaded(), yaze::editor::InteractionModeManager::IsPlacementActive(), yaze::editor::DungeonObjectInteraction::mode_manager(), yaze::editor::DungeonCanvasViewer::object_interaction(), on_room_selected_, on_save_room_, yaze::gui::LayoutHelpers::PropertyRow(), rom_, room_dungeon_cache_, room_dungeon_cache_built_, yaze::editor::DungeonCanvasViewer::rooms(), yaze::gui::InputHexResult::ShouldApply(), and show_panel_.
Referenced by DrawInspectorShelf().
|
private |
Definition at line 1164 of file dungeon_workbench_content.cc.
References yaze::editor::DungeonCanvasViewer::current_room_id(), yaze::editor::DungeonCanvasViewer::DeleteSelectedObjects(), yaze::editor::Door, yaze::zelda3::GetDoorDirectionName(), yaze::zelda3::GetDoorTypeName(), yaze::zelda3::GetObjectName(), yaze::zelda3::GetObjectSubtype(), yaze::zelda3::GetOverlordLabel(), yaze::zelda3::GetSpriteLabel(), yaze::editor::AgentUI::GetTheme(), ICON_MD_BUILD, ICON_MD_CATEGORY, ICON_MD_CLEAR, ICON_MD_DELETE, ICON_MD_DOOR_FRONT, ICON_MD_INFO, ICON_MD_INVENTORY, ICON_MD_INVENTORY_2, ICON_MD_OPEN_IN_NEW, ICON_MD_PERSON, ICON_MD_SELECT_ALL, ICON_MD_STAR, ICON_MD_SUMMARIZE, ICON_MD_TUNE, ICON_MD_WIDGETS, yaze::gui::InputHexByteEx(), yaze::gui::InputHexWordEx(), yaze::editor::Item, yaze::editor::DungeonCanvasViewer::object_interaction(), yaze::gui::LayoutHelpers::PropertyRow(), yaze::editor::DungeonCanvasViewer::rooms(), yaze::gui::InputHexResult::ShouldApply(), show_panel_, and yaze::editor::Sprite.
Referenced by DrawInspectorShelf().
|
private |
Definition at line 1455 of file dungeon_workbench_content.cc.
References ICON_MD_VISIBILITY, yaze::editor::DungeonCanvasViewer::set_show_camera_quadrant_overlay(), yaze::editor::DungeonCanvasViewer::set_show_coordinate_overlay(), yaze::editor::DungeonCanvasViewer::set_show_custom_collision_overlay(), yaze::editor::DungeonCanvasViewer::set_show_custom_objects_overlay(), yaze::editor::DungeonCanvasViewer::set_show_grid(), yaze::editor::DungeonCanvasViewer::set_show_minecart_sprite_overlay(), yaze::editor::DungeonCanvasViewer::set_show_object_bounds(), yaze::editor::DungeonCanvasViewer::set_show_track_collision_overlay(), yaze::editor::DungeonCanvasViewer::set_show_track_gap_overlay(), yaze::editor::DungeonCanvasViewer::set_show_track_route_overlay(), yaze::editor::DungeonCanvasViewer::set_show_water_fill_overlay(), yaze::editor::DungeonCanvasViewer::show_camera_quadrant_overlay(), yaze::editor::DungeonCanvasViewer::show_coordinate_overlay(), yaze::editor::DungeonCanvasViewer::show_custom_collision_overlay(), yaze::editor::DungeonCanvasViewer::show_custom_objects_overlay(), yaze::editor::DungeonCanvasViewer::show_grid(), yaze::editor::DungeonCanvasViewer::show_minecart_sprite_overlay(), yaze::editor::DungeonCanvasViewer::show_object_bounds(), yaze::editor::DungeonCanvasViewer::show_track_collision_overlay(), yaze::editor::DungeonCanvasViewer::show_track_gap_overlay(), yaze::editor::DungeonCanvasViewer::show_track_route_overlay(), and yaze::editor::DungeonCanvasViewer::show_water_fill_overlay().
Referenced by DrawInspectorCompactSummary(), and DrawInspectorShelf().
|
private |
Definition at line 1518 of file dungeon_workbench_content.cc.
References yaze::editor::ShortcutLegendPanel::Draw(), ICON_MD_CATEGORY, ICON_MD_DOOR_FRONT, ICON_MD_EDIT_NOTE, ICON_MD_GRID_VIEW, ICON_MD_INVENTORY, ICON_MD_KEYBOARD, ICON_MD_MAP, ICON_MD_PALETTE, ICON_MD_PERSON, ICON_MD_SETTINGS, ICON_MD_TRAVEL_EXPLORE, ICON_MD_TUNE, show_panel_, and show_shortcut_legend_.
Referenced by DrawInspectorCompactSummary(), and DrawInspectorShelf().

|
private |
Definition at line 826 of file dungeon_workbench_content.cc.
References yaze::zelda3::RoomEntrance::dungeon_id_, yaze::Rom::is_loaded(), rom_, yaze::zelda3::RoomEntrance::room_, room_dungeon_cache_, and room_dungeon_cache_built_.
Referenced by DrawInspectorShelfRoom().

|
private |
Definition at line 103 of file dungeon_workbench_content.h.
Referenced by Draw(), and DrawSidebarContent().
|
private |
Definition at line 104 of file dungeon_workbench_content.h.
Referenced by Draw(), DrawCanvasPane(), DrawInspectorCompactSummary(), DrawInspectorShelfRoom(), DrawRecentRoomTabs(), and DrawSplitView().
|
private |
Definition at line 107 of file dungeon_workbench_content.h.
Referenced by Draw(), and NotifyRoomChanged().
|
private |
Definition at line 108 of file dungeon_workbench_content.h.
Referenced by Draw(), DrawCanvasPane(), DrawRecentRoomTabs(), and DrawSplitView().
|
private |
Definition at line 109 of file dungeon_workbench_content.h.
Referenced by Draw(), DrawRecentRoomTabs(), and DrawSplitView().
|
private |
Definition at line 110 of file dungeon_workbench_content.h.
Referenced by Draw(), DrawInspectorHeader(), DrawSidebarHeader(), and DrawSplitView().
|
private |
Definition at line 111 of file dungeon_workbench_content.h.
Referenced by Draw(), DrawInspectorShelfRoom(), and DrawRecentRoomTabs().
|
private |
Definition at line 112 of file dungeon_workbench_content.h.
Referenced by DrawRecentRoomTabs().
|
private |
Definition at line 113 of file dungeon_workbench_content.h.
Referenced by DrawInspectorCompactSummary(), and DrawInspectorShelfRoom().
|
private |
Definition at line 114 of file dungeon_workbench_content.h.
Referenced by Draw().
|
private |
Definition at line 115 of file dungeon_workbench_content.h.
Referenced by Draw(), and DrawSplitView().
|
private |
Definition at line 116 of file dungeon_workbench_content.h.
Referenced by Draw(), DrawRecentRoomTabs(), and DrawSplitView().
|
private |
Definition at line 117 of file dungeon_workbench_content.h.
Referenced by DrawRecentRoomTabs().
|
private |
Definition at line 118 of file dungeon_workbench_content.h.
Referenced by DrawInspectorCompactSummary(), DrawInspectorShelfRoom(), DrawInspectorShelfSelection(), DrawInspectorShelfTools(), and DrawSidebarHeader().
|
private |
Definition at line 119 of file dungeon_workbench_content.h.
Referenced by Draw().
|
private |
Definition at line 120 of file dungeon_workbench_content.h.
Referenced by BuildRoomDungeonCache(), Draw(), DrawInspectorShelfRoom(), and SetRom().
|
private |
Definition at line 123 of file dungeon_workbench_content.h.
Referenced by DrawSidebarContent(), and DrawSidebarModeTabs().
|
private |
Definition at line 125 of file dungeon_workbench_content.h.
Referenced by DrawInspectorCompactSummary(), DrawInspectorPrimarySelector(), and DrawInspectorShelf().
|
private |
Definition at line 127 of file dungeon_workbench_content.h.
Referenced by Draw().
|
private |
Definition at line 130 of file dungeon_workbench_content.h.
Referenced by BuildRoomDungeonCache(), DrawInspectorShelfRoom(), and SetRom().
|
private |
Definition at line 131 of file dungeon_workbench_content.h.
Referenced by BuildRoomDungeonCache(), DrawInspectorShelfRoom(), and SetRom().
|
private |
Definition at line 134 of file dungeon_workbench_content.h.
Referenced by DrawCanvasPane(), and SetUndoRedoProvider().
|
private |
Definition at line 135 of file dungeon_workbench_content.h.
Referenced by DrawCanvasPane(), and SetUndoRedoProvider().
|
private |
Definition at line 136 of file dungeon_workbench_content.h.
Referenced by DrawCanvasPane(), and SetUndoRedoProvider().
|
private |
Definition at line 137 of file dungeon_workbench_content.h.
Referenced by DrawCanvasPane(), and SetUndoRedoProvider().
|
private |
Definition at line 138 of file dungeon_workbench_content.h.
Referenced by DrawCanvasPane(), and SetUndoRedoProvider().
|
private |
Definition at line 139 of file dungeon_workbench_content.h.
Referenced by DrawCanvasPane(), and SetUndoRedoProvider().
|
private |
Definition at line 140 of file dungeon_workbench_content.h.
Referenced by DrawCanvasPane(), and SetUndoRedoProvider().
|
private |
Definition at line 143 of file dungeon_workbench_content.h.
Referenced by DrawCanvasPane(), and SetToolModeProvider().
|
private |
Definition at line 146 of file dungeon_workbench_content.h.
Referenced by DrawInspectorShelfTools().