MainFrame.pm 29 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/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. # 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("Slic3r++ Releases"), L('Open the Slic3r++ releases page in your browser'), sub {
  302. Wx::LaunchDefaultBrowser('http://github.com/supermerill/slic3r/releases');
  303. });
  304. # my $versioncheck = $self->_append_menu_item($helpMenu, "Check for &Updates...", 'Check for new Slic3r versions', sub {
  305. # wxTheApp->check_version(1);
  306. # });
  307. # $versioncheck->Enable(wxTheApp->have_version_check);
  308. $self->_append_menu_item($helpMenu, L("Slic3r &Website"), L('Open the Slic3r website in your browser'), sub {
  309. Wx::LaunchDefaultBrowser('http://slic3r.org/');
  310. });
  311. $self->_append_menu_item($helpMenu, L("Slic3r &Manual"), L('Open the Slic3r manual in your browser'), sub {
  312. Wx::LaunchDefaultBrowser('http://manual.slic3r.org/');
  313. });
  314. $helpMenu->AppendSeparator();
  315. $self->_append_menu_item($helpMenu, L("System Info"), L('Show system information'), sub {
  316. wxTheApp->system_info;
  317. });
  318. $self->_append_menu_item($helpMenu, L("Show &Configuration Folder"), L('Show user configuration folder (datadir)'), sub {
  319. Slic3r::GUI::desktop_open_datadir_folder();
  320. });
  321. $self->_append_menu_item($helpMenu, L("Report an Issue"), L('Report an issue on the Slic3r++ github'), sub {
  322. Wx::LaunchDefaultBrowser('http://github.com/supermerill/slic3r/issues/new');
  323. });
  324. $self->_append_menu_item($helpMenu, L("&About Slic3r"), L('Show about dialog'), sub {
  325. Slic3r::GUI::about;
  326. });
  327. }
  328. # menubar
  329. # assign menubar to frame after appending items, otherwise special items
  330. # will not be handled correctly
  331. {
  332. my $menubar = Wx::MenuBar->new;
  333. $menubar->Append($fileMenu, L("&File"));
  334. $menubar->Append($self->{plater_menu}, L("&Plater")) if $self->{plater_menu};
  335. $menubar->Append($self->{object_menu}, L("&Object")) if $self->{object_menu};
  336. $menubar->Append($windowMenu, L("&Window"));
  337. $menubar->Append($self->{viewMenu}, L("&View")) if $self->{viewMenu};
  338. # Add additional menus from C++
  339. Slic3r::GUI::add_menus($menubar, $self->{preferences_event}, $self->{lang_ch_event});
  340. $menubar->Append($helpMenu, L("&Help"));
  341. $self->SetMenuBar($menubar);
  342. }
  343. }
  344. sub is_loaded {
  345. my ($self) = @_;
  346. return $self->{loaded};
  347. }
  348. # Selection of a 3D object changed on the platter.
  349. sub on_plater_selection_changed {
  350. my ($self, $have_selection) = @_;
  351. return if !defined $self->{object_menu};
  352. $self->{object_menu}->Enable($_->GetId, $have_selection)
  353. for $self->{object_menu}->GetMenuItems;
  354. }
  355. # To perform the "Quck Slice", "Quick Slice and Save As", "Repeat last Quick Slice" and "Slice to SVG".
  356. sub quick_slice {
  357. my ($self, %params) = @_;
  358. my $progress_dialog;
  359. eval {
  360. # validate configuration
  361. my $config = wxTheApp->{preset_bundle}->full_config();
  362. $config->validate;
  363. # select input file
  364. my $input_file;
  365. if (!$params{reslice}) {
  366. my $dialog = Wx::FileDialog->new($self, L('Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):'),
  367. wxTheApp->{app_config}->get_last_dir, "",
  368. &Slic3r::GUI::MODEL_WILDCARD, wxFD_OPEN | wxFD_FILE_MUST_EXIST);
  369. if ($dialog->ShowModal != wxID_OK) {
  370. $dialog->Destroy;
  371. return;
  372. }
  373. $input_file = $dialog->GetPaths;
  374. $dialog->Destroy;
  375. $qs_last_input_file = $input_file unless $params{export_svg};
  376. } else {
  377. if (!defined $qs_last_input_file) {
  378. Wx::MessageDialog->new($self, L("No previously sliced file."),
  379. L('Error'), wxICON_ERROR | wxOK)->ShowModal();
  380. return;
  381. }
  382. if (! -e $qs_last_input_file) {
  383. Wx::MessageDialog->new($self, L("Previously sliced file (").$qs_last_input_file.L(") not found."),
  384. L('File Not Found'), wxICON_ERROR | wxOK)->ShowModal();
  385. return;
  386. }
  387. $input_file = $qs_last_input_file;
  388. }
  389. my $input_file_basename = basename($input_file);
  390. wxTheApp->{app_config}->update_skein_dir(dirname($input_file));
  391. my $print_center;
  392. {
  393. my $bed_shape = Slic3r::Polygon->new_scale(@{$config->bed_shape});
  394. $print_center = Slic3r::Pointf->new_unscale(@{$bed_shape->bounding_box->center});
  395. }
  396. my $sprint = Slic3r::Print::Simple->new(
  397. print_center => $print_center,
  398. status_cb => sub {
  399. my ($percent, $message) = @_;
  400. $progress_dialog->Update($percent, "$message…");
  401. },
  402. );
  403. # keep model around
  404. my $model = Slic3r::Model->read_from_file($input_file);
  405. $sprint->apply_config($config);
  406. $sprint->set_model($model);
  407. # Copy the names of active presets into the placeholder parser.
  408. wxTheApp->{preset_bundle}->export_selections_pp($sprint->placeholder_parser);
  409. # select output file
  410. my $output_file;
  411. if ($params{reslice}) {
  412. $output_file = $qs_last_output_file if defined $qs_last_output_file;
  413. } elsif ($params{save_as}) {
  414. # The following line may die if the output_filename_format template substitution fails.
  415. $output_file = $sprint->output_filepath;
  416. $output_file =~ s/\.[gG][cC][oO][dD][eE]$/.svg/ if $params{export_svg};
  417. my $dlg = Wx::FileDialog->new($self, L('Save ') . ($params{export_svg} ? L('SVG') : L('G-code')) . L(' file as:'),
  418. wxTheApp->{app_config}->get_last_output_dir(dirname($output_file)),
  419. basename($output_file), $params{export_svg} ? &Slic3r::GUI::FILE_WILDCARDS->{svg} : &Slic3r::GUI::FILE_WILDCARDS->{gcode}, wxFD_SAVE | wxFD_OVERWRITE_PROMPT);
  420. if ($dlg->ShowModal != wxID_OK) {
  421. $dlg->Destroy;
  422. return;
  423. }
  424. $output_file = $dlg->GetPath;
  425. $qs_last_output_file = $output_file unless $params{export_svg};
  426. wxTheApp->{app_config}->update_last_output_dir(dirname($output_file));
  427. $dlg->Destroy;
  428. }
  429. # show processbar dialog
  430. $progress_dialog = Wx::ProgressDialog->new(L('Slicing…'), L("Processing ").$input_file_basename."…",
  431. 100, $self, 0);
  432. $progress_dialog->Pulse;
  433. {
  434. my @warnings = ();
  435. local $SIG{__WARN__} = sub { push @warnings, $_[0] };
  436. $sprint->output_file($output_file);
  437. if ($params{export_svg}) {
  438. $sprint->export_svg;
  439. } else {
  440. $sprint->export_gcode;
  441. }
  442. $sprint->status_cb(undef);
  443. Slic3r::GUI::warning_catcher($self)->($_) for @warnings;
  444. }
  445. $progress_dialog->Destroy;
  446. undef $progress_dialog;
  447. my $message = $input_file_basename.L(" was successfully sliced.");
  448. wxTheApp->notify($message);
  449. Wx::MessageDialog->new($self, $message, L('Slicing Done!'),
  450. wxOK | wxICON_INFORMATION)->ShowModal;
  451. };
  452. Slic3r::GUI::catch_error($self, sub { $progress_dialog->Destroy if $progress_dialog });
  453. }
  454. sub reslice_now {
  455. my ($self) = @_;
  456. $self->{plater}->reslice if $self->{plater};
  457. }
  458. sub repair_stl {
  459. my $self = shift;
  460. my $input_file;
  461. {
  462. my $dialog = Wx::FileDialog->new($self, L('Select the STL file to repair:'),
  463. wxTheApp->{app_config}->get_last_dir, "",
  464. &Slic3r::GUI::FILE_WILDCARDS->{stl}, wxFD_OPEN | wxFD_FILE_MUST_EXIST);
  465. if ($dialog->ShowModal != wxID_OK) {
  466. $dialog->Destroy;
  467. return;
  468. }
  469. $input_file = $dialog->GetPaths;
  470. $dialog->Destroy;
  471. }
  472. my $output_file = $input_file;
  473. {
  474. $output_file =~ s/\.[sS][tT][lL]$/_fixed.obj/;
  475. my $dlg = Wx::FileDialog->new($self, L("Save OBJ file (less prone to coordinate errors than STL) as:"), dirname($output_file),
  476. basename($output_file), &Slic3r::GUI::FILE_WILDCARDS->{obj}, wxFD_SAVE | wxFD_OVERWRITE_PROMPT);
  477. if ($dlg->ShowModal != wxID_OK) {
  478. $dlg->Destroy;
  479. return undef;
  480. }
  481. $output_file = $dlg->GetPath;
  482. $dlg->Destroy;
  483. }
  484. my $tmesh = Slic3r::TriangleMesh->new;
  485. $tmesh->ReadSTLFile($input_file);
  486. $tmesh->repair;
  487. $tmesh->WriteOBJFile($output_file);
  488. Slic3r::GUI::show_info($self, L("Your file was repaired."), L("Repair"));
  489. }
  490. sub export_config {
  491. my $self = shift;
  492. # Generate a cummulative configuration for the selected print, filaments and printer.
  493. my $config = wxTheApp->{preset_bundle}->full_config();
  494. # Validate the cummulative configuration.
  495. eval { $config->validate; };
  496. Slic3r::GUI::catch_error($self) and return;
  497. # Ask user for the file name for the config file.
  498. my $dlg = Wx::FileDialog->new($self, L('Save configuration as:'),
  499. $last_config ? dirname($last_config) : wxTheApp->{app_config}->get_last_dir,
  500. $last_config ? basename($last_config) : "config.ini",
  501. &Slic3r::GUI::FILE_WILDCARDS->{ini}, wxFD_SAVE | wxFD_OVERWRITE_PROMPT);
  502. my $file = ($dlg->ShowModal == wxID_OK) ? $dlg->GetPath : undef;
  503. $dlg->Destroy;
  504. if (defined $file) {
  505. wxTheApp->{app_config}->update_config_dir(dirname($file));
  506. $last_config = $file;
  507. $config->save($file);
  508. }
  509. }
  510. # Load a config file containing a Print, Filament & Printer preset.
  511. sub load_config_file {
  512. my ($self, $file) = @_;
  513. if (!$file) {
  514. return unless Slic3r::GUI::check_unsaved_changes;
  515. my $dlg = Wx::FileDialog->new($self, L('Select configuration to load:'),
  516. $last_config ? dirname($last_config) : wxTheApp->{app_config}->get_last_dir,
  517. "config.ini",
  518. 'INI files (*.ini, *.gcode)|*.ini;*.INI;*.gcode;*.g', wxFD_OPEN | wxFD_FILE_MUST_EXIST);
  519. return unless $dlg->ShowModal == wxID_OK;
  520. $file = $dlg->GetPaths;
  521. $dlg->Destroy;
  522. }
  523. eval { wxTheApp->{preset_bundle}->load_config_file($file); };
  524. # Dont proceed further if the config file cannot be loaded.
  525. return if Slic3r::GUI::catch_error($self);
  526. $_->load_current_preset for (values %{$self->{options_tabs}});
  527. wxTheApp->{app_config}->update_config_dir(dirname($file));
  528. $last_config = $file;
  529. }
  530. sub export_configbundle {
  531. my ($self) = @_;
  532. return unless Slic3r::GUI::check_unsaved_changes;
  533. # validate current configuration in case it's dirty
  534. eval { wxTheApp->{preset_bundle}->full_config->validate; };
  535. Slic3r::GUI::catch_error($self) and return;
  536. # Ask user for a file name.
  537. my $dlg = Wx::FileDialog->new($self, L('Save presets bundle as:'),
  538. $last_config ? dirname($last_config) : wxTheApp->{app_config}->get_last_dir,
  539. "Slic3r_config_bundle.ini",
  540. &Slic3r::GUI::FILE_WILDCARDS->{ini}, wxFD_SAVE | wxFD_OVERWRITE_PROMPT);
  541. my $file = ($dlg->ShowModal == wxID_OK) ? $dlg->GetPath : undef;
  542. $dlg->Destroy;
  543. if (defined $file) {
  544. # Export the config bundle.
  545. wxTheApp->{app_config}->update_config_dir(dirname($file));
  546. eval { wxTheApp->{preset_bundle}->export_configbundle($file); };
  547. Slic3r::GUI::catch_error($self) and return;
  548. }
  549. }
  550. # Loading a config bundle with an external file name used to be used
  551. # to auto-install a config bundle on a fresh user account,
  552. # but that behavior was not documented and likely buggy.
  553. sub load_configbundle {
  554. my ($self, $file, $reset_user_profile) = @_;
  555. return unless Slic3r::GUI::check_unsaved_changes;
  556. if (!$file) {
  557. my $dlg = Wx::FileDialog->new($self, L('Select configuration to load:'),
  558. $last_config ? dirname($last_config) : wxTheApp->{app_config}->get_last_dir,
  559. "config.ini",
  560. &Slic3r::GUI::FILE_WILDCARDS->{ini}, wxFD_OPEN | wxFD_FILE_MUST_EXIST);
  561. return unless $dlg->ShowModal == wxID_OK;
  562. $file = $dlg->GetPaths;
  563. $dlg->Destroy;
  564. }
  565. wxTheApp->{app_config}->update_config_dir(dirname($file));
  566. my $presets_imported = 0;
  567. eval { $presets_imported = wxTheApp->{preset_bundle}->load_configbundle($file); };
  568. Slic3r::GUI::catch_error($self) and return;
  569. # Load the currently selected preset into the GUI, update the preset selection box.
  570. foreach my $tab (values %{$self->{options_tabs}}) {
  571. $tab->load_current_preset;
  572. }
  573. my $message = sprintf L("%d presets successfully imported."), $presets_imported;
  574. Slic3r::GUI::show_info($self, $message);
  575. }
  576. # Load a provied DynamicConfig into the Print / Filament / Printer tabs, thus modifying the active preset.
  577. # Also update the platter with the new presets.
  578. sub load_config {
  579. my ($self, $config) = @_;
  580. $_->load_config($config) foreach values %{$self->{options_tabs}};
  581. $self->{plater}->on_config_change($config) if $self->{plater};
  582. }
  583. sub select_tab {
  584. my ($self, $tab) = @_;
  585. $self->{tabpanel}->SetSelection($tab);
  586. }
  587. # Set a camera direction, zoom to all objects.
  588. sub select_view {
  589. my ($self, $direction) = @_;
  590. if (! $self->{no_plater}) {
  591. $self->{plater}->select_view($direction);
  592. }
  593. }
  594. sub _append_menu_item {
  595. my ($self, $menu, $string, $description, $cb, $id, $icon) = @_;
  596. $id //= &Wx::NewId();
  597. my $item = $menu->Append($id, $string, $description);
  598. $self->_set_menu_item_icon($item, $icon);
  599. EVT_MENU($self, $id, $cb);
  600. return $item;
  601. }
  602. sub _set_menu_item_icon {
  603. my ($self, $menuItem, $icon) = @_;
  604. # SetBitmap was not available on OS X before Wx 0.9927
  605. if ($icon && $menuItem->can('SetBitmap')) {
  606. $menuItem->SetBitmap(Wx::Bitmap->new(Slic3r::var($icon), wxBITMAP_TYPE_PNG));
  607. }
  608. }
  609. # Called after the Preferences dialog is closed and the program settings are saved.
  610. # Update the UI based on the current preferences.
  611. sub update_ui_from_settings {
  612. my ($self) = @_;
  613. $self->{menu_item_reslice_now}->Enable(! wxTheApp->{app_config}->get("background_processing"));
  614. $self->{plater}->update_ui_from_settings if ($self->{plater});
  615. for my $tab_name (qw(print filament printer)) {
  616. $self->{options_tabs}{$tab_name}->update_ui_from_settings;
  617. }
  618. }
  619. 1;