X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fgui%2Fmacosx%2Fintf.h;h=6f85f516007bf73920b5ba6703b48803af02970e;hb=c3a1a712783d3818557ac17de685fa7a0300a0dc;hp=c2efac9818ded63a1971cee62223ef0ee62f9118;hpb=5c30d75fcc257c8479e2d03f12b634b7fb87c3d5;p=vlc diff --git a/modules/gui/macosx/intf.h b/modules/gui/macosx/intf.h index c2efac9818..6f85f51600 100644 --- a/modules/gui/macosx/intf.h +++ b/modules/gui/macosx/intf.h @@ -42,7 +42,7 @@ *****************************************************************************/ unsigned int CocoaKeyToVLC( unichar i_key ); -#define VLCIntf [[VLCMain sharedInstance] getIntf] +#define VLCIntf [[VLCMain sharedInstance] intf] #define _NS(s) [[VLCMain sharedInstance] localizedString: _(s)] /* Get an alternate version of the string. @@ -90,7 +90,7 @@ static void MsgCallback( msg_cb_data_t *, msg_item_t *, unsigned ); *****************************************************************************/ @class AppleRemote; @class VLCInformation; -@class VLControllerWindow; +@class VLCControllerWindow; @class VLCEmbeddedWindow; @class VLCControls; @class VLCPlaylist; @@ -341,25 +341,25 @@ static void MsgCallback( msg_cb_data_t *, msg_item_t *, unsigned ); + (VLCMain *)sharedInstance; -- (intf_thread_t *)getIntf; +- (intf_thread_t *)intf; - (void)setIntf:(intf_thread_t *)p_mainintf; - (void)controlTintChanged; -- (id)getControls; -- (id)getSimplePreferences; -- (id)getPreferences; -- (id)getPlaylist; +- (id)controls; +- (id)simplePreferences; +- (id)preferences; +- (id)playlist; - (BOOL)isPlaylistCollapsed; -- (id)getInfo; -- (id)getWizard; -- (id)getBookmarks; -- (id)getEmbeddedList; -- (id)getCoreDialogProvider; -- (id)getMainIntfPgbar; -- (id)getControllerWindow; -- (id)getVoutMenu; -- (id)getEyeTVController; +- (id)info; +- (id)wizard; +- (id)bookmarks; +- (id)embeddedList; +- (id)coreDialogProvider; +- (id)mainIntfPgbar; +- (id)controllerWindow; +- (id)voutMenu; +- (id)eyeTVController; - (void)applicationWillTerminate:(NSNotification *)notification; - (NSString *)localizedString:(const char *)psz; - (char *)delocalizeString:(NSString *)psz;