RetroArch/menu/menu_displaylist.h

119 lines
3.2 KiB
C
Raw Normal View History

2015-05-11 09:11:23 +00:00
/* RetroArch - A frontend for libretro.
* Copyright (C) 2011-2015 - Daniel De Matteis
*
* RetroArch 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 Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* RetroArch 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.
*
* You should have received a copy of the GNU General Public License along with RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _MENU_DISPLAYLIST_H
#define _MENU_DISPLAYLIST_H
2015-05-12 08:20:31 +00:00
#include <stdint.h>
2015-05-13 14:18:43 +00:00
2015-05-12 08:20:31 +00:00
#include <retro_miscellaneous.h>
2015-05-13 14:18:43 +00:00
#include <file/file_list.h>
2015-06-02 18:26:27 +00:00
#include "menu_setting.h"
2015-05-11 09:11:23 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2015-05-12 08:35:37 +00:00
enum
{
DISPLAYLIST_NONE = 0,
2015-05-31 20:40:26 +00:00
DISPLAYLIST_INFO,
2015-05-18 01:25:45 +00:00
DISPLAYLIST_HELP,
2015-05-12 08:35:37 +00:00
DISPLAYLIST_MAIN_MENU,
2015-05-17 11:10:55 +00:00
DISPLAYLIST_GENERIC,
DISPLAYLIST_SETTINGS,
2015-05-12 23:53:32 +00:00
DISPLAYLIST_SETTINGS_ALL,
2015-05-13 10:52:29 +00:00
DISPLAYLIST_SETTINGS_SUBGROUP,
2015-05-12 10:51:41 +00:00
DISPLAYLIST_HORIZONTAL,
DISPLAYLIST_HORIZONTAL_CONTENT_ACTIONS,
DISPLAYLIST_HISTORY,
DISPLAYLIST_PLAYLIST_COLLECTION,
2015-05-12 10:37:42 +00:00
DISPLAYLIST_DEFAULT,
2015-05-12 09:06:04 +00:00
DISPLAYLIST_CORES,
DISPLAYLIST_CORES_SUPPORTED,
2015-06-07 21:26:29 +00:00
DISPLAYLIST_CORES_COLLECTION_SUPPORTED,
2015-05-12 13:56:49 +00:00
DISPLAYLIST_CORES_UPDATER,
2015-05-12 10:07:41 +00:00
DISPLAYLIST_CORES_DETECTED,
2015-05-12 14:24:10 +00:00
DISPLAYLIST_CORE_OPTIONS,
2015-05-12 23:31:58 +00:00
DISPLAYLIST_CORE_INFO,
DISPLAYLIST_PERFCOUNTER_SELECTION,
DISPLAYLIST_PERFCOUNTERS_CORE,
DISPLAYLIST_PERFCOUNTERS_FRONTEND,
DISPLAYLIST_SHADER_PASS,
DISPLAYLIST_SHADER_PRESET,
DISPLAYLIST_DATABASES,
DISPLAYLIST_DATABASE_CURSORS,
DISPLAYLIST_DATABASE_PLAYLISTS,
2015-05-12 13:04:20 +00:00
DISPLAYLIST_DATABASE_QUERY,
2015-05-13 11:45:53 +00:00
DISPLAYLIST_DATABASE_ENTRY,
2015-05-12 10:26:51 +00:00
DISPLAYLIST_AUDIO_FILTERS,
DISPLAYLIST_VIDEO_FILTERS,
DISPLAYLIST_CHEAT_FILES,
DISPLAYLIST_REMAP_FILES,
2015-05-12 10:32:24 +00:00
DISPLAYLIST_RECORD_CONFIG_FILES,
DISPLAYLIST_CONFIG_FILES,
DISPLAYLIST_CONTENT_HISTORY,
DISPLAYLIST_IMAGES,
2015-05-12 10:32:24 +00:00
DISPLAYLIST_FONTS,
DISPLAYLIST_OVERLAYS,
DISPLAYLIST_SHADER_PARAMETERS,
DISPLAYLIST_SHADER_PARAMETERS_PRESET,
2015-05-13 11:31:34 +00:00
DISPLAYLIST_SYSTEM_INFO,
2015-05-13 00:10:12 +00:00
DISPLAYLIST_OPTIONS,
2015-05-13 10:55:41 +00:00
DISPLAYLIST_OPTIONS_CHEATS,
2015-05-13 10:58:42 +00:00
DISPLAYLIST_OPTIONS_REMAPPINGS,
2015-05-13 00:14:06 +00:00
DISPLAYLIST_OPTIONS_MANAGEMENT,
2015-05-13 00:05:29 +00:00
DISPLAYLIST_OPTIONS_DISK,
2015-05-12 23:53:32 +00:00
DISPLAYLIST_OPTIONS_VIDEO,
2015-05-12 23:58:05 +00:00
DISPLAYLIST_OPTIONS_SHADERS,
2015-05-12 08:35:37 +00:00
};
2015-05-12 08:20:31 +00:00
typedef struct menu_displaylist_info
{
file_list_t *list;
file_list_t *menu_list;
2015-05-12 08:20:31 +00:00
char path[PATH_MAX_LENGTH];
2015-05-12 13:04:20 +00:00
char path_b[PATH_MAX_LENGTH];
char path_c[PATH_MAX_LENGTH];
2015-05-12 08:20:31 +00:00
char label[PATH_MAX_LENGTH];
2015-05-12 09:06:04 +00:00
char exts[PATH_MAX_LENGTH];
2015-05-12 08:20:31 +00:00
unsigned type;
2015-05-12 09:06:04 +00:00
unsigned type_default;
2015-05-17 11:10:55 +00:00
size_t directory_ptr;
2015-05-12 08:20:31 +00:00
unsigned flags;
2015-05-12 10:37:42 +00:00
rarch_setting_t *setting;
2015-05-12 08:20:31 +00:00
} menu_displaylist_info_t;
2015-05-12 08:45:37 +00:00
int menu_displaylist_push_list(menu_displaylist_info_t *info, unsigned type);
2015-05-12 08:35:37 +00:00
2015-05-11 09:11:23 +00:00
int menu_displaylist_push(file_list_t *list, file_list_t *menu_list);
/**
* menu_displaylist_init:
* @menu : Menu handle.
*
* Creates and initializes menu display list.
*
* Returns: true (1) if successful, otherwise false (0).
**/
bool menu_displaylist_init(void *data);
2015-05-11 09:11:23 +00:00
#ifdef __cplusplus
}
#endif
#endif