80 lines
1.9 KiB
C++
80 lines
1.9 KiB
C++
#ifndef slic3r_GUI_TextInput_hpp_
|
|
#define slic3r_GUI_TextInput_hpp_
|
|
|
|
#include <wx/textctrl.h>
|
|
#include "StaticBox.hpp"
|
|
|
|
class TextInput : public wxNavigationEnabled<StaticBox>
|
|
{
|
|
|
|
wxSize labelSize;
|
|
ScalableBitmap icon;
|
|
StateColor label_color;
|
|
StateColor text_color;
|
|
wxTextCtrl * text_ctrl;
|
|
|
|
static const int TextInputWidth = 200;
|
|
static const int TextInputHeight = 50;
|
|
|
|
public:
|
|
TextInput();
|
|
|
|
TextInput(wxWindow * parent,
|
|
wxString text,
|
|
wxString label = "",
|
|
wxString icon = "",
|
|
const wxPoint &pos = wxDefaultPosition,
|
|
const wxSize & size = wxDefaultSize,
|
|
long style = 0);
|
|
|
|
public:
|
|
void Create(wxWindow * parent,
|
|
wxString text,
|
|
wxString label = "",
|
|
wxString icon = "",
|
|
const wxPoint &pos = wxDefaultPosition,
|
|
const wxSize & size = wxDefaultSize,
|
|
long style = 0);
|
|
|
|
void SetCornerRadius(double radius);
|
|
|
|
void SetLabel(const wxString& label);
|
|
|
|
void SetIcon(const wxBitmap & icon);
|
|
|
|
void SetIcon(const wxString & icon);
|
|
|
|
void SetLabelColor(StateColor const &color);
|
|
|
|
void SetTextColor(StateColor const &color);
|
|
|
|
virtual void Rescale();
|
|
|
|
virtual bool Enable(bool enable = true) override;
|
|
|
|
virtual void SetMinSize(const wxSize& size) override;
|
|
|
|
wxTextCtrl *GetTextCtrl() { return text_ctrl; }
|
|
|
|
wxTextCtrl const *GetTextCtrl() const { return text_ctrl; }
|
|
|
|
protected:
|
|
virtual void OnEdit() {}
|
|
|
|
virtual void DoSetSize(
|
|
int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
|
|
|
|
void DoSetToolTipText(wxString const &tip) override;
|
|
|
|
private:
|
|
void paintEvent(wxPaintEvent& evt);
|
|
|
|
void render(wxDC& dc);
|
|
|
|
void messureSize();
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
};
|
|
|
|
#endif // !slic3r_GUI_TextInput_hpp_
|