zengine/engine/src/editor/panel/menu_bar_panel.cpp

25 lines
678 B
C++
Raw Normal View History

2024-12-17 20:57:52 +08:00
#include "editor/panel/menu_bar_panel.h"
#include <imgui.h>
namespace api {
2024-12-19 17:23:52 +08:00
void MenuBarPanel::DrawPanel(FrameGraph& graph, RenderEditorContext& context)
2024-12-17 20:57:52 +08:00
{
// 面板大小和位置
if (ImGui::BeginMenu("Tools")) {
if (ImGui::MenuItem("Performance Analyzer")) {
// 显示性能分析工具
}
if (ImGui::MenuItem("Debug Console")) {
// 显示调试控制台
}
ImGui::EndMenu();
}
if (ImGui::BeginMenu("Help")) {
if (ImGui::MenuItem("About")) {
// 显示关于信息
}
ImGui::EndMenu();
}
}
}