- Timestamp:
- 02/03/08 21:14:12 (2 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 5 modified
-
English.lproj/InfoPlist.strings (modified) (previous)
-
Info.plist (modified) (1 diff)
-
Q.xcodeproj/cordney.mode1v3 (added)
-
Q.xcodeproj/cordney.pbxuser (added)
-
Q.xcodeproj/project.pbxproj (modified) (1 diff)
-
QApplication/QApplication.m (modified) (1 diff)
-
qemu/patches/cocoa.m (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Info.plist
r106 r108 41 41 <string>????</string> 42 42 <key>CFBundleVersion</key> 43 <string> 0.9.1d94</string>43 <string>Qâ (0.9.1d107)</string> 44 44 <key>NSMainNibFile</key> 45 45 <string>MainMenu</string> -
trunk/Q.xcodeproj/project.pbxproj
r106 r108 578 578 GCC_GENERATE_DEBUGGING_SYMBOLS = NO; 579 579 GCC_MODEL_TUNING = G5; 580 GCC_PRECOMPILE_PREFIX_HEADER = YES; 581 GCC_PREFIX_HEADER = Q_Prefix.pch; 580 582 INFOPLIST_FILE = Info.plist; 581 583 INSTALL_PATH = "$(HOME)/Applications"; -
trunk/QApplication/QApplication.m
r107 r108 26 26 27 27 #import "../QDocument/QDocument.h" 28 #import "../QDocument/QDocumentQuartzView.h"29 28 #import "../FSControls/FSController.h" 30 29 -
trunk/qemu/patches/cocoa.m
r106 r108 261 261 static void cocoa_update(DisplayState *ds, int x, int y, int w, int h) 262 262 { 263 Q_DEBUG("qemu_cocoa: cocoa_update x=%d y=%d w=%d h=%d", x, y, w, h) 263 Q_DEBUG("qemu_cocoa: cocoa_update x=%d y=%d w=%d h=%d", x, y, w, h); 264 264 265 265 … … 281 281 static void cocoa_resize(DisplayState *ds, int w, int h) 282 282 { 283 Q_DEBUG("qemu_cocoa: cocoa_resize w=%d h=%d", w, h) 283 Q_DEBUG("qemu_cocoa: cocoa_resize w=%d h=%d", w, h); 284 284 285 285 … … 321 321 static void cocoa_refresh(DisplayState *ds) 322 322 { 323 Q_DEBUG("qemu_cocoa: cocoa_refresh") 323 Q_DEBUG("qemu_cocoa: cocoa_refresh"); 324 324 325 325 // update vga state … … 423 423 static void cocoa_cleanup(void) 424 424 { 425 Q_DEBUG("qemu_cocoa: cocoa_cleanup") 425 Q_DEBUG("qemu_cocoa: cocoa_cleanup"); 426 426 427 427 } … … 431 431 void cocoa_display_init(DisplayState *ds, int full_screen) 432 432 { 433 Q_DEBUG("qemu_cocoa: cocoa_display_init") 433 Q_DEBUG("qemu_cocoa: cocoa_display_init"); 434 434 435 435 // register vga outpu callbacks … … 473 473 - (void)applicationDidFinishLaunching: (NSNotification *) note 474 474 { 475 Q_DEBUG("qemu_cocoa: applicationDidFinishLaunching") 475 Q_DEBUG("qemu_cocoa: applicationDidFinishLaunching"); 476 476 477 477 … … 500 500 - (void)applicationWillTerminate:(NSNotification *)aNotification 501 501 { 502 Q_DEBUG("qemu_cocoa: applicationWillTerminate") 502 Q_DEBUG("qemu_cocoa: applicationWillTerminate"); 503 503 504 504 // unregister … … 518 518 - (void)startEmulationWithArgc:(int)argc argv:(char**)argv 519 519 { 520 Q_DEBUG("qemu_cocoa: startEmulationWithArgc: %D", argc) 520 Q_DEBUG("qemu_cocoa: startEmulationWithArgc: %D", argc); 521 521 522 522 int status;
