DoubleSlider::Control -> Change text position at the edges of horizontal slider

This commit is contained in:
enricoturri1966 2020-05-27 11:50:29 +02:00
parent 908650630b
commit 94a4689b00
2 changed files with 29 additions and 8 deletions

View file

@ -301,8 +301,8 @@ private:
int get_value_from_position(const wxCoord x, const wxCoord y);
int get_value_from_position(const wxPoint pos) { return get_value_from_position(pos.x, pos.y); }
wxCoord get_position_from_value(const int value);
wxSize get_size();
void get_size(int *w, int *h);
wxSize get_size() const;
void get_size(int* w, int* h) const;
double get_double_value(const SelectedSlider& selection);
wxString get_tooltip(int tick = -1);
int get_edited_tick_for_position(wxPoint pos, const std::string& gcode = ColorChangeCode);