MainFrame.pm 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680
  1. # The main frame, the parent of all.
  2. package Slic3r::GUI::MainFrame;
  3. use strict;
  4. use warnings;
  5. use utf8;
  6. use File::Basename qw(basename dirname);
  7. use FindBin;
  8. use List::Util qw(min first);
  9. use Slic3r::Geometry qw(X Y);
  10. use Wx qw(:frame :bitmap :id :misc :notebook :panel :sizer :menu :dialog :filedialog
  11. :font :icon wxTheApp);
  12. use Wx::Event qw(EVT_CLOSE EVT_COMMAND EVT_MENU EVT_NOTEBOOK_PAGE_CHANGED);
  13. use base 'Wx::Frame';
  14. use Wx::Locale gettext => 'L';
  15. our $qs_last_input_file;
  16. our $qs_last_output_file;
  17. our $last_config;
  18. # Events to be sent from a C++ Tab implementation:
  19. # 1) To inform about a change of a configuration value.
  20. our $VALUE_CHANGE_EVENT = Wx::NewEventType;
  21. # 2) To inform about a preset selection change or a "modified" status change.
  22. our $PRESETS_CHANGED_EVENT = Wx::NewEventType;
  23. sub new {
  24. my ($class, %params) = @_;
  25. my $self = $class->SUPER::new(undef, -1, $Slic3r::FORK_NAME . ' - ' . $Slic3r::VERSION, wxDefaultPosition, wxDefaultSize, wxDEFAULT_FRAME_STYLE);
  26. Slic3r::GUI::set_main_frame($self);
  27. if ($^O eq 'MSWin32') {
  28. # Load the icon either from the exe, or from the ico file.
  29. my $iconfile = Slic3r::decode_path($FindBin::Bin) . '\slic3r.exe';
  30. $iconfile = Slic3r::var("Slic3r.ico") unless -f $iconfile;
  31. $self->SetIcon(Wx::Icon->new($iconfile, wxBITMAP_TYPE_ICO));
  32. } else {
  33. $self->SetIcon(Wx::Icon->new(Slic3r::var("Slic3r_128px.png"), wxBITMAP_TYPE_PNG));
  34. }
  35. # store input params
  36. # If set, the "Controller" tab for the control of the printer over serial line and the serial port settings are hidden.
  37. $self->{no_controller} = $params{no_controller};
  38. $self->{no_plater} = $params{no_plater};
  39. $self->{loaded} = 0;
  40. $self->{lang_ch_event} = $params{lang_ch_event};
  41. $self->{preferences_event} = $params{preferences_event};
  42. # initialize tabpanel and menubar
  43. $self->_init_tabpanel;
  44. $self->_init_menubar;
  45. # set default tooltip timer in msec
  46. # SetAutoPop supposedly accepts long integers but some bug doesn't allow for larger values
  47. # (SetAutoPop is not available on GTK.)
  48. eval { Wx::ToolTip::SetAutoPop(32767) };
  49. # initialize status bar
  50. $self->{statusbar} = Slic3r::GUI::ProgressStatusBar->new($self, -1);
  51. $self->{statusbar}->SetStatusText(L("Version ").$Slic3r::VERSION.L(" - Remember to check for updates at http://github.com/prusa3d/slic3r/releases"));
  52. $self->SetStatusBar($self->{statusbar});
  53. $self->{loaded} = 1;
  54. # initialize layout
  55. {
  56. my $sizer = Wx::BoxSizer->new(wxVERTICAL);
  57. $sizer->Add($self->{tabpanel}, 1, wxEXPAND);
  58. $sizer->SetSizeHints($self);
  59. $self->SetSizer($sizer);
  60. $self->Fit;
  61. $self->SetMinSize([760, 490]);
  62. $self->SetSize($self->GetMinSize);
  63. wxTheApp->restore_window_pos($self, "main_frame");
  64. $self->Show;
  65. $self->Layout;
  66. }
  67. # declare events
  68. EVT_CLOSE($self, sub {
  69. my (undef, $event) = @_;
  70. if ($event->CanVeto && !Slic3r::GUI::check_unsaved_changes) {
  71. $event->Veto;
  72. return;
  73. }
  74. # save window size
  75. wxTheApp->save_window_pos($self, "main_frame");
  76. # Save the slic3r.ini. Usually the ini file is saved from "on idle" callback,
  77. # but in rare cases it may not have been called yet.
  78. wxTheApp->{app_config}->save;
  79. $self->{plater}->{print} = undef if($self->{plater});
  80. Slic3r::GUI::_3DScene::remove_all_canvases();
  81. # propagate event
  82. $event->Skip;
  83. });
  84. $self->update_ui_from_settings;
  85. return $self;
  86. }
  87. sub _init_tabpanel {
  88. my ($self) = @_;
  89. $self->{tabpanel} = my $panel = Wx::Notebook->new($self, -1, wxDefaultPosition, wxDefaultSize, wxNB_TOP | wxTAB_TRAVERSAL);
  90. Slic3r::GUI::set_tab_panel($panel);
  91. EVT_NOTEBOOK_PAGE_CHANGED($self, $self->{tabpanel}, sub {
  92. my $panel = $self->{tabpanel}->GetCurrentPage;
  93. $panel->OnActivate if $panel->can('OnActivate');
  94. for my $tab_name (qw(print filament printer)) {
  95. Slic3r::GUI::get_preset_tab("$tab_name")->OnActivate if ("$tab_name" eq $panel->GetName);
  96. }
  97. });
  98. if (!$self->{no_plater}) {
  99. $panel->AddPage($self->{plater} = Slic3r::GUI::Plater->new($panel), L("Plater"));
  100. if (!$self->{no_controller}) {
  101. $panel->AddPage($self->{controller} = Slic3r::GUI::Controller->new($panel), L("Controller"));
  102. }
  103. }
  104. #TODO this is an example of a Slic3r XS interface call to add a new preset editor page to the main view.
  105. # The following event is emited by the C++ Tab implementation on config value change.
  106. EVT_COMMAND($self, -1, $VALUE_CHANGE_EVENT, sub {
  107. my ($self, $event) = @_;
  108. my $str = $event->GetString;
  109. my ($opt_key, $name) = ($str =~ /(.*) (.*)/);
  110. #print "VALUE_CHANGE_EVENT: ", $opt_key, "\n";
  111. my $tab = Slic3r::GUI::get_preset_tab($name);
  112. my $config = $tab->get_config;
  113. if ($self->{plater}) {
  114. $self->{plater}->on_config_change($config); # propagate config change events to the plater
  115. if ($opt_key eq 'extruders_count'){
  116. my $value = $event->GetInt();
  117. $self->{plater}->on_extruders_change($value);
  118. }
  119. }
  120. # don't save while loading for the first time
  121. $self->config->save($Slic3r::GUI::autosave) if $Slic3r::GUI::autosave && $self->{loaded};
  122. });
  123. # The following event is emited by the C++ Tab implementation on preset selection,
  124. # or when the preset's "modified" status changes.
  125. EVT_COMMAND($self, -1, $PRESETS_CHANGED_EVENT, sub {
  126. my ($self, $event) = @_;
  127. my $tab_name = $event->GetString;
  128. my $tab = Slic3r::GUI::get_preset_tab($tab_name);
  129. if ($self->{plater}) {
  130. # Update preset combo boxes (Print settings, Filament, Printer) from their respective tabs.
  131. my $presets = $tab->get_presets;
  132. if (defined $presets){
  133. my $reload_dependent_tabs = $tab->get_dependent_tabs;
  134. $self->{plater}->update_presets($tab_name, $reload_dependent_tabs, $presets);
  135. $self->{plater}->{"selected_item_$tab_name"} = $tab->get_selected_preset_item;
  136. if ($tab_name eq 'printer') {
  137. # Printer selected at the Printer tab, update "compatible" marks at the print and filament selectors.
  138. for my $tab_name_other (qw(print filament)) {
  139. # If the printer tells us that the print or filament preset has been switched or invalidated,
  140. # refresh the print or filament tab page. Otherwise just refresh the combo box.
  141. my $update_action = ($reload_dependent_tabs && (first { $_ eq $tab_name_other } (@{$reload_dependent_tabs})))
  142. ? 'load_current_preset' : 'update_tab_ui';
  143. $self->{options_tabs}{$tab_name_other}->$update_action;
  144. }
  145. # Update the controller printers.
  146. $self->{controller}->update_presets($presets) if $self->{controller};
  147. }
  148. $self->{plater}->on_config_change($tab->get_config);
  149. }
  150. }
  151. });
  152. Slic3r::GUI::create_preset_tabs($self->{no_controller}, $VALUE_CHANGE_EVENT, $PRESETS_CHANGED_EVENT);
  153. $self->{options_tabs} = {};
  154. for my $tab_name (qw(print filament printer)) {
  155. $self->{options_tabs}{$tab_name} = Slic3r::GUI::get_preset_tab("$tab_name");
  156. }
  157. if ($self->{plater}) {
  158. $self->{plater}->on_select_preset(sub {
  159. my ($group, $name) = @_;
  160. $self->{options_tabs}{$group}->select_preset($name);
  161. });
  162. # load initial config
  163. my $full_config = wxTheApp->{preset_bundle}->full_config;
  164. $self->{plater}->on_config_change($full_config);
  165. # Show a correct number of filament fields.
  166. $self->{plater}->on_extruders_change(int(@{$full_config->nozzle_diameter}));
  167. }
  168. }
  169. sub _init_menubar {
  170. my ($self) = @_;
  171. # File menu
  172. my $fileMenu = Wx::Menu->new;
  173. {
  174. wxTheApp->append_menu_item($fileMenu, L("Open STL/OBJ/AMF/3MF…\tCtrl+O"), L('Open a model'), sub {
  175. $self->{plater}->add if $self->{plater};
  176. }, undef, undef); #'brick_add.png');
  177. $self->_append_menu_item($fileMenu, L("&Load Config…\tCtrl+L"), L('Load exported configuration file'), sub {
  178. $self->load_config_file;
  179. }, undef, 'plugin_add.png');
  180. $self->_append_menu_item($fileMenu, L("&Export Config…\tCtrl+E"), L('Export current configuration to file'), sub {
  181. $self->export_config;
  182. }, undef, 'plugin_go.png');
  183. $self->_append_menu_item($fileMenu, L("&Load Config Bundle…"), L('Load presets from a bundle'), sub {
  184. $self->load_configbundle;
  185. }, undef, 'lorry_add.png');
  186. $self->_append_menu_item($fileMenu, L("&Export Config Bundle…"), L('Export all presets to file'), sub {
  187. $self->export_configbundle;
  188. }, undef, 'lorry_go.png');
  189. $fileMenu->AppendSeparator();
  190. my $repeat;
  191. $self->_append_menu_item($fileMenu, L("Q&uick Slice…\tCtrl+U"), L('Slice a file into a G-code'), sub {
  192. wxTheApp->CallAfter(sub {
  193. $self->quick_slice;
  194. $repeat->Enable(defined $Slic3r::GUI::MainFrame::last_input_file);
  195. });
  196. }, undef, 'cog_go.png');
  197. $self->_append_menu_item($fileMenu, L("Quick Slice and Save &As…\tCtrl+Alt+U"), L('Slice a file into a G-code, save as'), sub {
  198. wxTheApp->CallAfter(sub {
  199. $self->quick_slice(save_as => 1);
  200. $repeat->Enable(defined $Slic3r::GUI::MainFrame::last_input_file);
  201. });
  202. }, undef, 'cog_go.png');
  203. $repeat = $self->_append_menu_item($fileMenu, L("&Repeat Last Quick Slice\tCtrl+Shift+U"), L('Repeat last quick slice'), sub {
  204. wxTheApp->CallAfter(sub {
  205. $self->quick_slice(reslice => 1);
  206. });
  207. }, undef, 'cog_go.png');
  208. $repeat->Enable(0);
  209. $fileMenu->AppendSeparator();
  210. $self->_append_menu_item($fileMenu, L("Slice to SV&G…\tCtrl+G"), L('Slice file to a multi-layer SVG'), sub {
  211. $self->quick_slice(save_as => 1, export_svg => 1);
  212. }, undef, 'shape_handles.png');
  213. $self->{menu_item_reslice_now} = $self->_append_menu_item(
  214. $fileMenu, L("(&Re)Slice Now\tCtrl+S"), L('Start new slicing process'),
  215. sub { $self->reslice_now; }, undef, 'shape_handles.png');
  216. $fileMenu->AppendSeparator();
  217. $self->_append_menu_item($fileMenu, L("Repair STL file…"), L('Automatically repair an STL file'), sub {
  218. $self->repair_stl;
  219. }, undef, 'wrench.png');
  220. $fileMenu->AppendSeparator();
  221. $self->_append_menu_item($fileMenu, L("&Quit"), L('Quit Slic3r'), sub {
  222. $self->Close(0);
  223. }, wxID_EXIT);
  224. }
  225. # Plater menu
  226. unless ($self->{no_plater}) {
  227. my $plater = $self->{plater};
  228. $self->{plater_menu} = Wx::Menu->new;
  229. $self->_append_menu_item($self->{plater_menu}, L("Export G-code..."), L('Export current plate as G-code'), sub {
  230. $plater->export_gcode;
  231. }, undef, 'cog_go.png');
  232. $self->_append_menu_item($self->{plater_menu}, L("Export plate as STL..."), L('Export current plate as STL'), sub {
  233. $plater->export_stl;
  234. }, undef, 'brick_go.png');
  235. $self->_append_menu_item($self->{plater_menu}, L("Export plate as AMF..."), L('Export current plate as AMF'), sub {
  236. $plater->export_amf;
  237. }, undef, 'brick_go.png');
  238. $self->_append_menu_item($self->{plater_menu}, L("Export plate as 3MF..."), L('Export current plate as 3MF'), sub {
  239. $plater->export_3mf;
  240. }, undef, 'brick_go.png');
  241. $self->{object_menu} = $self->{plater}->object_menu;
  242. $self->on_plater_selection_changed(0);
  243. }
  244. # Window menu
  245. my $windowMenu = Wx::Menu->new;
  246. {
  247. my $tab_offset = 0;
  248. if (!$self->{no_plater}) {
  249. $self->_append_menu_item($windowMenu, L("Select &Plater Tab\tCtrl+1"), L('Show the plater'), sub {
  250. $self->select_tab(0);
  251. }, undef, 'application_view_tile.png');
  252. $tab_offset += 1;
  253. }
  254. if (!$self->{no_controller}) {
  255. $self->_append_menu_item($windowMenu, L("Select &Controller Tab\tCtrl+T"), L('Show the printer controller'), sub {
  256. $self->select_tab(1);
  257. }, undef, 'printer_empty.png');
  258. $tab_offset += 1;
  259. }
  260. if ($tab_offset > 0) {
  261. $windowMenu->AppendSeparator();
  262. }
  263. $self->_append_menu_item($windowMenu, L("Select P&rint Settings Tab\tCtrl+2"), L('Show the print settings'), sub {
  264. $self->select_tab($tab_offset+0);
  265. }, undef, 'cog.png');
  266. $self->_append_menu_item($windowMenu, L("Select &Filament Settings Tab\tCtrl+3"), L('Show the filament settings'), sub {
  267. $self->select_tab($tab_offset+1);
  268. }, undef, 'spool.png');
  269. $self->_append_menu_item($windowMenu, L("Select Print&er Settings Tab\tCtrl+4"), L('Show the printer settings'), sub {
  270. $self->select_tab($tab_offset+2);
  271. }, undef, 'printer_empty.png');
  272. }
  273. # View menu
  274. if (!$self->{no_plater}) {
  275. $self->{viewMenu} = Wx::Menu->new;
  276. # \xA0 is a non-breaing space. It is entered here to spoil the automatic accelerators,
  277. # as the simple numeric accelerators spoil all numeric data entry.
  278. # The camera control accelerators are captured by 3DScene Perl module instead.
  279. my $accel = ($^O eq 'MSWin32') ? sub { $_[0] . "\t\xA0" . $_[1] } : sub { $_[0] };
  280. $self->_append_menu_item($self->{viewMenu}, $accel->(L('Iso'), '0'), L('Iso View') , sub { $self->select_view('iso' ); });
  281. $self->_append_menu_item($self->{viewMenu}, $accel->(L('Top'), '1'), L('Top View') , sub { $self->select_view('top' ); });
  282. $self->_append_menu_item($self->{viewMenu}, $accel->(L('Bottom'), '2'), L('Bottom View') , sub { $self->select_view('bottom' ); });
  283. $self->_append_menu_item($self->{viewMenu}, $accel->(L('Front'), '3'), L('Front View') , sub { $self->select_view('front' ); });
  284. $self->_append_menu_item($self->{viewMenu}, $accel->(L('Rear'), '4'), L('Rear View') , sub { $self->select_view('rear' ); });
  285. $self->_append_menu_item($self->{viewMenu}, $accel->(L('Left'), '5'), L('Left View') , sub { $self->select_view('left' ); });
  286. $self->_append_menu_item($self->{viewMenu}, $accel->(L('Right'), '6'), L('Right View') , sub { $self->select_view('right' ); });
  287. }
  288. # Help menu
  289. my $helpMenu = Wx::Menu->new;
  290. {
  291. $self->_append_menu_item($helpMenu, L("Prusa 3D Drivers"), L('Open the Prusa3D drivers download page in your browser'), sub {
  292. Wx::LaunchDefaultBrowser('http://www.prusa3d.com/drivers/');
  293. });
  294. $self->_append_menu_item($helpMenu, L("Prusa Edition Releases"), L('Open the Prusa Edition releases page in your browser'), sub {
  295. Wx::LaunchDefaultBrowser('http://github.com/prusa3d/slic3r/releases');
  296. });
  297. # my $versioncheck = $self->_append_menu_item($helpMenu, "Check for &Updates...", 'Check for new Slic3r versions', sub {
  298. # wxTheApp->check_version(1);
  299. # });
  300. # $versioncheck->Enable(wxTheApp->have_version_check);
  301. $self->_append_menu_item($helpMenu, L("Slic3r &Website"), L('Open the Slic3r website in your browser'), sub {
  302. Wx::LaunchDefaultBrowser('http://slic3r.org/');
  303. });
  304. $self->_append_menu_item($helpMenu, L("Slic3r &Manual"), L('Open the Slic3r manual in your browser'), sub {
  305. Wx::LaunchDefaultBrowser('http://manual.slic3r.org/');
  306. });
  307. $helpMenu->AppendSeparator();
  308. $self->_append_menu_item($helpMenu, L("System Info"), L('Show system information'), sub {
  309. wxTheApp->system_info;
  310. });
  311. $self->_append_menu_item($helpMenu, L("Show &Configuration Folder"), L('Show user configuration folder (datadir)'), sub {
  312. Slic3r::GUI::desktop_open_datadir_folder();
  313. });
  314. $self->_append_menu_item($helpMenu, L("Report an Issue"), L('Report an issue on the Slic3r Prusa Edition'), sub {
  315. Wx::LaunchDefaultBrowser('http://github.com/prusa3d/slic3r/issues/new');
  316. });
  317. $self->_append_menu_item($helpMenu, L("&About Slic3r"), L('Show about dialog'), sub {
  318. Slic3r::GUI::about;
  319. });
  320. }
  321. # menubar
  322. # assign menubar to frame after appending items, otherwise special items
  323. # will not be handled correctly
  324. {
  325. my $menubar = Wx::MenuBar->new;
  326. $menubar->Append($fileMenu, L("&File"));
  327. $menubar->Append($self->{plater_menu}, L("&Plater")) if $self->{plater_menu};
  328. $menubar->Append($self->{object_menu}, L("&Object")) if $self->{object_menu};
  329. $menubar->Append($windowMenu, L("&Window"));
  330. $menubar->Append($self->{viewMenu}, L("&View")) if $self->{viewMenu};
  331. # Add additional menus from C++
  332. Slic3r::GUI::add_menus($menubar, $self->{preferences_event}, $self->{lang_ch_event});
  333. $menubar->Append($helpMenu, L("&Help"));
  334. $self->SetMenuBar($menubar);
  335. }
  336. }
  337. sub is_loaded {
  338. my ($self) = @_;
  339. return $self->{loaded};
  340. }
  341. # Selection of a 3D object changed on the platter.
  342. sub on_plater_selection_changed {
  343. my ($self, $have_selection) = @_;
  344. return if !defined $self->{object_menu};
  345. $self->{object_menu}->Enable($_->GetId, $have_selection)
  346. for $self->{object_menu}->GetMenuItems;
  347. }
  348. # To perform the "Quck Slice", "Quick Slice and Save As", "Repeat last Quick Slice" and "Slice to SVG".
  349. sub quick_slice {
  350. my ($self, %params) = @_;
  351. my $progress_dialog;
  352. eval {
  353. # validate configuration
  354. my $config = wxTheApp->{preset_bundle}->full_config();
  355. $config->validate;
  356. # select input file
  357. my $input_file;
  358. if (!$params{reslice}) {
  359. my $dialog = Wx::FileDialog->new($self, L('Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):'),
  360. wxTheApp->{app_config}->get_last_dir, "",
  361. &Slic3r::GUI::MODEL_WILDCARD, wxFD_OPEN | wxFD_FILE_MUST_EXIST);
  362. if ($dialog->ShowModal != wxID_OK) {
  363. $dialog->Destroy;
  364. return;
  365. }
  366. $input_file = $dialog->GetPaths;
  367. $dialog->Destroy;
  368. $qs_last_input_file = $input_file unless $params{export_svg};
  369. } else {
  370. if (!defined $qs_last_input_file) {
  371. Wx::MessageDialog->new($self, L("No previously sliced file."),
  372. L('Error'), wxICON_ERROR | wxOK)->ShowModal();
  373. return;
  374. }
  375. if (! -e $qs_last_input_file) {
  376. Wx::MessageDialog->new($self, L("Previously sliced file (").$qs_last_input_file.L(") not found."),
  377. L('File Not Found'), wxICON_ERROR | wxOK)->ShowModal();
  378. return;
  379. }
  380. $input_file = $qs_last_input_file;
  381. }
  382. my $input_file_basename = basename($input_file);
  383. wxTheApp->{app_config}->update_skein_dir(dirname($input_file));
  384. my $print_center;
  385. {
  386. my $bed_shape = Slic3r::Polygon->new_scale(@{$config->bed_shape});
  387. $print_center = Slic3r::Pointf->new_unscale(@{$bed_shape->bounding_box->center});
  388. }
  389. my $sprint = Slic3r::Print::Simple->new(
  390. print_center => $print_center,
  391. status_cb => sub {
  392. my ($percent, $message) = @_;
  393. $progress_dialog->Update($percent, "$message…");
  394. },
  395. );
  396. # keep model around
  397. my $model = Slic3r::Model->read_from_file($input_file);
  398. $sprint->apply_config($config);
  399. $sprint->set_model($model);
  400. # Copy the names of active presets into the placeholder parser.
  401. wxTheApp->{preset_bundle}->export_selections_pp($sprint->placeholder_parser);
  402. # select output file
  403. my $output_file;
  404. if ($params{reslice}) {
  405. $output_file = $qs_last_output_file if defined $qs_last_output_file;
  406. } elsif ($params{save_as}) {
  407. # The following line may die if the output_filename_format template substitution fails.
  408. $output_file = $sprint->output_filepath;
  409. $output_file =~ s/\.[gG][cC][oO][dD][eE]$/.svg/ if $params{export_svg};
  410. my $dlg = Wx::FileDialog->new($self, L('Save ') . ($params{export_svg} ? L('SVG') : L('G-code')) . L(' file as:'),
  411. wxTheApp->{app_config}->get_last_output_dir(dirname($output_file)),
  412. basename($output_file), $params{export_svg} ? &Slic3r::GUI::FILE_WILDCARDS->{svg} : &Slic3r::GUI::FILE_WILDCARDS->{gcode}, wxFD_SAVE | wxFD_OVERWRITE_PROMPT);
  413. if ($dlg->ShowModal != wxID_OK) {
  414. $dlg->Destroy;
  415. return;
  416. }
  417. $output_file = $dlg->GetPath;
  418. $qs_last_output_file = $output_file unless $params{export_svg};
  419. wxTheApp->{app_config}->update_last_output_dir(dirname($output_file));
  420. $dlg->Destroy;
  421. }
  422. # show processbar dialog
  423. $progress_dialog = Wx::ProgressDialog->new(L('Slicing…'), L("Processing ").$input_file_basename."…",
  424. 100, $self, 0);
  425. $progress_dialog->Pulse;
  426. {
  427. my @warnings = ();
  428. local $SIG{__WARN__} = sub { push @warnings, $_[0] };
  429. $sprint->output_file($output_file);
  430. if ($params{export_svg}) {
  431. $sprint->export_svg;
  432. } else {
  433. $sprint->export_gcode;
  434. }
  435. $sprint->status_cb(undef);
  436. Slic3r::GUI::warning_catcher($self)->($_) for @warnings;
  437. }
  438. $progress_dialog->Destroy;
  439. undef $progress_dialog;
  440. my $message = $input_file_basename.L(" was successfully sliced.");
  441. wxTheApp->notify($message);
  442. Wx::MessageDialog->new($self, $message, L('Slicing Done!'),
  443. wxOK | wxICON_INFORMATION)->ShowModal;
  444. };
  445. Slic3r::GUI::catch_error($self, sub { $progress_dialog->Destroy if $progress_dialog });
  446. }
  447. sub reslice_now {
  448. my ($self) = @_;
  449. $self->{plater}->reslice if $self->{plater};
  450. }
  451. sub repair_stl {
  452. my $self = shift;
  453. my $input_file;
  454. {
  455. my $dialog = Wx::FileDialog->new($self, L('Select the STL file to repair:'),
  456. wxTheApp->{app_config}->get_last_dir, "",
  457. &Slic3r::GUI::FILE_WILDCARDS->{stl}, wxFD_OPEN | wxFD_FILE_MUST_EXIST);
  458. if ($dialog->ShowModal != wxID_OK) {
  459. $dialog->Destroy;
  460. return;
  461. }
  462. $input_file = $dialog->GetPaths;
  463. $dialog->Destroy;
  464. }
  465. my $output_file = $input_file;
  466. {
  467. $output_file =~ s/\.[sS][tT][lL]$/_fixed.obj/;
  468. my $dlg = Wx::FileDialog->new($self, L("Save OBJ file (less prone to coordinate errors than STL) as:"), dirname($output_file),
  469. basename($output_file), &Slic3r::GUI::FILE_WILDCARDS->{obj}, wxFD_SAVE | wxFD_OVERWRITE_PROMPT);
  470. if ($dlg->ShowModal != wxID_OK) {
  471. $dlg->Destroy;
  472. return undef;
  473. }
  474. $output_file = $dlg->GetPath;
  475. $dlg->Destroy;
  476. }
  477. my $tmesh = Slic3r::TriangleMesh->new;
  478. $tmesh->ReadSTLFile($input_file);
  479. $tmesh->repair;
  480. $tmesh->WriteOBJFile($output_file);
  481. Slic3r::GUI::show_info($self, L("Your file was repaired."), L("Repair"));
  482. }
  483. sub export_config {
  484. my $self = shift;
  485. # Generate a cummulative configuration for the selected print, filaments and printer.
  486. my $config = wxTheApp->{preset_bundle}->full_config();
  487. # Validate the cummulative configuration.
  488. eval { $config->validate; };
  489. Slic3r::GUI::catch_error($self) and return;
  490. # Ask user for the file name for the config file.
  491. my $dlg = Wx::FileDialog->new($self, L('Save configuration as:'),
  492. $last_config ? dirname($last_config) : wxTheApp->{app_config}->get_last_dir,
  493. $last_config ? basename($last_config) : "config.ini",
  494. &Slic3r::GUI::FILE_WILDCARDS->{ini}, wxFD_SAVE | wxFD_OVERWRITE_PROMPT);
  495. my $file = ($dlg->ShowModal == wxID_OK) ? $dlg->GetPath : undef;
  496. $dlg->Destroy;
  497. if (defined $file) {
  498. wxTheApp->{app_config}->update_config_dir(dirname($file));
  499. $last_config = $file;
  500. $config->save($file);
  501. }
  502. }
  503. # Load a config file containing a Print, Filament & Printer preset.
  504. sub load_config_file {
  505. my ($self, $file) = @_;
  506. if (!$file) {
  507. return unless Slic3r::GUI::check_unsaved_changes;
  508. my $dlg = Wx::FileDialog->new($self, L('Select configuration to load:'),
  509. $last_config ? dirname($last_config) : wxTheApp->{app_config}->get_last_dir,
  510. "config.ini",
  511. 'INI files (*.ini, *.gcode)|*.ini;*.INI;*.gcode;*.g', wxFD_OPEN | wxFD_FILE_MUST_EXIST);
  512. return unless $dlg->ShowModal == wxID_OK;
  513. $file = $dlg->GetPaths;
  514. $dlg->Destroy;
  515. }
  516. eval { wxTheApp->{preset_bundle}->load_config_file($file); };
  517. # Dont proceed further if the config file cannot be loaded.
  518. return if Slic3r::GUI::catch_error($self);
  519. $_->load_current_preset for (values %{$self->{options_tabs}});
  520. wxTheApp->{app_config}->update_config_dir(dirname($file));
  521. $last_config = $file;
  522. }
  523. sub export_configbundle {
  524. my ($self) = @_;
  525. return unless Slic3r::GUI::check_unsaved_changes;
  526. # validate current configuration in case it's dirty
  527. eval { wxTheApp->{preset_bundle}->full_config->validate; };
  528. Slic3r::GUI::catch_error($self) and return;
  529. # Ask user for a file name.
  530. my $dlg = Wx::FileDialog->new($self, L('Save presets bundle as:'),
  531. $last_config ? dirname($last_config) : wxTheApp->{app_config}->get_last_dir,
  532. "Slic3r_config_bundle.ini",
  533. &Slic3r::GUI::FILE_WILDCARDS->{ini}, wxFD_SAVE | wxFD_OVERWRITE_PROMPT);
  534. my $file = ($dlg->ShowModal == wxID_OK) ? $dlg->GetPath : undef;
  535. $dlg->Destroy;
  536. if (defined $file) {
  537. # Export the config bundle.
  538. wxTheApp->{app_config}->update_config_dir(dirname($file));
  539. eval { wxTheApp->{preset_bundle}->export_configbundle($file); };
  540. Slic3r::GUI::catch_error($self) and return;
  541. }
  542. }
  543. # Loading a config bundle with an external file name used to be used
  544. # to auto-install a config bundle on a fresh user account,
  545. # but that behavior was not documented and likely buggy.
  546. sub load_configbundle {
  547. my ($self, $file, $reset_user_profile) = @_;
  548. return unless Slic3r::GUI::check_unsaved_changes;
  549. if (!$file) {
  550. my $dlg = Wx::FileDialog->new($self, L('Select configuration to load:'),
  551. $last_config ? dirname($last_config) : wxTheApp->{app_config}->get_last_dir,
  552. "config.ini",
  553. &Slic3r::GUI::FILE_WILDCARDS->{ini}, wxFD_OPEN | wxFD_FILE_MUST_EXIST);
  554. return unless $dlg->ShowModal == wxID_OK;
  555. $file = $dlg->GetPaths;
  556. $dlg->Destroy;
  557. }
  558. wxTheApp->{app_config}->update_config_dir(dirname($file));
  559. my $presets_imported = 0;
  560. eval { $presets_imported = wxTheApp->{preset_bundle}->load_configbundle($file); };
  561. Slic3r::GUI::catch_error($self) and return;
  562. # Load the currently selected preset into the GUI, update the preset selection box.
  563. foreach my $tab (values %{$self->{options_tabs}}) {
  564. $tab->load_current_preset;
  565. }
  566. my $message = sprintf L("%d presets successfully imported."), $presets_imported;
  567. Slic3r::GUI::show_info($self, $message);
  568. }
  569. # Load a provied DynamicConfig into the Print / Filament / Printer tabs, thus modifying the active preset.
  570. # Also update the platter with the new presets.
  571. sub load_config {
  572. my ($self, $config) = @_;
  573. $_->load_config($config) foreach values %{$self->{options_tabs}};
  574. $self->{plater}->on_config_change($config) if $self->{plater};
  575. }
  576. sub select_tab {
  577. my ($self, $tab) = @_;
  578. $self->{tabpanel}->SetSelection($tab);
  579. }
  580. # Set a camera direction, zoom to all objects.
  581. sub select_view {
  582. my ($self, $direction) = @_;
  583. if (! $self->{no_plater}) {
  584. $self->{plater}->select_view($direction);
  585. }
  586. }
  587. sub _append_menu_item {
  588. my ($self, $menu, $string, $description, $cb, $id, $icon) = @_;
  589. $id //= &Wx::NewId();
  590. my $item = $menu->Append($id, $string, $description);
  591. $self->_set_menu_item_icon($item, $icon);
  592. EVT_MENU($self, $id, $cb);
  593. return $item;
  594. }
  595. sub _set_menu_item_icon {
  596. my ($self, $menuItem, $icon) = @_;
  597. # SetBitmap was not available on OS X before Wx 0.9927
  598. if ($icon && $menuItem->can('SetBitmap')) {
  599. $menuItem->SetBitmap(Wx::Bitmap->new(Slic3r::var($icon), wxBITMAP_TYPE_PNG));
  600. }
  601. }
  602. # Called after the Preferences dialog is closed and the program settings are saved.
  603. # Update the UI based on the current preferences.
  604. sub update_ui_from_settings {
  605. my ($self) = @_;
  606. $self->{menu_item_reslice_now}->Enable(! wxTheApp->{app_config}->get("background_processing"));
  607. $self->{plater}->update_ui_from_settings if ($self->{plater});
  608. for my $tab_name (qw(print filament printer)) {
  609. $self->{options_tabs}{$tab_name}->update_ui_from_settings;
  610. }
  611. }
  612. 1;