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

ButtonsDescription.hpp « GUI « slic3r « src - github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5ca74290ad20a5f4fd79176c70998ecec6a67352 (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
28
29
30
31
32
33
34
35
#ifndef slic3r_ButtonsDescription_hpp
#define slic3r_ButtonsDescription_hpp

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

class ScalableBitmap;

namespace Slic3r {
namespace GUI {

class ButtonsDescription : public wxDialog
{
public:
	struct Entry {
		Entry(ScalableBitmap *bitmap, const std::string &symbol, const std::string &explanation) : bitmap(bitmap), symbol(symbol), explanation(explanation) {}

		ScalableBitmap *bitmap;
		std::string     symbol;
		std::string   	explanation;
	};

	ButtonsDescription(wxWindow* parent, const std::vector<Entry> &entries);
	~ButtonsDescription() {}

private:
	std::vector<Entry> m_entries;
};

} // GUI
} // Slic3r


#endif