Merge remote-tracking branch 'upstream/edge' into upstream-master
[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
7af0714f 11#include <string>
215e7f90 12#include <deque>
35089dc7
JM
13
14class Panel;
cee1bb2d 15
862fc625
JM
16class PanelScreen
17{
18public:
19 PanelScreen();
dedae247
JM
20 virtual ~PanelScreen();
21
862fc625
JM
22 virtual void on_refresh();
23 virtual void on_main_loop();
862fc625
JM
24 PanelScreen *set_parent(PanelScreen *passed_parent);
25 virtual void on_enter();
383c9c1c 26 virtual void on_exit(){};
862fc625
JM
27 // if you completely rewrite the screen do not clear it, this avoids flicker
28 void refresh_screen(bool clear);
29 void refresh_menu(bool clear);
ca6effd7 30 void refresh_menu(void) { refresh_menu(true); };
862fc625 31 virtual void display_menu_line(uint16_t line) = 0;
5ff3e912
JM
32 // default idle timeout for a screen, each screen can override this
33 virtual int idle_timeout_secs(){ return 10; }
862fc625 34
cee1bb2d 35 friend class Panel;
862fc625
JM
36protected:
37 void send_gcode(std::string g);
2fa50ca0 38 void send_gcode(const char *gm_code, char parameter, float value);
862fc625 39 void send_command(const char *gcstr);
58850714 40 static std::deque<std::string> command_queue;
cee1bb2d 41 PanelScreen *parent;
35089dc7
JM
42};
43
35089dc7 44#endif