mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-10-22 16:21:24 -06:00
Add the full source of BambuStudio
using version 1.0.10
This commit is contained in:
parent
30bcadab3e
commit
1555904bef
3771 changed files with 1251328 additions and 0 deletions
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_
|
Loading…
Add table
Add a link
Reference in a new issue