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

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuSanka <yusanka@gmail.com>2020-01-27 18:30:09 +0300
committerYuSanka <yusanka@gmail.com>2020-01-27 18:30:09 +0300
commit635def1648f8435705af5826e570f35bbb9186c5 (patch)
treecc754e8f997a128e7705ea1bc8aa29df763cc8f4
parentcf7d7bd40f5a93c41e00474252d72bccbdf48872 (diff)
Fixed an icon scaling in the ObjectList under OSX
-rw-r--r--src/slic3r/GUI/GUI_ObjectList.cpp43
-rw-r--r--src/slic3r/GUI/wxExtensions.cpp32
-rw-r--r--src/slic3r/GUI/wxExtensions.hpp27
3 files changed, 59 insertions, 43 deletions
diff --git a/src/slic3r/GUI/GUI_ObjectList.cpp b/src/slic3r/GUI/GUI_ObjectList.cpp
index 5ae2f6a79..25e1a5ee5 100644
--- a/src/slic3r/GUI/GUI_ObjectList.cpp
+++ b/src/slic3r/GUI/GUI_ObjectList.cpp
@@ -90,20 +90,20 @@ ObjectList::ObjectList(wxWindow* parent) :
// see note in PresetBundle::load_compatible_bitmaps()
// ptFFF
- CATEGORY_ICON[L("Layers and Perimeters")] = create_scaled_bitmap(nullptr, "layers");
- CATEGORY_ICON[L("Infill")] = create_scaled_bitmap(nullptr, "infill");
- CATEGORY_ICON[L("Support material")] = create_scaled_bitmap(nullptr, "support");
- CATEGORY_ICON[L("Speed")] = create_scaled_bitmap(nullptr, "time");
- CATEGORY_ICON[L("Extruders")] = create_scaled_bitmap(nullptr, "funnel");
- CATEGORY_ICON[L("Extrusion Width")] = create_scaled_bitmap(nullptr, "funnel");
- CATEGORY_ICON[L("Wipe options")] = create_scaled_bitmap(nullptr, "funnel");
-// CATEGORY_ICON[L("Skirt and brim")] = create_scaled_bitmap(nullptr, "skirt+brim");
-// CATEGORY_ICON[L("Speed > Acceleration")] = create_scaled_bitmap(nullptr, "time");
- CATEGORY_ICON[L("Advanced")] = create_scaled_bitmap(nullptr, "wrench");
+ CATEGORY_ICON[L("Layers and Perimeters")] = create_scaled_bitmap(this, "layers");
+ CATEGORY_ICON[L("Infill")] = create_scaled_bitmap(this, "infill");
+ CATEGORY_ICON[L("Support material")] = create_scaled_bitmap(this, "support");
+ CATEGORY_ICON[L("Speed")] = create_scaled_bitmap(this, "time");
+ CATEGORY_ICON[L("Extruders")] = create_scaled_bitmap(this, "funnel");
+ CATEGORY_ICON[L("Extrusion Width")] = create_scaled_bitmap(this, "funnel");
+ CATEGORY_ICON[L("Wipe options")] = create_scaled_bitmap(this, "funnel");
+// CATEGORY_ICON[L("Skirt and brim")] = create_scaled_bitmap(this, "skirt+brim");
+// CATEGORY_ICON[L("Speed > Acceleration")] = create_scaled_bitmap(this, "time");
+ CATEGORY_ICON[L("Advanced")] = create_scaled_bitmap(this, "wrench");
// ptSLA
- CATEGORY_ICON[L("Supports")] = create_scaled_bitmap(nullptr, "support"/*"sla_supports"*/);
- CATEGORY_ICON[L("Pad")] = create_scaled_bitmap(nullptr, "pad");
- CATEGORY_ICON[L("Hollowing")] = create_scaled_bitmap(nullptr, "hollowing");
+ CATEGORY_ICON[L("Supports")] = create_scaled_bitmap(this, "support"/*"sla_supports"*/);
+ CATEGORY_ICON[L("Pad")] = create_scaled_bitmap(this, "pad");
+ CATEGORY_ICON[L("Hollowing")] = create_scaled_bitmap(this, "hollowing");
}
// create control
@@ -265,7 +265,7 @@ void ObjectList::create_objects_ctrl()
// column ItemName(Icon+Text) of the view control:
// And Icon can be consisting of several bitmaps
- AppendColumn(new wxDataViewColumn(_(L("Name")), new BitmapTextRenderer(),
+ AppendColumn(new wxDataViewColumn(_(L("Name")), new BitmapTextRenderer(this),
colName, 20*em, wxALIGN_LEFT, wxDATAVIEW_COL_RESIZABLE));
// column PrintableProperty (Icon) of the view control:
@@ -559,10 +559,10 @@ void ObjectList::update_name_in_model(const wxDataViewItem& item) const
void ObjectList::init_icons()
{
- m_bmp_solidmesh = ScalableBitmap(nullptr, ADD_VOLUME_MENU_ITEMS[int(ModelVolumeType::MODEL_PART) ].second);
- m_bmp_modifiermesh = ScalableBitmap(nullptr, ADD_VOLUME_MENU_ITEMS[int(ModelVolumeType::PARAMETER_MODIFIER)].second);
- m_bmp_support_enforcer = ScalableBitmap(nullptr, ADD_VOLUME_MENU_ITEMS[int(ModelVolumeType::SUPPORT_ENFORCER) ].second);
- m_bmp_support_blocker = ScalableBitmap(nullptr, ADD_VOLUME_MENU_ITEMS[int(ModelVolumeType::SUPPORT_BLOCKER) ].second);
+ m_bmp_solidmesh = ScalableBitmap(this, ADD_VOLUME_MENU_ITEMS[int(ModelVolumeType::MODEL_PART) ].second);
+ m_bmp_modifiermesh = ScalableBitmap(this, ADD_VOLUME_MENU_ITEMS[int(ModelVolumeType::PARAMETER_MODIFIER)].second);
+ m_bmp_support_enforcer = ScalableBitmap(this, ADD_VOLUME_MENU_ITEMS[int(ModelVolumeType::SUPPORT_ENFORCER) ].second);
+ m_bmp_support_blocker = ScalableBitmap(this, ADD_VOLUME_MENU_ITEMS[int(ModelVolumeType::SUPPORT_BLOCKER) ].second);
m_bmp_vector.reserve(4); // bitmaps for different types of parts
m_bmp_vector.push_back(&m_bmp_solidmesh.bmp());
@@ -575,12 +575,12 @@ void ObjectList::init_icons()
m_objects_model->SetVolumeBitmaps(m_bmp_vector);
// init icon for manifold warning
- m_bmp_manifold_warning = ScalableBitmap(nullptr, "exclamation");
+ m_bmp_manifold_warning = ScalableBitmap(this, "exclamation");
// Set warning bitmap for the model
m_objects_model->SetWarningBitmap(&m_bmp_manifold_warning.bmp());
// init bitmap for "Add Settings" context menu
- m_bmp_cog = ScalableBitmap(nullptr, "cog");
+ m_bmp_cog = ScalableBitmap(this, "cog");
}
void ObjectList::msw_rescale_icons()
@@ -1741,7 +1741,8 @@ void ObjectList::create_instance_popupmenu(wxMenu*menu)
void ObjectList::create_default_popupmenu(wxMenu*menu)
{
wxMenu* sub_menu = append_submenu_add_generic(menu, ModelVolumeType::INVALID);
- append_submenu(menu, sub_menu, wxID_ANY, _(L("Add Shape")), "", "add_part");
+ append_submenu(menu, sub_menu, wxID_ANY, _(L("Add Shape")), "", "add_part",
+ [](){return true;}, this);
}
wxMenu* ObjectList::create_settings_popupmenu(wxMenu *parent_menu)
diff --git a/src/slic3r/GUI/wxExtensions.cpp b/src/slic3r/GUI/wxExtensions.cpp
index 356dd458f..8e2bc1d97 100644
--- a/src/slic3r/GUI/wxExtensions.cpp
+++ b/src/slic3r/GUI/wxExtensions.cpp
@@ -584,7 +584,8 @@ void ObjectDataViewModelNode::init_container()
ObjectDataViewModelNode::ObjectDataViewModelNode(ObjectDataViewModelNode* parent, const ItemType type) :
m_parent(parent),
m_type(type),
- m_extruder(wxEmptyString)
+ m_extruder(wxEmptyString),
+ m_ctrl(parent->m_ctrl)
{
if (type == itSettings)
m_name = "Settings to modified";
@@ -599,7 +600,7 @@ ObjectDataViewModelNode::ObjectDataViewModelNode(ObjectDataViewModelNode* parent
}
else if (type == itLayerRoot)
{
- m_bmp = create_scaled_bitmap(nullptr, LAYER_ROOT_ICON); // FIXME: pass window ptr
+ m_bmp = create_scaled_bitmap(m_ctrl, LAYER_ROOT_ICON); // FIXME: pass window ptr
m_name = _(L("Layers"));
}
@@ -615,7 +616,8 @@ ObjectDataViewModelNode::ObjectDataViewModelNode(ObjectDataViewModelNode* parent
m_type(itLayer),
m_idx(idx),
m_layer_range(layer_range),
- m_extruder(extruder)
+ m_extruder(extruder),
+ m_ctrl(parent->m_ctrl)
{
const int children_cnt = parent->GetChildCount();
if (idx < 0)
@@ -628,7 +630,7 @@ ObjectDataViewModelNode::ObjectDataViewModelNode(ObjectDataViewModelNode* parent
}
const std::string label_range = (boost::format(" %.2f-%.2f ") % layer_range.first % layer_range.second).str();
m_name = _(L("Range")) + label_range + "(" + _(L("mm")) + ")";
- m_bmp = create_scaled_bitmap(nullptr, LAYER_ICON); // FIXME: pass window ptr
+ m_bmp = create_scaled_bitmap(m_ctrl, LAYER_ICON); // FIXME: pass window ptr
set_action_and_extruder_icons();
init_container();
@@ -647,7 +649,7 @@ void ObjectDataViewModelNode::set_action_and_extruder_icons()
{
m_action_icon_name = m_type & itObject ? "advanced_plus" :
m_type & (itVolume | itLayer) ? "cog" : /*m_type & itInstance*/ "set_separate_obj";
- m_action_icon = create_scaled_bitmap(nullptr, m_action_icon_name); // FIXME: pass window ptr
+ m_action_icon = create_scaled_bitmap(m_ctrl, m_action_icon_name); // FIXME: pass window ptr
if (m_type & itInstance)
return; // don't set colored bitmap for Instance
@@ -662,7 +664,7 @@ void ObjectDataViewModelNode::set_printable_icon(PrintIndicator printable)
{
m_printable = printable;
m_printable_icon = m_printable == piUndef ? m_empty_bmp :
- create_scaled_bitmap(nullptr, m_printable == piPrintable ? "eye_open.png" : "eye_closed.png");
+ create_scaled_bitmap(m_ctrl, m_printable == piPrintable ? "eye_open.png" : "eye_closed.png");
}
void ObjectDataViewModelNode::update_settings_digest_bitmaps()
@@ -707,10 +709,10 @@ bool ObjectDataViewModelNode::update_settings_digest(const std::vector<std::stri
void ObjectDataViewModelNode::msw_rescale()
{
if (!m_action_icon_name.empty())
- m_action_icon = create_scaled_bitmap(nullptr, m_action_icon_name);
+ m_action_icon = create_scaled_bitmap(m_ctrl, m_action_icon_name);
if (m_printable != piUndef)
- m_printable_icon = create_scaled_bitmap(nullptr, m_printable == piPrintable ? "eye_open.png" : "eye_closed.png");
+ m_printable_icon = create_scaled_bitmap(m_ctrl, m_printable == piPrintable ? "eye_open.png" : "eye_closed.png");
if (!m_opt_categories.empty())
update_settings_digest_bitmaps();
@@ -791,7 +793,7 @@ wxDataViewItem ObjectDataViewModel::Add(const wxString &name,
const bool has_errors/* = false*/)
{
const wxString extruder_str = extruder == 0 ? _(L("default")) : wxString::Format("%d", extruder);
- auto root = new ObjectDataViewModelNode(name, extruder_str);
+ auto root = new ObjectDataViewModelNode(name, extruder_str, m_ctrl);
// Add error icon if detected auto-repaire
if (has_errors)
root->m_bmp = *m_warning_bmp;
@@ -1987,10 +1989,9 @@ void ObjectDataViewModel::Rescale()
node->m_bmp = GetVolumeIcon(node->m_volume_type, node->m_bmp.GetWidth() != node->m_bmp.GetHeight());
break;
case itLayerRoot:
- node->m_bmp = create_scaled_bitmap(nullptr, LAYER_ROOT_ICON); // FIXME: pass window ptr
- break;
+ node->m_bmp = create_scaled_bitmap(m_ctrl, LAYER_ROOT_ICON);
case itLayer:
- node->m_bmp = create_scaled_bitmap(nullptr, LAYER_ICON); // FIXME: pass window ptr
+ node->m_bmp = create_scaled_bitmap(m_ctrl, LAYER_ICON);
break;
default: break;
}
@@ -2092,8 +2093,11 @@ bool BitmapTextRenderer::Render(wxRect rect, wxDC *dc, int state)
const wxBitmap& icon = m_value.GetBitmap();
if (icon.IsOk())
{
- dc->DrawBitmap(icon, rect.x, rect.y + (rect.height - icon.GetHeight()) / 2);
- xoffset = icon.GetWidth() + 4;
+ float sf = (float)1.0 / get_svg_scale_factor(m_parent);
+ wxSize icon_sz = icon.GetSize() * sf;
+
+ dc->DrawBitmap(icon, rect.x, rect.y + (rect.height - icon_sz.y) / 2);
+ xoffset = icon_sz.x + 4;
}
RenderText(m_value.GetText(), xoffset, rect, dc, state);
diff --git a/src/slic3r/GUI/wxExtensions.hpp b/src/slic3r/GUI/wxExtensions.hpp
index a6f8862ac..1ee42dc29 100644
--- a/src/slic3r/GUI/wxExtensions.hpp
+++ b/src/slic3r/GUI/wxExtensions.hpp
@@ -228,13 +228,18 @@ class ObjectDataViewModelNode
std::string m_action_icon_name = "";
Slic3r::ModelVolumeType m_volume_type;
+ // pointer to control (is needed to create scaled bitmaps)
+ wxDataViewCtrl* m_ctrl{ nullptr };
+
public:
- ObjectDataViewModelNode(const wxString &name,
- const wxString& extruder):
+ ObjectDataViewModelNode(const wxString& name,
+ const wxString& extruder,
+ wxDataViewCtrl* ctrl):
m_parent(NULL),
m_name(name),
m_type(itObject),
- m_extruder(extruder)
+ m_extruder(extruder),
+ m_ctrl(ctrl)
{
set_action_and_extruder_icons();
init_container();
@@ -249,7 +254,8 @@ public:
m_name (sub_obj_name),
m_type (itVolume),
m_idx (idx),
- m_extruder (extruder)
+ m_extruder (extruder),
+ m_ctrl (parent->m_ctrl)
{
m_bmp = bmp;
set_action_and_extruder_icons();
@@ -538,7 +544,8 @@ class BitmapTextRenderer : public wxDataViewCustomRenderer
#endif //ENABLE_NONCUSTOM_DATA_VIEW_RENDERING
{
public:
- BitmapTextRenderer(wxDataViewCellMode mode =
+ BitmapTextRenderer( wxWindow* parent,
+ wxDataViewCellMode mode =
#ifdef __WXOSX__
wxDATAVIEW_CELL_INERT
#else
@@ -549,7 +556,10 @@ public:
#if ENABLE_NONCUSTOM_DATA_VIEW_RENDERING
);
#else
- ) : wxDataViewCustomRenderer(wxT("DataViewBitmapText"), mode, align) {}
+ ) :
+ wxDataViewCustomRenderer(wxT("DataViewBitmapText"), mode, align),
+ m_parent(parent)
+ {}
#endif //ENABLE_NONCUSTOM_DATA_VIEW_RENDERING
bool SetValue(const wxVariant &value);
@@ -577,8 +587,9 @@ public:
bool WasCanceled() const { return m_was_unusable_symbol; }
private:
- DataViewBitmapText m_value;
- bool m_was_unusable_symbol {false};
+ DataViewBitmapText m_value;
+ bool m_was_unusable_symbol {false};
+ wxWindow* m_parent {nullptr};
};