mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-06-22 19:50:44 +00:00
20 lines
423 B
C++
20 lines
423 B
C++
#ifndef slic3r_GUI_StaticGroup_hpp_
|
|
#define slic3r_GUI_StaticGroup_hpp_
|
|
|
|
#include "../wxExtensions.hpp"
|
|
|
|
#include "LabeledStaticBox.hpp"
|
|
|
|
class StaticGroup : public LabeledStaticBox
|
|
{
|
|
public:
|
|
StaticGroup(wxWindow *parent, wxWindowID id, const wxString &label);
|
|
void ShowBadge(bool show);
|
|
|
|
private:
|
|
void DrawBorderAndLabel(wxDC& dc) override;
|
|
ScalableBitmap badge;
|
|
};
|
|
|
|
#endif // !slic3r_GUI_StaticGroup_hpp_
|