Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ButtonsDescription.hpp « GUI « slic3r « src « xs - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4858eaaea36ad6fbe0bd9658923e2c6be929d2ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef slic3r_ButtonsDescription_hpp
#define slic3r_ButtonsDescription_hpp

#include <wx/dialog.h>
#include <vector>

namespace Slic3r {
namespace GUI {

using t_icon_descriptions = std::vector<std::pair<wxBitmap*, std::string>>;

class ButtonsDescription : public wxDialog
{
	t_icon_descriptions* m_icon_descriptions;
public:
	ButtonsDescription(wxWindow* parent, t_icon_descriptions* icon_descriptions);
	~ButtonsDescription(){}


};

} // GUI
} // Slic3r


#endif