blob: d656bb9e69244ecf8444bb002dc0bd765489326d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
// license:BSD-3-Clause
// copyright-holders:Nathan Woods
/***************************************************************************
ui/filemngr.h
MESS's clunky built-in file manager
***************************************************************************/
#ifndef MAME_FRONTEND_UI_FILEMNGR_H
#define MAME_FRONTEND_UI_FILEMNGR_H
#pragma once
#include "ui/menu.h"
namespace ui {
class menu_file_manager : public menu
{
public:
std::string current_directory;
std::string current_file;
device_image_interface *selected_device;
static void force_file_manager(mame_ui_manager &mui, render_container &container, const char *warnings);
menu_file_manager(mame_ui_manager &mui, render_container &container, const char *warnings);
virtual ~menu_file_manager();
protected:
virtual void custom_render(void *selectedref, float top, float bottom, float x, float y, float x2, float y2) override;
private:
virtual void populate(float &customtop, float &custombottom) override;
virtual void handle() override;
void fill_image_line(device_image_interface *img, std::string &instance, std::string &filename);
std::string m_warnings;
bool m_curr_selected;
};
} // namespace ui
#endif /* MAME_FRONTEND_UI_FILEMNGR_H */
|