Fuse-PDF

 view release on metacpan or  search on metacpan

MANIFEST  view on Meta::CPAN

example/Fuse-PDF-App/BundledTask.h
example/Fuse-PDF-App/BundledTask.m
example/Fuse-PDF-App/Callback.h
example/Fuse-PDF-App/Callback.m
example/Fuse-PDF-App/DragWell.h
example/Fuse-PDF-App/DragWell.m
example/Fuse-PDF-App/English.lproj/FPAppWindow.nib/classes.nib
example/Fuse-PDF-App/English.lproj/FPAppWindow.nib/info.nib
example/Fuse-PDF-App/English.lproj/FPAppWindow.nib/keyedobjects.nib
example/Fuse-PDF-App/English.lproj/InfoPlist.strings
example/Fuse-PDF-App/English.lproj/MainMenu.nib/classes.nib
example/Fuse-PDF-App/English.lproj/MainMenu.nib/info.nib
example/Fuse-PDF-App/English.lproj/MainMenu.nib/keyedobjects.nib
example/Fuse-PDF-App/FPAppWindow.h
example/Fuse-PDF-App/FPAppWindow.m
example/Fuse-PDF-App/Fuse-PDF-App.xcodeproj/project.pbxproj
example/Fuse-PDF-App/Info.plist
example/Fuse-PDF-App/main.m
example/Fuse-PDF-App/PDFList.h
example/Fuse-PDF-App/PDFList.m
example/Fuse-PDF-App/TaskWrapper.h
example/Fuse-PDF-App/TaskWrapper.m
example/Makefile.par

example/Fuse-PDF-App/FPAppWindow.m  view on Meta::CPAN

   return sharedController;
}

- (id)init {
   self = [self initWithWindowNibName:@"FPAppWindow"];
   return self;
}

- (void)windowDidLoad {
   printf("window loaded\n");
   [[self window] setExcludedFromWindowsMenu:YES];
   [[NSApplication sharedApplication] removeWindowsItem:[self window]];
   [super windowDidLoad];
   [self setup];
   
}

-(void) parseVersion: (NSString*)result {
   //printf("result: %s\n", result ? [result UTF8String] : [@"nil" UTF8String]);
   if (result) {
      NSRange versionLoc = [result rangeOfString:@"version "];

example/Fuse-PDF-App/Fuse-PDF-App.xcodeproj/project.pbxproj  view on Meta::CPAN

		835498940D111FD60089F1D6 /* mount_pdf.i386 in Resources */ = {isa = PBXBuildFile; fileRef = 835498930D111FD60089F1D6 /* mount_pdf.i386 */; };
		83E0D48A0CFFD62600EB35DA /* FPAppWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 83E0D4890CFFD62600EB35DA /* FPAppWindow.m */; };
		83E0D4AB0CFFDA2500EB35DA /* FPAppWindow.nib in Resources */ = {isa = PBXBuildFile; fileRef = 83E0D4A90CFFDA2500EB35DA /* FPAppWindow.nib */; };
		83E0D4B50CFFDABA00EB35DA /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 83E0D4B40CFFDABA00EB35DA /* AppDelegate.m */; };
		83E0D53C0CFFEFF100EB35DA /* TaskWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 83E0D53B0CFFEFF100EB35DA /* TaskWrapper.m */; };
		83E0D5A60D066BDA00EB35DA /* BundledTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 83E0D5A30D066BDA00EB35DA /* BundledTask.m */; };
		83E0D5A70D066BDA00EB35DA /* Callback.m in Sources */ = {isa = PBXBuildFile; fileRef = 83E0D5A50D066BDA00EB35DA /* Callback.m */; };
		83E0D67F0D10E3E800EB35DA /* DragWell.m in Sources */ = {isa = PBXBuildFile; fileRef = 83E0D67E0D10E3E800EB35DA /* DragWell.m */; };
		83E0D7180D10F83000EB35DA /* PDFList.m in Sources */ = {isa = PBXBuildFile; fileRef = 83E0D7170D10F83000EB35DA /* PDFList.m */; };
		83E0D7F90D111EFA00EB35DA /* mount_pdf.ppc in Resources */ = {isa = PBXBuildFile; fileRef = 83E0D7F80D111EFA00EB35DA /* mount_pdf.ppc */; };
		8D11072A0486CEB800E47090 /* MainMenu.nib in Resources */ = {isa = PBXBuildFile; fileRef = 29B97318FDCFA39411CA2CEA /* MainMenu.nib */; };
		8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; };
		8D11072D0486CEB800E47090 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; settings = {ATTRIBUTES = (); }; };
		8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
		089C165DFE840E0CC02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; };
		13E42FB307B3F0F600E4EEF1 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = /System/Library/Frameworks/CoreData.framework; sourceTree = "<absolute>"; };
		29B97316FDCFA39411CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
		29B97319FDCFA39411CA2CEA /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/MainMenu.nib; sourceTree = "<group>"; };
		29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
		29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = "<absolute>"; };
		32CA4F630368D1EE00C91783 /* Fuse-PDF-App_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Fuse-PDF-App_Prefix.pch"; sourceTree = "<group>"; };
		835498930D111FD60089F1D6 /* mount_pdf.i386 */ = {isa = PBXFileReference; explicitFileType = compiled; name = mount_pdf.i386; path = ../mount_pdf.i386; sourceTree = SOURCE_ROOT; };
		83E0D4880CFFD62600EB35DA /* FPAppWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPAppWindow.h; sourceTree = "<group>"; };
		83E0D4890CFFD62600EB35DA /* FPAppWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPAppWindow.m; sourceTree = "<group>"; };
		83E0D4AA0CFFDA2500EB35DA /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/FPAppWindow.nib; sourceTree = "<group>"; };
		83E0D4B30CFFDABA00EB35DA /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
		83E0D4B40CFFDABA00EB35DA /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
		83E0D53A0CFFEFF100EB35DA /* TaskWrapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TaskWrapper.h; sourceTree = "<group>"; };

example/Fuse-PDF-App/Fuse-PDF-App.xcodeproj/project.pbxproj  view on Meta::CPAN

			name = "Other Sources";
			sourceTree = "<group>";
		};
		29B97317FDCFA39411CA2CEA /* Resources */ = {
			isa = PBXGroup;
			children = (
				835498930D111FD60089F1D6 /* mount_pdf.i386 */,
				83E0D7F80D111EFA00EB35DA /* mount_pdf.ppc */,
				8D1107310486CEB800E47090 /* Info.plist */,
				089C165CFE840E0CC02AAC07 /* InfoPlist.strings */,
				29B97318FDCFA39411CA2CEA /* MainMenu.nib */,
				83E0D4A90CFFDA2500EB35DA /* FPAppWindow.nib */,
			);
			name = Resources;
			sourceTree = "<group>";
		};
		29B97323FDCFA39411CA2CEA /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */,
				1058C7A2FEA54F0111CA2CBB /* Other Frameworks */,

example/Fuse-PDF-App/Fuse-PDF-App.xcodeproj/project.pbxproj  view on Meta::CPAN

				8D1107260486CEB800E47090 /* Fuse-PDF-App */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		8D1107290486CEB800E47090 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				8D11072A0486CEB800E47090 /* MainMenu.nib in Resources */,
				8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */,
				83E0D4AB0CFFDA2500EB35DA /* FPAppWindow.nib in Resources */,
				83E0D7F90D111EFA00EB35DA /* mount_pdf.ppc in Resources */,
				835498940D111FD60089F1D6 /* mount_pdf.i386 in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXSourcesBuildPhase section */

example/Fuse-PDF-App/Fuse-PDF-App.xcodeproj/project.pbxproj  view on Meta::CPAN


/* Begin PBXVariantGroup section */
		089C165CFE840E0CC02AAC07 /* InfoPlist.strings */ = {
			isa = PBXVariantGroup;
			children = (
				089C165DFE840E0CC02AAC07 /* English */,
			);
			name = InfoPlist.strings;
			sourceTree = "<group>";
		};
		29B97318FDCFA39411CA2CEA /* MainMenu.nib */ = {
			isa = PBXVariantGroup;
			children = (
				29B97319FDCFA39411CA2CEA /* English */,
			);
			name = MainMenu.nib;
			sourceTree = "<group>";
		};
		83E0D4A90CFFDA2500EB35DA /* FPAppWindow.nib */ = {
			isa = PBXVariantGroup;
			children = (
				83E0D4AA0CFFDA2500EB35DA /* English */,
			);
			name = FPAppWindow.nib;
			sourceTree = "<group>";
		};

example/Fuse-PDF-App/Info.plist  view on Meta::CPAN

	<string>${EXECUTABLE_NAME}</string>
	<key>CFBundleIconFile</key>
	<string></string>
	<key>CFBundleInfoDictionaryVersion</key>
	<string>6.0</string>
	<key>CFBundleName</key>
	<string>${PRODUCT_NAME}</string>
	<key>CFBundlePackageType</key>
	<string>APPL</string>
	<key>NSMainNibFile</key>
	<string>MainMenu</string>
	<key>NSPrincipalClass</key>
	<string>NSApplication</string>

	<key>CFBundleIdentifier</key>
	<string>net.equilibrious.Fuse-PDF-App</string>
	<key>CFBundleVersion</key>
	<string>1</string>
	<key>CFBundleGetInfoString</key>
	<string>0.08, Copyright 2007 Chris Dolan</string>
	<key>CFBundleShortVersionString</key>



( run in 0.789 second using v1.01-cache-2.11-cpan-49f99fa48dc )