| |
Changeset 108
- Timestamp:
- 02/03/08 21:14:12
(10 months ago)
- Author:
- cordney
- Message:
[fix] cocoa.m: add missing semicolons [fix] remove obsolete import QDocumentQuartzView.h [fix] set XCode configuration to precompile Q_Prefix.pch [fix] added some useful strings to Info.plist
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r106 |
r108 |
|
| 1 | 1 | /* Localized versions of Info.plist keys */ |
|---|
| 2 | 2 | |
|---|
| 3 | | NSHumanReadableCopyright = "© __MyCompanyName__, 2007"; |
|---|
| | 3 | NSHumanReadableCopyright = "© Mike Kronenberg, 2008"; |
|---|
| 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> |
|---|
| 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"; |
|---|
| r107 |
r108 |
|
| 26 | 26 | |
|---|
| 27 | 27 | #import "../QDocument/QDocument.h" |
|---|
| 28 | | #import "../QDocument/QDocumentQuartzView.h" |
|---|
| 29 | 28 | #import "../FSControls/FSController.h" |
|---|
| 30 | 29 | |
|---|
| 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; |
|---|
Download in other formats:
| |