2018-10-31 10:19:44 +01:00
|
|
|
#ifndef slic3r_ImGuiWrapper_hpp_
|
|
|
|
|
#define slic3r_ImGuiWrapper_hpp_
|
|
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <map>
|
|
|
|
|
|
2018-11-26 10:56:07 +01:00
|
|
|
#include <imgui/imgui.h>
|
|
|
|
|
|
|
|
|
|
#include "libslic3r/Point.hpp"
|
|
|
|
|
|
|
|
|
|
class wxString;
|
2018-10-31 10:19:44 +01:00
|
|
|
class wxMouseEvent;
|
2019-02-15 15:35:32 +01:00
|
|
|
class wxKeyEvent;
|
2018-11-26 10:56:07 +01:00
|
|
|
|
2018-10-31 10:19:44 +01:00
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
namespace GUI {
|
|
|
|
|
|
|
|
|
|
class ImGuiWrapper
|
|
|
|
|
{
|
2019-02-19 13:26:26 +01:00
|
|
|
const ImWchar *m_glyph_ranges;
|
2019-05-23 18:04:27 +02:00
|
|
|
// Chinese, Japanese, Korean
|
|
|
|
|
bool m_font_cjk;
|
2019-03-29 14:57:53 +01:00
|
|
|
float m_font_size;
|
2018-11-27 12:10:21 +01:00
|
|
|
unsigned m_font_texture;
|
2019-01-24 11:30:29 +01:00
|
|
|
float m_style_scaling;
|
2018-11-26 10:56:07 +01:00
|
|
|
unsigned m_mouse_buttons;
|
2019-01-18 15:02:07 +01:00
|
|
|
bool m_disabled;
|
2019-02-19 12:39:24 +01:00
|
|
|
bool m_new_frame_open;
|
|
|
|
|
std::string m_clipboard_text;
|
2018-11-26 10:56:07 +01:00
|
|
|
|
2018-10-31 10:19:44 +01:00
|
|
|
public:
|
2019-04-01 14:12:05 +02:00
|
|
|
ImGuiWrapper();
|
2018-11-26 10:56:07 +01:00
|
|
|
~ImGuiWrapper();
|
2018-10-31 10:19:44 +01:00
|
|
|
|
2018-11-27 12:10:21 +01:00
|
|
|
void read_glsl_version();
|
2018-10-31 10:19:44 +01:00
|
|
|
|
2019-02-19 13:26:26 +01:00
|
|
|
void set_language(const std::string &language);
|
2018-10-31 10:19:44 +01:00
|
|
|
void set_display_size(float w, float h);
|
2019-04-02 13:26:22 +02:00
|
|
|
void set_scaling(float font_size, float scale_style, float scale_both);
|
2018-11-26 10:56:07 +01:00
|
|
|
bool update_mouse_data(wxMouseEvent &evt);
|
2019-02-15 15:35:32 +01:00
|
|
|
bool update_key_data(wxKeyEvent &evt);
|
2018-10-31 10:19:44 +01:00
|
|
|
|
2019-04-01 14:12:05 +02:00
|
|
|
float get_font_size() const { return m_font_size; }
|
2019-03-06 09:15:33 +01:00
|
|
|
float get_style_scaling() const { return m_style_scaling; }
|
|
|
|
|
|
2018-10-31 10:19:44 +01:00
|
|
|
void new_frame();
|
|
|
|
|
void render();
|
|
|
|
|
|
2019-04-03 16:39:28 +02:00
|
|
|
float scaled(float x) const { return x * m_font_size; }
|
|
|
|
|
ImVec2 scaled(float x, float y) const { return ImVec2(x * m_font_size, y * m_font_size); }
|
2019-04-01 15:36:48 +02:00
|
|
|
ImVec2 calc_text_size(const wxString &text);
|
2019-04-01 14:12:05 +02:00
|
|
|
|
2019-07-10 13:45:25 +02:00
|
|
|
void set_next_window_pos(float x, float y, int flag, float pivot_x = 0.0f, float pivot_y = 0.0f);
|
2018-10-31 10:19:44 +01:00
|
|
|
void set_next_window_bg_alpha(float alpha);
|
|
|
|
|
|
2018-11-26 10:56:07 +01:00
|
|
|
bool begin(const std::string &name, int flags = 0);
|
|
|
|
|
bool begin(const wxString &name, int flags = 0);
|
2018-10-31 10:19:44 +01:00
|
|
|
void end();
|
|
|
|
|
|
2018-11-26 10:56:07 +01:00
|
|
|
bool button(const wxString &label);
|
2019-01-30 08:26:23 +01:00
|
|
|
bool radio_button(const wxString &label, bool active);
|
2018-11-26 10:56:07 +01:00
|
|
|
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);
|
2019-03-04 12:59:20 +01:00
|
|
|
void text(const char *label);
|
2019-03-04 12:21:00 +01:00
|
|
|
void text(const std::string &label);
|
2018-11-26 15:54:12 +01:00
|
|
|
void text(const wxString &label);
|
2019-03-04 15:40:06 +01:00
|
|
|
bool combo(const wxString& label, const std::vector<std::string>& options, int& selection); // Use -1 to not mark any option as selected
|
2019-07-09 15:27:28 +02:00
|
|
|
bool undo_redo_list(const ImVec2& size, const bool is_undo, bool (*items_getter)(const bool, int, const char**), int& hovered, int& selected);
|
2018-10-31 10:19:44 +01:00
|
|
|
|
2019-01-18 15:02:07 +01:00
|
|
|
void disabled_begin(bool disabled);
|
|
|
|
|
void disabled_end();
|
|
|
|
|
|
2018-11-26 10:56:07 +01:00
|
|
|
bool want_mouse() const;
|
|
|
|
|
bool want_keyboard() const;
|
|
|
|
|
bool want_text_input() const;
|
|
|
|
|
bool want_any_input() const;
|
2019-02-19 13:26:26 +01:00
|
|
|
|
2018-10-31 10:19:44 +01:00
|
|
|
private:
|
2019-05-28 12:53:16 +02:00
|
|
|
void init_font(bool compress);
|
2019-02-15 15:35:32 +01:00
|
|
|
void init_input();
|
2019-02-19 14:46:29 +01:00
|
|
|
void init_style();
|
2018-11-26 10:56:07 +01:00
|
|
|
void render_draw_data(ImDrawData *draw_data);
|
2019-02-22 14:52:32 +01:00
|
|
|
bool display_initialized() const;
|
2019-04-01 14:12:05 +02:00
|
|
|
void destroy_font();
|
2019-02-15 15:35:32 +01:00
|
|
|
|
|
|
|
|
static const char* clipboard_get(void* user_data);
|
|
|
|
|
static void clipboard_set(void* user_data, const char* text);
|
2018-10-31 10:19:44 +01:00
|
|
|
};
|
|
|
|
|
|
2018-11-27 15:35:30 +01:00
|
|
|
|
2018-10-31 10:19:44 +01:00
|
|
|
} // namespace GUI
|
|
|
|
|
} // namespace Slic3r
|
|
|
|
|
|
|
|
|
|
#endif // slic3r_ImGuiWrapper_hpp_
|
|
|
|
|
|