2002-10-11 19:05:52 +08:00
|
|
|
/*****************************************************************************
|
|
|
|
* variables.h: variables handling
|
|
|
|
*****************************************************************************
|
|
|
|
* Copyright (C) 2002 VideoLAN
|
2003-05-05 06:42:18 +08:00
|
|
|
* $Id: variables.h,v 1.13 2003/05/04 22:42:14 gbazin Exp $
|
2002-10-11 19:05:52 +08:00
|
|
|
*
|
|
|
|
* Authors: Samuel Hocevar <sam@zoy.org>
|
|
|
|
*
|
|
|
|
* This program 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 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2002-10-17 03:39:42 +08:00
|
|
|
typedef struct callback_entry_t callback_entry_t;
|
2002-10-11 19:05:52 +08:00
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* vlc_value_t is the common union for variable values; variable_t is the
|
|
|
|
* structure describing a variable.
|
|
|
|
*****************************************************************************/
|
|
|
|
struct variable_t
|
|
|
|
{
|
2002-10-17 03:39:42 +08:00
|
|
|
/* The variable's exported value */
|
|
|
|
vlc_value_t val;
|
2002-10-11 19:05:52 +08:00
|
|
|
|
2002-10-17 03:39:42 +08:00
|
|
|
/* The variable unique name, (almost) unique hashed value, and type */
|
|
|
|
char * psz_name;
|
2002-11-11 22:39:12 +08:00
|
|
|
uint32_t i_hash;
|
2002-10-11 19:05:52 +08:00
|
|
|
int i_type;
|
|
|
|
|
2003-05-05 06:42:18 +08:00
|
|
|
/* The variable display name, mainly for use by the interfaces */
|
|
|
|
char * psz_text;
|
|
|
|
|
2002-10-29 04:57:02 +08:00
|
|
|
/* A pointer to a comparison function, a duplication function, and
|
|
|
|
* a deallocation function */
|
|
|
|
int ( * pf_cmp ) ( vlc_value_t, vlc_value_t );
|
|
|
|
void ( * pf_dup ) ( vlc_value_t * );
|
|
|
|
void ( * pf_free ) ( vlc_value_t * );
|
|
|
|
|
2002-10-17 21:15:31 +08:00
|
|
|
/* Creation count: we only destroy the variable if it reaches 0 */
|
2002-10-15 03:04:51 +08:00
|
|
|
int i_usage;
|
2002-10-17 03:39:42 +08:00
|
|
|
|
2002-10-29 04:57:02 +08:00
|
|
|
/* If the variable has min/max/step values */
|
2002-10-28 21:25:56 +08:00
|
|
|
vlc_value_t min, max, step;
|
|
|
|
|
2002-10-29 04:57:02 +08:00
|
|
|
/* If the variable is to be chosen in a list */
|
|
|
|
int i_default;
|
2002-12-15 03:34:07 +08:00
|
|
|
vlc_list_t choices;
|
2003-05-05 06:42:18 +08:00
|
|
|
vlc_list_t choices_text;
|
2002-10-28 21:25:56 +08:00
|
|
|
|
2002-10-17 21:15:31 +08:00
|
|
|
/* Set to TRUE if the variable is in a callback */
|
|
|
|
vlc_bool_t b_incallback;
|
|
|
|
|
|
|
|
/* Registered callbacks */
|
2002-10-17 03:39:42 +08:00
|
|
|
int i_entries;
|
|
|
|
callback_entry_t * p_entries;
|
2002-10-11 19:05:52 +08:00
|
|
|
};
|
|
|
|
|
2002-10-17 03:39:42 +08:00
|
|
|
/*****************************************************************************
|
|
|
|
* Variable types - probably very incomplete
|
|
|
|
*****************************************************************************/
|
2002-10-29 04:57:02 +08:00
|
|
|
#define VLC_VAR_TYPE 0x00ff
|
|
|
|
#define VLC_VAR_FLAGS 0xff00
|
|
|
|
|
|
|
|
/* Different types */
|
2002-12-07 23:25:27 +08:00
|
|
|
#define VLC_VAR_VOID 0x0010
|
|
|
|
#define VLC_VAR_BOOL 0x0020
|
|
|
|
#define VLC_VAR_INTEGER 0x0030
|
|
|
|
#define VLC_VAR_STRING 0x0040
|
|
|
|
#define VLC_VAR_MODULE 0x0041
|
|
|
|
#define VLC_VAR_FILE 0x0042
|
|
|
|
#define VLC_VAR_DIRECTORY 0x0043
|
2003-03-12 07:56:54 +08:00
|
|
|
#define VLC_VAR_VARIABLE 0x0044
|
2002-12-07 23:25:27 +08:00
|
|
|
#define VLC_VAR_FLOAT 0x0050
|
|
|
|
#define VLC_VAR_TIME 0x0060
|
|
|
|
#define VLC_VAR_ADDRESS 0x0070
|
2002-10-29 04:57:02 +08:00
|
|
|
#define VLC_VAR_MUTEX 0x0080
|
2003-05-05 06:42:18 +08:00
|
|
|
#define VLC_VAR_LIST 0x0090
|
2002-10-29 04:57:02 +08:00
|
|
|
|
|
|
|
/* Additive flags */
|
2002-12-07 23:25:27 +08:00
|
|
|
#define VLC_VAR_HASCHOICE 0x0100
|
2002-10-29 04:57:02 +08:00
|
|
|
#define VLC_VAR_HASMIN 0x0200
|
|
|
|
#define VLC_VAR_HASMAX 0x0400
|
|
|
|
#define VLC_VAR_HASSTEP 0x0800
|
2002-10-17 03:39:42 +08:00
|
|
|
|
2002-12-13 09:56:30 +08:00
|
|
|
#define VLC_VAR_ISLIST 0x1000
|
|
|
|
#define VLC_VAR_ISCOMMAND 0x2000
|
|
|
|
#define VLC_VAR_ISCONFIG 0x2000
|
2002-12-07 23:25:27 +08:00
|
|
|
|
2002-10-28 21:25:56 +08:00
|
|
|
/*****************************************************************************
|
|
|
|
* Variable actions
|
|
|
|
*****************************************************************************/
|
|
|
|
#define VLC_VAR_SETMIN 0x0010
|
|
|
|
#define VLC_VAR_SETMAX 0x0011
|
|
|
|
#define VLC_VAR_SETSTEP 0x0012
|
|
|
|
|
2003-03-12 07:56:54 +08:00
|
|
|
#define VLC_VAR_SETVALUE 0x0013
|
|
|
|
|
2003-05-05 06:42:18 +08:00
|
|
|
#define VLC_VAR_SETTEXT 0x0014
|
|
|
|
#define VLC_VAR_GETTEXT 0x0015
|
|
|
|
|
2002-10-29 04:57:02 +08:00
|
|
|
#define VLC_VAR_ADDCHOICE 0x0020
|
|
|
|
#define VLC_VAR_DELCHOICE 0x0021
|
2003-03-12 07:56:54 +08:00
|
|
|
#define VLC_VAR_CLEARCHOICES 0x0022
|
|
|
|
#define VLC_VAR_SETDEFAULT 0x0023
|
2003-05-05 06:42:18 +08:00
|
|
|
#define VLC_VAR_GETCHOICES 0x0024
|
|
|
|
#define VLC_VAR_FREECHOICES 0x0025
|
|
|
|
#define VLC_VAR_GETLIST 0x0026
|
|
|
|
#define VLC_VAR_FREELIST 0x0027
|
|
|
|
#define VLC_VAR_CHOICESCOUNT 0x0028
|
2002-10-28 21:25:56 +08:00
|
|
|
|
2002-10-11 19:05:52 +08:00
|
|
|
/*****************************************************************************
|
|
|
|
* Prototypes
|
|
|
|
*****************************************************************************/
|
2002-10-15 00:46:56 +08:00
|
|
|
VLC_EXPORT( int, __var_Create, ( vlc_object_t *, const char *, int ) );
|
|
|
|
VLC_EXPORT( int, __var_Destroy, ( vlc_object_t *, const char * ) );
|
2002-10-11 19:05:52 +08:00
|
|
|
|
2003-05-05 06:42:18 +08:00
|
|
|
VLC_EXPORT( int, __var_Change, ( vlc_object_t *, const char *, int, vlc_value_t *, vlc_value_t * ) );
|
2002-10-28 21:25:56 +08:00
|
|
|
|
2002-10-15 00:46:56 +08:00
|
|
|
VLC_EXPORT( int, __var_Type, ( vlc_object_t *, const char * ) );
|
2002-10-11 19:05:52 +08:00
|
|
|
VLC_EXPORT( int, __var_Set, ( vlc_object_t *, const char *, vlc_value_t ) );
|
|
|
|
VLC_EXPORT( int, __var_Get, ( vlc_object_t *, const char *, vlc_value_t * ) );
|
|
|
|
|
2002-10-17 03:39:42 +08:00
|
|
|
#define var_Create(a,b,c) __var_Create( VLC_OBJECT(a), b, c )
|
|
|
|
#define var_Destroy(a,b) __var_Destroy( VLC_OBJECT(a), b )
|
2002-10-11 19:05:52 +08:00
|
|
|
|
2003-05-05 06:42:18 +08:00
|
|
|
#define var_Change(a,b,c,d,e) __var_Change( VLC_OBJECT(a), b, c, d, e )
|
2002-10-28 21:25:56 +08:00
|
|
|
|
2002-10-17 03:39:42 +08:00
|
|
|
#define var_Type(a,b) __var_Type( VLC_OBJECT(a), b )
|
|
|
|
#define var_Set(a,b,c) __var_Set( VLC_OBJECT(a), b, c )
|
|
|
|
#define var_Get(a,b,c) __var_Get( VLC_OBJECT(a), b, c )
|
2002-10-11 19:05:52 +08:00
|
|
|
|
2002-10-17 03:39:42 +08:00
|
|
|
/*****************************************************************************
|
|
|
|
* Variable callbacks
|
|
|
|
*****************************************************************************
|
|
|
|
* int MyCallback( vlc_object_t *p_this,
|
|
|
|
* char const *psz_variable,
|
|
|
|
* vlc_value_t oldvalue,
|
|
|
|
* vlc_value_t newvalue,
|
|
|
|
* void *p_data);
|
|
|
|
*****************************************************************************/
|
|
|
|
VLC_EXPORT( int, __var_AddCallback, ( vlc_object_t *, const char *, vlc_callback_t, void * ) );
|
|
|
|
VLC_EXPORT( int, __var_DelCallback, ( vlc_object_t *, const char *, vlc_callback_t, void * ) );
|
2002-10-11 19:05:52 +08:00
|
|
|
|
2002-10-17 03:39:42 +08:00
|
|
|
#define var_AddCallback(a,b,c,d) __var_AddCallback( VLC_OBJECT(a), b, c, d )
|
|
|
|
#define var_DelCallback(a,b,c,d) __var_DelCallback( VLC_OBJECT(a), b, c, d )
|
2002-10-11 19:05:52 +08:00
|
|
|
|