├── .travis.yml ├── AppDelegate.h ├── AppDelegate.mm ├── CMakeLists.txt ├── MainMenu.xib ├── README.md ├── main.mm └── plist.in /.travis.yml: -------------------------------------------------------------------------------- 1 | language: 2 | - objective-c 3 | 4 | before_install: 5 | - brew update 6 | 7 | install: 8 | - brew install cmake 9 | 10 | script: 11 | - cmake --version 12 | - cmake -H. -B_builds -GXcode 13 | - cmake --build _builds 14 | -------------------------------------------------------------------------------- /AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import // NSApplicationDelegate 2 | 3 | @interface AppDelegate : NSObject 4 | 5 | @property (assign, nonatomic) IBOutlet NSWindow *window; 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /AppDelegate.mm: -------------------------------------------------------------------------------- 1 | #import "AppDelegate.h" 2 | 3 | @implementation AppDelegate 4 | 5 | @synthesize window = _windows; 6 | 7 | - (void)applicationDidFinishLaunching:(NSNotification *)aNotification { 8 | // Insert code here to initialize your application 9 | } 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.8) 2 | project(foo) 3 | 4 | add_executable( 5 | foo 6 | MACOSX_BUNDLE 7 | AppDelegate.h 8 | AppDelegate.mm 9 | main.mm 10 | MainMenu.xib 11 | ) 12 | 13 | set_source_files_properties( 14 | MainMenu.xib 15 | PROPERTIES 16 | MACOSX_PACKAGE_LOCATION 17 | Resources 18 | ) 19 | 20 | set_target_properties( 21 | foo 22 | PROPERTIES 23 | MACOSX_BUNDLE_INFO_PLIST 24 | ${CMAKE_CURRENT_LIST_DIR}/plist.in 25 | ) 26 | 27 | set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -framework AppKit") 28 | -------------------------------------------------------------------------------- /MainMenu.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 1080 5 | 12E55 6 | 3084 7 | 1187.39 8 | 626.00 9 | 10 | com.apple.InterfaceBuilder.CocoaPlugin 11 | 3084 12 | 13 | 14 | NSCustomObject 15 | NSMenu 16 | NSMenuItem 17 | NSView 18 | NSWindowTemplate 19 | 20 | 21 | com.apple.InterfaceBuilder.CocoaPlugin 22 | 23 | 24 | PluginDependencyRecalculationVersion 25 | 26 | 27 | 28 | 29 | NSApplication 30 | 31 | 32 | FirstResponder 33 | 34 | 35 | NSApplication 36 | 37 | 38 | AMainMenu 39 | 40 | 41 | 42 | test-mac 43 | 44 | 1048576 45 | 2147483647 46 | 47 | NSImage 48 | NSMenuCheckmark 49 | 50 | 51 | NSImage 52 | NSMenuMixedState 53 | 54 | submenuAction: 55 | 56 | test-mac 57 | 58 | 59 | 60 | About test-mac 61 | 62 | 2147483647 63 | 64 | 65 | 66 | 67 | 68 | YES 69 | YES 70 | 71 | 72 | 1048576 73 | 2147483647 74 | 75 | 76 | 77 | 78 | 79 | Preferences… 80 | , 81 | 1048576 82 | 2147483647 83 | 84 | 85 | 86 | 87 | 88 | YES 89 | YES 90 | 91 | 92 | 1048576 93 | 2147483647 94 | 95 | 96 | 97 | 98 | 99 | Services 100 | 101 | 1048576 102 | 2147483647 103 | 104 | 105 | submenuAction: 106 | 107 | Services 108 | 109 | _NSServicesMenu 110 | 111 | 112 | 113 | 114 | YES 115 | YES 116 | 117 | 118 | 1048576 119 | 2147483647 120 | 121 | 122 | 123 | 124 | 125 | Hide test-mac 126 | h 127 | 1048576 128 | 2147483647 129 | 130 | 131 | 132 | 133 | 134 | Hide Others 135 | h 136 | 1572864 137 | 2147483647 138 | 139 | 140 | 141 | 142 | 143 | Show All 144 | 145 | 1048576 146 | 2147483647 147 | 148 | 149 | 150 | 151 | 152 | YES 153 | YES 154 | 155 | 156 | 1048576 157 | 2147483647 158 | 159 | 160 | 161 | 162 | 163 | Quit test-mac 164 | q 165 | 1048576 166 | 2147483647 167 | 168 | 169 | 170 | 171 | _NSAppleMenu 172 | 173 | 174 | 175 | 176 | File 177 | 178 | 1048576 179 | 2147483647 180 | 181 | 182 | submenuAction: 183 | 184 | File 185 | 186 | 187 | 188 | New 189 | n 190 | 1048576 191 | 2147483647 192 | 193 | 194 | 195 | 196 | 197 | Open… 198 | o 199 | 1048576 200 | 2147483647 201 | 202 | 203 | 204 | 205 | 206 | Open Recent 207 | 208 | 1048576 209 | 2147483647 210 | 211 | 212 | submenuAction: 213 | 214 | Open Recent 215 | 216 | 217 | 218 | Clear Menu 219 | 220 | 1048576 221 | 2147483647 222 | 223 | 224 | 225 | 226 | _NSRecentDocumentsMenu 227 | 228 | 229 | 230 | 231 | YES 232 | YES 233 | 234 | 235 | 1048576 236 | 2147483647 237 | 238 | 239 | 240 | 241 | 242 | Close 243 | w 244 | 1048576 245 | 2147483647 246 | 247 | 248 | 249 | 250 | 251 | Save… 252 | s 253 | 1048576 254 | 2147483647 255 | 256 | 257 | 258 | 259 | 260 | Revert to Saved 261 | 262 | 2147483647 263 | 264 | 265 | 266 | 267 | 268 | YES 269 | YES 270 | 271 | 272 | 1048576 273 | 2147483647 274 | 275 | 276 | 277 | 278 | 279 | Page Setup... 280 | P 281 | 1179648 282 | 2147483647 283 | 284 | 285 | 286 | 287 | 288 | 289 | Print… 290 | p 291 | 1048576 292 | 2147483647 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | Edit 302 | 303 | 1048576 304 | 2147483647 305 | 306 | 307 | submenuAction: 308 | 309 | Edit 310 | 311 | 312 | 313 | Undo 314 | z 315 | 1048576 316 | 2147483647 317 | 318 | 319 | 320 | 321 | 322 | Redo 323 | Z 324 | 1179648 325 | 2147483647 326 | 327 | 328 | 329 | 330 | 331 | YES 332 | YES 333 | 334 | 335 | 1048576 336 | 2147483647 337 | 338 | 339 | 340 | 341 | 342 | Cut 343 | x 344 | 1048576 345 | 2147483647 346 | 347 | 348 | 349 | 350 | 351 | Copy 352 | c 353 | 1048576 354 | 2147483647 355 | 356 | 357 | 358 | 359 | 360 | Paste 361 | v 362 | 1048576 363 | 2147483647 364 | 365 | 366 | 367 | 368 | 369 | Paste and Match Style 370 | V 371 | 1572864 372 | 2147483647 373 | 374 | 375 | 376 | 377 | 378 | Delete 379 | 380 | 1048576 381 | 2147483647 382 | 383 | 384 | 385 | 386 | 387 | Select All 388 | a 389 | 1048576 390 | 2147483647 391 | 392 | 393 | 394 | 395 | 396 | YES 397 | YES 398 | 399 | 400 | 1048576 401 | 2147483647 402 | 403 | 404 | 405 | 406 | 407 | Find 408 | 409 | 1048576 410 | 2147483647 411 | 412 | 413 | submenuAction: 414 | 415 | Find 416 | 417 | 418 | 419 | Find… 420 | f 421 | 1048576 422 | 2147483647 423 | 424 | 425 | 1 426 | 427 | 428 | 429 | Find and Replace… 430 | f 431 | 1572864 432 | 2147483647 433 | 434 | 435 | 12 436 | 437 | 438 | 439 | Find Next 440 | g 441 | 1048576 442 | 2147483647 443 | 444 | 445 | 2 446 | 447 | 448 | 449 | Find Previous 450 | G 451 | 1179648 452 | 2147483647 453 | 454 | 455 | 3 456 | 457 | 458 | 459 | Use Selection for Find 460 | e 461 | 1048576 462 | 2147483647 463 | 464 | 465 | 7 466 | 467 | 468 | 469 | Jump to Selection 470 | j 471 | 1048576 472 | 2147483647 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | Spelling and Grammar 482 | 483 | 1048576 484 | 2147483647 485 | 486 | 487 | submenuAction: 488 | 489 | Spelling and Grammar 490 | 491 | 492 | 493 | Show Spelling and Grammar 494 | : 495 | 1048576 496 | 2147483647 497 | 498 | 499 | 500 | 501 | 502 | Check Document Now 503 | ; 504 | 1048576 505 | 2147483647 506 | 507 | 508 | 509 | 510 | 511 | YES 512 | YES 513 | 514 | 515 | 2147483647 516 | 517 | 518 | 519 | 520 | 521 | Check Spelling While Typing 522 | 523 | 1048576 524 | 2147483647 525 | 526 | 527 | 528 | 529 | 530 | Check Grammar With Spelling 531 | 532 | 1048576 533 | 2147483647 534 | 535 | 536 | 537 | 538 | 539 | Correct Spelling Automatically 540 | 541 | 2147483647 542 | 543 | 544 | 545 | 546 | 547 | 548 | 549 | 550 | Substitutions 551 | 552 | 1048576 553 | 2147483647 554 | 555 | 556 | submenuAction: 557 | 558 | Substitutions 559 | 560 | 561 | 562 | Show Substitutions 563 | 564 | 2147483647 565 | 566 | 567 | 568 | 569 | 570 | YES 571 | YES 572 | 573 | 574 | 2147483647 575 | 576 | 577 | 578 | 579 | 580 | Smart Copy/Paste 581 | f 582 | 1048576 583 | 2147483647 584 | 585 | 586 | 1 587 | 588 | 589 | 590 | Smart Quotes 591 | g 592 | 1048576 593 | 2147483647 594 | 595 | 596 | 2 597 | 598 | 599 | 600 | Smart Dashes 601 | 602 | 2147483647 603 | 604 | 605 | 606 | 607 | 608 | Smart Links 609 | G 610 | 1179648 611 | 2147483647 612 | 613 | 614 | 3 615 | 616 | 617 | 618 | Text Replacement 619 | 620 | 2147483647 621 | 622 | 623 | 624 | 625 | 626 | 627 | 628 | 629 | Transformations 630 | 631 | 2147483647 632 | 633 | 634 | submenuAction: 635 | 636 | Transformations 637 | 638 | 639 | 640 | Make Upper Case 641 | 642 | 2147483647 643 | 644 | 645 | 646 | 647 | 648 | Make Lower Case 649 | 650 | 2147483647 651 | 652 | 653 | 654 | 655 | 656 | Capitalize 657 | 658 | 2147483647 659 | 660 | 661 | 662 | 663 | 664 | 665 | 666 | 667 | Speech 668 | 669 | 1048576 670 | 2147483647 671 | 672 | 673 | submenuAction: 674 | 675 | Speech 676 | 677 | 678 | 679 | Start Speaking 680 | 681 | 1048576 682 | 2147483647 683 | 684 | 685 | 686 | 687 | 688 | Stop Speaking 689 | 690 | 1048576 691 | 2147483647 692 | 693 | 694 | 695 | 696 | 697 | 698 | 699 | 700 | 701 | 702 | 703 | Format 704 | 705 | 2147483647 706 | 707 | 708 | submenuAction: 709 | 710 | Format 711 | 712 | 713 | 714 | Font 715 | 716 | 2147483647 717 | 718 | 719 | submenuAction: 720 | 721 | Font 722 | 723 | 724 | 725 | Show Fonts 726 | t 727 | 1048576 728 | 2147483647 729 | 730 | 731 | 732 | 733 | 734 | Bold 735 | b 736 | 1048576 737 | 2147483647 738 | 739 | 740 | 2 741 | 742 | 743 | 744 | Italic 745 | i 746 | 1048576 747 | 2147483647 748 | 749 | 750 | 1 751 | 752 | 753 | 754 | Underline 755 | u 756 | 1048576 757 | 2147483647 758 | 759 | 760 | 761 | 762 | 763 | YES 764 | YES 765 | 766 | 767 | 2147483647 768 | 769 | 770 | 771 | 772 | 773 | Bigger 774 | + 775 | 1048576 776 | 2147483647 777 | 778 | 779 | 3 780 | 781 | 782 | 783 | Smaller 784 | - 785 | 1048576 786 | 2147483647 787 | 788 | 789 | 4 790 | 791 | 792 | 793 | YES 794 | YES 795 | 796 | 797 | 2147483647 798 | 799 | 800 | 801 | 802 | 803 | Kern 804 | 805 | 2147483647 806 | 807 | 808 | submenuAction: 809 | 810 | Kern 811 | 812 | 813 | 814 | Use Default 815 | 816 | 2147483647 817 | 818 | 819 | 820 | 821 | 822 | Use None 823 | 824 | 2147483647 825 | 826 | 827 | 828 | 829 | 830 | Tighten 831 | 832 | 2147483647 833 | 834 | 835 | 836 | 837 | 838 | Loosen 839 | 840 | 2147483647 841 | 842 | 843 | 844 | 845 | 846 | 847 | 848 | 849 | Ligatures 850 | 851 | 2147483647 852 | 853 | 854 | submenuAction: 855 | 856 | Ligatures 857 | 858 | 859 | 860 | Use Default 861 | 862 | 2147483647 863 | 864 | 865 | 866 | 867 | 868 | Use None 869 | 870 | 2147483647 871 | 872 | 873 | 874 | 875 | 876 | Use All 877 | 878 | 2147483647 879 | 880 | 881 | 882 | 883 | 884 | 885 | 886 | 887 | Baseline 888 | 889 | 2147483647 890 | 891 | 892 | submenuAction: 893 | 894 | Baseline 895 | 896 | 897 | 898 | Use Default 899 | 900 | 2147483647 901 | 902 | 903 | 904 | 905 | 906 | Superscript 907 | 908 | 2147483647 909 | 910 | 911 | 912 | 913 | 914 | Subscript 915 | 916 | 2147483647 917 | 918 | 919 | 920 | 921 | 922 | Raise 923 | 924 | 2147483647 925 | 926 | 927 | 928 | 929 | 930 | Lower 931 | 932 | 2147483647 933 | 934 | 935 | 936 | 937 | 938 | 939 | 940 | 941 | YES 942 | YES 943 | 944 | 945 | 2147483647 946 | 947 | 948 | 949 | 950 | 951 | Show Colors 952 | C 953 | 1048576 954 | 2147483647 955 | 956 | 957 | 958 | 959 | 960 | YES 961 | YES 962 | 963 | 964 | 2147483647 965 | 966 | 967 | 968 | 969 | 970 | Copy Style 971 | c 972 | 1572864 973 | 2147483647 974 | 975 | 976 | 977 | 978 | 979 | Paste Style 980 | v 981 | 1572864 982 | 2147483647 983 | 984 | 985 | 986 | 987 | _NSFontMenu 988 | 989 | 990 | 991 | 992 | Text 993 | 994 | 2147483647 995 | 996 | 997 | submenuAction: 998 | 999 | Text 1000 | 1001 | 1002 | 1003 | Align Left 1004 | { 1005 | 1048576 1006 | 2147483647 1007 | 1008 | 1009 | 1010 | 1011 | 1012 | Center 1013 | | 1014 | 1048576 1015 | 2147483647 1016 | 1017 | 1018 | 1019 | 1020 | 1021 | Justify 1022 | 1023 | 2147483647 1024 | 1025 | 1026 | 1027 | 1028 | 1029 | Align Right 1030 | } 1031 | 1048576 1032 | 2147483647 1033 | 1034 | 1035 | 1036 | 1037 | 1038 | YES 1039 | YES 1040 | 1041 | 1042 | 2147483647 1043 | 1044 | 1045 | 1046 | 1047 | 1048 | Writing Direction 1049 | 1050 | 2147483647 1051 | 1052 | 1053 | submenuAction: 1054 | 1055 | Writing Direction 1056 | 1057 | 1058 | 1059 | YES 1060 | Paragraph 1061 | 1062 | 2147483647 1063 | 1064 | 1065 | 1066 | 1067 | 1068 | CURlZmF1bHQ 1069 | 1070 | 2147483647 1071 | 1072 | 1073 | 1074 | 1075 | 1076 | CUxlZnQgdG8gUmlnaHQ 1077 | 1078 | 2147483647 1079 | 1080 | 1081 | 1082 | 1083 | 1084 | CVJpZ2h0IHRvIExlZnQ 1085 | 1086 | 2147483647 1087 | 1088 | 1089 | 1090 | 1091 | 1092 | YES 1093 | YES 1094 | 1095 | 1096 | 2147483647 1097 | 1098 | 1099 | 1100 | 1101 | 1102 | YES 1103 | Selection 1104 | 1105 | 2147483647 1106 | 1107 | 1108 | 1109 | 1110 | 1111 | CURlZmF1bHQ 1112 | 1113 | 2147483647 1114 | 1115 | 1116 | 1117 | 1118 | 1119 | CUxlZnQgdG8gUmlnaHQ 1120 | 1121 | 2147483647 1122 | 1123 | 1124 | 1125 | 1126 | 1127 | CVJpZ2h0IHRvIExlZnQ 1128 | 1129 | 2147483647 1130 | 1131 | 1132 | 1133 | 1134 | 1135 | 1136 | 1137 | 1138 | YES 1139 | YES 1140 | 1141 | 1142 | 2147483647 1143 | 1144 | 1145 | 1146 | 1147 | 1148 | Show Ruler 1149 | 1150 | 2147483647 1151 | 1152 | 1153 | 1154 | 1155 | 1156 | Copy Ruler 1157 | c 1158 | 1310720 1159 | 2147483647 1160 | 1161 | 1162 | 1163 | 1164 | 1165 | Paste Ruler 1166 | v 1167 | 1310720 1168 | 2147483647 1169 | 1170 | 1171 | 1172 | 1173 | 1174 | 1175 | 1176 | 1177 | 1178 | 1179 | 1180 | View 1181 | 1182 | 1048576 1183 | 2147483647 1184 | 1185 | 1186 | submenuAction: 1187 | 1188 | View 1189 | 1190 | 1191 | 1192 | Show Toolbar 1193 | t 1194 | 1572864 1195 | 2147483647 1196 | 1197 | 1198 | 1199 | 1200 | 1201 | Customize Toolbar… 1202 | 1203 | 1048576 1204 | 2147483647 1205 | 1206 | 1207 | 1208 | 1209 | 1210 | 1211 | 1212 | 1213 | Window 1214 | 1215 | 1048576 1216 | 2147483647 1217 | 1218 | 1219 | submenuAction: 1220 | 1221 | Window 1222 | 1223 | 1224 | 1225 | Minimize 1226 | m 1227 | 1048576 1228 | 2147483647 1229 | 1230 | 1231 | 1232 | 1233 | 1234 | Zoom 1235 | 1236 | 1048576 1237 | 2147483647 1238 | 1239 | 1240 | 1241 | 1242 | 1243 | YES 1244 | YES 1245 | 1246 | 1247 | 1048576 1248 | 2147483647 1249 | 1250 | 1251 | 1252 | 1253 | 1254 | Bring All to Front 1255 | 1256 | 1048576 1257 | 2147483647 1258 | 1259 | 1260 | 1261 | 1262 | _NSWindowsMenu 1263 | 1264 | 1265 | 1266 | 1267 | Help 1268 | 1269 | 2147483647 1270 | 1271 | 1272 | submenuAction: 1273 | 1274 | Help 1275 | 1276 | 1277 | 1278 | test-mac Help 1279 | ? 1280 | 1048576 1281 | 2147483647 1282 | 1283 | 1284 | 1285 | 1286 | _NSHelpMenu 1287 | 1288 | 1289 | 1290 | _NSMainMenu 1291 | 1292 | 1293 | 15 1294 | 2 1295 | {{335, 390}, {480, 360}} 1296 | 1954021376 1297 | cocoa-application-test 1298 | NSWindow 1299 | 1300 | 1301 | 1302 | 1303 | 256 1304 | {480, 360} 1305 | 1306 | 1307 | 1308 | 1309 | {{0, 0}, {1680, 1028}} 1310 | {10000000000000, 10000000000000} 1311 | YES 1312 | 1313 | 1314 | AppDelegate 1315 | 1316 | 1317 | NSFontManager 1318 | 1319 | 1320 | 1321 | 1322 | 1323 | 1324 | terminate: 1325 | 1326 | 1327 | 1328 | 449 1329 | 1330 | 1331 | 1332 | orderFrontStandardAboutPanel: 1333 | 1334 | 1335 | 1336 | 142 1337 | 1338 | 1339 | 1340 | delegate 1341 | 1342 | 1343 | 1344 | 495 1345 | 1346 | 1347 | 1348 | performMiniaturize: 1349 | 1350 | 1351 | 1352 | 37 1353 | 1354 | 1355 | 1356 | arrangeInFront: 1357 | 1358 | 1359 | 1360 | 39 1361 | 1362 | 1363 | 1364 | print: 1365 | 1366 | 1367 | 1368 | 86 1369 | 1370 | 1371 | 1372 | runPageLayout: 1373 | 1374 | 1375 | 1376 | 87 1377 | 1378 | 1379 | 1380 | clearRecentDocuments: 1381 | 1382 | 1383 | 1384 | 127 1385 | 1386 | 1387 | 1388 | performClose: 1389 | 1390 | 1391 | 1392 | 193 1393 | 1394 | 1395 | 1396 | toggleContinuousSpellChecking: 1397 | 1398 | 1399 | 1400 | 222 1401 | 1402 | 1403 | 1404 | undo: 1405 | 1406 | 1407 | 1408 | 223 1409 | 1410 | 1411 | 1412 | copy: 1413 | 1414 | 1415 | 1416 | 224 1417 | 1418 | 1419 | 1420 | checkSpelling: 1421 | 1422 | 1423 | 1424 | 225 1425 | 1426 | 1427 | 1428 | paste: 1429 | 1430 | 1431 | 1432 | 226 1433 | 1434 | 1435 | 1436 | stopSpeaking: 1437 | 1438 | 1439 | 1440 | 227 1441 | 1442 | 1443 | 1444 | cut: 1445 | 1446 | 1447 | 1448 | 228 1449 | 1450 | 1451 | 1452 | showGuessPanel: 1453 | 1454 | 1455 | 1456 | 230 1457 | 1458 | 1459 | 1460 | redo: 1461 | 1462 | 1463 | 1464 | 231 1465 | 1466 | 1467 | 1468 | selectAll: 1469 | 1470 | 1471 | 1472 | 232 1473 | 1474 | 1475 | 1476 | startSpeaking: 1477 | 1478 | 1479 | 1480 | 233 1481 | 1482 | 1483 | 1484 | delete: 1485 | 1486 | 1487 | 1488 | 235 1489 | 1490 | 1491 | 1492 | performZoom: 1493 | 1494 | 1495 | 1496 | 240 1497 | 1498 | 1499 | 1500 | performFindPanelAction: 1501 | 1502 | 1503 | 1504 | 241 1505 | 1506 | 1507 | 1508 | centerSelectionInVisibleArea: 1509 | 1510 | 1511 | 1512 | 245 1513 | 1514 | 1515 | 1516 | toggleGrammarChecking: 1517 | 1518 | 1519 | 1520 | 347 1521 | 1522 | 1523 | 1524 | toggleSmartInsertDelete: 1525 | 1526 | 1527 | 1528 | 355 1529 | 1530 | 1531 | 1532 | toggleAutomaticQuoteSubstitution: 1533 | 1534 | 1535 | 1536 | 356 1537 | 1538 | 1539 | 1540 | toggleAutomaticLinkDetection: 1541 | 1542 | 1543 | 1544 | 357 1545 | 1546 | 1547 | 1548 | saveDocument: 1549 | 1550 | 1551 | 1552 | 362 1553 | 1554 | 1555 | 1556 | revertDocumentToSaved: 1557 | 1558 | 1559 | 1560 | 364 1561 | 1562 | 1563 | 1564 | runToolbarCustomizationPalette: 1565 | 1566 | 1567 | 1568 | 365 1569 | 1570 | 1571 | 1572 | toggleToolbarShown: 1573 | 1574 | 1575 | 1576 | 366 1577 | 1578 | 1579 | 1580 | hide: 1581 | 1582 | 1583 | 1584 | 367 1585 | 1586 | 1587 | 1588 | hideOtherApplications: 1589 | 1590 | 1591 | 1592 | 368 1593 | 1594 | 1595 | 1596 | unhideAllApplications: 1597 | 1598 | 1599 | 1600 | 370 1601 | 1602 | 1603 | 1604 | newDocument: 1605 | 1606 | 1607 | 1608 | 373 1609 | 1610 | 1611 | 1612 | openDocument: 1613 | 1614 | 1615 | 1616 | 374 1617 | 1618 | 1619 | 1620 | raiseBaseline: 1621 | 1622 | 1623 | 1624 | 426 1625 | 1626 | 1627 | 1628 | lowerBaseline: 1629 | 1630 | 1631 | 1632 | 427 1633 | 1634 | 1635 | 1636 | copyFont: 1637 | 1638 | 1639 | 1640 | 428 1641 | 1642 | 1643 | 1644 | subscript: 1645 | 1646 | 1647 | 1648 | 429 1649 | 1650 | 1651 | 1652 | superscript: 1653 | 1654 | 1655 | 1656 | 430 1657 | 1658 | 1659 | 1660 | tightenKerning: 1661 | 1662 | 1663 | 1664 | 431 1665 | 1666 | 1667 | 1668 | underline: 1669 | 1670 | 1671 | 1672 | 432 1673 | 1674 | 1675 | 1676 | orderFrontColorPanel: 1677 | 1678 | 1679 | 1680 | 433 1681 | 1682 | 1683 | 1684 | useAllLigatures: 1685 | 1686 | 1687 | 1688 | 434 1689 | 1690 | 1691 | 1692 | loosenKerning: 1693 | 1694 | 1695 | 1696 | 435 1697 | 1698 | 1699 | 1700 | pasteFont: 1701 | 1702 | 1703 | 1704 | 436 1705 | 1706 | 1707 | 1708 | unscript: 1709 | 1710 | 1711 | 1712 | 437 1713 | 1714 | 1715 | 1716 | useStandardKerning: 1717 | 1718 | 1719 | 1720 | 438 1721 | 1722 | 1723 | 1724 | useStandardLigatures: 1725 | 1726 | 1727 | 1728 | 439 1729 | 1730 | 1731 | 1732 | turnOffLigatures: 1733 | 1734 | 1735 | 1736 | 440 1737 | 1738 | 1739 | 1740 | turnOffKerning: 1741 | 1742 | 1743 | 1744 | 441 1745 | 1746 | 1747 | 1748 | toggleAutomaticSpellingCorrection: 1749 | 1750 | 1751 | 1752 | 456 1753 | 1754 | 1755 | 1756 | orderFrontSubstitutionsPanel: 1757 | 1758 | 1759 | 1760 | 458 1761 | 1762 | 1763 | 1764 | toggleAutomaticDashSubstitution: 1765 | 1766 | 1767 | 1768 | 461 1769 | 1770 | 1771 | 1772 | toggleAutomaticTextReplacement: 1773 | 1774 | 1775 | 1776 | 463 1777 | 1778 | 1779 | 1780 | uppercaseWord: 1781 | 1782 | 1783 | 1784 | 464 1785 | 1786 | 1787 | 1788 | capitalizeWord: 1789 | 1790 | 1791 | 1792 | 467 1793 | 1794 | 1795 | 1796 | lowercaseWord: 1797 | 1798 | 1799 | 1800 | 468 1801 | 1802 | 1803 | 1804 | pasteAsPlainText: 1805 | 1806 | 1807 | 1808 | 486 1809 | 1810 | 1811 | 1812 | performFindPanelAction: 1813 | 1814 | 1815 | 1816 | 487 1817 | 1818 | 1819 | 1820 | performFindPanelAction: 1821 | 1822 | 1823 | 1824 | 488 1825 | 1826 | 1827 | 1828 | performFindPanelAction: 1829 | 1830 | 1831 | 1832 | 489 1833 | 1834 | 1835 | 1836 | showHelp: 1837 | 1838 | 1839 | 1840 | 493 1841 | 1842 | 1843 | 1844 | alignCenter: 1845 | 1846 | 1847 | 1848 | 518 1849 | 1850 | 1851 | 1852 | pasteRuler: 1853 | 1854 | 1855 | 1856 | 519 1857 | 1858 | 1859 | 1860 | toggleRuler: 1861 | 1862 | 1863 | 1864 | 520 1865 | 1866 | 1867 | 1868 | alignRight: 1869 | 1870 | 1871 | 1872 | 521 1873 | 1874 | 1875 | 1876 | copyRuler: 1877 | 1878 | 1879 | 1880 | 522 1881 | 1882 | 1883 | 1884 | alignJustified: 1885 | 1886 | 1887 | 1888 | 523 1889 | 1890 | 1891 | 1892 | alignLeft: 1893 | 1894 | 1895 | 1896 | 524 1897 | 1898 | 1899 | 1900 | makeBaseWritingDirectionNatural: 1901 | 1902 | 1903 | 1904 | 525 1905 | 1906 | 1907 | 1908 | makeBaseWritingDirectionLeftToRight: 1909 | 1910 | 1911 | 1912 | 526 1913 | 1914 | 1915 | 1916 | makeBaseWritingDirectionRightToLeft: 1917 | 1918 | 1919 | 1920 | 527 1921 | 1922 | 1923 | 1924 | makeTextWritingDirectionNatural: 1925 | 1926 | 1927 | 1928 | 528 1929 | 1930 | 1931 | 1932 | makeTextWritingDirectionLeftToRight: 1933 | 1934 | 1935 | 1936 | 529 1937 | 1938 | 1939 | 1940 | makeTextWritingDirectionRightToLeft: 1941 | 1942 | 1943 | 1944 | 530 1945 | 1946 | 1947 | 1948 | performFindPanelAction: 1949 | 1950 | 1951 | 1952 | 535 1953 | 1954 | 1955 | 1956 | addFontTrait: 1957 | 1958 | 1959 | 1960 | 421 1961 | 1962 | 1963 | 1964 | addFontTrait: 1965 | 1966 | 1967 | 1968 | 422 1969 | 1970 | 1971 | 1972 | modifyFont: 1973 | 1974 | 1975 | 1976 | 423 1977 | 1978 | 1979 | 1980 | orderFrontFontPanel: 1981 | 1982 | 1983 | 1984 | 424 1985 | 1986 | 1987 | 1988 | modifyFont: 1989 | 1990 | 1991 | 1992 | 425 1993 | 1994 | 1995 | 1996 | window 1997 | 1998 | 1999 | 2000 | 532 2001 | 2002 | 2003 | 2004 | 2005 | 2006 | 0 2007 | 2008 | 2009 | 2010 | 2011 | 2012 | -2 2013 | 2014 | 2015 | File's Owner 2016 | 2017 | 2018 | -1 2019 | 2020 | 2021 | First Responder 2022 | 2023 | 2024 | -3 2025 | 2026 | 2027 | Application 2028 | 2029 | 2030 | 29 2031 | 2032 | 2033 | 2034 | 2035 | 2036 | 2037 | 2038 | 2039 | 2040 | 2041 | 2042 | 2043 | 2044 | 19 2045 | 2046 | 2047 | 2048 | 2049 | 2050 | 2051 | 2052 | 56 2053 | 2054 | 2055 | 2056 | 2057 | 2058 | 2059 | 2060 | 217 2061 | 2062 | 2063 | 2064 | 2065 | 2066 | 2067 | 2068 | 83 2069 | 2070 | 2071 | 2072 | 2073 | 2074 | 2075 | 2076 | 81 2077 | 2078 | 2079 | 2080 | 2081 | 2082 | 2083 | 2084 | 2085 | 2086 | 2087 | 2088 | 2089 | 2090 | 2091 | 2092 | 2093 | 75 2094 | 2095 | 2096 | 2097 | 2098 | 78 2099 | 2100 | 2101 | 2102 | 2103 | 72 2104 | 2105 | 2106 | 2107 | 2108 | 82 2109 | 2110 | 2111 | 2112 | 2113 | 124 2114 | 2115 | 2116 | 2117 | 2118 | 2119 | 2120 | 2121 | 77 2122 | 2123 | 2124 | 2125 | 2126 | 73 2127 | 2128 | 2129 | 2130 | 2131 | 79 2132 | 2133 | 2134 | 2135 | 2136 | 112 2137 | 2138 | 2139 | 2140 | 2141 | 74 2142 | 2143 | 2144 | 2145 | 2146 | 125 2147 | 2148 | 2149 | 2150 | 2151 | 2152 | 2153 | 2154 | 126 2155 | 2156 | 2157 | 2158 | 2159 | 205 2160 | 2161 | 2162 | 2163 | 2164 | 2165 | 2166 | 2167 | 2168 | 2169 | 2170 | 2171 | 2172 | 2173 | 2174 | 2175 | 2176 | 2177 | 2178 | 2179 | 2180 | 2181 | 202 2182 | 2183 | 2184 | 2185 | 2186 | 198 2187 | 2188 | 2189 | 2190 | 2191 | 207 2192 | 2193 | 2194 | 2195 | 2196 | 214 2197 | 2198 | 2199 | 2200 | 2201 | 199 2202 | 2203 | 2204 | 2205 | 2206 | 203 2207 | 2208 | 2209 | 2210 | 2211 | 197 2212 | 2213 | 2214 | 2215 | 2216 | 206 2217 | 2218 | 2219 | 2220 | 2221 | 215 2222 | 2223 | 2224 | 2225 | 2226 | 218 2227 | 2228 | 2229 | 2230 | 2231 | 2232 | 2233 | 2234 | 216 2235 | 2236 | 2237 | 2238 | 2239 | 2240 | 2241 | 2242 | 200 2243 | 2244 | 2245 | 2246 | 2247 | 2248 | 2249 | 2250 | 2251 | 2252 | 2253 | 2254 | 2255 | 219 2256 | 2257 | 2258 | 2259 | 2260 | 201 2261 | 2262 | 2263 | 2264 | 2265 | 204 2266 | 2267 | 2268 | 2269 | 2270 | 220 2271 | 2272 | 2273 | 2274 | 2275 | 2276 | 2277 | 2278 | 2279 | 2280 | 2281 | 2282 | 2283 | 213 2284 | 2285 | 2286 | 2287 | 2288 | 210 2289 | 2290 | 2291 | 2292 | 2293 | 221 2294 | 2295 | 2296 | 2297 | 2298 | 208 2299 | 2300 | 2301 | 2302 | 2303 | 209 2304 | 2305 | 2306 | 2307 | 2308 | 57 2309 | 2310 | 2311 | 2312 | 2313 | 2314 | 2315 | 2316 | 2317 | 2318 | 2319 | 2320 | 2321 | 2322 | 2323 | 2324 | 2325 | 2326 | 58 2327 | 2328 | 2329 | 2330 | 2331 | 134 2332 | 2333 | 2334 | 2335 | 2336 | 150 2337 | 2338 | 2339 | 2340 | 2341 | 136 2342 | 2343 | 2344 | 2345 | 2346 | 144 2347 | 2348 | 2349 | 2350 | 2351 | 129 2352 | 2353 | 2354 | 2355 | 2356 | 143 2357 | 2358 | 2359 | 2360 | 2361 | 236 2362 | 2363 | 2364 | 2365 | 2366 | 131 2367 | 2368 | 2369 | 2370 | 2371 | 2372 | 2373 | 2374 | 149 2375 | 2376 | 2377 | 2378 | 2379 | 145 2380 | 2381 | 2382 | 2383 | 2384 | 130 2385 | 2386 | 2387 | 2388 | 2389 | 24 2390 | 2391 | 2392 | 2393 | 2394 | 2395 | 2396 | 2397 | 2398 | 2399 | 2400 | 92 2401 | 2402 | 2403 | 2404 | 2405 | 5 2406 | 2407 | 2408 | 2409 | 2410 | 239 2411 | 2412 | 2413 | 2414 | 2415 | 23 2416 | 2417 | 2418 | 2419 | 2420 | 295 2421 | 2422 | 2423 | 2424 | 2425 | 2426 | 2427 | 2428 | 296 2429 | 2430 | 2431 | 2432 | 2433 | 2434 | 2435 | 2436 | 2437 | 297 2438 | 2439 | 2440 | 2441 | 2442 | 298 2443 | 2444 | 2445 | 2446 | 2447 | 211 2448 | 2449 | 2450 | 2451 | 2452 | 2453 | 2454 | 2455 | 212 2456 | 2457 | 2458 | 2459 | 2460 | 2461 | 2462 | 2463 | 2464 | 195 2465 | 2466 | 2467 | 2468 | 2469 | 196 2470 | 2471 | 2472 | 2473 | 2474 | 346 2475 | 2476 | 2477 | 2478 | 2479 | 348 2480 | 2481 | 2482 | 2483 | 2484 | 2485 | 2486 | 2487 | 349 2488 | 2489 | 2490 | 2491 | 2492 | 2493 | 2494 | 2495 | 2496 | 2497 | 2498 | 2499 | 2500 | 2501 | 350 2502 | 2503 | 2504 | 2505 | 2506 | 351 2507 | 2508 | 2509 | 2510 | 2511 | 354 2512 | 2513 | 2514 | 2515 | 2516 | 371 2517 | 2518 | 2519 | 2520 | 2521 | 2522 | 2523 | 2524 | 372 2525 | 2526 | 2527 | 2528 | 2529 | 375 2530 | 2531 | 2532 | 2533 | 2534 | 2535 | 2536 | 2537 | 376 2538 | 2539 | 2540 | 2541 | 2542 | 2543 | 2544 | 2545 | 2546 | 377 2547 | 2548 | 2549 | 2550 | 2551 | 2552 | 2553 | 2554 | 388 2555 | 2556 | 2557 | 2558 | 2559 | 2560 | 2561 | 2562 | 2563 | 2564 | 2565 | 2566 | 2567 | 2568 | 2569 | 2570 | 2571 | 2572 | 2573 | 2574 | 2575 | 2576 | 2577 | 389 2578 | 2579 | 2580 | 2581 | 2582 | 390 2583 | 2584 | 2585 | 2586 | 2587 | 391 2588 | 2589 | 2590 | 2591 | 2592 | 392 2593 | 2594 | 2595 | 2596 | 2597 | 393 2598 | 2599 | 2600 | 2601 | 2602 | 394 2603 | 2604 | 2605 | 2606 | 2607 | 395 2608 | 2609 | 2610 | 2611 | 2612 | 396 2613 | 2614 | 2615 | 2616 | 2617 | 397 2618 | 2619 | 2620 | 2621 | 2622 | 2623 | 2624 | 2625 | 398 2626 | 2627 | 2628 | 2629 | 2630 | 2631 | 2632 | 2633 | 399 2634 | 2635 | 2636 | 2637 | 2638 | 2639 | 2640 | 2641 | 400 2642 | 2643 | 2644 | 2645 | 2646 | 401 2647 | 2648 | 2649 | 2650 | 2651 | 402 2652 | 2653 | 2654 | 2655 | 2656 | 403 2657 | 2658 | 2659 | 2660 | 2661 | 404 2662 | 2663 | 2664 | 2665 | 2666 | 405 2667 | 2668 | 2669 | 2670 | 2671 | 2672 | 2673 | 2674 | 2675 | 2676 | 2677 | 2678 | 406 2679 | 2680 | 2681 | 2682 | 2683 | 407 2684 | 2685 | 2686 | 2687 | 2688 | 408 2689 | 2690 | 2691 | 2692 | 2693 | 409 2694 | 2695 | 2696 | 2697 | 2698 | 410 2699 | 2700 | 2701 | 2702 | 2703 | 411 2704 | 2705 | 2706 | 2707 | 2708 | 2709 | 2710 | 2711 | 2712 | 2713 | 412 2714 | 2715 | 2716 | 2717 | 2718 | 413 2719 | 2720 | 2721 | 2722 | 2723 | 414 2724 | 2725 | 2726 | 2727 | 2728 | 415 2729 | 2730 | 2731 | 2732 | 2733 | 2734 | 2735 | 2736 | 2737 | 2738 | 2739 | 416 2740 | 2741 | 2742 | 2743 | 2744 | 417 2745 | 2746 | 2747 | 2748 | 2749 | 418 2750 | 2751 | 2752 | 2753 | 2754 | 419 2755 | 2756 | 2757 | 2758 | 2759 | 420 2760 | 2761 | 2762 | 2763 | 2764 | 450 2765 | 2766 | 2767 | 2768 | 2769 | 2770 | 2771 | 2772 | 451 2773 | 2774 | 2775 | 2776 | 2777 | 2778 | 2779 | 2780 | 2781 | 2782 | 452 2783 | 2784 | 2785 | 2786 | 2787 | 453 2788 | 2789 | 2790 | 2791 | 2792 | 454 2793 | 2794 | 2795 | 2796 | 2797 | 457 2798 | 2799 | 2800 | 2801 | 2802 | 459 2803 | 2804 | 2805 | 2806 | 2807 | 460 2808 | 2809 | 2810 | 2811 | 2812 | 462 2813 | 2814 | 2815 | 2816 | 2817 | 465 2818 | 2819 | 2820 | 2821 | 2822 | 466 2823 | 2824 | 2825 | 2826 | 2827 | 485 2828 | 2829 | 2830 | 2831 | 2832 | 490 2833 | 2834 | 2835 | 2836 | 2837 | 2838 | 2839 | 2840 | 491 2841 | 2842 | 2843 | 2844 | 2845 | 2846 | 2847 | 2848 | 492 2849 | 2850 | 2851 | 2852 | 2853 | 494 2854 | 2855 | 2856 | 2857 | 2858 | 496 2859 | 2860 | 2861 | 2862 | 2863 | 2864 | 2865 | 2866 | 497 2867 | 2868 | 2869 | 2870 | 2871 | 2872 | 2873 | 2874 | 2875 | 2876 | 2877 | 2878 | 2879 | 2880 | 2881 | 2882 | 2883 | 498 2884 | 2885 | 2886 | 2887 | 2888 | 499 2889 | 2890 | 2891 | 2892 | 2893 | 500 2894 | 2895 | 2896 | 2897 | 2898 | 501 2899 | 2900 | 2901 | 2902 | 2903 | 502 2904 | 2905 | 2906 | 2907 | 2908 | 503 2909 | 2910 | 2911 | 2912 | 2913 | 2914 | 2915 | 2916 | 504 2917 | 2918 | 2919 | 2920 | 2921 | 505 2922 | 2923 | 2924 | 2925 | 2926 | 506 2927 | 2928 | 2929 | 2930 | 2931 | 507 2932 | 2933 | 2934 | 2935 | 2936 | 508 2937 | 2938 | 2939 | 2940 | 2941 | 2942 | 2943 | 2944 | 2945 | 2946 | 2947 | 2948 | 2949 | 2950 | 2951 | 2952 | 509 2953 | 2954 | 2955 | 2956 | 2957 | 510 2958 | 2959 | 2960 | 2961 | 2962 | 511 2963 | 2964 | 2965 | 2966 | 2967 | 512 2968 | 2969 | 2970 | 2971 | 2972 | 513 2973 | 2974 | 2975 | 2976 | 2977 | 514 2978 | 2979 | 2980 | 2981 | 2982 | 515 2983 | 2984 | 2985 | 2986 | 2987 | 516 2988 | 2989 | 2990 | 2991 | 2992 | 517 2993 | 2994 | 2995 | 2996 | 2997 | 534 2998 | 2999 | 3000 | 3001 | 3002 | 3003 | 3004 | com.apple.InterfaceBuilder.CocoaPlugin 3005 | com.apple.InterfaceBuilder.CocoaPlugin 3006 | com.apple.InterfaceBuilder.CocoaPlugin 3007 | com.apple.InterfaceBuilder.CocoaPlugin 3008 | com.apple.InterfaceBuilder.CocoaPlugin 3009 | com.apple.InterfaceBuilder.CocoaPlugin 3010 | com.apple.InterfaceBuilder.CocoaPlugin 3011 | com.apple.InterfaceBuilder.CocoaPlugin 3012 | com.apple.InterfaceBuilder.CocoaPlugin 3013 | com.apple.InterfaceBuilder.CocoaPlugin 3014 | com.apple.InterfaceBuilder.CocoaPlugin 3015 | com.apple.InterfaceBuilder.CocoaPlugin 3016 | com.apple.InterfaceBuilder.CocoaPlugin 3017 | com.apple.InterfaceBuilder.CocoaPlugin 3018 | com.apple.InterfaceBuilder.CocoaPlugin 3019 | com.apple.InterfaceBuilder.CocoaPlugin 3020 | com.apple.InterfaceBuilder.CocoaPlugin 3021 | com.apple.InterfaceBuilder.CocoaPlugin 3022 | com.apple.InterfaceBuilder.CocoaPlugin 3023 | com.apple.InterfaceBuilder.CocoaPlugin 3024 | com.apple.InterfaceBuilder.CocoaPlugin 3025 | com.apple.InterfaceBuilder.CocoaPlugin 3026 | com.apple.InterfaceBuilder.CocoaPlugin 3027 | com.apple.InterfaceBuilder.CocoaPlugin 3028 | com.apple.InterfaceBuilder.CocoaPlugin 3029 | com.apple.InterfaceBuilder.CocoaPlugin 3030 | com.apple.InterfaceBuilder.CocoaPlugin 3031 | com.apple.InterfaceBuilder.CocoaPlugin 3032 | com.apple.InterfaceBuilder.CocoaPlugin 3033 | com.apple.InterfaceBuilder.CocoaPlugin 3034 | com.apple.InterfaceBuilder.CocoaPlugin 3035 | com.apple.InterfaceBuilder.CocoaPlugin 3036 | com.apple.InterfaceBuilder.CocoaPlugin 3037 | com.apple.InterfaceBuilder.CocoaPlugin 3038 | com.apple.InterfaceBuilder.CocoaPlugin 3039 | com.apple.InterfaceBuilder.CocoaPlugin 3040 | com.apple.InterfaceBuilder.CocoaPlugin 3041 | com.apple.InterfaceBuilder.CocoaPlugin 3042 | com.apple.InterfaceBuilder.CocoaPlugin 3043 | com.apple.InterfaceBuilder.CocoaPlugin 3044 | com.apple.InterfaceBuilder.CocoaPlugin 3045 | com.apple.InterfaceBuilder.CocoaPlugin 3046 | com.apple.InterfaceBuilder.CocoaPlugin 3047 | com.apple.InterfaceBuilder.CocoaPlugin 3048 | com.apple.InterfaceBuilder.CocoaPlugin 3049 | com.apple.InterfaceBuilder.CocoaPlugin 3050 | com.apple.InterfaceBuilder.CocoaPlugin 3051 | com.apple.InterfaceBuilder.CocoaPlugin 3052 | com.apple.InterfaceBuilder.CocoaPlugin 3053 | com.apple.InterfaceBuilder.CocoaPlugin 3054 | com.apple.InterfaceBuilder.CocoaPlugin 3055 | com.apple.InterfaceBuilder.CocoaPlugin 3056 | com.apple.InterfaceBuilder.CocoaPlugin 3057 | com.apple.InterfaceBuilder.CocoaPlugin 3058 | com.apple.InterfaceBuilder.CocoaPlugin 3059 | com.apple.InterfaceBuilder.CocoaPlugin 3060 | com.apple.InterfaceBuilder.CocoaPlugin 3061 | com.apple.InterfaceBuilder.CocoaPlugin 3062 | com.apple.InterfaceBuilder.CocoaPlugin 3063 | com.apple.InterfaceBuilder.CocoaPlugin 3064 | com.apple.InterfaceBuilder.CocoaPlugin 3065 | {{380, 496}, {480, 360}} 3066 | 3067 | com.apple.InterfaceBuilder.CocoaPlugin 3068 | com.apple.InterfaceBuilder.CocoaPlugin 3069 | com.apple.InterfaceBuilder.CocoaPlugin 3070 | com.apple.InterfaceBuilder.CocoaPlugin 3071 | com.apple.InterfaceBuilder.CocoaPlugin 3072 | com.apple.InterfaceBuilder.CocoaPlugin 3073 | com.apple.InterfaceBuilder.CocoaPlugin 3074 | com.apple.InterfaceBuilder.CocoaPlugin 3075 | com.apple.InterfaceBuilder.CocoaPlugin 3076 | com.apple.InterfaceBuilder.CocoaPlugin 3077 | com.apple.InterfaceBuilder.CocoaPlugin 3078 | com.apple.InterfaceBuilder.CocoaPlugin 3079 | com.apple.InterfaceBuilder.CocoaPlugin 3080 | com.apple.InterfaceBuilder.CocoaPlugin 3081 | com.apple.InterfaceBuilder.CocoaPlugin 3082 | com.apple.InterfaceBuilder.CocoaPlugin 3083 | com.apple.InterfaceBuilder.CocoaPlugin 3084 | com.apple.InterfaceBuilder.CocoaPlugin 3085 | com.apple.InterfaceBuilder.CocoaPlugin 3086 | com.apple.InterfaceBuilder.CocoaPlugin 3087 | com.apple.InterfaceBuilder.CocoaPlugin 3088 | com.apple.InterfaceBuilder.CocoaPlugin 3089 | com.apple.InterfaceBuilder.CocoaPlugin 3090 | com.apple.InterfaceBuilder.CocoaPlugin 3091 | com.apple.InterfaceBuilder.CocoaPlugin 3092 | com.apple.InterfaceBuilder.CocoaPlugin 3093 | com.apple.InterfaceBuilder.CocoaPlugin 3094 | com.apple.InterfaceBuilder.CocoaPlugin 3095 | com.apple.InterfaceBuilder.CocoaPlugin 3096 | com.apple.InterfaceBuilder.CocoaPlugin 3097 | com.apple.InterfaceBuilder.CocoaPlugin 3098 | com.apple.InterfaceBuilder.CocoaPlugin 3099 | com.apple.InterfaceBuilder.CocoaPlugin 3100 | com.apple.InterfaceBuilder.CocoaPlugin 3101 | com.apple.InterfaceBuilder.CocoaPlugin 3102 | com.apple.InterfaceBuilder.CocoaPlugin 3103 | com.apple.InterfaceBuilder.CocoaPlugin 3104 | com.apple.InterfaceBuilder.CocoaPlugin 3105 | com.apple.InterfaceBuilder.CocoaPlugin 3106 | com.apple.InterfaceBuilder.CocoaPlugin 3107 | com.apple.InterfaceBuilder.CocoaPlugin 3108 | com.apple.InterfaceBuilder.CocoaPlugin 3109 | com.apple.InterfaceBuilder.CocoaPlugin 3110 | com.apple.InterfaceBuilder.CocoaPlugin 3111 | com.apple.InterfaceBuilder.CocoaPlugin 3112 | com.apple.InterfaceBuilder.CocoaPlugin 3113 | com.apple.InterfaceBuilder.CocoaPlugin 3114 | com.apple.InterfaceBuilder.CocoaPlugin 3115 | com.apple.InterfaceBuilder.CocoaPlugin 3116 | com.apple.InterfaceBuilder.CocoaPlugin 3117 | com.apple.InterfaceBuilder.CocoaPlugin 3118 | com.apple.InterfaceBuilder.CocoaPlugin 3119 | com.apple.InterfaceBuilder.CocoaPlugin 3120 | com.apple.InterfaceBuilder.CocoaPlugin 3121 | com.apple.InterfaceBuilder.CocoaPlugin 3122 | com.apple.InterfaceBuilder.CocoaPlugin 3123 | com.apple.InterfaceBuilder.CocoaPlugin 3124 | com.apple.InterfaceBuilder.CocoaPlugin 3125 | com.apple.InterfaceBuilder.CocoaPlugin 3126 | com.apple.InterfaceBuilder.CocoaPlugin 3127 | com.apple.InterfaceBuilder.CocoaPlugin 3128 | com.apple.InterfaceBuilder.CocoaPlugin 3129 | com.apple.InterfaceBuilder.CocoaPlugin 3130 | com.apple.InterfaceBuilder.CocoaPlugin 3131 | com.apple.InterfaceBuilder.CocoaPlugin 3132 | com.apple.InterfaceBuilder.CocoaPlugin 3133 | com.apple.InterfaceBuilder.CocoaPlugin 3134 | com.apple.InterfaceBuilder.CocoaPlugin 3135 | com.apple.InterfaceBuilder.CocoaPlugin 3136 | com.apple.InterfaceBuilder.CocoaPlugin 3137 | com.apple.InterfaceBuilder.CocoaPlugin 3138 | com.apple.InterfaceBuilder.CocoaPlugin 3139 | com.apple.InterfaceBuilder.CocoaPlugin 3140 | com.apple.InterfaceBuilder.CocoaPlugin 3141 | com.apple.InterfaceBuilder.CocoaPlugin 3142 | com.apple.InterfaceBuilder.CocoaPlugin 3143 | com.apple.InterfaceBuilder.CocoaPlugin 3144 | com.apple.InterfaceBuilder.CocoaPlugin 3145 | com.apple.InterfaceBuilder.CocoaPlugin 3146 | com.apple.InterfaceBuilder.CocoaPlugin 3147 | com.apple.InterfaceBuilder.CocoaPlugin 3148 | com.apple.InterfaceBuilder.CocoaPlugin 3149 | com.apple.InterfaceBuilder.CocoaPlugin 3150 | com.apple.InterfaceBuilder.CocoaPlugin 3151 | com.apple.InterfaceBuilder.CocoaPlugin 3152 | com.apple.InterfaceBuilder.CocoaPlugin 3153 | com.apple.InterfaceBuilder.CocoaPlugin 3154 | com.apple.InterfaceBuilder.CocoaPlugin 3155 | com.apple.InterfaceBuilder.CocoaPlugin 3156 | com.apple.InterfaceBuilder.CocoaPlugin 3157 | com.apple.InterfaceBuilder.CocoaPlugin 3158 | 3159 | 3160 | 3161 | 3162 | 3163 | 535 3164 | 3165 | 3166 | 3167 | 3168 | AppDelegate 3169 | NSObject 3170 | 3171 | window 3172 | NSWindow 3173 | 3174 | 3175 | window 3176 | 3177 | window 3178 | NSWindow 3179 | 3180 | 3181 | 3182 | IBProjectSource 3183 | ./Classes/AppDelegate.h 3184 | 3185 | 3186 | 3187 | NSDocument 3188 | 3189 | id 3190 | id 3191 | id 3192 | id 3193 | id 3194 | id 3195 | 3196 | 3197 | 3198 | printDocument: 3199 | id 3200 | 3201 | 3202 | revertDocumentToSaved: 3203 | id 3204 | 3205 | 3206 | runPageLayout: 3207 | id 3208 | 3209 | 3210 | saveDocument: 3211 | id 3212 | 3213 | 3214 | saveDocumentAs: 3215 | id 3216 | 3217 | 3218 | saveDocumentTo: 3219 | id 3220 | 3221 | 3222 | 3223 | IBProjectSource 3224 | ./Classes/NSDocument.h 3225 | 3226 | 3227 | 3228 | 3229 | 0 3230 | IBCocoaFramework 3231 | YES 3232 | 3 3233 | 3234 | {11, 11} 3235 | {10, 3} 3236 | 3237 | YES 3238 | 3239 | 3240 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | cocoa-app 2 | ========= 3 | 4 | Simple CMake-based cocoa application 5 | 6 | [![Build Status](https://travis-ci.org/forexample/cocoa-app.png?branch=master)](https://travis-ci.org/forexample/cocoa-app) 7 | 8 | ### Usage 9 | ```bash 10 | > git clone https://github.com/forexample/cocoa-app 11 | > cd cocoa-app/ 12 | > cmake -H. -B_builds -GXcode 13 | > cmake --build _builds/ 14 | > open _builds/foo.xcodeproj/ 15 | ``` 16 | -------------------------------------------------------------------------------- /main.mm: -------------------------------------------------------------------------------- 1 | #import // NSApplicationMain 2 | 3 | int main(int argc, const char *argv[]) { 4 | return NSApplicationMain(argc, argv); 5 | } 6 | -------------------------------------------------------------------------------- /plist.in: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | CFBundleDevelopmentRegion 11 | en 12 | CFBundleDisplayName 13 | ${PRODUCT_NAME} 14 | CFBundleExecutable 15 | ${MACOSX_BUNDLE_EXECUTABLE_NAME} 16 | CFBundleGetInfoString 17 | ${MACOSX_BUNDLE_INFO_STRING} 18 | CFBundleIconFile 19 | ${MACOSX_BUNDLE_ICON_FILE} 20 | CFBundleIdentifier 21 | ${MACOSX_BUNDLE_GUI_IDENTIFIER} 22 | CFBundleInfoDictionaryVersion 23 | 6.0 24 | CFBundleLongVersionString 25 | ${MACOSX_BUNDLE_LONG_VERSION_STRING} 26 | CFBundleName 27 | ${MACOSX_BUNDLE_BUNDLE_NAME} 28 | CFBundlePackageType 29 | APPL 30 | CFBundleShortVersionString 31 | ${MACOSX_BUNDLE_SHORT_VERSION_STRING} 32 | CFBundleSignature 33 | ???? 34 | CFBundleVersion 35 | ${MACOSX_BUNDLE_BUNDLE_VERSION} 36 | CSResourcesFileMapped 37 | 38 | NSHumanReadableCopyright 39 | ${MACOSX_BUNDLE_COPYRIGHT} 40 | LSMinimumSystemVersion 41 | ${MACOSX_DEPLOYMENT_TARGET} 42 | NSMainNibFile 43 | MainMenu 44 | NSPrincipalClass 45 | NSApplication 46 | 47 | 48 | --------------------------------------------------------------------------------