Welcome to mirror list, hosted at ThFree Co, Russian Federation.

OG_CustomCtrl.hpp « GUI « slic3r « src - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4111f556833ec7ef59bc2afe86981255a2799b25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#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);

    OptionsGroup*  m_og;
    int            m_border;
    int            m_v_gap;
    int            m_h_gap;

};

}}

#endif /* slic3r_OG_CustomCtrl_hpp_ */