mirror of
https://github.com/QIDITECH/QIDISlicer.git
synced 2026-02-04 09:58:44 +03:00
Calibratioon
This commit is contained in:
21
src/slic3r/GUI/Widgets/RoundedRectangle.hpp
Normal file
21
src/slic3r/GUI/Widgets/RoundedRectangle.hpp
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef slic3r_GUI_ROUNDEDRECTANGLE_hpp_
|
||||
#define slic3r_GUI_ROUNDEDRECTANGLE_hpp_
|
||||
|
||||
#include "../wxExtensions.hpp"
|
||||
|
||||
class RoundedRectangle : public wxWindow
|
||||
{
|
||||
public:
|
||||
RoundedRectangle(wxWindow *parent, wxColour col, wxPoint pos, wxSize size, double radius, int type = 0);
|
||||
~RoundedRectangle(){};
|
||||
|
||||
private:
|
||||
double m_radius;
|
||||
int m_type;
|
||||
wxColour m_color;
|
||||
|
||||
public:
|
||||
void OnPaint(wxPaintEvent &evt);
|
||||
DECLARE_EVENT_TABLE()
|
||||
};
|
||||
#endif // !slic3r_GUI_RoundedRectangle_hpp_
|
||||
Reference in New Issue
Block a user