55 lines
1.3 KiB
C++
55 lines
1.3 KiB
C++
|
#ifndef slic3r_GUI_ReleaseNote_hpp_
|
||
|
#define slic3r_GUI_ReleaseNote_hpp_
|
||
|
|
||
|
#include <wx/wx.h>
|
||
|
#include <wx/intl.h>
|
||
|
#include <wx/collpane.h>
|
||
|
#include <wx/dataview.h>
|
||
|
#include <wx/artprov.h>
|
||
|
#include <wx/xrc/xmlres.h>
|
||
|
#include <wx/dataview.h>
|
||
|
#include <wx/gdicmn.h>
|
||
|
#include <wx/font.h>
|
||
|
#include <wx/colour.h>
|
||
|
#include <wx/settings.h>
|
||
|
#include <wx/string.h>
|
||
|
#include <wx/sizer.h>
|
||
|
#include <wx/stattext.h>
|
||
|
#include <wx/hyperlink.h>
|
||
|
#include <wx/button.h>
|
||
|
#include <wx/dialog.h>
|
||
|
#include <wx/popupwin.h>
|
||
|
#include <wx/spinctrl.h>
|
||
|
#include <wx/artprov.h>
|
||
|
#include <wx/wrapsizer.h>
|
||
|
|
||
|
#include "AmsMappingPopup.hpp"
|
||
|
#include "GUI_Utils.hpp"
|
||
|
#include "wxExtensions.hpp"
|
||
|
#include "DeviceManager.hpp"
|
||
|
#include "Widgets/Label.hpp"
|
||
|
#include "Widgets/Button.hpp"
|
||
|
#include "Widgets/CheckBox.hpp"
|
||
|
#include "Widgets/ComboBox.hpp"
|
||
|
#include "Widgets/ScrolledWindow.hpp"
|
||
|
#include <wx/hashmap.h>
|
||
|
|
||
|
namespace Slic3r { namespace GUI {
|
||
|
|
||
|
class ReleaseNoteDialog : public DPIDialog
|
||
|
{
|
||
|
public:
|
||
|
ReleaseNoteDialog(Plater *plater = nullptr);
|
||
|
~ReleaseNoteDialog();
|
||
|
|
||
|
void on_dpi_changed(const wxRect &suggested_rect) override;
|
||
|
void update_release_note(std::string release_note, std::string version);
|
||
|
|
||
|
wxStaticText * m_text_up_info{nullptr};
|
||
|
wxScrolledWindow *m_scrollwindw_release_note {nullptr};
|
||
|
};
|
||
|
|
||
|
}} // namespace Slic3r::GUI
|
||
|
|
||
|
#endif
|