MainFrame.pm 29 KB

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