]> git.sesse.net Git - vlc/blob - include/vlc_interaction.h
* first implementation of a widget-free authentication-dialogue (core and OSX only...
[vlc] / include / vlc_interaction.h
1 /*****************************************************************************
2  * vlc_interaction.h: structures and function for user interaction
3  *****************************************************************************
4  * Copyright (C) 2005-2006 VideoLAN
5  * $Id$
6  *
7  * Authors: Clément Stenac <zorglub@videolan.org>
8  *          Felix Kühne <fkuehne@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /**
26  * This structure describes an interaction widget
27  */
28 struct user_widget_t
29 {
30     int             i_type;             ///< Type identifier;
31     char           *psz_text;           ///< Free text
32
33     vlc_value_t     val;
34 };
35
36 /**
37  * Possible widget types
38  */
39 enum
40 {
41     WIDGET_TEXT,                        ///< Text display
42     WIDGET_PROGRESS,                    ///< A progress bar
43     WIDGET_INPUT_TEXT                   ///< Input (backed up by a variable)
44 };
45
46 /**
47  * This structure describes a piece of interaction with the user
48  */
49 struct interaction_dialog_t
50 {
51     int             i_id;               ///< Unique ID
52     int             i_type;             ///< Type identifier
53     char           *psz_title;          ///< Title
54     char           *psz_description;    ///< Descriptor string
55
56     char           *psz_returned[1];    ///< returned responses from the user
57
58     vlc_value_t     val;                ///< a value coming from core for dialogue
59
60     int             i_widgets;          ///< Number of dialog widgets
61     user_widget_t **pp_widgets;         ///< Dialog widgets
62
63     void *          p_private;          ///< Private interface data
64
65     int             i_status;           ///< Dialog status;
66     int             i_action;           ///< Action to perform;
67     int             i_flags;            ///< Misc flags
68     int             i_return;           ///< Return status
69
70     interaction_t  *p_interaction;      ///< Parent interaction object
71     vlc_object_t   *p_parent;           ///< The vlc object that asked
72                                         //for interaction
73 };
74
75 /**
76  * Possible flags . Reusable and button types
77  */
78 #define DIALOG_REUSABLE             0x01
79 #define DIALOG_OK_CANCEL            0x02
80 #define DIALOG_YES_NO               0x04
81 #define DIALOG_YES_NO_CANCEL        0x04
82 #define DIALOG_CLEAR_NOSHOW         0x08
83 #define DIALOG_GOT_ANSWER           0x10
84 #define DIALOG_LOGIN_PW_OK_CANCEL   0x20
85 #define DIALOG_USER_PROGRESS        0x40
86
87 /**
88  * Possible return codes
89  */
90 enum
91 {
92     DIALOG_DEFAULT,
93     DIALOG_OK_YES,
94     DIALOG_NO,
95     DIALOG_CANCELLED
96 };
97
98 /**
99  * Possible status
100  */
101 enum
102 {
103     NEW_DIALOG,                 ///< Just created
104     SENT_DIALOG,                ///< Sent to interface
105     UPDATED_DIALOG,             ///< Update to send
106     ANSWERED_DIALOG,            ///< Got "answer"
107     HIDING_DIALOG,              ///< Hiding requested
108     HIDDEN_DIALOG,              ///< Now hidden. Requesting destruction
109     DESTROYED_DIALOG,           ///< Interface has destroyed it
110 };
111
112 /**
113  * Possible interaction types
114  */
115 enum
116 {
117     INTERACT_PROGRESS,          ///< Progress bar (in the main interface ?)
118     INTERACT_DIALOG_ONEWAY,     ///< Dialog box without feedback
119     INTERACT_DIALOG_TWOWAY,     ///< Dialog box with feedback
120 };
121
122 /**
123  * Predefined reusable dialogs
124  */
125 enum
126 {
127     DIALOG_FIRST,
128     DIALOG_ERRORS,
129
130     DIALOG_LAST_PREDEFINED,
131 };
132
133 /**
134  * This structure contains the active interaction dialogs, and is
135  * used by teh manager
136  */
137 struct interaction_t
138 {
139     VLC_COMMON_MEMBERS
140
141     int                         i_dialogs;      ///< Number of dialogs
142     interaction_dialog_t      **pp_dialogs;     ///< Dialogs
143
144     intf_thread_t              *p_intf;         ///< Interface to use
145
146     int                         i_last_id;      ///< Last attributed ID
147 };
148 /**
149  * Possible actions
150  */
151 enum
152 {
153     INTERACT_NEW,
154     INTERACT_UPDATE,
155     INTERACT_HIDE,
156     INTERACT_DESTROY
157 };
158
159 /***************************************************************************
160  * Exported symbols
161  ***************************************************************************/
162
163 #define intf_Interact( a,b ) __intf_Interact( VLC_OBJECT(a), b )
164 VLC_EXPORT( int,__intf_Interact,( vlc_object_t *,interaction_dialog_t * ) );
165
166 #define intf_UserFatal( a, c, d, e... ) __intf_UserFatal( VLC_OBJECT(a),c,d, ## e )
167 VLC_EXPORT( void, __intf_UserFatal,( vlc_object_t*, const char*, const char*, ...) );
168 #define intf_UserLoginPassword( a, b, c, d, e... ) __intf_UserLoginPassword( VLC_OBJECT(a),b,c,d,e)
169 VLC_EXPORT( int, __intf_UserLoginPassword,( vlc_object_t*, const char*, const char*, char **, char **) );
170 #define intf_UserYesNo( a, b, c ) __intf_UserYesNo( VLC_OBJECT(a),b,c )
171 VLC_EXPORT( int, __intf_UserYesNo,( vlc_object_t*, const char*, const char*) );
172
173 #define intf_UserProgress( a, b, c, d ) __intf_UserProgress( VLC_OBJECT(a),b,c, d )
174 VLC_EXPORT( int, __intf_UserProgress,( vlc_object_t*, const char*, const char*, float) );
175
176 #define intf_UserProgressUpdate( a, b, c, d ) __intf_UserProgressUpdate( VLC_OBJECT(a),b,c, d )
177 VLC_EXPORT( void, __intf_UserProgressUpdate,( vlc_object_t*, int, const char*, float) );
178
179 #define intf_UserHide( a, b ) __intf_UserHide( VLC_OBJECT(a), b )
180 VLC_EXPORT( void, __intf_UserHide,( vlc_object_t *, int ));
181
182 VLC_EXPORT( void, intf_InteractionManage,( playlist_t *) );
183 VLC_EXPORT( void, intf_InteractionDestroy,( interaction_t *) );