mirror of
https://repo.dec05eba.com/gpu-screen-recorder-ui
synced 2026-05-05 06:20:44 +09:00
File chooser navigation
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
#include "Page.hpp"
|
||||
#include "Button.hpp"
|
||||
|
||||
#include <functional>
|
||||
#include <mglpp/graphics/Text.hpp>
|
||||
|
||||
namespace gsr {
|
||||
@@ -19,9 +20,12 @@ namespace gsr {
|
||||
mgl::vec2f get_inner_size() override;
|
||||
|
||||
void set_margins(float top, float bottom, float left, float right);
|
||||
void set_on_back_button_click(std::function<void()> on_click_handler);
|
||||
void add_button(const std::string &text, const std::string &id, mgl::Color color);
|
||||
|
||||
std::function<void(const std::string &id)> on_click;
|
||||
private:
|
||||
void draw_page_label(mgl::Window &window, mgl::vec2f body_pos);
|
||||
void draw_buttons(mgl::Window &window, mgl::vec2f body_pos, mgl::vec2f body_size);
|
||||
void draw_children(mgl::Window &window, mgl::vec2f position);
|
||||
|
||||
float get_border_size() const;
|
||||
@@ -29,11 +33,16 @@ namespace gsr {
|
||||
mgl::vec2f get_content_position();
|
||||
mgl::vec2f get_content_position_with_margin();
|
||||
private:
|
||||
struct ButtonItem {
|
||||
std::unique_ptr<Button> button;
|
||||
std::string id;
|
||||
};
|
||||
|
||||
float margin_top_scale = 0.0f;
|
||||
float margin_bottom_scale = 0.0f;
|
||||
float margin_left_scale = 0.0f;
|
||||
float margin_right_scale = 0.0f;
|
||||
Button back_button;
|
||||
mgl::Text label_text;
|
||||
std::vector<ButtonItem> buttons;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user