1 /*****************************************************************************
2 * vlc_extension.h: Extensions (meta data, web information, ...)
3 *****************************************************************************
4 * Copyright (C) 2009-2010 VideoLAN and authors
7 * Authors: Jean-Philippe André < jpeg # 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 #ifndef VLC_EXTENSIONS_H
25 #define VLC_EXTENSIONS_H
27 #include "vlc_common.h"
28 #include "vlc_arrays.h"
31 typedef struct extensions_manager_sys_t extensions_manager_sys_t
;
32 typedef struct extensions_manager_t extensions_manager_t
;
33 typedef struct extension_sys_t extension_sys_t
;
35 /** Extension descriptor: name, title, author, ... */
36 typedef struct extension_t
{
37 /* Below, (ro) means read-only for the GUI */
38 char *psz_name
; /**< Real name of the extension (ro) */
40 char *psz_title
; /**< Display title (ro) */
41 char *psz_author
; /**< Author of the extension (ro) */
42 char *psz_version
; /**< Version (ro) */
43 char *psz_url
; /**< A URL to the official page (ro) */
44 char *psz_description
; /**< Full description (ro) */
45 char *psz_shortdescription
; /**< Short description (eg. 1 line) (ro) */
47 extension_sys_t
*p_sys
; /**< Reserved for the manager module */
50 /** Extensions manager object */
51 struct extensions_manager_t
55 module_t
*p_module
; /**< Extensions manager module */
56 extensions_manager_sys_t
*p_sys
; /**< Reserved for the module */
58 DECL_ARRAY(extension_t
*) extensions
; /**< Array of extension descriptors */
59 vlc_mutex_t lock
; /**< A lock for the extensions array */
61 /** Control, see extension_Control */
62 int ( *pf_control
) ( extensions_manager_t
*, int, va_list );
65 /* Control commands */
68 /* Control extensions */
69 EXTENSION_ACTIVATE
, /**< arg1: extension_t* */
70 EXTENSION_DEACTIVATE
, /**< arg1: extension_t* */
71 EXTENSION_IS_ACTIVATED
, /**< arg1: extension_t*, arg2: bool* */
72 EXTENSION_HAS_MENU
, /**< arg1: extension_t* */
73 EXTENSION_GET_MENU
, /**< arg1: extension_t*, arg2: char***, arg3: uint16_t** */
74 EXTENSION_TRIGGER_ONLY
, /**< arg1: extension_t*, arg2: bool* */
75 EXTENSION_TRIGGER
, /**< arg1: extension_t* */
76 EXTENSION_TRIGGER_MENU
, /**< arg1: extension_t*, int (uint16_t) */
77 EXTENSION_SET_INPUT
, /**< arg1: extension_t*, arg2 (input_thread_t) */
78 EXTENSION_PLAYING_CHANGED
, /**< arg1: extension_t*, arg2 int( playing status ) */
82 * Control function for extensions.
83 * Every GUI -> extension command will go through this function.
85 static inline int extension_Control( extensions_manager_t
*p_mgr
,
89 va_start( args
, i_control
);
90 int i_ret
= p_mgr
->pf_control( p_mgr
, i_control
, args
);
96 * Helper for extension_HasMenu, extension_IsActivated...
99 static inline bool __extension_GetBool( extensions_manager_t
*p_mgr
,
105 int i_ret
= extension_Control( p_mgr
, i_flag
, p_ext
, &b
);
106 if( i_ret
!= VLC_SUCCESS
)
112 /** Activate or trigger an extension */
113 #define extension_Activate( mgr, ext ) \
114 extension_Control( mgr, EXTENSION_ACTIVATE, ext )
116 /** Trigger the extension. Attention: NOT multithreaded! */
117 #define extension_Trigger( mgr, ext ) \
118 extension_Control( mgr, EXTENSION_TRIGGER, ext )
120 /** Deactivate an extension */
121 #define extension_Deactivate( mgr, ext ) \
122 extension_Control( mgr, EXTENSION_DEACTIVATE, ext )
124 /** Is this extension activated? */
125 #define extension_IsActivated( mgr, ext ) \
126 __extension_GetBool( mgr, ext, EXTENSION_IS_ACTIVATED, false )
128 /** Does this extension have a sub-menu? */
129 #define extension_HasMenu( mgr, ext ) \
130 __extension_GetBool( mgr, ext, EXTENSION_HAS_MENU, false )
132 /** Get this extension's sub-menu */
133 static inline int extension_GetMenu( extensions_manager_t
*p_mgr
,
138 return extension_Control( p_mgr
, EXTENSION_GET_MENU
, p_ext
, pppsz
, ppi
);
141 /** Trigger an entry of the extension menu */
142 static inline int extension_TriggerMenu( extensions_manager_t
*p_mgr
,
146 return extension_Control( p_mgr
, EXTENSION_TRIGGER_MENU
, p_ext
, i
);
149 /** Trigger an entry of the extension menu */
150 static inline int extension_SetInput( extensions_manager_t
*p_mgr
,
152 struct input_thread_t
*p_input
)
154 return extension_Control( p_mgr
, EXTENSION_SET_INPUT
, p_ext
, p_input
);
157 static inline int extension_PlayingChanged( extensions_manager_t
*p_mgr
,
161 return extension_Control( p_mgr
, EXTENSION_PLAYING_CHANGED
, p_ext
, state
);
164 /** Can this extension only be triggered but not activated?
165 Not compatible with HasMenu */
166 #define extension_TriggerOnly( mgr, ext ) \
167 __extension_GetBool( mgr, ext, EXTENSION_TRIGGER_ONLY, false )
170 /*****************************************************************************
172 *****************************************************************************/
174 typedef struct extension_dialog_t extension_dialog_t
;
175 typedef struct extension_widget_t extension_widget_t
;
177 /// User interface event types
180 EXTENSION_EVENT_CLICK
, ///< Click on a widget: data = widget
181 EXTENSION_EVENT_CLOSE
, ///< Close the dialog: no data
182 // EXTENSION_EVENT_SELECTION_CHANGED,
183 // EXTENSION_EVENT_TEXT_CHANGED,
184 } extension_dialog_event_e
;
186 /// Command to pass to the extension dialog owner
189 extension_dialog_t
*p_dlg
; ///< Destination dialog
190 extension_dialog_event_e event
; ///< Event, @see extension_dialog_event_e
191 void *p_data
; ///< Opaque data to send
192 } extension_dialog_command_t
;
195 /// Dialog descriptor for extensions
196 struct extension_dialog_t
198 vlc_object_t
*p_object
; ///< Owner object (callback on "dialog-event")
200 char *psz_title
; ///< Title for the Dialog (in TitleBar)
201 int i_width
; ///< Width hint in pixels (may be discarded)
202 int i_height
; ///< Height hint in pixels (may be discarded)
204 DECL_ARRAY(extension_widget_t
*) widgets
; ///< Widgets owned by the dialog
206 bool b_hide
; ///< Hide this dialog (!b_hide shows)
207 bool b_kill
; ///< Kill this dialog
209 void *p_sys
; ///< Dialog private pointer
210 void *p_sys_intf
; ///< GUI private pointer
211 vlc_mutex_t lock
; ///< Dialog mutex
212 vlc_cond_t cond
; ///< Signaled == UI is done working on the dialog
215 /** Send a command to an Extension dialog
216 * @param p_dialog The dialog
217 * @param event @see extension_dialog_event_e for a list of possible events
218 * @param data Optional opaque data, @see extension_dialog_event_e
219 * @return VLC error code
221 static inline int extension_DialogCommand( extension_dialog_t
* p_dialog
,
222 extension_dialog_event_e event
,
225 extension_dialog_command_t command
;
226 command
.p_dlg
= p_dialog
;
227 command
.event
= event
;
228 command
.p_data
= data
;
229 var_SetAddress( p_dialog
->p_object
, "dialog-event", &command
);
234 * @param dlg The dialog
236 #define extension_DialogClosed( dlg ) \
237 extension_DialogCommand( dlg, EXTENSION_EVENT_CLOSE, NULL )
239 /** Forward a click on a widget
240 * @param dlg The dialog
241 * @param wdg The widget (button, ...)
243 #define extension_WidgetClicked( dlg, wdg ) \
244 extension_DialogCommand( dlg, EXTENSION_EVENT_CLICK, wdg )
249 EXTENSION_WIDGET_LABEL
, ///< Non editable text label
250 EXTENSION_WIDGET_BUTTON
, ///< Clickable button
251 EXTENSION_WIDGET_IMAGE
, ///< Image label (psz_text is local URI)
252 EXTENSION_WIDGET_HTML
, ///< HTML or rich text area (non editable)
253 EXTENSION_WIDGET_TEXT_FIELD
, ///< Editable text line for user input
254 EXTENSION_WIDGET_PASSWORD
, ///< Editable password input (******)
255 EXTENSION_WIDGET_DROPDOWN
, ///< Drop-down box
256 EXTENSION_WIDGET_LIST
, ///< Vertical list box (of strings)
257 EXTENSION_WIDGET_CHECK_BOX
, ///< Checkable box with label
258 } extension_widget_type_e
;
260 /// Widget descriptor for extensions
261 struct extension_widget_t
264 extension_widget_type_e type
; ///< Type of the widget
265 char *psz_text
; ///< Text. May be NULL or modified by the UI
267 /* Drop-down & List widgets */
268 struct extension_widget_value_t
{
269 int i_id
; ///< Identifier for the extension module
270 // (weird behavior may occur if not unique)
271 char *psz_text
; ///< String value
272 bool b_selected
; ///< True if this item is selected
273 struct extension_widget_value_t
*p_next
; ///< Next value or NULL
274 } *p_values
; ///< Chained list of values (Drop-down/List)
277 bool b_checked
; ///< Is this entry checked
280 int i_row
; ///< Row in the grid
281 int i_column
; ///< Column in the grid
282 int i_horiz_span
; ///< Horizontal size of the object
283 int i_vert_span
; ///< Vertical size of the object
284 int i_width
; ///< Width hint
285 int i_height
; ///< Height hint
286 bool b_hide
; ///< Hide this widget (make it invisible)
289 bool b_kill
; ///< Destroy this widget
290 bool b_update
; ///< Update this widget
293 void *p_sys
; ///< Reserved for the extension manager
294 void *p_sys_intf
; ///< Reserved for the UI, but:
295 // NULL means the UI has destroyed the widget
296 // or has not created it yet
297 extension_dialog_t
*p_dialog
; ///< Parent dialog
300 VLC_EXPORT(int, dialog_ExtensionUpdate
, (vlc_object_t
*, extension_dialog_t
*));
301 #define dialog_ExtensionUpdate(o, d) dialog_ExtensionUpdate(VLC_OBJECT(o), d)
303 #endif /* VLC_EXTENSIONS_H */