PrusaSlicer-NonPlainar/src/slic3r/GUI/ImGuiWrapper.hpp

77 lines
1.8 KiB
C++
Raw Normal View History

2018-10-31 09:19:44 +00:00
#ifndef slic3r_ImGuiWrapper_hpp_
#define slic3r_ImGuiWrapper_hpp_
#include <string>
#include <map>
2018-11-26 09:56:07 +00:00
#include <imgui/imgui.h>
#include "libslic3r/Point.hpp"
class wxString;
2018-10-31 09:19:44 +00:00
class wxMouseEvent;
2018-11-26 09:56:07 +00:00
2018-10-31 09:19:44 +00:00
namespace Slic3r {
namespace GUI {
class ImGuiWrapper
{
typedef std::map<std::string, ImFont*> FontsMap;
FontsMap m_fonts;
unsigned m_font_texture;
float m_style_scaling;
2018-11-26 09:56:07 +00:00
unsigned m_mouse_buttons;
bool m_disabled;
2018-11-26 09:56:07 +00:00
2018-10-31 09:19:44 +00:00
public:
ImGuiWrapper();
2018-11-26 09:56:07 +00:00
~ImGuiWrapper();
2018-10-31 09:19:44 +00:00
bool init();
void read_glsl_version();
2018-10-31 09:19:44 +00:00
void set_display_size(float w, float h);
void set_style_scaling(float scaling);
2018-11-26 09:56:07 +00:00
bool update_mouse_data(wxMouseEvent &evt);
2018-10-31 09:19:44 +00:00
void new_frame();
void render();
void set_next_window_pos(float x, float y, int flag);
void set_next_window_bg_alpha(float alpha);
2018-11-26 09:56:07 +00:00
bool begin(const std::string &name, int flags = 0);
bool begin(const wxString &name, int flags = 0);
2018-10-31 09:19:44 +00:00
void end();
2018-11-26 09:56:07 +00:00
bool button(const wxString &label);
bool input_double(const std::string &label, const double &value, const std::string &format = "%.3f");
bool input_vec3(const std::string &label, const Vec3d &value, float width, const std::string &format = "%.3f");
bool checkbox(const wxString &label, bool &value);
void text(const wxString &label);
2018-10-31 09:19:44 +00:00
void disabled_begin(bool disabled);
void disabled_end();
2018-11-26 09:56:07 +00:00
bool want_mouse() const;
bool want_keyboard() const;
bool want_text_input() const;
bool want_any_input() const;
2018-10-31 09:19:44 +00:00
private:
void init_default_font(float scaling);
2018-10-31 09:19:44 +00:00
void create_device_objects();
void create_fonts_texture();
2018-11-26 09:56:07 +00:00
void render_draw_data(ImDrawData *draw_data);
2018-10-31 09:19:44 +00:00
void destroy_device_objects();
void destroy_fonts_texture();
};
2018-11-27 14:35:30 +00:00
2018-10-31 09:19:44 +00:00
} // namespace GUI
} // namespace Slic3r
#endif // slic3r_ImGuiWrapper_hpp_