Skip to content

Commit

Permalink
cocoa application scaffold
Browse files Browse the repository at this point in the history
  • Loading branch information
johannes committed Feb 2, 2006
1 parent c2d2320 commit fb4fbc6
Show file tree
Hide file tree
Showing 24 changed files with 1,815 additions and 0 deletions.
Binary file added English.lproj/InfoPlist.strings
Binary file not shown.
4 changes: 4 additions & 0 deletions English.lproj/MainMenu.nib/classes.nib

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions English.lproj/MainMenu.nib/info.nib

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added English.lproj/MainMenu.nib/keyedobjects.nib
Binary file not shown.
Binary file added English.lproj/MainMenu.nib/objects.nib
Binary file not shown.
28 changes: 28 additions & 0 deletions Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIconFile</key>
<string></string>
<key>CFBundleIdentifier</key>
<string>com.yourcompany.punakea</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>NSMainNibFile</key>
<string>MainMenu</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
</dict>
</plist>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
14 changes: 14 additions & 0 deletions main.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
//
// main.m
// punakea
//
// Created by Johannes Hoffart on 02.02.06.
// Copyright __MyCompanyName__ 2006. All rights reserved.
//

#import <Cocoa/Cocoa.h>

int main(int argc, char *argv[])
{
return NSApplicationMain(argc, (const char **) argv);
}
Loading

0 comments on commit fb4fbc6

Please sign in to comment.