]> git.sesse.net Git - vlc/blob - include/vlc_extensions.h
Replace VLC_EXPORT macro with a simple prefix, VLC_API
[vlc] / include / vlc_extensions.h
1 /*****************************************************************************
2  * vlc_extension.h: Extensions (meta data, web information, ...)
3  *****************************************************************************
4  * Copyright (C) 2009-2010 VideoLAN and authors
5  * $Id$
6  *
7  * Authors: Jean-Philippe AndrĂ© < jpeg # videolan.org >
8  *
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.
13  *
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.
18  *
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  *****************************************************************************/
23
24 #ifndef VLC_EXTENSIONS_H
25 #define VLC_EXTENSIONS_H
26
27 #include "vlc_common.h"
28 #include "vlc_arrays.h"
29
30 /* Structures */
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;
34
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) */
39
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) */
46     char *p_icondata;         /**< Embedded data for the icon (ro) */
47     int   i_icondata_size;    /**< Size of that data */
48
49     extension_sys_t *p_sys;   /**< Reserved for the manager module */
50 } extension_t;
51
52 /** Extensions manager object */
53 struct extensions_manager_t
54 {
55     VLC_COMMON_MEMBERS
56
57     module_t *p_module;                /**< Extensions manager module */
58     extensions_manager_sys_t *p_sys;   /**< Reserved for the module */
59
60     DECL_ARRAY(extension_t*) extensions; /**< Array of extension descriptors */
61     vlc_mutex_t lock;                  /**< A lock for the extensions array */
62
63     /** Control, see extension_Control */
64     int ( *pf_control ) ( extensions_manager_t*, int, va_list );
65 };
66
67 /* Control commands */
68 enum
69 {
70     /* Control extensions */
71     EXTENSION_ACTIVATE,       /**< arg1: extension_t* */
72     EXTENSION_DEACTIVATE,     /**< arg1: extension_t* */
73     EXTENSION_IS_ACTIVATED,   /**< arg1: extension_t*, arg2: bool* */
74     EXTENSION_HAS_MENU,       /**< arg1: extension_t* */
75     EXTENSION_GET_MENU,       /**< arg1: extension_t*, arg2: char***, arg3: uint16_t** */
76     EXTENSION_TRIGGER_ONLY,   /**< arg1: extension_t*, arg2: bool* */
77     EXTENSION_TRIGGER,        /**< arg1: extension_t* */
78     EXTENSION_TRIGGER_MENU,   /**< arg1: extension_t*, int (uint16_t) */
79     EXTENSION_SET_INPUT,      /**< arg1: extension_t*, arg2 (input_thread_t) */
80     EXTENSION_PLAYING_CHANGED, /**< arg1: extension_t*, arg2 int( playing status ) */
81 };
82
83 /**
84  * Control function for extensions.
85  * Every GUI -> extension command will go through this function.
86  **/
87 static inline int extension_Control( extensions_manager_t *p_mgr,
88                                      int i_control, ... )
89 {
90     va_list args;
91     va_start( args, i_control );
92     int i_ret = p_mgr->pf_control( p_mgr, i_control, args );
93     va_end( args );
94     return i_ret;
95 }
96
97 /**
98  * Helper for extension_HasMenu, extension_IsActivated...
99  * Do not use.
100  **/
101 static inline bool __extension_GetBool( extensions_manager_t *p_mgr,
102                                         extension_t *p_ext,
103                                         int i_flag,
104                                         bool b_default )
105 {
106     bool b = b_default;
107     int i_ret = extension_Control( p_mgr, i_flag, p_ext, &b );
108     if( i_ret != VLC_SUCCESS )
109         return b_default;
110     else
111         return b;
112 }
113
114 /** Activate or trigger an extension */
115 #define extension_Activate( mgr, ext ) \
116         extension_Control( mgr, EXTENSION_ACTIVATE, ext )
117
118 /** Trigger the extension. Attention: NOT multithreaded! */
119 #define extension_Trigger( mgr, ext ) \
120         extension_Control( mgr, EXTENSION_TRIGGER, ext )
121
122 /** Deactivate an extension */
123 #define extension_Deactivate( mgr, ext ) \
124         extension_Control( mgr, EXTENSION_DEACTIVATE, ext )
125
126 /** Is this extension activated? */
127 #define extension_IsActivated( mgr, ext ) \
128         __extension_GetBool( mgr, ext, EXTENSION_IS_ACTIVATED, false )
129
130 /** Does this extension have a sub-menu? */
131 #define extension_HasMenu( mgr, ext ) \
132         __extension_GetBool( mgr, ext, EXTENSION_HAS_MENU, false )
133
134 /** Get this extension's sub-menu */
135 static inline int extension_GetMenu( extensions_manager_t *p_mgr,
136                                      extension_t *p_ext,
137                                      char ***pppsz,
138                                      uint16_t **ppi )
139 {
140     return extension_Control( p_mgr, EXTENSION_GET_MENU, p_ext, pppsz, ppi );
141 }
142
143 /** Trigger an entry of the extension menu */
144 static inline int extension_TriggerMenu( extensions_manager_t *p_mgr,
145                                          extension_t *p_ext,
146                                          uint16_t i )
147 {
148     return extension_Control( p_mgr, EXTENSION_TRIGGER_MENU, p_ext, i );
149 }
150
151 /** Trigger an entry of the extension menu */
152 static inline int extension_SetInput( extensions_manager_t *p_mgr,
153                                         extension_t *p_ext,
154                                         struct input_thread_t *p_input )
155 {
156     return extension_Control( p_mgr, EXTENSION_SET_INPUT, p_ext, p_input );
157 }
158
159 static inline int extension_PlayingChanged( extensions_manager_t *p_mgr,
160                                             extension_t *p_ext,
161                                             int state )
162 {
163     return extension_Control( p_mgr, EXTENSION_PLAYING_CHANGED, p_ext, state );
164 }
165
166 /** Can this extension only be triggered but not activated?
167     Not compatible with HasMenu */
168 #define extension_TriggerOnly( mgr, ext ) \
169         __extension_GetBool( mgr, ext, EXTENSION_TRIGGER_ONLY, false )
170
171
172 /*****************************************************************************
173  * Extension dialogs
174  *****************************************************************************/
175
176 typedef struct extension_dialog_t extension_dialog_t;
177 typedef struct extension_widget_t extension_widget_t;
178
179 /// User interface event types
180 typedef enum
181 {
182     EXTENSION_EVENT_CLICK,       ///< Click on a widget: data = widget
183     EXTENSION_EVENT_CLOSE,       ///< Close the dialog: no data
184     // EXTENSION_EVENT_SELECTION_CHANGED,
185     // EXTENSION_EVENT_TEXT_CHANGED,
186 } extension_dialog_event_e;
187
188 /// Command to pass to the extension dialog owner
189 typedef struct
190 {
191     extension_dialog_t *p_dlg;      ///< Destination dialog
192     extension_dialog_event_e event; ///< Event, @see extension_dialog_event_e
193     void *p_data;                   ///< Opaque data to send
194 } extension_dialog_command_t;
195
196
197 /// Dialog descriptor for extensions
198 struct extension_dialog_t
199 {
200     vlc_object_t *p_object;      ///< Owner object (callback on "dialog-event")
201
202     char *psz_title;             ///< Title for the Dialog (in TitleBar)
203     int i_width;                 ///< Width hint in pixels (may be discarded)
204     int i_height;                ///< Height hint in pixels (may be discarded)
205
206     DECL_ARRAY(extension_widget_t*) widgets; ///< Widgets owned by the dialog
207
208     bool b_hide;                 ///< Hide this dialog (!b_hide shows)
209     bool b_kill;                 ///< Kill this dialog
210
211     void *p_sys;                 ///< Dialog private pointer
212     void *p_sys_intf;            ///< GUI private pointer
213     vlc_mutex_t lock;            ///< Dialog mutex
214     vlc_cond_t cond;             ///< Signaled == UI is done working on the dialog
215 };
216
217 /** Send a command to an Extension dialog
218  * @param p_dialog The dialog
219  * @param event @see extension_dialog_event_e for a list of possible events
220  * @param data Optional opaque data,  @see extension_dialog_event_e
221  * @return VLC error code
222  **/
223 static inline int extension_DialogCommand( extension_dialog_t* p_dialog,
224                                            extension_dialog_event_e event,
225                                            void *data )
226 {
227     extension_dialog_command_t command;
228     command.p_dlg = p_dialog;
229     command.event = event;
230     command.p_data = data;
231     var_SetAddress( p_dialog->p_object, "dialog-event", &command );
232     return VLC_SUCCESS;
233 }
234
235 /** Close the dialog
236  * @param dlg The dialog
237  **/
238 #define extension_DialogClosed( dlg ) \
239         extension_DialogCommand( dlg, EXTENSION_EVENT_CLOSE, NULL )
240
241 /** Forward a click on a widget
242  * @param dlg The dialog
243  * @param wdg The widget (button, ...)
244  **/
245 #define extension_WidgetClicked( dlg, wdg ) \
246         extension_DialogCommand( dlg, EXTENSION_EVENT_CLICK, wdg )
247
248 /// Widget types
249 typedef enum
250 {
251     EXTENSION_WIDGET_LABEL,      ///< Non editable text label
252     EXTENSION_WIDGET_BUTTON,     ///< Clickable button
253     EXTENSION_WIDGET_IMAGE,      ///< Image label (psz_text is local URI)
254     EXTENSION_WIDGET_HTML,       ///< HTML or rich text area (non editable)
255     EXTENSION_WIDGET_TEXT_FIELD, ///< Editable text line for user input
256     EXTENSION_WIDGET_PASSWORD,   ///< Editable password input (******)
257     EXTENSION_WIDGET_DROPDOWN,   ///< Drop-down box
258     EXTENSION_WIDGET_LIST,       ///< Vertical list box (of strings)
259     EXTENSION_WIDGET_CHECK_BOX,  ///< Checkable box with label
260     EXTENSION_WIDGET_SPIN_ICON,  ///< A "loading..." spinning icon
261 } extension_widget_type_e;
262
263 /// Widget descriptor for extensions
264 struct extension_widget_t
265 {
266     /* All widgets */
267     extension_widget_type_e type; ///< Type of the widget
268     char *psz_text;               ///< Text. May be NULL or modified by the UI
269
270     /* Drop-down & List widgets */
271     struct extension_widget_value_t {
272         int i_id;          ///< Identifier for the extension module
273                            // (weird behavior may occur if not unique)
274         char *psz_text;    ///< String value
275         bool b_selected;   ///< True if this item is selected
276         struct extension_widget_value_t *p_next; ///< Next value or NULL
277     } *p_values;                  ///< Chained list of values (Drop-down/List)
278
279     /* Check-box */
280     bool b_checked;               ///< Is this entry checked
281
282     /* Layout */
283     int i_row;                    ///< Row in the grid
284     int i_column;                 ///< Column in the grid
285     int i_horiz_span;             ///< Horizontal size of the object
286     int i_vert_span;              ///< Vertical size of the object
287     int i_width;                  ///< Width hint
288     int i_height;                 ///< Height hint
289     bool b_hide;                  ///< Hide this widget (make it invisible)
290
291     /* Spinning icon */
292     int i_spin_loops;             ///< Number of loops to play (-1 = infinite,
293                                   // 0 = stop animation)
294
295     /* Orders */
296     bool b_kill;                  ///< Destroy this widget
297     bool b_update;                ///< Update this widget
298
299     /* Misc */
300     void *p_sys;                  ///< Reserved for the extension manager
301     void *p_sys_intf;             ///< Reserved for the UI, but:
302                                   // NULL means the UI has destroyed the widget
303                                   // or has not created it yet
304     extension_dialog_t *p_dialog; ///< Parent dialog
305 };
306
307 VLC_API int dialog_ExtensionUpdate(vlc_object_t*, extension_dialog_t *);
308 #define dialog_ExtensionUpdate(o, d) dialog_ExtensionUpdate(VLC_OBJECT(o), d)
309
310 #endif /* VLC_EXTENSIONS_H */
311