Skip to content

Commit

Permalink
Added a FilterShowcase example to the Mac port and added an AV Founda…
Browse files Browse the repository at this point in the history
…tion video camera input to the Mac.
  • Loading branch information
BradLarson committed Apr 24, 2013
1 parent e589bdc commit 5b87ee4
Show file tree
Hide file tree
Showing 19 changed files with 5,519 additions and 49 deletions.
380 changes: 380 additions & 0 deletions examples/Mac/FilterShowcase/FilterShowcase.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIconFile</key>
<string></string>
<key>CFBundleIdentifier</key>
<string>com.sunsetlakesoftware.${PRODUCT_NAME:rfc1034identifier}</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSMinimumSystemVersion</key>
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2013 Sunset Lake Software LLC. All rights reserved.</string>
<key>NSMainNibFile</key>
<string>MainMenu</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
</dict>
</plist>
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
//
// Prefix header for all source files of the 'FilterShowcase' target in the 'FilterShowcase' project
//

#ifdef __OBJC__
#import <Cocoa/Cocoa.h>
#endif
9 changes: 9 additions & 0 deletions examples/Mac/FilterShowcase/FilterShowcase/SLSAppDelegate.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#import <Cocoa/Cocoa.h>
#import "SLSFilterShowcaseWindowController.h"

@interface SLSAppDelegate : NSObject <NSApplicationDelegate>
{
SLSFilterShowcaseWindowController *windowController;
}

@end
13 changes: 13 additions & 0 deletions examples/Mac/FilterShowcase/FilterShowcase/SLSAppDelegate.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#import "SLSAppDelegate.h"

@implementation SLSAppDelegate

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
// Insert code here to initialize your application

windowController = [[SLSFilterShowcaseWindowController alloc] initWithWindowNibName:@"SLSFilterShowcaseWindowController"];
[windowController showWindow:self];
}

@end
29 changes: 29 additions & 0 deletions examples/Mac/FilterShowcase/FilterShowcase/en.lproj/Credits.rtf
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{\rtf0\ansi{\fonttbl\f0\fswiss Helvetica;}
{\colortbl;\red255\green255\blue255;}
\paperw9840\paperh8400
\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural

\f0\b\fs24 \cf0 Engineering:
\b0 \
Some people\
\

\b Human Interface Design:
\b0 \
Some other people\
\

\b Testing:
\b0 \
Hopefully not nobody\
\

\b Documentation:
\b0 \
Whoever\
\

\b With special thanks to:
\b0 \
Mom\
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/* Localized versions of Info.plist keys */

Loading

0 comments on commit 5b87ee4

Please sign in to comment.