2014-09-12 03:54:58 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2015-01-07 16:46:50 +00:00
|
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
2014-09-12 03:54:58 +00:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2015-02-14 00:51:28 +00:00
|
|
|
#ifndef _MENU_SETTING_H
|
|
|
|
#define _MENU_SETTING_H
|
2014-09-12 03:54:58 +00:00
|
|
|
|
2015-06-02 18:26:27 +00:00
|
|
|
#include <stdint.h>
|
2015-06-03 08:13:03 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <boolean.h>
|
|
|
|
|
2015-06-02 18:26:27 +00:00
|
|
|
#include <file/file_list.h>
|
|
|
|
#include <file/config_file.h>
|
|
|
|
#include <retro_miscellaneous.h>
|
2015-06-03 08:13:03 +00:00
|
|
|
#include "../command_event.h"
|
2015-06-02 18:26:27 +00:00
|
|
|
|
|
|
|
#define BINDFOR(s) (*(&(s))->value.keybind)
|
2014-09-12 03:54:58 +00:00
|
|
|
|
2014-10-12 18:22:33 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-06-03 08:13:03 +00:00
|
|
|
enum setting_type
|
|
|
|
{
|
|
|
|
ST_NONE = 0,
|
|
|
|
ST_ACTION,
|
|
|
|
ST_BOOL,
|
|
|
|
ST_INT,
|
|
|
|
ST_UINT,
|
|
|
|
ST_FLOAT,
|
|
|
|
ST_PATH,
|
|
|
|
ST_DIR,
|
|
|
|
ST_STRING,
|
|
|
|
ST_HEX,
|
|
|
|
ST_BIND,
|
|
|
|
ST_GROUP,
|
|
|
|
ST_SUB_GROUP,
|
|
|
|
ST_END_GROUP,
|
|
|
|
ST_END_SUB_GROUP
|
|
|
|
};
|
|
|
|
|
|
|
|
enum setting_flags
|
|
|
|
{
|
|
|
|
SD_FLAG_PATH_DIR = (1 << 0),
|
|
|
|
SD_FLAG_PATH_FILE = (1 << 1),
|
|
|
|
SD_FLAG_ALLOW_EMPTY = (1 << 2),
|
|
|
|
SD_FLAG_VALUE_DESC = (1 << 3),
|
|
|
|
SD_FLAG_HAS_RANGE = (1 << 4),
|
|
|
|
SD_FLAG_ALLOW_INPUT = (1 << 5),
|
|
|
|
SD_FLAG_IS_DRIVER = (1 << 6),
|
|
|
|
SD_FLAG_EXIT = (1 << 7),
|
|
|
|
SD_FLAG_CMD_APPLY_AUTO = (1 << 8),
|
|
|
|
SD_FLAG_IS_DEFERRED = (1 << 9),
|
|
|
|
SD_FLAG_BROWSER_ACTION = (1 << 10),
|
|
|
|
SD_FLAG_ADVANCED = (1 << 11)
|
|
|
|
};
|
|
|
|
|
|
|
|
enum setting_list_flags
|
|
|
|
{
|
|
|
|
SL_FLAG_MAIN_MENU = (1 << 0),
|
|
|
|
SL_FLAG_DRIVER_OPTIONS = (1 << 1),
|
|
|
|
SL_FLAG_CORE_OPTIONS = (1 << 2),
|
|
|
|
SL_FLAG_CONFIGURATION_OPTIONS = (1 << 3),
|
|
|
|
SL_FLAG_REWIND_OPTIONS = (1 << 4),
|
|
|
|
SL_FLAG_VIDEO_OPTIONS = (1 << 5),
|
|
|
|
SL_FLAG_SHADER_OPTIONS = (1 << 6),
|
|
|
|
SL_FLAG_FONT_OPTIONS = (1 << 7),
|
|
|
|
SL_FLAG_AUDIO_OPTIONS = (1 << 8),
|
|
|
|
SL_FLAG_INPUT_OPTIONS = (1 << 9),
|
|
|
|
SL_FLAG_OVERLAY_OPTIONS = (1 << 10),
|
|
|
|
SL_FLAG_OSK_OVERLAY_OPTIONS = (1 << 11),
|
|
|
|
SL_FLAG_MENU_OPTIONS = (1 << 12),
|
|
|
|
SL_FLAG_UI_OPTIONS = (1 << 13),
|
|
|
|
SL_FLAG_CORE_UPDATER_OPTIONS = (1 << 14),
|
|
|
|
SL_FLAG_NETPLAY_OPTIONS = (1 << 15),
|
|
|
|
SL_FLAG_USER_OPTIONS = (1 << 16),
|
|
|
|
SL_FLAG_DIRECTORY_OPTIONS = (1 << 17),
|
|
|
|
SL_FLAG_PRIVACY_OPTIONS = (1 << 18),
|
|
|
|
SL_FLAG_PLAYLIST_OPTIONS = (1 << 19),
|
|
|
|
SL_FLAG_ARCHIVE_OPTIONS = (1 << 20),
|
|
|
|
SL_FLAG_PATCH_OPTIONS = (1 << 21),
|
|
|
|
SL_FLAG_RECORDING_OPTIONS = (1 << 21),
|
|
|
|
SL_FLAG_FRAME_THROTTLE_OPTIONS= (1 << 22),
|
|
|
|
SL_FLAG_LOGGING_OPTIONS = (1 << 23),
|
|
|
|
SL_FLAG_SAVING_OPTIONS = (1 << 24),
|
|
|
|
SL_FLAG_ALL = (1 << 25),
|
|
|
|
};
|
|
|
|
|
|
|
|
#define SL_FLAG_ALL_SETTINGS (SL_FLAG_ALL - SL_FLAG_MAIN_MENU)
|
|
|
|
|
|
|
|
typedef void (*change_handler_t )(void *data);
|
|
|
|
typedef int (*action_toggle_handler_t )(void *data, unsigned action, bool wraparound);
|
|
|
|
typedef int (*action_up_or_down_handler_t )(void *data, unsigned action);
|
|
|
|
typedef int (*action_start_handler_t )(void *data);
|
|
|
|
typedef int (*action_iterate_handler_t )(unsigned action);
|
|
|
|
typedef int (*action_cancel_handler_t )(void *data, unsigned action);
|
|
|
|
typedef int (*action_ok_handler_t )(void *data, unsigned action);
|
|
|
|
typedef void (*get_string_representation_t )(void *data, char *s, size_t len);
|
|
|
|
|
|
|
|
typedef struct rarch_setting_info
|
|
|
|
{
|
|
|
|
int index;
|
|
|
|
int size;
|
|
|
|
} rarch_setting_info_t;
|
|
|
|
|
|
|
|
typedef struct rarch_setting_group_info
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
} rarch_setting_group_info_t;
|
|
|
|
|
|
|
|
typedef struct rarch_setting
|
|
|
|
{
|
|
|
|
enum setting_type type;
|
|
|
|
|
|
|
|
const char *name;
|
|
|
|
uint32_t size;
|
|
|
|
|
|
|
|
const char* short_description;
|
|
|
|
const char* group;
|
|
|
|
const char* subgroup;
|
|
|
|
|
|
|
|
uint32_t index;
|
|
|
|
uint32_t index_offset;
|
|
|
|
|
|
|
|
double min;
|
|
|
|
double max;
|
|
|
|
|
|
|
|
const char* values;
|
|
|
|
uint64_t flags;
|
|
|
|
|
|
|
|
change_handler_t change_handler;
|
|
|
|
change_handler_t deferred_handler;
|
|
|
|
change_handler_t read_handler;
|
|
|
|
action_start_handler_t action_start;
|
|
|
|
action_iterate_handler_t action_iterate;
|
|
|
|
action_toggle_handler_t action_toggle;
|
|
|
|
action_up_or_down_handler_t action_up_or_down;
|
|
|
|
action_cancel_handler_t action_cancel;
|
|
|
|
action_ok_handler_t action_ok;
|
|
|
|
get_string_representation_t get_string_representation;
|
|
|
|
|
|
|
|
union
|
|
|
|
{
|
|
|
|
bool boolean;
|
|
|
|
int integer;
|
|
|
|
unsigned int unsigned_integer;
|
|
|
|
float fraction;
|
|
|
|
const char* string;
|
|
|
|
const struct retro_keybind* keybind;
|
|
|
|
} default_value;
|
|
|
|
|
|
|
|
union
|
|
|
|
{
|
|
|
|
bool* boolean;
|
|
|
|
int* integer;
|
|
|
|
unsigned int* unsigned_integer;
|
|
|
|
float* fraction;
|
|
|
|
char* string;
|
|
|
|
struct retro_keybind* keybind;
|
|
|
|
} value;
|
|
|
|
|
|
|
|
union
|
|
|
|
{
|
|
|
|
bool boolean;
|
|
|
|
int integer;
|
|
|
|
unsigned int unsigned_integer;
|
|
|
|
float fraction;
|
|
|
|
} original_value;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
const char *empty_path;
|
|
|
|
} dir;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
enum event_command idx;
|
|
|
|
bool triggered;
|
|
|
|
} cmd_trigger;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
const char *off_label;
|
|
|
|
const char *on_label;
|
|
|
|
} boolean;
|
|
|
|
|
|
|
|
unsigned bind_type;
|
|
|
|
unsigned browser_selection_type;
|
|
|
|
float step;
|
|
|
|
const char *rounding_fraction;
|
|
|
|
bool enforce_minrange;
|
|
|
|
bool enforce_maxrange;
|
|
|
|
} rarch_setting_t;
|
|
|
|
|
2015-05-14 22:22:26 +00:00
|
|
|
void menu_setting_apply_deferred(void);
|
|
|
|
|
2015-05-12 11:14:04 +00:00
|
|
|
int menu_setting_set_flags(rarch_setting_t *setting);
|
|
|
|
|
2015-02-14 00:51:28 +00:00
|
|
|
int menu_setting_generic(rarch_setting_t *setting);
|
2015-01-25 05:17:55 +00:00
|
|
|
|
2015-02-14 00:51:28 +00:00
|
|
|
int menu_setting_handler(rarch_setting_t *setting, unsigned action);
|
2014-09-12 03:54:58 +00:00
|
|
|
|
2015-02-14 00:51:28 +00:00
|
|
|
int menu_setting_set(unsigned type, const char *label,
|
2015-03-09 03:10:57 +00:00
|
|
|
unsigned action, bool wraparound);
|
2014-09-24 05:56:47 +00:00
|
|
|
|
2015-02-14 00:51:28 +00:00
|
|
|
rarch_setting_t *menu_setting_find(const char *label);
|
2015-01-25 04:49:39 +00:00
|
|
|
|
2015-06-02 18:26:27 +00:00
|
|
|
/**
|
|
|
|
* setting_reset:
|
|
|
|
* @settings : pointer to settings
|
|
|
|
*
|
|
|
|
* Reset all settings to their default values.
|
|
|
|
**/
|
|
|
|
void setting_reset(rarch_setting_t* settings);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* setting_reset:
|
|
|
|
* @settings : pointer to settings
|
|
|
|
* @name : name of setting to search for
|
|
|
|
*
|
|
|
|
* Search for a setting with a specified name (@name).
|
|
|
|
*
|
|
|
|
* Returns: pointer to setting if found, NULL otherwise.
|
|
|
|
**/
|
|
|
|
rarch_setting_t* setting_find_setting(rarch_setting_t* settings,
|
|
|
|
const char* name);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* setting_set_with_string_representation:
|
|
|
|
* @setting : pointer to setting
|
|
|
|
* @value : value for the setting (string)
|
|
|
|
*
|
|
|
|
* Set a settings' value with a string. It is assumed
|
|
|
|
* that the string has been properly formatted.
|
|
|
|
**/
|
|
|
|
void setting_set_with_string_representation(
|
|
|
|
rarch_setting_t* setting, const char* value);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* setting_get_string_representation:
|
|
|
|
* @setting : pointer to setting
|
|
|
|
* @s : buffer to write contents of string representation to.
|
|
|
|
* @len : size of the buffer (@s)
|
|
|
|
*
|
|
|
|
* Get a setting value's string representation.
|
|
|
|
**/
|
|
|
|
void setting_get_string_representation(void *data, char *s, size_t len);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* setting_action_setting:
|
|
|
|
* @name : name of setting.
|
|
|
|
* @short_description : short description of setting.
|
|
|
|
* @group : group that the setting belongs to.
|
|
|
|
* @subgroup : subgroup that the setting belongs to.
|
|
|
|
*
|
|
|
|
* Initializes a setting of type ST_ACTION.
|
|
|
|
*
|
|
|
|
* Returns: setting of type ST_ACTION.
|
|
|
|
**/
|
|
|
|
rarch_setting_t setting_action_setting(const char *name,
|
|
|
|
const char *short_description,
|
|
|
|
const char *group,
|
|
|
|
const char *subgroup);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* setting_group_setting:
|
|
|
|
* @type : type of settting.
|
|
|
|
* @name : name of setting.
|
|
|
|
*
|
|
|
|
* Initializes a setting of type ST_GROUP.
|
|
|
|
*
|
|
|
|
* Returns: setting of type ST_GROUP.
|
|
|
|
**/
|
|
|
|
rarch_setting_t setting_group_setting(enum setting_type type,
|
|
|
|
const char* name);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* setting_subgroup_setting:
|
|
|
|
* @type : type of settting.
|
|
|
|
* @name : name of setting.
|
|
|
|
* @parent_name : group that the subgroup setting belongs to.
|
|
|
|
*
|
|
|
|
* Initializes a setting of type ST_SUBGROUP.
|
|
|
|
*
|
|
|
|
* Returns: setting of type ST_SUBGROUP.
|
|
|
|
**/
|
|
|
|
rarch_setting_t setting_subgroup_setting(enum setting_type type,
|
|
|
|
const char* name, const char *parent_name);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* setting_bool_setting:
|
|
|
|
* @name : name of setting.
|
|
|
|
* @short_description : Short description of setting.
|
|
|
|
* @target : Target of bool setting.
|
|
|
|
* @default_value : Default value (in bool format).
|
|
|
|
* @off : String value for "Off" label.
|
|
|
|
* @on : String value for "On" label.
|
|
|
|
* @group : Group that the setting belongs to.
|
|
|
|
* @subgroup : Subgroup that the setting belongs to.
|
|
|
|
* @change_handler : Function callback for change handler function pointer.
|
|
|
|
* @read_handler : Function callback for read handler function pointer.
|
|
|
|
*
|
|
|
|
* Initializes a setting of type ST_BOOL.
|
|
|
|
*
|
|
|
|
* Returns: setting of type ST_BOOL.
|
|
|
|
**/
|
|
|
|
rarch_setting_t setting_bool_setting(const char* name,
|
|
|
|
const char* description, bool* target, bool default_value,
|
|
|
|
const char *off, const char *on, const char * group,
|
|
|
|
const char *subgroup, change_handler_t change_handler,
|
|
|
|
change_handler_t read_handler);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* setting_int_setting:
|
|
|
|
* @name : name of setting.
|
|
|
|
* @short_description : Short description of setting.
|
|
|
|
* @target : Target of signed integer setting.
|
|
|
|
* @default_value : Default value (in signed integer format).
|
|
|
|
* @group : Group that the setting belongs to.
|
|
|
|
* @subgroup : Subgroup that the setting belongs to.
|
|
|
|
* @change_handler : Function callback for change handler function pointer.
|
|
|
|
* @read_handler : Function callback for read handler function pointer.
|
|
|
|
*
|
|
|
|
* Initializes a setting of type ST_INT.
|
|
|
|
*
|
|
|
|
* Returns: setting of type ST_INT.
|
|
|
|
**/
|
|
|
|
rarch_setting_t setting_int_setting(const char* name,
|
|
|
|
const char* description, int* target, int default_value,
|
|
|
|
const char *group, const char *subgroup,
|
|
|
|
change_handler_t change_handler, change_handler_t read_handler);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* setting_uint_setting:
|
|
|
|
* @name : name of setting.
|
|
|
|
* @short_description : Short description of setting.
|
|
|
|
* @target : Target of unsigned integer setting.
|
|
|
|
* @default_value : Default value (in unsigned integer format).
|
|
|
|
* @group : Group that the setting belongs to.
|
|
|
|
* @subgroup : Subgroup that the setting belongs to.
|
|
|
|
* @change_handler : Function callback for change handler function pointer.
|
|
|
|
* @read_handler : Function callback for read handler function pointer.
|
|
|
|
*
|
|
|
|
* Initializes a setting of type ST_UINT.
|
|
|
|
*
|
|
|
|
* Returns: setting of type ST_UINT.
|
|
|
|
**/
|
|
|
|
rarch_setting_t setting_uint_setting(const char* name,
|
|
|
|
const char* description, unsigned int* target,
|
|
|
|
unsigned int default_value, const char *group,
|
|
|
|
const char *subgroup, change_handler_t change_handler,
|
|
|
|
change_handler_t read_handler);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* setting_hex_setting:
|
|
|
|
* @name : name of setting.
|
|
|
|
* @short_description : Short description of setting.
|
|
|
|
* @target : Target of unsigned integer setting.
|
|
|
|
* @default_value : Default value (in unsigned integer format).
|
|
|
|
* @group : Group that the setting belongs to.
|
|
|
|
* @subgroup : Subgroup that the setting belongs to.
|
|
|
|
* @change_handler : Function callback for change handler function pointer.
|
|
|
|
* @read_handler : Function callback for read handler function pointer.
|
|
|
|
*
|
|
|
|
* Initializes a setting of type ST_HEX.
|
|
|
|
*
|
|
|
|
* Returns: setting of type ST_HEX.
|
|
|
|
**/
|
|
|
|
rarch_setting_t setting_hex_setting(const char* name,
|
|
|
|
const char* short_description, unsigned int* target,
|
|
|
|
unsigned int default_value, const char *group,
|
|
|
|
const char *subgroup, change_handler_t change_handler,
|
|
|
|
change_handler_t read_handler);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* setting_float_setting:
|
|
|
|
* @name : name of setting.
|
|
|
|
* @short_description : Short description of setting.
|
|
|
|
* @target : Target of float setting.
|
|
|
|
* @default_value : Default value (in float).
|
|
|
|
* @rounding : Rounding (for float-to-string representation).
|
|
|
|
* @group : Group that the setting belongs to.
|
|
|
|
* @subgroup : Subgroup that the setting belongs to.
|
|
|
|
* @change_handler : Function callback for change handler function pointer.
|
|
|
|
* @read_handler : Function callback for read handler function pointer.
|
|
|
|
*
|
|
|
|
* Initializes a setting of type ST_FLOAT.
|
|
|
|
*
|
|
|
|
* Returns: setting of type ST_FLOAT.
|
|
|
|
**/
|
|
|
|
rarch_setting_t setting_float_setting(const char* name,
|
|
|
|
const char* description, float* target, float default_value,
|
|
|
|
const char *rounding, const char *group, const char *subgroup,
|
|
|
|
change_handler_t change_handler, change_handler_t read_handler);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* setting_string_setting:
|
|
|
|
* @type : type of setting.
|
|
|
|
* @name : name of setting.
|
|
|
|
* @short_description : Short description of setting.
|
|
|
|
* @target : Target of string setting.
|
|
|
|
* @size : Size of string setting.
|
|
|
|
* @default_value : Default value (in string format).
|
|
|
|
* @empty : TODO/FIXME: ???
|
|
|
|
* @group : Group that the setting belongs to.
|
|
|
|
* @subgroup : Subgroup that the setting belongs to.
|
|
|
|
* @change_handler : Function callback for change handler function pointer.
|
|
|
|
* @read_handler : Function callback for read handler function pointer.
|
|
|
|
*
|
|
|
|
* Initializes a string setting (of type @type).
|
|
|
|
*
|
|
|
|
* Returns: String setting of type @type.
|
|
|
|
**/
|
|
|
|
rarch_setting_t setting_string_setting(enum setting_type type,
|
|
|
|
const char* name, const char* description, char* target,
|
|
|
|
unsigned size, const char* default_value, const char *empty,
|
|
|
|
const char *group, const char *subgroup,
|
|
|
|
change_handler_t change_handler, change_handler_t read_handler);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* setting_bind_setting:
|
|
|
|
* @name : name of setting.
|
|
|
|
* @short_description : Short description of setting.
|
|
|
|
* @target : Target of bind setting.
|
|
|
|
* @idx : Index of bind setting.
|
|
|
|
* @idx_offset : Index offset of bind setting.
|
|
|
|
* @default_value : Default value (in bind format).
|
|
|
|
* @group : Group that the setting belongs to.
|
|
|
|
* @subgroup : Subgroup that the setting belongs to.
|
|
|
|
*
|
|
|
|
* Initializes a setting of type ST_BIND.
|
|
|
|
*
|
|
|
|
* Returns: setting of type ST_BIND.
|
|
|
|
**/
|
|
|
|
rarch_setting_t setting_bind_setting(const char* name,
|
|
|
|
const char* description, struct retro_keybind* target, uint32_t idx,
|
|
|
|
uint32_t idx_offset,
|
|
|
|
const struct retro_keybind* default_value, const char *group,
|
|
|
|
const char *subgroup);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* setting_string_setting_options:
|
|
|
|
* @type : type of settting.
|
|
|
|
* @name : name of setting.
|
|
|
|
* @short_description : Short description of setting.
|
|
|
|
* @target : Target of bind setting.
|
|
|
|
* @size : Size of string setting.
|
|
|
|
* @default_value : Default value.
|
|
|
|
* @empty : N/A.
|
|
|
|
* @values : Values, separated by a delimiter.
|
|
|
|
* @group : Group that the setting belongs to.
|
|
|
|
* @subgroup : Subgroup that the setting belongs to.
|
|
|
|
* @change_handler : Function callback for change handler function pointer.
|
|
|
|
* @read_handler : Function callback for read handler function pointer.
|
|
|
|
*
|
|
|
|
* Initializes a string options list setting.
|
|
|
|
*
|
|
|
|
* Returns: string option list setting.
|
|
|
|
**/
|
|
|
|
rarch_setting_t setting_string_setting_options(enum setting_type type,
|
|
|
|
const char* name, const char* short_description, char* target,
|
|
|
|
unsigned size, const char* default_value, const char *empty, const char *values,
|
|
|
|
const char *group, const char *subgroup, change_handler_t change_handler,
|
|
|
|
change_handler_t read_handler);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* setting_get_description:
|
|
|
|
* @label : identifier label of setting
|
|
|
|
* @s : output message
|
|
|
|
* @len : size of @s
|
|
|
|
*
|
|
|
|
* Writes a 'Help' description message to @s if there is
|
|
|
|
* one available based on the identifier label of the setting
|
|
|
|
* (@label).
|
|
|
|
*
|
|
|
|
* Returns: 0 (always for now). TODO: make it handle -1 as well.
|
|
|
|
**/
|
|
|
|
int setting_get_description(const char *label, char *s, size_t len);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* setting_get_label:
|
|
|
|
* @list : File list on which to perform the search
|
|
|
|
* @s : String for the type to be represented on-screen as
|
|
|
|
* a label.
|
|
|
|
* @len : Size of @s.
|
|
|
|
* @w : Width of the string (for text label representation
|
|
|
|
* purposes in the menu display driver).
|
|
|
|
* @type : Identifier of setting.
|
|
|
|
* @menu_label : Menu Label identifier of setting.
|
|
|
|
* @label : Label identifier of setting.
|
|
|
|
* @idx : Index identifier of setting.
|
|
|
|
*
|
|
|
|
* Get associated label of a setting.
|
|
|
|
**/
|
|
|
|
void setting_get_label(file_list_t *list, char *s,
|
|
|
|
size_t len, unsigned *w, unsigned type,
|
|
|
|
const char *menu_label, const char *label, unsigned idx);
|
|
|
|
|
2015-06-03 08:13:03 +00:00
|
|
|
void setting_realloc(rarch_setting_t *setting, unsigned mask);
|
2015-06-02 18:26:27 +00:00
|
|
|
|
|
|
|
bool setting_is_of_path_type(rarch_setting_t *setting);
|
|
|
|
|
|
|
|
bool setting_is_of_general_type(rarch_setting_t *setting);
|
|
|
|
|
|
|
|
bool setting_is_of_numeric_type(rarch_setting_t *setting);
|
|
|
|
|
|
|
|
bool setting_is_of_enum_type(rarch_setting_t *setting);
|
|
|
|
|
2014-10-12 18:22:33 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-09-12 03:54:58 +00:00
|
|
|
#endif
|