Unravel Engine C++ Reference
Loading...
Searching...
No Matches
header_panel.h
Go to the documentation of this file.
1#pragma once
2
3#include <base/basetypes.hpp>
4#include <context/context.hpp>
5
7#include <editor/shortcuts.h>
8
9namespace unravel
10{
11
12class imgui_panels;
13
15{
16public:
18
19 void on_frame_ui_render(rtti::context& ctx, float header_size);
20
21private:
22 void draw_menubar_child(rtti::context& ctx);
23 void draw_play_toolbar(rtti::context& ctx, float header_size);
24 void draw_about_window(rtti::context& ctx);
25
26 imgui_panels* parent_{};
27 bool show_about_window_ = false;
28};
29} // namespace unravel
void on_frame_ui_render(rtti::context &ctx, float header_size)
header_panel(imgui_panels *parent)