MainFrame.pm 30 KB

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