Ported System Info Dialog

This commit is contained in:
YuSanka 2018-10-25 12:48:19 +02:00
parent e72a058600
commit 3009439838
5 changed files with 181 additions and 17 deletions

View file

@ -0,0 +1,24 @@
#ifndef slic3r_GUI_SysInfoDialog_hpp_
#define slic3r_GUI_SysInfoDialog_hpp_
#include <wx/wx.h>
#include <wx/html/htmlwin.h>
namespace Slic3r {
namespace GUI {
class SysInfoDialog : public wxDialog
{
wxString text_info {wxEmptyString};
public:
SysInfoDialog();
private:
void onCopyToClipboard(wxEvent &);
void onCloseDialog(wxEvent &);
};
} // namespace GUI
} // namespace Slic3r
#endif