mirror of
https://github.com/kunkundi/crossdesk.git
synced 2025-10-27 04:35:34 +08:00
33 lines
1.0 KiB
C++
33 lines
1.0 KiB
C++
#include "IconsFontAwesome6.h"
|
|
#include "render.h"
|
|
|
|
int Render::MenuWindow() {
|
|
ImGui::PushStyleColor(ImGuiCol_MenuBarBg, ImVec4(255, 255, 255, 1));
|
|
static bool a, b, c, d, e;
|
|
ImGui::SetNextWindowPos(ImVec2(0, 0), ImGuiCond_Always);
|
|
ImGui::BeginChild("MenuWindow",
|
|
ImVec2(main_window_width_, menu_window_height_),
|
|
ImGuiChildFlags_Border, ImGuiWindowFlags_MenuBar);
|
|
if (ImGui::BeginMenuBar()) {
|
|
ImGui::SetWindowFontScale(0.8f);
|
|
if (ImGui::BeginMenu(ICON_FA_BARS, true)) {
|
|
ImGui::SetWindowFontScale(0.7f);
|
|
ImGui::MenuItem("Auto-resizing window", NULL, &a);
|
|
ImGui::MenuItem("Constrained-resizing window", NULL, &b);
|
|
ImGui::MenuItem("Fullscreen window", NULL, &c);
|
|
ImGui::MenuItem("Long text display", NULL, &d);
|
|
ImGui::MenuItem("Manipulating window titles", NULL, &e);
|
|
ImGui::SetWindowFontScale(1.0f);
|
|
ImGui::EndMenu();
|
|
}
|
|
|
|
ImGui::Dummy(ImVec2(main_window_width_ - 97, 0));
|
|
|
|
SettingButton();
|
|
}
|
|
|
|
ImGui::PopStyleColor();
|
|
ImGui::EndChild();
|
|
|
|
return 0;
|
|
} |