add on_exit to panelscreen
[clinton/Smoothieware.git] / src / modules / utils / panel / screens / FileScreen.h
1 /*
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.
5 You should have received a copy of the GNU General Public License along with Smoothie. If not, see <http://www.gnu.org/licenses/>.
6 */
7
8 #ifndef FILESCREEN_H
9 #define FILESCREEN_H
10
11 #include "PanelScreen.h"
12
13 #include <string>
14 using namespace std;
15
16 class FileScreen : public PanelScreen {
17 public:
18 FileScreen();
19 void on_enter();
20 void on_refresh();
21 void on_main_loop();
22 void enter_folder(std::string folder);
23 uint16_t count_folder_content(std::string folder);
24 void clicked_line(uint16_t line);
25 void display_menu_line(uint16_t line);
26 bool is_a_folder( string path );
27 string file_at(uint16_t line);
28
29 std::string current_folder;
30
31 private:
32 void play(string path);
33 bool start_play;
34 string play_path;
35 };
36
37
38
39
40
41
42 #endif