allow _ for panel custom menu comamnds that need spaces (like G0 X100 Y100 would...
[clinton/Smoothieware.git] / src / modules / utils / panel / PanelScreen.h
CommitLineData
862fc625 1/*
35089dc7
JM
2 This file is part of Smoothie (http://smoothieware.org/). The motion control part is heavily based on Grbl (https://github.com/simen/grbl).
3 Smoothie 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.
4 Smoothie 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.
862fc625 5 You should have received a copy of the GNU General Public License along with Smoothie. If not, see <http://www.gnu.org/licenses/>.
35089dc7
JM
6*/
7
8#ifndef PANELSCREEN_H
9#define PANELSCREEN_H
10
35089dc7
JM
11#include "Panel.h"
12
13class Panel;
862fc625
JM
14class PanelScreen
15{
16public:
17 PanelScreen();
18 virtual void on_refresh();
19 virtual void on_main_loop();
20 PanelScreen *set_panel(Panel *parent);
21 PanelScreen *set_parent(PanelScreen *passed_parent);
22 virtual void on_enter();
23 // if you completely rewrite the screen do not clear it, this avoids flicker
24 void refresh_screen(bool clear);
25 void refresh_menu(bool clear);
ca6effd7 26 void refresh_menu(void) { refresh_menu(true); };
862fc625 27 virtual void display_menu_line(uint16_t line) = 0;
5ff3e912
JM
28 // default idle timeout for a screen, each screen can override this
29 virtual int idle_timeout_secs(){ return 10; }
862fc625
JM
30 Panel *panel;
31 PanelScreen *parent;
32
33protected:
34 void send_gcode(std::string g);
35 void send_command(const char *gcstr);
35089dc7
JM
36};
37
35089dc7 38#endif