2018-10-04 14:43:10 +00:00
|
|
|
#ifndef slic3r_GUI_ObjectList_hpp_
|
|
|
|
#define slic3r_GUI_ObjectList_hpp_
|
|
|
|
|
2018-10-05 21:29:15 +00:00
|
|
|
#include <map>
|
2018-10-22 13:18:05 +00:00
|
|
|
#include <vector>
|
2018-11-13 13:17:35 +00:00
|
|
|
|
2018-12-06 16:00:46 +00:00
|
|
|
#include <wx/bitmap.h>
|
|
|
|
#include <wx/dataview.h>
|
|
|
|
#include <wx/menu.h>
|
|
|
|
|
2018-11-01 11:33:56 +00:00
|
|
|
#include "Event.hpp"
|
2018-11-13 13:17:35 +00:00
|
|
|
#include "wxExtensions.hpp"
|
2018-10-04 14:43:10 +00:00
|
|
|
|
|
|
|
class wxBoxSizer;
|
2018-12-06 16:00:46 +00:00
|
|
|
class wxMenuItem;
|
2018-10-04 14:43:10 +00:00
|
|
|
class PrusaObjectDataViewModel;
|
2019-01-25 12:16:32 +00:00
|
|
|
class PrusaMenu;
|
2018-10-04 14:43:10 +00:00
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
class ConfigOptionsGroup;
|
2018-10-05 21:29:15 +00:00
|
|
|
class DynamicPrintConfig;
|
|
|
|
class ModelObject;
|
|
|
|
class ModelVolume;
|
2019-02-22 11:12:10 +00:00
|
|
|
enum class ModelVolumeType : int;
|
2018-10-05 21:29:15 +00:00
|
|
|
|
2018-11-29 17:33:30 +00:00
|
|
|
// FIXME: broken build on mac os because of this is missing:
|
|
|
|
typedef std::vector<std::string> t_config_option_keys;
|
|
|
|
|
2019-01-28 11:13:53 +00:00
|
|
|
typedef std::map<std::string, std::vector<std::string>> FreqSettingsBundle;
|
|
|
|
|
|
|
|
// category -> vector ( option ; label )
|
|
|
|
typedef std::map< std::string, std::vector< std::pair<std::string, std::string> > > settings_menu_hierarchy;
|
|
|
|
|
2018-10-05 21:29:15 +00:00
|
|
|
namespace GUI {
|
2018-10-04 14:43:10 +00:00
|
|
|
|
2018-11-01 13:02:38 +00:00
|
|
|
wxDECLARE_EVENT(EVT_OBJ_LIST_OBJECT_SELECT, SimpleEvent);
|
2018-11-01 11:33:56 +00:00
|
|
|
|
2018-11-13 13:17:35 +00:00
|
|
|
struct ItemForDelete
|
|
|
|
{
|
|
|
|
ItemType type;
|
|
|
|
int obj_idx;
|
|
|
|
int sub_obj_idx;
|
2018-11-14 07:53:56 +00:00
|
|
|
|
|
|
|
ItemForDelete(ItemType type, int obj_idx, int sub_obj_idx)
|
|
|
|
: type(type), obj_idx(obj_idx), sub_obj_idx(sub_obj_idx)
|
|
|
|
{}
|
2018-12-03 11:13:18 +00:00
|
|
|
|
|
|
|
bool operator==(const ItemForDelete& r) const
|
|
|
|
{
|
|
|
|
return (type == r.type && obj_idx == r.obj_idx && sub_obj_idx == r.sub_obj_idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator<(const ItemForDelete& r) const
|
|
|
|
{
|
|
|
|
if (obj_idx != r.obj_idx)
|
|
|
|
return (obj_idx < r.obj_idx);
|
|
|
|
return (sub_obj_idx < r.sub_obj_idx);
|
|
|
|
}
|
2018-11-13 13:17:35 +00:00
|
|
|
};
|
|
|
|
|
2018-10-08 14:27:38 +00:00
|
|
|
class ObjectList : public wxDataViewCtrl
|
2018-10-04 14:43:10 +00:00
|
|
|
{
|
2018-12-12 07:40:10 +00:00
|
|
|
|
|
|
|
struct dragged_item_data
|
|
|
|
{
|
2019-01-22 15:40:10 +00:00
|
|
|
void init(const int obj_idx, const int subobj_idx, const ItemType type) {
|
2018-12-12 07:40:10 +00:00
|
|
|
m_obj_idx = obj_idx;
|
2019-01-23 15:01:37 +00:00
|
|
|
m_type = type;
|
|
|
|
if (m_type&itVolume)
|
|
|
|
m_vol_idx = subobj_idx;
|
|
|
|
else
|
|
|
|
m_inst_idxs.insert(subobj_idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
void init(const int obj_idx, const ItemType type) {
|
|
|
|
m_obj_idx = obj_idx;
|
2019-01-22 15:40:10 +00:00
|
|
|
m_type = type;
|
2018-12-12 07:40:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void clear() {
|
|
|
|
m_obj_idx = -1;
|
2019-01-23 15:01:37 +00:00
|
|
|
m_vol_idx = -1;
|
|
|
|
m_inst_idxs.clear();
|
2019-01-22 15:40:10 +00:00
|
|
|
m_type = itUndef;
|
2018-12-12 07:40:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int obj_idx() const { return m_obj_idx; }
|
2019-01-23 15:01:37 +00:00
|
|
|
int sub_obj_idx() const { return m_vol_idx; }
|
2019-01-22 15:40:10 +00:00
|
|
|
ItemType type() const { return m_type; }
|
2019-01-23 15:01:37 +00:00
|
|
|
std::set<int>& inst_idxs() { return m_inst_idxs; }
|
2018-12-12 07:40:10 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
int m_obj_idx = -1;
|
2019-01-23 15:01:37 +00:00
|
|
|
int m_vol_idx = -1;
|
|
|
|
std::set<int> m_inst_idxs{};
|
2019-01-22 15:40:10 +00:00
|
|
|
ItemType m_type = itUndef;
|
|
|
|
|
2018-12-12 07:40:10 +00:00
|
|
|
} m_dragged_data;
|
|
|
|
|
2018-10-05 21:29:15 +00:00
|
|
|
wxBoxSizer *m_sizer {nullptr};
|
2018-12-06 13:49:14 +00:00
|
|
|
wxWindow *m_parent {nullptr};
|
|
|
|
|
2018-10-16 09:08:37 +00:00
|
|
|
wxBitmap m_bmp_modifiermesh;
|
|
|
|
wxBitmap m_bmp_solidmesh;
|
2018-11-02 11:35:26 +00:00
|
|
|
wxBitmap m_bmp_support_enforcer;
|
|
|
|
wxBitmap m_bmp_support_blocker;
|
2018-10-16 09:08:37 +00:00
|
|
|
wxBitmap m_bmp_manifold_warning;
|
2018-10-04 14:43:10 +00:00
|
|
|
wxBitmap m_bmp_cog;
|
|
|
|
wxBitmap m_bmp_split;
|
|
|
|
|
2019-01-25 12:16:32 +00:00
|
|
|
PrusaMenu m_menu_object;
|
|
|
|
PrusaMenu m_menu_part;
|
|
|
|
PrusaMenu m_menu_sla_object;
|
|
|
|
PrusaMenu m_menu_instance;
|
2018-12-06 13:49:14 +00:00
|
|
|
wxMenuItem* m_menu_item_split { nullptr };
|
|
|
|
wxMenuItem* m_menu_item_split_part { nullptr };
|
|
|
|
wxMenuItem* m_menu_item_settings { nullptr };
|
2019-01-23 15:01:37 +00:00
|
|
|
wxMenuItem* m_menu_item_split_instances { nullptr };
|
2018-12-06 13:49:14 +00:00
|
|
|
|
2018-11-02 11:35:26 +00:00
|
|
|
std::vector<wxBitmap*> m_bmp_vector;
|
|
|
|
|
2018-10-04 14:43:10 +00:00
|
|
|
int m_selected_object_id = -1;
|
2018-10-05 21:29:15 +00:00
|
|
|
bool m_prevent_list_events = false; // We use this flag to avoid circular event handling Select()
|
|
|
|
// happens to fire a wxEVT_LIST_ITEM_SELECTED on OSX, whose event handler
|
|
|
|
// calls this method again and again and again
|
2018-12-10 16:00:28 +00:00
|
|
|
|
|
|
|
bool m_prevent_update_extruder_in_config = false; // We use this flag to avoid updating of the extruder value in config
|
|
|
|
// during updating of the extruder count.
|
|
|
|
|
2018-10-05 21:29:15 +00:00
|
|
|
bool m_parts_changed = false;
|
|
|
|
bool m_part_settings_changed = false;
|
2018-10-04 14:43:10 +00:00
|
|
|
|
2018-12-13 12:05:47 +00:00
|
|
|
int m_selected_row = 0;
|
|
|
|
|
2019-01-28 11:13:53 +00:00
|
|
|
#if 0
|
|
|
|
FreqSettingsBundle m_freq_settings_fff;
|
|
|
|
FreqSettingsBundle m_freq_settings_sla;
|
|
|
|
#endif
|
|
|
|
|
2018-10-04 14:43:10 +00:00
|
|
|
public:
|
|
|
|
ObjectList(wxWindow* parent);
|
2018-10-05 21:29:15 +00:00
|
|
|
~ObjectList();
|
|
|
|
|
|
|
|
|
|
|
|
std::map<std::string, wxBitmap> CATEGORY_ICON;
|
|
|
|
|
|
|
|
PrusaObjectDataViewModel *m_objects_model{ nullptr };
|
|
|
|
DynamicPrintConfig *m_config {nullptr};
|
|
|
|
|
2018-10-08 14:27:38 +00:00
|
|
|
std::vector<ModelObject*> *m_objects{ nullptr };
|
2018-10-05 21:29:15 +00:00
|
|
|
|
2018-10-04 14:43:10 +00:00
|
|
|
|
|
|
|
void create_objects_ctrl();
|
2019-01-30 09:05:54 +00:00
|
|
|
void create_popup_menus();
|
2018-10-04 14:43:10 +00:00
|
|
|
wxDataViewColumn* create_objects_list_extruder_column(int extruders_count);
|
|
|
|
void update_objects_list_extruder_column(int extruders_count);
|
2018-10-05 21:29:15 +00:00
|
|
|
// show/hide "Extruder" column for Objects List
|
2018-12-11 08:37:58 +00:00
|
|
|
void set_extruder_column_hidden(const bool hide) const;
|
2018-10-05 21:29:15 +00:00
|
|
|
// update extruder in current config
|
2018-12-11 08:37:58 +00:00
|
|
|
void update_extruder_in_config(const wxDataViewItem& item);
|
2018-12-12 13:35:18 +00:00
|
|
|
// update changed name in the object model
|
2019-01-30 10:35:37 +00:00
|
|
|
void update_name_in_model(const wxDataViewItem& item) const;
|
2018-12-10 16:00:28 +00:00
|
|
|
void update_extruder_values_for_items(const int max_extruder);
|
2018-10-05 21:29:15 +00:00
|
|
|
|
|
|
|
void init_icons();
|
2018-10-04 14:43:10 +00:00
|
|
|
|
|
|
|
void set_tooltip_for_item(const wxPoint& pt);
|
|
|
|
|
2018-10-11 13:57:09 +00:00
|
|
|
void selection_changed();
|
2018-10-05 21:29:15 +00:00
|
|
|
void show_context_menu();
|
2018-10-11 13:57:09 +00:00
|
|
|
void key_event(wxKeyEvent& event);
|
2018-10-05 21:29:15 +00:00
|
|
|
|
2018-12-07 16:50:48 +00:00
|
|
|
void get_settings_choice(const wxString& category_name);
|
2019-01-25 15:39:50 +00:00
|
|
|
void get_freq_settings_choice(const wxString& bundle_name);
|
|
|
|
void update_settings_item();
|
|
|
|
|
2019-02-22 11:12:10 +00:00
|
|
|
void append_menu_item_add_generic(wxMenuItem* menu, const ModelVolumeType type);
|
2019-01-25 12:16:32 +00:00
|
|
|
void append_menu_items_add_volume(wxMenu* menu);
|
2018-12-07 16:50:48 +00:00
|
|
|
wxMenuItem* append_menu_item_split(wxMenu* menu);
|
|
|
|
wxMenuItem* append_menu_item_settings(wxMenu* menu);
|
|
|
|
wxMenuItem* append_menu_item_change_type(wxMenu* menu);
|
2019-01-23 15:01:37 +00:00
|
|
|
wxMenuItem* append_menu_item_instance_to_object(wxMenu* menu);
|
2019-01-30 15:27:07 +00:00
|
|
|
void append_menu_item_rename(wxMenu* menu);
|
|
|
|
void append_menu_item_fix_through_netfabb(wxMenu* menu);
|
2018-12-06 13:49:14 +00:00
|
|
|
void create_object_popupmenu(wxMenu *menu);
|
2018-12-07 16:50:48 +00:00
|
|
|
void create_sla_object_popupmenu(wxMenu*menu);
|
|
|
|
void create_part_popupmenu(wxMenu*menu);
|
2019-01-23 15:01:37 +00:00
|
|
|
void create_instance_popupmenu(wxMenu*menu);
|
2018-12-07 16:50:48 +00:00
|
|
|
wxMenu* create_settings_popupmenu(wxMenu *parent_menu);
|
2019-01-25 12:16:32 +00:00
|
|
|
void create_freq_settings_popupmenu(wxMenu *parent_menu);
|
2018-10-05 21:29:15 +00:00
|
|
|
|
2018-11-29 14:00:23 +00:00
|
|
|
void update_opt_keys(t_config_option_keys& t_optopt_keys);
|
|
|
|
|
2019-02-22 11:12:10 +00:00
|
|
|
void load_subobject(ModelVolumeType type);
|
|
|
|
void load_part(ModelObject* model_object, wxArrayString& part_names, ModelVolumeType type);
|
|
|
|
void load_generic_subobject(const std::string& type_name, const ModelVolumeType type);
|
2018-11-13 13:17:35 +00:00
|
|
|
void del_object(const int obj_idx);
|
2018-10-12 10:00:37 +00:00
|
|
|
void del_subobject_item(wxDataViewItem& item);
|
2018-10-05 21:29:15 +00:00
|
|
|
void del_settings_from_config();
|
2018-10-16 09:08:37 +00:00
|
|
|
void del_instances_from_object(const int obj_idx);
|
|
|
|
bool del_subobject_from_object(const int obj_idx, const int idx, const int type);
|
2018-12-06 13:49:14 +00:00
|
|
|
void split();
|
|
|
|
bool get_volume_by_item(const wxDataViewItem& item, ModelVolume*& volume);
|
|
|
|
bool is_splittable();
|
2019-01-23 15:01:37 +00:00
|
|
|
bool selected_instances_of_same_object();
|
|
|
|
bool can_split_instances();
|
2018-10-05 21:29:15 +00:00
|
|
|
|
2018-10-04 14:43:10 +00:00
|
|
|
wxPoint get_mouse_position_in_control();
|
2018-10-31 11:56:08 +00:00
|
|
|
wxBoxSizer* get_sizer() {return m_sizer;}
|
2018-10-12 10:00:37 +00:00
|
|
|
int get_selected_obj_idx() const;
|
2018-10-31 11:56:08 +00:00
|
|
|
bool is_parts_changed() const { return m_parts_changed; }
|
|
|
|
bool is_part_settings_changed() const { return m_part_settings_changed; }
|
2018-10-31 14:41:27 +00:00
|
|
|
void part_settings_changed();
|
2018-10-05 21:29:15 +00:00
|
|
|
|
|
|
|
void parts_changed(int obj_idx);
|
|
|
|
void part_selection_changed();
|
|
|
|
|
|
|
|
// Add object to the list
|
2018-10-08 14:27:38 +00:00
|
|
|
void add_object_to_list(size_t obj_idx);
|
2018-10-05 21:29:15 +00:00
|
|
|
// Delete object from the list
|
|
|
|
void delete_object_from_list();
|
2018-10-12 10:00:37 +00:00
|
|
|
void delete_object_from_list(const size_t obj_idx);
|
|
|
|
void delete_volume_from_list(const size_t obj_idx, const size_t vol_idx);
|
2018-11-13 12:34:31 +00:00
|
|
|
void delete_instance_from_list(const size_t obj_idx, const size_t inst_idx);
|
2018-11-13 13:17:35 +00:00
|
|
|
void delete_from_model_and_list(const ItemType type, const int obj_idx, const int sub_obj_idx);
|
2018-11-14 07:53:56 +00:00
|
|
|
void delete_from_model_and_list(const std::vector<ItemForDelete>& items_for_delete);
|
2018-10-05 21:29:15 +00:00
|
|
|
// Delete all objects from the list
|
|
|
|
void delete_all_objects_from_list();
|
2018-10-18 08:40:26 +00:00
|
|
|
// Increase instances count
|
|
|
|
void increase_object_instances(const size_t obj_idx, const size_t num);
|
|
|
|
// Decrease instances count
|
|
|
|
void decrease_object_instances(const size_t obj_idx, const size_t num);
|
2018-10-11 13:57:09 +00:00
|
|
|
|
|
|
|
// #ys_FIXME_to_delete
|
2018-10-05 21:29:15 +00:00
|
|
|
// Unselect all objects in the list on c++ side
|
|
|
|
void unselect_objects();
|
|
|
|
// Select current object in the list on c++ side
|
|
|
|
void select_current_object(int idx);
|
|
|
|
// Select current volume in the list on c++ side
|
|
|
|
void select_current_volume(int idx, int vol_idx);
|
2018-10-11 13:57:09 +00:00
|
|
|
|
2018-10-05 21:29:15 +00:00
|
|
|
// Remove objects/sub-object from the list
|
|
|
|
void remove();
|
|
|
|
|
|
|
|
void init_objects();
|
2018-10-10 14:22:20 +00:00
|
|
|
bool multiple_selection() const ;
|
2018-10-11 13:57:09 +00:00
|
|
|
void update_selections();
|
|
|
|
void update_selections_on_canvas();
|
|
|
|
void select_item(const wxDataViewItem& item);
|
|
|
|
void select_items(const wxDataViewItemArray& sels);
|
2018-10-12 10:00:37 +00:00
|
|
|
void select_all();
|
2018-11-08 14:45:55 +00:00
|
|
|
void select_item_all_children();
|
2018-10-11 13:57:09 +00:00
|
|
|
// correct current selections to avoid of the possible conflicts
|
|
|
|
void fix_multiselection_conflicts();
|
2018-11-02 22:27:31 +00:00
|
|
|
|
|
|
|
ModelVolume* get_selected_model_volume();
|
|
|
|
void change_part_type();
|
2018-11-12 12:47:24 +00:00
|
|
|
|
|
|
|
void last_volume_is_deleted(const int obj_idx);
|
2018-11-29 11:33:04 +00:00
|
|
|
bool has_multi_part_objects();
|
2018-11-29 14:00:23 +00:00
|
|
|
void update_settings_items();
|
2019-01-25 09:34:32 +00:00
|
|
|
void update_object_menu();
|
2018-12-04 13:27:39 +00:00
|
|
|
|
2019-01-23 15:01:37 +00:00
|
|
|
void instances_to_separated_object(const int obj_idx, const std::set<int>& inst_idx);
|
|
|
|
void split_instances();
|
2019-01-30 10:35:37 +00:00
|
|
|
void rename_item();
|
2019-01-30 15:27:07 +00:00
|
|
|
void fix_through_netfabb() const;
|
2018-12-04 13:27:39 +00:00
|
|
|
private:
|
2018-12-11 08:37:58 +00:00
|
|
|
void OnChar(wxKeyEvent& event);
|
|
|
|
void OnContextMenu(wxDataViewEvent &event);
|
|
|
|
|
|
|
|
void OnBeginDrag(wxDataViewEvent &event);
|
|
|
|
void OnDropPossible(wxDataViewEvent &event);
|
|
|
|
void OnDrop(wxDataViewEvent &event);
|
2019-01-22 15:40:10 +00:00
|
|
|
bool can_drop(const wxDataViewItem& item) const ;
|
2018-12-11 08:37:58 +00:00
|
|
|
|
2018-12-10 12:39:56 +00:00
|
|
|
void ItemValueChanged(wxDataViewEvent &event);
|
2018-12-12 13:35:18 +00:00
|
|
|
void OnEditingDone(wxDataViewEvent &event);
|
2019-01-28 11:13:53 +00:00
|
|
|
|
|
|
|
std::vector<std::string> get_options(const bool is_part);
|
|
|
|
const std::vector<std::string>& get_options_for_bundle(const wxString& bundle_name);
|
|
|
|
void get_options_menu(settings_menu_hierarchy& settings_menu, const bool is_part);
|
2018-10-04 14:43:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}}
|
|
|
|
|
|
|
|
#endif //slic3r_GUI_ObjectList_hpp_
|