MainFrame.pm 29 KB

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