VLCCustomDialogProvider.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*****************************************************************************
  2. * VLCCustomDialogProvider.h: an implementation of the libvlc dialog API
  3. * Included to allow custom UIs with full flexibility
  4. *****************************************************************************
  5. * Copyright (C) 2016 VideoLabs SAS
  6. * $Id$
  7. *
  8. * Authors: Felix Paul Kühne <fkuehne # videolan org>
  9. * Pierre d'Herbemont <pdherbemont # videolan org>
  10. *
  11. * This program is free software; you can redistribute it and/or modify it
  12. * under the terms of the GNU Lesser General Public License as published by
  13. * the Free Software Foundation; either version 2.1 of the License, or
  14. * (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU Lesser General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU Lesser General Public License
  22. * along with this program; if not, write to the Free Software Foundation,
  23. * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  24. *****************************************************************************/
  25. #import "VLCDialogProvider.h"
  26. @interface VLCCustomDialogProvider : VLCDialogProvider
  27. /**
  28. * initializer method to run the dialog provider instance on a specific library instance
  29. *
  30. * \param library instance
  31. * \note if param is NULL, [VLCLibrary sharedLibrary] will be used
  32. * \return the dialog provider instance, can be NULL on malloc failures
  33. */
  34. - (instancetype _Nullable)initWithLibrary:(VLCLibrary * _Nullable)library;
  35. @end