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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * libvlc_internal.h : Definition of opaque structures for libvlc exported API
  3.  * Also contains some internal utility functions
  4.  *****************************************************************************
  5.  * Copyright (C) 2005-2009 the VideoLAN team
  6.  * $Id: b45347889a812d05257bf744745423bcd307146e $
  7.  *
  8.  * Authors: Clément Stenac <zorglub@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. #ifndef LIBVLC_MEDIA_LIST_VIEW_INTERNAL_H
  25. #define LIBVLC_MEDIA_LIST_VIEW_INTERNAL_H 1
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc/vlc.h>
  30. #include <vlc/libvlc_structures.h>
  31. #include <vlc/libvlc_media_list.h>
  32. #include <vlc_common.h>
  33. typedef libvlc_media_list_view_t * (*libvlc_media_list_view_constructor_func_t)( libvlc_media_list_t * p_mlist, libvlc_exception_t * p_e ) ;
  34. typedef void (*libvlc_media_list_view_release_func_t)( libvlc_media_list_view_t * p_mlv ) ;
  35. typedef int (*libvlc_media_list_view_count_func_t)( libvlc_media_list_view_t * p_mlv,
  36.         libvlc_exception_t * ) ;
  37. typedef libvlc_media_t *
  38.         (*libvlc_media_list_view_item_at_index_func_t)(
  39.                 libvlc_media_list_view_t * p_mlv,
  40.                 int index,
  41.                 libvlc_exception_t * ) ;
  42. typedef libvlc_media_list_view_t *
  43.         (*libvlc_media_list_view_children_at_index_func_t)(
  44.                 libvlc_media_list_view_t * p_mlv,
  45.                 int index,
  46.                 libvlc_exception_t * ) ;
  47. /* A way to see a media list */
  48. struct libvlc_media_list_view_t
  49. {
  50.     libvlc_event_manager_t *    p_event_manager;
  51.     libvlc_instance_t *         p_libvlc_instance;
  52.     int                         i_refcount;
  53.     vlc_mutex_t                 object_lock;
  54.     libvlc_media_list_t *       p_mlist;
  55.     struct libvlc_media_list_view_private_t * p_this_view_data;
  56.     /* Accessors */
  57.     libvlc_media_list_view_count_func_t              pf_count;
  58.     libvlc_media_list_view_item_at_index_func_t      pf_item_at_index;
  59.     libvlc_media_list_view_children_at_index_func_t  pf_children_at_index;
  60.     libvlc_media_list_view_constructor_func_t        pf_constructor;
  61.     libvlc_media_list_view_release_func_t            pf_release;
  62.     /* Notification callback */
  63.     void (*pf_ml_item_added)(const libvlc_event_t *, libvlc_media_list_view_t *);
  64.     void (*pf_ml_item_removed)(const libvlc_event_t *, libvlc_media_list_view_t *);
  65. };
  66. /* Media List View */
  67. libvlc_media_list_view_t * libvlc_media_list_view_new(
  68.         libvlc_media_list_t * p_mlist,
  69.         libvlc_media_list_view_count_func_t pf_count,
  70.         libvlc_media_list_view_item_at_index_func_t pf_item_at_index,
  71.         libvlc_media_list_view_children_at_index_func_t pf_children_at_index,
  72.         libvlc_media_list_view_constructor_func_t pf_constructor,
  73.         libvlc_media_list_view_release_func_t pf_release,
  74.         void * this_view_data,
  75.         libvlc_exception_t * p_e );
  76. void libvlc_media_list_view_set_ml_notification_callback(
  77.         libvlc_media_list_view_t * p_mlv,
  78.         void (*item_added)(const libvlc_event_t *, libvlc_media_list_view_t *),
  79.         void (*item_removed)(const libvlc_event_t *, libvlc_media_list_view_t *) );
  80. void libvlc_media_list_view_will_delete_item(
  81.         libvlc_media_list_view_t * p_mlv,
  82.         libvlc_media_t * p_item, int index );
  83. void libvlc_media_list_view_item_deleted(
  84.         libvlc_media_list_view_t * p_mlv,
  85.         libvlc_media_t * p_item, int index );
  86. void libvlc_media_list_view_will_add_item (
  87.         libvlc_media_list_view_t * p_mlv,
  88.         libvlc_media_t * p_item, int index );
  89. void libvlc_media_list_view_item_added(
  90.         libvlc_media_list_view_t * p_mlv,
  91.         libvlc_media_t * p_item, int index );
  92. #endif