vlc_dialog.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:4k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vlc_dialog.h: user interaction dialogs
  3.  *****************************************************************************
  4.  * Copyright (C) 2009 Rémi Denis-Courmont
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  19.  *****************************************************************************/
  20. #ifndef VLC_DIALOG_H_
  21. #define VLC_DIALOG_H_
  22. # include <stdarg.h>
  23. /**
  24.  * file vlc_dialog.h
  25.  * User interaction dialog APIs
  26.  */
  27. /**
  28.  * A fatal error dialog.
  29.  * No response expected from the user.
  30.  */
  31. typedef struct dialog_fatal_t
  32. {
  33.     const char *title;
  34.     const char *message;
  35. } dialog_fatal_t;
  36. VLC_EXPORT( void, dialog_VFatal, (vlc_object_t *, bool, const char *, const char *, va_list) );
  37. static inline LIBVLC_FORMAT(3, 4)
  38. void dialog_Fatal (vlc_object_t *obj, const char *title, const char *fmt, ...)
  39. {
  40.      va_list ap;
  41.      va_start (ap, fmt);
  42.      dialog_VFatal(obj, false, title, fmt, ap);
  43.      va_end (ap);
  44. }
  45. #define dialog_Fatal(o, t, ...) 
  46.         dialog_Fatal(VLC_OBJECT(o), t, __VA_ARGS__)
  47. static inline LIBVLC_FORMAT(3, 4)
  48. void dialog_FatalWait (vlc_object_t *obj, const char *title,
  49.                        const char *fmt, ...){
  50.      va_list ap;
  51.      va_start (ap, fmt);
  52.      dialog_VFatal(obj, true, title, fmt, ap);
  53.      va_end (ap);
  54. }
  55. #define dialog_FatalWait(o, t, ...) 
  56.         dialog_FatalWait(VLC_OBJECT(o), t, __VA_ARGS__)
  57. /**
  58.  * A login dialog.
  59.  */
  60. typedef struct dialog_login_t
  61. {
  62.     const char *title;
  63.     const char *message;
  64.     char **username;
  65.     char **password;
  66. } dialog_login_t;
  67. VLC_EXPORT( void, dialog_Login, (vlc_object_t *, char **, char **, const char *, const char *, ...) ) LIBVLC_FORMAT (5, 6);
  68. #define dialog_Login(o, u, p, t, ...) 
  69.         dialog_Login(VLC_OBJECT(o), u, p, t, __VA_ARGS__)
  70. /**
  71.  * A question dialog.
  72.  */
  73. typedef struct dialog_question_t
  74. {
  75.     const char *title;
  76.     const char *message;
  77.     const char *yes;
  78.     const char *no;
  79.     const char *cancel;
  80.     int answer;
  81. } dialog_question_t;
  82. VLC_EXPORT( int, dialog_Question, (vlc_object_t *, const char *, const char *, const char *, const char *, const char *) );
  83. #define dialog_Question(o, t, m, y, n, c) 
  84.         dialog_Question(VLC_OBJECT(o), t, m, y, n, c)
  85. typedef struct dialog_progress_bar_t
  86. {   /* Request-time parameters */
  87.     const char *title;
  88.     const char *message;
  89.     const char *cancel;
  90.     /* Permanent parameters */
  91.     vlc_mutex_t lock;
  92.     void (*pf_update) (void *, const char *, float);
  93.     bool (*pf_check) (void *);
  94.     void (*pf_destroy) (void *);
  95.     void *p_sys;
  96. } dialog_progress_bar_t;
  97. VLC_EXPORT( dialog_progress_bar_t *, dialog_ProgressCreate, (vlc_object_t *, const char *, const char *, const char *) );
  98. #define dialog_ProgressCreate(o, t, m, c) 
  99.         dialog_ProgressCreate(VLC_OBJECT(o), t, m, c)
  100. VLC_EXPORT( void, dialog_ProgressDestroy, (dialog_progress_bar_t *) );
  101. VLC_EXPORT( void, dialog_ProgressSet, (dialog_progress_bar_t *, const char *, float) );
  102. VLC_EXPORT( bool, dialog_ProgressCancelled, (dialog_progress_bar_t *) );
  103. VLC_EXPORT( int, dialog_Register, (vlc_object_t *) );
  104. VLC_EXPORT( int, dialog_Unregister, (vlc_object_t *) );
  105. #define dialog_Register(o) dialog_Register(VLC_OBJECT(o))
  106. #define dialog_Unregister(o) dialog_Unregister(VLC_OBJECT(o))
  107. #endif