2020-10-13 10:17:39 +00:00
|
|
|
#ifndef slic3r_OG_CustomCtrl_hpp_
|
|
|
|
#define slic3r_OG_CustomCtrl_hpp_
|
|
|
|
|
|
|
|
#include <wx/stattext.h>
|
|
|
|
#include <wx/settings.h>
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <functional>
|
|
|
|
|
|
|
|
#include "libslic3r/Config.hpp"
|
|
|
|
#include "libslic3r/PrintConfig.hpp"
|
|
|
|
|
|
|
|
#include "OptionsGroup.hpp"
|
|
|
|
#include "I18N.hpp"
|
|
|
|
|
|
|
|
// Translate the ifdef
|
|
|
|
#ifdef __WXOSX__
|
|
|
|
#define wxOSX true
|
|
|
|
#else
|
|
|
|
#define wxOSX false
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//#define BORDER(a, b) ((wxOSX ? a : b))
|
|
|
|
|
|
|
|
namespace Slic3r { namespace GUI {
|
|
|
|
|
|
|
|
// Static text shown among the options.
|
|
|
|
class OG_CustomCtrl :public wxControl
|
|
|
|
{
|
|
|
|
wxFont m_font;
|
|
|
|
|
|
|
|
ScalableBitmap m_bmp_mode_simple;
|
|
|
|
ScalableBitmap m_bmp_mode_advanced;
|
|
|
|
ScalableBitmap m_bmp_mode_expert;
|
|
|
|
ScalableBitmap m_bmp_blinking;
|
|
|
|
|
|
|
|
struct CtrlLine {
|
|
|
|
wxCoord m_height { wxDefaultCoord };
|
|
|
|
OG_CustomCtrl* m_ctrl { nullptr };
|
|
|
|
const Line& m_og_line;
|
|
|
|
|
|
|
|
bool draw_just_act_buttons { false };
|
|
|
|
bool is_visible { true };
|
|
|
|
|
|
|
|
void render(wxDC& dc, wxCoord v_pos);
|
|
|
|
wxCoord draw_mode_bmp(wxDC& dc, wxCoord v_pos);
|
|
|
|
wxCoord draw_text (wxDC& dc, wxPoint pos, const wxString& text, const wxColour* color, int width);
|
|
|
|
wxCoord draw_act_bmps(wxDC& dc, wxPoint pos, const wxBitmap& bmp_blinking, const wxBitmap& bmp_undo_to_sys, const wxBitmap& bmp_undo);
|
|
|
|
|
|
|
|
void set_visible(bool show) { is_visible = show; }
|
|
|
|
|
|
|
|
wxRect m_rect_blinking;
|
|
|
|
wxRect m_rect_undo_icon;
|
|
|
|
wxRect m_rect_undo_to_sys_icon;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<CtrlLine> ctrl_lines;
|
|
|
|
|
|
|
|
public:
|
|
|
|
OG_CustomCtrl( wxWindow* parent,
|
|
|
|
OptionsGroup* og,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
const wxValidator& val = wxDefaultValidator,
|
|
|
|
const wxString& name = wxEmptyString);
|
|
|
|
~OG_CustomCtrl() {}
|
|
|
|
|
|
|
|
void OnPaint(wxPaintEvent&);
|
|
|
|
void OnMotion(wxMouseEvent& event);
|
|
|
|
void OnLeftDown(wxMouseEvent& event);
|
|
|
|
void OnLeftUp(wxMouseEvent& event);
|
|
|
|
|
|
|
|
void init_ctrl_lines();
|
|
|
|
bool update_visibility(ConfigOptionMode mode);
|
|
|
|
void msw_rescale();
|
|
|
|
void sys_color_changed();
|
|
|
|
|
|
|
|
wxPoint get_pos(const Line& line, Field* field = nullptr);
|
2020-10-21 20:26:41 +00:00
|
|
|
int get_height(const Line& line);
|
2020-10-13 10:17:39 +00:00
|
|
|
|
|
|
|
OptionsGroup* m_og;
|
|
|
|
int m_v_gap;
|
|
|
|
int m_h_gap;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}}
|
|
|
|
|
|
|
|
#endif /* slic3r_OG_CustomCtrl_hpp_ */
|