forked from MarlinFirmware/Marlin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🚸 Improve CocoaPress Touch UI (MarlinFirmware#25446)
- Loading branch information
Showing
19 changed files
with
694 additions
and
206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
Marlin/src/lcd/extui/ftdi_eve_touch_ui/cocoa_press/confirm_start_print_dialog_box.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/************************************** | ||
* confirm_start_print_dialog_box.cpp * | ||
**************************************/ | ||
|
||
/**************************************************************************** | ||
* Written By Mark Pelletier 2017 - Aleph Objects, Inc. * | ||
* Written By Marcio Teixeira 2018 - Aleph Objects, Inc. * | ||
* * | ||
* 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. * | ||
* * | ||
* To view a copy of the GNU General Public License, go to the following * | ||
* location: <https://www.gnu.org/licenses/>. * | ||
****************************************************************************/ | ||
|
||
#include "../config.h" | ||
#include "../screens.h" | ||
|
||
#ifdef COCOA_CONFIRM_START_PRINT | ||
|
||
using namespace FTDI; | ||
using namespace Theme; | ||
using namespace ExtUI; | ||
|
||
void ConfirmStartPrintDialogBox::onRedraw(draw_mode_t) { | ||
FileList files; | ||
const char *filename = files.filename(); | ||
char buffer[strlen_P(GET_TEXT(MSG_START_PRINT_CONFIRMATION)) + strlen(filename) + 1]; | ||
sprintf_P(buffer, GET_TEXT(MSG_START_PRINT_CONFIRMATION), filename); | ||
drawMessage((const char *)buffer); | ||
drawYesNoButtons(); | ||
} | ||
|
||
bool ConfirmStartPrintDialogBox::onTouchEnd(uint8_t tag) { | ||
switch (tag) { | ||
case 1: { | ||
FileList files; | ||
printFile(files.shortFilename()); | ||
StatusScreen::setStatusMessage(GET_TEXT_F(MSG_PRINT_STARTING)); | ||
GOTO_SCREEN(StatusScreen); | ||
return true; | ||
} | ||
case 2: GOTO_PREVIOUS(); return true; | ||
default: return false; | ||
} | ||
} | ||
|
||
#endif // COCOA_CONFIRM_START_PRINT |
32 changes: 32 additions & 0 deletions
32
Marlin/src/lcd/extui/ftdi_eve_touch_ui/cocoa_press/confirm_start_print_dialog_box.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/************************************ | ||
* confirm_start_print_dialog_box.h * | ||
************************************/ | ||
|
||
/**************************************************************************** | ||
* Written By Mark Pelletier 2017 - Aleph Objects, Inc. * | ||
* Written By Marcio Teixeira 2018 - Aleph Objects, Inc. * | ||
* * | ||
* 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. * | ||
* * | ||
* To view a copy of the GNU General Public License, go to the following * | ||
* location: <https://www.gnu.org/licenses/>. * | ||
****************************************************************************/ | ||
|
||
#pragma once | ||
|
||
#define COCOA_CONFIRM_START_PRINT | ||
#define COCOA_CONFIRM_START_PRINT_CLASS ConfirmStartPrintDialogBox | ||
|
||
class ConfirmStartPrintDialogBox : public DialogBoxBaseClass, public UncachedScreen { | ||
public: | ||
static void onRedraw(draw_mode_t); | ||
static bool onTouchEnd(uint8_t); | ||
}; |
Oops, something went wrong.