yaze
0.3.2
Link to the Past ROM Editor
Loading...
Searching...
No Matches
overworld_canvas_panel.h
Go to the documentation of this file.
1
#ifndef YAZE_APP_EDITOR_OVERWORLD_PANELS_OVERWORLD_CANVAS_PANEL_H
2
#define YAZE_APP_EDITOR_OVERWORLD_PANELS_OVERWORLD_CANVAS_PANEL_H
3
4
#include "
app/editor/system/editor_panel.h
"
5
#include "
app/gui/core/icons.h
"
6
7
namespace
yaze::editor
{
8
18
class
OverworldCanvasPanel
:
public
EditorPanel
{
19
public
:
20
OverworldCanvasPanel
() =
default
;
21
22
// EditorPanel interface
23
std::string
GetId
()
const override
{
return
"overworld.canvas"
; }
24
std::string
GetDisplayName
()
const override
{
return
"Overworld Canvas"
; }
25
std::string
GetIcon
()
const override
{
return
ICON_MD_MAP
; }
26
std::string
GetEditorCategory
()
const override
{
return
"Overworld"
; }
27
std::string
GetShortcutHint
()
const override
{
return
"Ctrl+Shift+O"
; }
28
int
GetPriority
()
const override
{
return
5; }
// Show first
29
bool
IsVisibleByDefault
()
const override
{
return
true
; }
30
31
void
Draw
(
bool
* p_open)
override
;
32
};
33
34
}
// namespace yaze::editor
35
36
#endif
// YAZE_APP_EDITOR_OVERWORLD_PANELS_OVERWORLD_CANVAS_PANEL_H
yaze::editor::OverworldCanvasPanel
The main canvas panel for the Overworld Editor.
Definition
overworld_canvas_panel.h:18
yaze::editor::OverworldCanvasPanel::IsVisibleByDefault
bool IsVisibleByDefault() const override
Whether this panel should be visible by default.
Definition
overworld_canvas_panel.h:29
yaze::editor::OverworldCanvasPanel::GetDisplayName
std::string GetDisplayName() const override
Human-readable name shown in menus and title bars.
Definition
overworld_canvas_panel.h:24
yaze::editor::OverworldCanvasPanel::GetPriority
int GetPriority() const override
Get display priority for menu ordering.
Definition
overworld_canvas_panel.h:28
yaze::editor::OverworldCanvasPanel::GetIcon
std::string GetIcon() const override
Material Design icon for this panel.
Definition
overworld_canvas_panel.h:25
yaze::editor::OverworldCanvasPanel::GetShortcutHint
std::string GetShortcutHint() const override
Get keyboard shortcut hint for display.
Definition
overworld_canvas_panel.h:27
yaze::editor::OverworldCanvasPanel::GetEditorCategory
std::string GetEditorCategory() const override
Editor category this panel belongs to.
Definition
overworld_canvas_panel.h:26
yaze::editor::OverworldCanvasPanel::GetId
std::string GetId() const override
Unique identifier for this panel.
Definition
overworld_canvas_panel.h:23
yaze::editor::OverworldCanvasPanel::OverworldCanvasPanel
OverworldCanvasPanel()=default
yaze::editor::OverworldCanvasPanel::Draw
void Draw(bool *p_open) override
Draw the panel content.
Definition
overworld_canvas_panel.cc:8
yaze::editor::WindowContent
Base interface for all logical window content components.
Definition
editor_panel.h:89
editor_panel.h
icons.h
ICON_MD_MAP
#define ICON_MD_MAP
Definition
icons.h:1173
yaze::editor
Editors are the view controllers for the application.
Definition
patch_export_usage.cc:9
src
app
editor
overworld
panels
overworld_canvas_panel.h
Generated by
1.10.0