From ec617f09d07e32d6f57c0da133f53ad3d43a568a Mon Sep 17 00:00:00 2001 From: marha Date: Tue, 27 Mar 2012 17:04:46 +0200 Subject: fontconfig libxcb xcb-proto mesa xserver git update 27 Mar 2012 --- xorg-server/hw/xquartz/X11Controller.h | 122 ++++++++++++++++----------------- 1 file changed, 61 insertions(+), 61 deletions(-) (limited to 'xorg-server/hw/xquartz/X11Controller.h') diff --git a/xorg-server/hw/xquartz/X11Controller.h b/xorg-server/hw/xquartz/X11Controller.h index e7fcd453f..1e6027006 100644 --- a/xorg-server/hw/xquartz/X11Controller.h +++ b/xorg-server/hw/xquartz/X11Controller.h @@ -1,31 +1,32 @@ /* X11Controller.h -- connect the IB ui - - Copyright (c) 2002 Apple Computer, Inc. All rights reserved. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, - publish, distribute, sublicense, and/or sell copies of the Software, - and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT - HOLDER(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER - DEALINGS IN THE SOFTWARE. - - Except as contained in this notice, the name(s) of the above - copyright holders shall not be used in advertising or otherwise to - promote the sale, use or other dealings in this Software without - prior written authorization. */ + * + * Copyright (c) 2002-2012 Apple Inc. All rights reserved. + * + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation files + * (the "Software"), to deal in the Software without restriction, + * including without limitation the rights to use, copy, modify, merge, + * publish, distribute, sublicense, and/or sell copies of the Software, + * and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT + * HOLDER(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + * Except as contained in this notice, the name(s) of the above + * copyright holders shall not be used in advertising or otherwise to + * promote the sale, use or other dealings in this Software without + * prior written authorization. + */ #ifndef X11CONTROLLER_H #define X11CONTROLLER_H 1 @@ -55,9 +56,9 @@ typedef unsigned int NSUInteger; #endif #endif - @interface X11Controller:NSObject +@interface X11Controller : NSObject #if MAC_OS_X_VERSION_MIN_REQUIRED >= 1060 - < NSTableViewDataSource > + #endif { IBOutlet NSPanel *prefs_panel; @@ -85,7 +86,6 @@ typedef unsigned int NSUInteger; IBOutlet NSPopUpButton *depth; IBOutlet NSMenuItem *window_separator; - // window_separator is DEPRECATED due to this radar: // NSApplication releases the separator in the Windows menu even though it's an IBOutlet // It is kept around for localization compatability and is subject to removal "eventually" @@ -95,7 +95,6 @@ typedef unsigned int NSUInteger; IBOutlet NSMenuItem *dock_window_separator; IBOutlet NSMenuItem *apps_separator; IBOutlet NSMenuItem *toggle_fullscreen_item; - #ifdef XQUARTZ_SPARKLE NSMenuItem *check_for_updates_item; // Programatically enabled #endif @@ -118,40 +117,41 @@ typedef unsigned int NSUInteger; OSX_BOOL can_quit; } - -(void) set_window_menu:(NSArray *) list; - -(void) set_window_menu_check:(NSNumber *) n; - -(void) set_apps_menu:(NSArray *) list; +- (void)set_window_menu:(NSArray *)list; +- (void)set_window_menu_check:(NSNumber *)n; +- (void)set_apps_menu:(NSArray *)list; #ifdef XQUARTZ_SPARKLE --(void) setup_sparkle; - -(void) updater:(SUUpdater *) -updater willInstallUpdate:(SUAppcastItem *) update; +- (void)setup_sparkle; +- (void)updater:(SUUpdater *)updater willInstallUpdate:(SUAppcastItem *) + update; #endif - -(void) set_can_quit:(OSX_BOOL) state; --(void) server_ready; - -(OSX_BOOL) application:(NSApplication *) -app openFile:(NSString *) filename; - - -(IBAction) apps_table_show:(id) sender; - -(IBAction) apps_table_done:(id) sender; - -(IBAction) apps_table_new:(id) sender; - -(IBAction) apps_table_duplicate:(id) sender; - -(IBAction) apps_table_delete:(id) sender; - -(IBAction) bring_to_front:(id) sender; - -(IBAction) close_window:(id) sender; - -(IBAction) minimize_window:(id) sender; - -(IBAction) zoom_window:(id) sender; - -(IBAction) next_window:(id) sender; - -(IBAction) previous_window:(id) sender; - -(IBAction) enable_fullscreen_changed:(id) sender; - -(IBAction) toggle_fullscreen:(id) sender; - -(IBAction) prefs_changed:(id) sender; - -(IBAction) prefs_show:(id) sender; - -(IBAction) quit:(id) sender; - -(IBAction) x11_help:(id) sender; +- (void)set_can_quit:(OSX_BOOL)state; +- (void)server_ready; +- (OSX_BOOL)application:(NSApplication *)app openFile:(NSString *)filename; + +- (IBAction)apps_table_show:(id)sender; +- (IBAction)apps_table_done:(id)sender; +- (IBAction)apps_table_new:(id)sender; +- (IBAction)apps_table_duplicate:(id)sender; +- (IBAction)apps_table_delete:(id)sender; +- (IBAction)bring_to_front:(id)sender; +- (IBAction)close_window:(id)sender; +- (IBAction)minimize_window:(id)sender; +- (IBAction)zoom_window:(id)sender; +- (IBAction)next_window:(id)sender; +- (IBAction)previous_window:(id)sender; +- (IBAction)enable_fullscreen_changed:(id)sender; +- (IBAction)toggle_fullscreen:(id)sender; +- (IBAction)prefs_changed:(id)sender; +- (IBAction)prefs_show:(id)sender; +- (IBAction)quit:(id)sender; +- (IBAction)x11_help:(id)sender; @end -#endif /* __OBJC__ */ + +#endif /* __OBJC__ */ + void X11ControllerMain(int argc, char **argv, char **envp); -#endif /* X11CONTROLLER_H */ +#endif /* X11CONTROLLER_H */ -- cgit v1.2.3