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

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2019-03-22 17:45:51 +0300
committerbubnikv <bubnikv@gmail.com>2019-03-22 17:45:51 +0300
commitae9356904402ada309f9a2f82e2a53084f379528 (patch)
treec367b2adfcf05ad4afbaa7526607746eb62c934c /src/slic3r/GUI/Preset.hpp
parentf5516f24c444d26c0c791f4c239eb35ba60f9f37 (diff)
Call Config Wizard from the Printer combo box at both the plater
and the parameter tab.
Diffstat (limited to 'src/slic3r/GUI/Preset.hpp')
-rw-r--r--src/slic3r/GUI/Preset.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/slic3r/GUI/Preset.hpp b/src/slic3r/GUI/Preset.hpp
index c84c37029..cc0a51588 100644
--- a/src/slic3r/GUI/Preset.hpp
+++ b/src/slic3r/GUI/Preset.hpp
@@ -277,6 +277,9 @@ public:
// Load default bitmap to be placed at the wxBitmapComboBox of a MainFrame.
bool load_bitmap_default(const std::string &file_name);
+ // Load "add new printer" bitmap to be placed at the wxBitmapComboBox of a MainFrame.
+ bool load_bitmap_add(const std::string &file_name);
+
// Compatible & incompatible marks, to be placed at the wxBitmapComboBox items.
void set_bitmap_compatible (const wxBitmap *bmp) { m_bitmap_compatible = bmp; }
void set_bitmap_incompatible(const wxBitmap *bmp) { m_bitmap_incompatible = bmp; }
@@ -467,6 +470,8 @@ private:
// Marks placed at the wxBitmapComboBox of a MainFrame.
// These bitmaps are owned by PresetCollection.
wxBitmap *m_bitmap_main_frame;
+ // "Add printer profile" icon, owned by PresetCollection.
+ wxBitmap *m_bitmap_add;
// Path to the directory to store the config files into.
std::string m_dir_path;