Qt4: main interface drops always-on-top mode when going fullscreen
[vlc/asuraparaju-public.git] / src / config / intf.c
blobfb04f20fd2376780959ac0ab000c6293a22a378d
1 /*****************************************************************************
2 * intf.c: interface configuration handling
3 *****************************************************************************
4 * Copyright (C) 2001-2007 the VideoLAN team
5 * $Id$
7 * Authors: Gildas Bazin <gbazin@videolan.org>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
28 #include <vlc_common.h>
30 #include <assert.h>
32 #undef config_AddIntf
33 /* Adds an extra interface to the configuration */
34 void config_AddIntf( vlc_object_t *p_this, const char *psz_intf )
36 assert( psz_intf );
38 char *psz_config, *psz_parser;
39 size_t i_len = strlen( psz_intf );
41 psz_config = psz_parser = config_GetPsz( p_this->p_libvlc, "control" );
42 while( psz_parser )
44 if( !strncmp( psz_intf, psz_parser, i_len ) )
46 free( psz_config );
47 return;
49 psz_parser = strchr( psz_parser, ':' );
50 if( psz_parser ) psz_parser++; /* skip the ':' */
52 free( psz_config );
54 psz_config = psz_parser = config_GetPsz( p_this->p_libvlc, "extraintf" );
55 while( psz_parser )
57 if( !strncmp( psz_intf, psz_parser, i_len ) )
59 free( psz_config );
60 return;
62 psz_parser = strchr( psz_parser, ':' );
63 if( psz_parser ) psz_parser++; /* skip the ':' */
66 /* interface not found in the config, let's add it */
67 if( psz_config && strlen( psz_config ) > 0 )
69 char *psz_newconfig;
70 if( asprintf( &psz_newconfig, "%s:%s", psz_config, psz_intf ) != -1 )
72 config_PutPsz( p_this->p_libvlc, "extraintf", psz_newconfig );
73 free( psz_newconfig );
76 else
77 config_PutPsz( p_this->p_libvlc, "extraintf", psz_intf );
79 free( psz_config );
82 #undef config_RemoveIntf
83 /* Removes an extra interface from the configuration */
84 void config_RemoveIntf( vlc_object_t *p_this, const char *psz_intf )
86 assert( psz_intf );
88 char *psz_config, *psz_parser;
89 size_t i_len = strlen( psz_intf );
91 psz_config = psz_parser = config_GetPsz( p_this->p_libvlc, "extraintf" );
92 while( psz_parser )
94 if( !strncmp( psz_intf, psz_parser, i_len ) )
96 char *psz_newconfig;
97 char *psz_end = psz_parser + i_len;
98 if( *psz_end == ':' ) psz_end++;
99 *psz_parser = '\0';
100 if( asprintf( &psz_newconfig, "%s%s", psz_config, psz_end ) != -1 )
102 config_PutPsz( p_this->p_libvlc, "extraintf", psz_newconfig );
103 free( psz_newconfig );
105 break;
107 psz_parser = strchr( psz_parser, ':' );
108 if( psz_parser ) psz_parser++; /* skip the ':' */
110 free( psz_config );
112 psz_config = psz_parser = config_GetPsz( p_this->p_libvlc, "control" );
113 while( psz_parser )
115 if( !strncmp( psz_intf, psz_parser, i_len ) )
117 char *psz_newconfig;
118 char *psz_end = psz_parser + i_len;
119 if( *psz_end == ':' ) psz_end++;
120 *psz_parser = '\0';
121 if( asprintf( &psz_newconfig, "%s%s", psz_config, psz_end ) != -1 )
123 config_PutPsz( p_this->p_libvlc, "control", psz_newconfig );
124 free( psz_newconfig );
126 break;
128 psz_parser = strchr( psz_parser, ':' );
129 if( psz_parser ) psz_parser++; /* skip the ':' */
131 free( psz_config );
134 #undef config_ExistIntf
136 * Returns true if the specified extra interface is present in the
137 * configuration, false if not
139 bool config_ExistIntf( vlc_object_t *p_this, const char *psz_intf )
141 assert( psz_intf );
143 char *psz_config, *psz_parser;
144 size_t i_len = strlen( psz_intf );
146 psz_config = psz_parser = config_GetPsz( p_this->p_libvlc, "extraintf" );
147 while( psz_parser )
149 if( !strncmp( psz_parser, psz_intf, i_len ) )
151 free( psz_config );
152 return true;
154 psz_parser = strchr( psz_parser, ':' );
155 if( psz_parser ) psz_parser++; /* skip the ':' */
157 free( psz_config );
159 psz_config = psz_parser = config_GetPsz( p_this->p_libvlc, "control" );
160 while( psz_parser )
162 if( !strncmp( psz_parser, psz_intf, i_len ) )
164 free( psz_config );
165 return true;
167 psz_parser = strchr( psz_parser, ':' );
168 if( psz_parser ) psz_parser++; /* skip the ':' */
170 free( psz_config );
172 return false;