123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374 |
- /**
- * Marlin 3D Printer Firmware
- * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
- *
- * Based on Sprinter and grbl.
- * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- *
- */
-
- /**
- * draw_dialog.cpp
- */
-
- #include "../../../../inc/MarlinConfigPre.h"
-
- #if HAS_TFT_LVGL_UI
-
- #include "lv_conf.h"
- #include "draw_ui.h"
-
- //#include "../lvgl/src/lv_objx/lv_imgbtn.h"
- //#include "../lvgl/src/lv_objx/lv_img.h"
- //#include "../lvgl/src/lv_core/lv_disp.h"
- //#include "../lvgl/src/lv_core/lv_refr.h"
-
- #include "../../../../MarlinCore.h"
- #include "../../../../sd/cardreader.h"
- #include "../../../../gcode/queue.h"
- #include "../../../../module/temperature.h"
- #include "../../../../module/planner.h"
-
- #if ENABLED(POWER_LOSS_RECOVERY)
- #include "../../../../feature/powerloss.h"
- #endif
-
- #if ENABLED(PARK_HEAD_ON_PAUSE)
- #include "../../../../feature/pause.h"
- #endif
- #include "../../../../gcode/gcode.h"
-
- #include "pic_manager.h"
-
- static lv_obj_t * scr;
- extern uint8_t sel_id;
- extern uint8_t once_flag;
- extern uint8_t gcode_preview_over;
- uint8_t DialogType;
-
- static void btn_ok_event_cb(lv_obj_t * btn, lv_event_t event) {
- if (event == LV_EVENT_CLICKED) {
- // nothing to do
- }
- else if (event == LV_EVENT_RELEASED) {
- if (DialogType == DIALOG_TYPE_PRINT_FILE) {
- #if HAS_GCODE_PREVIEW
- preview_gcode_prehandle(list_file.file_name[sel_id]);
- #endif
- reset_print_time();
- start_print_time();
-
- uiCfg.print_state = WORKING;
- lv_clear_dialog();
- lv_draw_printing();
-
- #if ENABLED(SDSUPPORT)
- if (gcode_preview_over != 1) {
- char *cur_name;
- cur_name = strrchr(list_file.file_name[sel_id], '/');
-
- SdFile file, *curDir;
- card.endFilePrint();
- const char * const fname = card.diveToFile(true, curDir, cur_name);
- if (!fname) return;
- if (file.open(curDir, fname, O_READ)) {
- gCfgItems.curFilesize = file.fileSize();
- file.close();
- update_spi_flash();
- }
- card.openFileRead(cur_name);
- if (card.isFileOpen()) {
- feedrate_percentage = 100;
- //saved_feedrate_percentage = feedrate_percentage;
- planner.flow_percentage[0] = 100;
- planner.e_factor[0] = planner.flow_percentage[0] * 0.01f;
- #if EXTRUDERS == 2
- planner.flow_percentage[1] = 100;
- planner.e_factor[1] = planner.flow_percentage[1] * 0.01f;
- #endif
- card.startFileprint();
- #if ENABLED(POWER_LOSS_RECOVERY)
- recovery.prepare();
- #endif
- once_flag = 0;
- }
- }
- #endif
- }
- else if (DialogType == DIALOG_TYPE_STOP) {
- stop_print_time();
- lv_clear_dialog();
- lv_draw_ready_print();
-
- #if ENABLED(SDSUPPORT)
- //card.endFilePrint();
- //wait_for_heatup = false;
- uiCfg.print_state = IDLE;
- card.flag.abort_sd_printing = true;
- //queue.clear();
- //quickstop_stepper();
- //print_job_timer.stop();
- //thermalManager.disable_all_heaters();
-
- //#if ENABLED(POWER_LOSS_RECOVERY)
- // recovery.purge();
- //#endif
- //queue.enqueue_now_P(PSTR("G91\nG1 Z10\nG90\nG28 X0 Y0"));
- //queue.inject_P(PSTR("G91\nG1 Z10\nG90\nG28 X0 Y0\nM84\nM107"));
- #endif
- }
- else if (DialogType == DIALOG_TYPE_FINISH_PRINT) {
- clear_cur_ui();
- lv_draw_ready_print();
- }
- #if ENABLED(ADVANCED_PAUSE_FEATURE)
- else if (DialogType == DIALOG_PAUSE_MESSAGE_WAITING
- || DialogType == DIALOG_PAUSE_MESSAGE_INSERT
- || DialogType == DIALOG_PAUSE_MESSAGE_HEAT
- ) {
- wait_for_user = false;
- }
- else if (DialogType == DIALOG_PAUSE_MESSAGE_OPTION) {
- pause_menu_response = PAUSE_RESPONSE_EXTRUDE_MORE;
- }
- else if (DialogType == DIALOG_PAUSE_MESSAGE_RESUME) {
- clear_cur_ui();
- draw_return_ui();
- }
- #endif
- else if (DialogType == DIALOG_STORE_EEPROM_TIPS) {
- gcode.process_subcommands_now_P(PSTR("M500"));
- clear_cur_ui();
- draw_return_ui();
- }
- else if (DialogType == DIALOG_READ_EEPROM_TIPS) {
- gcode.process_subcommands_now_P(PSTR("M501"));
- clear_cur_ui();
- draw_return_ui();
- }
- else if (DialogType == DIALOG_REVERT_EEPROM_TIPS) {
- gcode.process_subcommands_now_P(PSTR("M502"));
- clear_cur_ui();
- draw_return_ui();
- }
- }
- }
-
- static void btn_cancel_event_cb(lv_obj_t * btn, lv_event_t event) {
- if (event == LV_EVENT_CLICKED) {
- // nothing to do
- }
- else if (event == LV_EVENT_RELEASED) {
- if (DialogType == DIALOG_PAUSE_MESSAGE_OPTION) {
- #if ENABLED(ADVANCED_PAUSE_FEATURE)
- pause_menu_response = PAUSE_RESPONSE_RESUME_PRINT;
- #endif
- }
- else {
- clear_cur_ui();
- draw_return_ui();
- }
- }
- }
-
- void lv_draw_dialog(uint8_t type) {
-
- if (disp_state_stack._disp_state[disp_state_stack._disp_index] != DIALOG_UI) {
- disp_state_stack._disp_index++;
- disp_state_stack._disp_state[disp_state_stack._disp_index] = DIALOG_UI;
- }
- disp_state = DIALOG_UI;
-
- DialogType = type;
-
- scr = lv_obj_create(NULL, NULL);
-
-
- lv_obj_set_style(scr, &tft_style_scr);
- lv_scr_load(scr);
- lv_obj_clean(scr);
-
- lv_obj_t * title = lv_label_create(scr, NULL);
- lv_obj_set_style(title, &tft_style_label_rel);
- lv_obj_set_pos(title, TITLE_XPOS, TITLE_YPOS);
- lv_label_set_text(title, creat_title_text());
-
- lv_refr_now(lv_refr_get_disp_refreshing());
-
- //LV_IMG_DECLARE(bmp_pic);
-
- static lv_style_t style_btn_rel; // A variable to store the released style
- lv_style_copy(&style_btn_rel, &lv_style_plain); // Initialize from a built-in style
- style_btn_rel.body.border.color = lv_color_hex3(0x269);
- style_btn_rel.body.border.width = 1;
- style_btn_rel.body.main_color = lv_color_hex3(0xADF);
- style_btn_rel.body.grad_color = lv_color_hex3(0x46B);
- style_btn_rel.body.shadow.width = 4;
- style_btn_rel.body.shadow.type = LV_SHADOW_BOTTOM;
- style_btn_rel.body.radius = LV_RADIUS_CIRCLE;
- style_btn_rel.text.color = lv_color_hex3(0xDEF);
- style_btn_rel.text.font = &TERN(HAS_SPI_FLASH_FONT, gb2312_puhui32, lv_font_roboto_22);
-
- static lv_style_t style_btn_pr; // A variable to store the pressed style
- lv_style_copy(&style_btn_pr, &style_btn_rel); // Initialize from the released style
- style_btn_pr.body.border.color = lv_color_hex3(0x46B);
- style_btn_pr.body.main_color = lv_color_hex3(0x8BD);
- style_btn_pr.body.grad_color = lv_color_hex3(0x24A);
- style_btn_pr.body.shadow.width = 2;
- style_btn_pr.text.color = lv_color_hex3(0xBCD);
- style_btn_pr.text.font = &TERN(HAS_SPI_FLASH_FONT, gb2312_puhui32, lv_font_roboto_22);
-
- lv_obj_t * labelDialog = lv_label_create(scr, NULL);
- lv_obj_set_style(labelDialog, &tft_style_label_rel);
-
- if (DialogType == DIALOG_TYPE_FINISH_PRINT || DialogType == DIALOG_PAUSE_MESSAGE_RESUME) {
- lv_obj_t * btnOk = lv_btn_create(scr, NULL); // Add a button the current screen
- lv_obj_set_pos(btnOk, BTN_OK_X + 90, BTN_OK_Y); // Set its position
- lv_obj_set_size(btnOk, 100, 50); // Set its size
- lv_obj_set_event_cb(btnOk, btn_ok_event_cb);
- lv_btn_set_style(btnOk, LV_BTN_STYLE_REL, &style_btn_rel); // Set the button's released style
- lv_btn_set_style(btnOk, LV_BTN_STYLE_PR, &style_btn_pr); // Set the button's pressed style
- lv_obj_t * labelOk = lv_label_create(btnOk, NULL); // Add a label to the button
- lv_label_set_text(labelOk, print_file_dialog_menu.confirm); // Set the labels text
- }
- else if (DialogType == DIALOG_PAUSE_MESSAGE_WAITING
- || DialogType == DIALOG_PAUSE_MESSAGE_INSERT
- || DialogType == DIALOG_PAUSE_MESSAGE_HEAT
- ) {
- lv_obj_t * btnOk = lv_btn_create(scr, NULL); // Add a button the current screen
- lv_obj_set_pos(btnOk, BTN_OK_X + 90, BTN_OK_Y); // Set its position
- lv_obj_set_size(btnOk, 100, 50); // Set its size
- lv_obj_set_event_cb(btnOk, btn_ok_event_cb);
- lv_btn_set_style(btnOk, LV_BTN_STYLE_REL, &style_btn_rel); // Set the button's released style
- lv_btn_set_style(btnOk, LV_BTN_STYLE_PR, &style_btn_pr); // Set the button's pressed style
- lv_obj_t * labelOk = lv_label_create(btnOk, NULL); // Add a label to the button
- lv_label_set_text(labelOk, print_file_dialog_menu.confirm); // Set the labels text
- }
- else if (DialogType == DIALOG_PAUSE_MESSAGE_PAUSING
- || DialogType == DIALOG_PAUSE_MESSAGE_CHANGING
- || DialogType == DIALOG_PAUSE_MESSAGE_UNLOAD
- || DialogType == DIALOG_PAUSE_MESSAGE_LOAD
- || DialogType == DIALOG_PAUSE_MESSAGE_PURGE
- || DialogType == DIALOG_PAUSE_MESSAGE_RESUME
- || DialogType == DIALOG_PAUSE_MESSAGE_HEATING
- ) {
- // nothing to do
- }
- else {
- lv_obj_t * btnOk = lv_btn_create(scr, NULL); // Add a button the current screen
- lv_obj_set_pos(btnOk, BTN_OK_X, BTN_OK_Y); // Set its position
- lv_obj_set_size(btnOk, 100, 50); // Set its size
- lv_obj_set_event_cb(btnOk, btn_ok_event_cb);
- lv_btn_set_style(btnOk, LV_BTN_STYLE_REL, &style_btn_rel); // Set the button's released style
- lv_btn_set_style(btnOk, LV_BTN_STYLE_PR, &style_btn_pr); // Set the button's pressed style
- lv_obj_t * labelOk = lv_label_create(btnOk, NULL); // Add a label to the button
-
- lv_obj_t * btnCancel = lv_btn_create(scr, NULL); // Add a button the current screen
- lv_obj_set_pos(btnCancel, BTN_CANCEL_X, BTN_CANCEL_Y); // Set its position
- lv_obj_set_size(btnCancel, 100, 50); // Set its size
- lv_obj_set_event_cb(btnCancel, btn_cancel_event_cb);
- lv_btn_set_style(btnCancel, LV_BTN_STYLE_REL, &style_btn_rel); // Set the button's released style
- lv_btn_set_style(btnCancel, LV_BTN_STYLE_PR, &style_btn_pr); // Set the button's pressed style
- lv_obj_t * labelCancel = lv_label_create(btnCancel, NULL); // Add a label to the button
-
- if (DialogType == DIALOG_PAUSE_MESSAGE_OPTION) {
- lv_label_set_text(labelOk, pause_msg_menu.purgeMore); // Set the labels text
- lv_label_set_text(labelCancel, pause_msg_menu.continuePrint);
- }
- else {
- lv_label_set_text(labelOk, print_file_dialog_menu.confirm); // Set the labels text
- lv_label_set_text(labelCancel, print_file_dialog_menu.cancle);
- }
- }
- if (DialogType == DIALOG_TYPE_PRINT_FILE) {
- lv_label_set_text(labelDialog, print_file_dialog_menu.print_file);
- lv_obj_align(labelDialog, NULL, LV_ALIGN_CENTER, 0, -20);
-
- lv_obj_t * labelFile = lv_label_create(scr, NULL);
- lv_obj_set_style(labelFile, &tft_style_label_rel);
-
- lv_label_set_text(labelFile, list_file.long_name[sel_id]);
- lv_obj_align(labelFile, NULL, LV_ALIGN_CENTER, 0, -60);
- }
- else if (DialogType == DIALOG_TYPE_STOP) {
- lv_label_set_text(labelDialog, print_file_dialog_menu.cancle_print);
- lv_obj_align(labelDialog, NULL, LV_ALIGN_CENTER, 0, -20);
- }
- else if (DialogType == DIALOG_TYPE_FINISH_PRINT) {
- lv_label_set_text(labelDialog, print_file_dialog_menu.print_finish);
- lv_obj_align(labelDialog, NULL, LV_ALIGN_CENTER, 0, -20);
- }
- else if (DialogType == DIALOG_PAUSE_MESSAGE_PAUSING) {
- lv_label_set_text(labelDialog, pause_msg_menu.pausing);
- lv_obj_align(labelDialog, NULL, LV_ALIGN_CENTER, 0, -20);
- }
- else if (DialogType == DIALOG_PAUSE_MESSAGE_CHANGING) {
- lv_label_set_text(labelDialog, pause_msg_menu.changing);
- lv_obj_align(labelDialog, NULL, LV_ALIGN_CENTER, 0, -20);
- }
- else if (DialogType == DIALOG_PAUSE_MESSAGE_UNLOAD) {
- lv_label_set_text(labelDialog, pause_msg_menu.unload);
- lv_obj_align(labelDialog, NULL, LV_ALIGN_CENTER, 0, -20);
- }
- else if (DialogType == DIALOG_PAUSE_MESSAGE_WAITING) {
- lv_label_set_text(labelDialog, pause_msg_menu.waiting);
- lv_obj_align(labelDialog, NULL, LV_ALIGN_CENTER, 0, -20);
- }
- else if (DialogType == DIALOG_PAUSE_MESSAGE_INSERT) {
- lv_label_set_text(labelDialog, pause_msg_menu.insert);
- lv_obj_align(labelDialog, NULL, LV_ALIGN_CENTER, 0, -20);
- }
- else if (DialogType == DIALOG_PAUSE_MESSAGE_LOAD) {
- lv_label_set_text(labelDialog, pause_msg_menu.load);
- lv_obj_align(labelDialog, NULL, LV_ALIGN_CENTER, 0, -20);
- }
- else if (DialogType == DIALOG_PAUSE_MESSAGE_PURGE) {
- lv_label_set_text(labelDialog, pause_msg_menu.purge);
- lv_obj_align(labelDialog, NULL, LV_ALIGN_CENTER, 0, -20);
- }
- else if (DialogType == DIALOG_PAUSE_MESSAGE_RESUME) {
- lv_label_set_text(labelDialog, pause_msg_menu.resume);
- lv_obj_align(labelDialog, NULL, LV_ALIGN_CENTER, 0, -20);
- }
- else if (DialogType == DIALOG_PAUSE_MESSAGE_HEAT) {
- lv_label_set_text(labelDialog, pause_msg_menu.heat);
- lv_obj_align(labelDialog, NULL, LV_ALIGN_CENTER, 0, -20);
- }
- else if (DialogType == DIALOG_PAUSE_MESSAGE_HEATING) {
- lv_label_set_text(labelDialog, pause_msg_menu.heating);
- lv_obj_align(labelDialog, NULL, LV_ALIGN_CENTER, 0, -20);
- }
- else if (DialogType == DIALOG_PAUSE_MESSAGE_OPTION) {
- lv_label_set_text(labelDialog, pause_msg_menu.option);
- lv_obj_align(labelDialog, NULL, LV_ALIGN_CENTER, 0, -20);
- }
- else if (DialogType == DIALOG_STORE_EEPROM_TIPS) {
- lv_label_set_text(labelDialog, eeprom_menu.storeTips);
- lv_obj_align(labelDialog, NULL, LV_ALIGN_CENTER, 0, -20);
- }
- else if (DialogType == DIALOG_READ_EEPROM_TIPS) {
- lv_label_set_text(labelDialog, eeprom_menu.readTips);
- lv_obj_align(labelDialog, NULL, LV_ALIGN_CENTER, 0, -20);
- }
- else if (DialogType == DIALOG_REVERT_EEPROM_TIPS) {
- lv_label_set_text(labelDialog, eeprom_menu.revertTips);
- lv_obj_align(labelDialog, NULL, LV_ALIGN_CENTER, 0, -20);
- }
- }
-
- void lv_clear_dialog() { lv_obj_del(scr); }
-
- #endif // HAS_TFT_LVGL_UI
|