Drag&Drop test on Linux and OSX

This commit is contained in:
YuSanka 2018-08-13 10:30:36 +02:00
parent 9df6804835
commit 73ba96381e
2 changed files with 64 additions and 0 deletions

View file

@ -7,6 +7,7 @@ class wxBoxSizer;
class wxString;
class wxArrayString;
class wxMenu;
class wxDataViewEvent;
namespace Slic3r {
class ModelObject;
@ -109,6 +110,10 @@ void update_rotation_values();
// update rotation value after "gizmos"
void update_rotation_value(const double angle, const std::string& axis);
void on_begin_drag(wxDataViewEvent &event);
void on_drop_possible(wxDataViewEvent &event);
void on_drop(wxDataViewEvent &event);
} //namespace GUI
} //namespace Slic3r
#endif //slic3r_GUI_ObjectParts_hpp_