/***************************************************************************** * VLCLibraryViewController.h * VLC for iOS ***************************************************************************** * Copyright (c) 2013 VideoLAN. All rights reserved. * $Id$ * * Authors: Felix Paul Kühne * Gleb Pinigin * * Refer to the COPYING file of the official project for license. *****************************************************************************/ #import #define EXPERIMENTAL_LIBRARY 1 #import "MLMediaLibrary+playlist.h" @class EmptyLibraryView; @interface VLCLibraryViewController : UIViewController - (IBAction)leftButtonAction:(id)sender; - (void)updateViewContents; - (void)removeMediaObject:(id)mediaObject updateDatabase:(BOOL)updateDB; - (void)setLibraryMode:(VLCLibraryMode)mode; @end @interface EmptyLibraryView: UIView @property (nonatomic, strong) IBOutlet UILabel *emptyLibraryLabel; @property (nonatomic, strong) IBOutlet UILabel *emptyLibraryLongDescriptionLabel; @property (nonatomic, strong) IBOutlet UIActivityIndicatorView *activityIndicator; @property (nonatomic, strong) IBOutlet UIButton *learnMoreButton; - (IBAction)learnMore:(id)sender; @end