├── .gitignore ├── AddressBook ├── ABAddressBook.h ├── ABAddressBook.m ├── ABGlobals.h ├── ABGlobals.m ├── ABGroup.h ├── ABGroup.m ├── ABImageLoading.h ├── ABImageLoading.m ├── ABMultiValue.h ├── ABMultiValue.m ├── ABPerson.h ├── ABPerson.m ├── ABRecord.h ├── ABRecord.m ├── ABSearchElement.h ├── ABSearchElement.m ├── ABTypedefs.h ├── AddressBook-Info.plist ├── AddressBook.h ├── AddressBook.php ├── AddressBook.qcodeproj ├── AddressBook.xcodeproj │ └── project.pbxproj └── Private.h ├── AppKit ├── AppKit-Info.plist ├── AppKit.entitlements ├── AppKit.qcodeproj ├── AppKit.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── All.xcscheme │ │ ├── AppKit.xcscheme │ │ ├── UpdateLocalizedNIBs.xcscheme │ │ ├── build NIB Test for Linux.xcscheme │ │ ├── build NIB Test mySTEP for Cocoa Foundation + X11.xcscheme │ │ ├── build NIB Test pure Cocoa.xcscheme │ │ └── build View Test for Cocoa Foundation + X11.xcscheme ├── Cursors │ ├── GSArrowCursor.tiff │ ├── GSClosedHandCursor.tiff │ ├── GSCopyCursor.tiff │ ├── GSCrosshairCursor.tiff │ ├── GSDisappearingItemCursor.tiff │ ├── GSHiddenCursor.tiff │ ├── GSIBeamCursor.tiff │ ├── GSLinkCursor.tiff │ ├── GSOpenHandCursor.tiff │ ├── GSPointingHandCursor.tiff │ ├── GSResizeCursor.tiff │ ├── GSResizeDownCursor.tiff │ ├── GSResizeLeftCursor.tiff │ ├── GSResizeRightCursor.tiff │ ├── GSResizeUpCursor.tiff │ └── GSResizeUpDownCursor.tiff ├── Icons │ ├── info_16.png │ └── paper_clip.png ├── Images │ ├── GSArrowDown.png │ ├── GSArrowDownH.png │ ├── GSArrowLeft.png │ ├── GSArrowLeftH.png │ ├── GSArrowRight.png │ ├── GSArrowRightH.png │ ├── GSArrowUp.png │ ├── GSArrowUpH.png │ ├── GSColorWheel.icns │ ├── GSColorWheel.jpg │ ├── GSComboBox.tiff │ ├── GSComboBoxH.tiff │ ├── GSDimple.tiff │ ├── GSDiscloseH.tiff │ ├── GSDiscloseHalf.tiff │ ├── GSDiscloseOff.tiff │ ├── GSDiscloseOn.tiff │ ├── GSDocument.tiff │ ├── GSFolder.tiff │ ├── GSHome.tiff │ ├── GSMount.tiff │ ├── GSMultiple.tiff │ ├── GSPopup.tiff │ ├── GSPullDown.tiff │ ├── GSPullDownH.tiff │ ├── GSRight.tiff │ ├── GSRightH.tiff │ ├── GSSearch.tiff │ ├── GSSliderHoriz.tiff │ ├── GSSliderVert.tiff │ ├── GSStop.tiff │ ├── GSSubmenuArrow.tiff │ ├── GSUnix.tiff │ ├── GSUnknown.tiff │ ├── GSUnmount.tiff │ ├── NSAscendingSortIndicator.tiff │ ├── NSDescendingSortIndicator.tiff │ ├── NSHighlightedRadioButton.tiff │ ├── NSHighlightedSwitch.tiff │ ├── NSMenuCheckmark.tiff │ ├── NSMenuMixedState.tiff │ ├── NSMultiStateSwitch.tiff │ ├── NSRadioButton.tiff │ ├── NSRatingLevelIndicator.tiff │ ├── NSSwitch.tiff │ ├── NSToolbarCustomize.icns │ ├── NSToolbarPrint.icns │ ├── NSToolbarShowColors.icns │ ├── NSToolbarShowFonts.icns │ ├── NSWindowChangedButton.tiff │ ├── NSWindowCloseButton.tiff │ ├── NSWindowCloseButtonInactive.tiff │ ├── NSWindowMiniaturizeButton.tiff │ ├── NSWindowMiniaturizeButtonInactive.tiff │ ├── NSWindowZoomButton.tiff │ ├── NSWindowZoomButtonInactive.tiff │ ├── URL.tiff │ ├── rtf.tiff │ ├── rtfd.tiff │ └── text.tiff ├── NibTest │ ├── 1bK Copy.png │ ├── 1bK.png │ ├── AppController.h │ ├── AppController.m │ ├── AppKitNibTest-Info.plist │ ├── AppKitNibTest.qcodeproj │ ├── AppKitNibTestX11-Info.plist │ ├── AppKitNibTestX11.qcodeproj │ ├── AppKitViewTest.php │ ├── AppKitViewTest.qcodeproj │ ├── CircleView.h │ ├── CircleView.m │ ├── Default.tiff │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ ├── Mailsend_16.tiff │ │ ├── MainMenu ViewTest.nib │ │ │ ├── Mailsend_16.tiff │ │ │ ├── addbk_16.tiff │ │ │ ├── designable.nib │ │ │ ├── keyedobjects.nib │ │ │ ├── paper_clip.tiff │ │ │ └── save_16.tiff │ │ ├── MainMenu.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ │ ├── addbk_16.tiff │ │ ├── paper_clip.tiff │ │ └── save_16.tiff │ ├── Lion.jpg │ ├── Mailsend_16.png │ ├── MixedFrameworks │ │ ├── AppKit.framework │ │ ├── Cocoa.framework │ │ ├── CoreData.framework │ │ ├── CoreFoundation.framework │ │ ├── Foundation.framework │ │ └── Security.framework │ ├── MixedFrameworks2 │ │ ├── AppKit.framework │ │ ├── Cocoa.framework │ │ ├── CoreData.framework │ │ ├── CoreFoundation.framework │ │ ├── Foundation.framework │ │ └── Security.framework │ ├── TestView.h │ ├── TestView.m │ ├── ViewTest-Info.plist │ ├── addbk_16.png │ ├── addbk_32.png │ ├── dial_32.png │ ├── hangup_32.png │ ├── main.m │ ├── myModel.h │ ├── myModel.m │ ├── myTest.entitlements │ ├── myTest.icns │ ├── myTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── myTest.xccheckout │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── AppKitNibTest X11.xcscheme │ │ │ └── AppKitNibTest.xcscheme │ ├── myView.h │ ├── myView.m │ ├── rss.gif │ └── save_16.png ├── Panels │ ├── English.lproj │ │ ├── AboutPanel.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ │ ├── AlertPanel.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ │ ├── ColorPanel.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ │ ├── FindPanel.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ │ ├── FontPanel.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ │ ├── PrintProgressPanel.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ │ ├── SavePanel.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ │ └── TextTablePanel.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ ├── French.lproj │ │ ├── AboutPanel.nib.strings │ │ ├── ColorPanel.nib.strings │ │ ├── FindPanel.nib.strings │ │ ├── FontPanel.nib.strings │ │ ├── PrintProgressPanel.nib.strings │ │ └── SavePanel.nib.strings │ ├── German.lproj │ │ ├── AboutPanel.nib.strings │ │ ├── ColorPanel.nib.strings │ │ ├── FindPanel.nib.strings │ │ ├── FontPanel.nib.strings │ │ ├── PrintProgressPanel.nib.strings │ │ └── SavePanel.nib.strings │ ├── Italian.lproj │ │ ├── AboutPanel.nib.strings │ │ ├── ColorPanel.nib.strings │ │ ├── FindPanel.nib.strings │ │ ├── FontPanel.nib.strings │ │ ├── PrintProgressPanel.nib.strings │ │ └── SavePanel.nib.strings │ ├── Spanish.lproj │ │ ├── AboutPanel.nib.strings │ │ ├── ColorPanel.nib.strings │ │ ├── FindPanel.nib.strings │ │ ├── FontPanel.nib.strings │ │ ├── PrintProgressPanel.nib.strings │ │ └── SavePanel.nib.strings │ └── Swedish.lproj │ │ ├── AboutPanel.nib.strings │ │ ├── ColorPanel.nib.strings │ │ ├── FindPanel.nib.strings │ │ ├── FontPanel.nib.strings │ │ ├── PrintProgressPanel.nib.strings │ │ └── SavePanel.nib.strings ├── Sounds │ ├── Basso.wav │ ├── Blow.wav │ ├── Bottle.wav │ ├── Frog.wav │ ├── Glass.wav │ ├── Hero.wav │ ├── Ping.wav │ ├── Pop.wav │ ├── Sosumi.wav │ ├── Submarine.wav │ └── Tink.wav ├── Sources │ ├── AppKit.css │ ├── AppKit.h │ ├── AppKit.js │ ├── AppKit.php │ ├── AppKitDefines.h │ ├── AppKitErrors.h │ ├── Externs.m │ ├── Functions.m │ ├── GSBitmapImageReps.m │ ├── GSServices.h │ ├── GSServices.m │ ├── NSActionCell.h │ ├── NSActionCell.m │ ├── NSAffineTransform.h │ ├── NSAffineTransform.m │ ├── NSAlert.h │ ├── NSAnimation.h │ ├── NSAnimation.m │ ├── NSAnimationContext.h │ ├── NSAnimationContext.m │ ├── NSAppAccessibility.h │ ├── NSAppKitPrivate.h │ ├── NSApplication.h │ ├── NSApplication.m │ ├── NSArrayController.h │ ├── NSAttributedString.h │ ├── NSAttributedStringAdditions.m │ ├── NSBackendPrivate.h │ ├── NSBezierPath.h │ ├── NSBezierPath.m │ ├── NSBitmapImageRep.h │ ├── NSBox.h │ ├── NSBox.m │ ├── NSBrowser.h │ ├── NSBrowser.m │ ├── NSBrowserCell.h │ ├── NSBrowserCell.m │ ├── NSButton.h │ ├── NSButton.m │ ├── NSButtonCell.h │ ├── NSCIImageRep.h │ ├── NSCIImageRep.m │ ├── NSCachedImageRep.h │ ├── NSCell.h │ ├── NSCell.m │ ├── NSClipView.h │ ├── NSClipView.m │ ├── NSCollectionView.h │ ├── NSCollectionView.m │ ├── NSCollectionViewItem.h │ ├── NSCollectionViewItem.m │ ├── NSColor.h │ ├── NSColor.m │ ├── NSColorList.h │ ├── NSColorPanel.h │ ├── NSColorPicker.h │ ├── NSColorPicking.h │ ├── NSColorSpace.h │ ├── NSColorSpace.m │ ├── NSColorWell.h │ ├── NSColorWell.m │ ├── NSComboBox.h │ ├── NSComboBox.m │ ├── NSComboBoxCell.h │ ├── NSControl.h │ ├── NSControl.m │ ├── NSController.h │ ├── NSController.m │ ├── NSCursor.h │ ├── NSCursor.m │ ├── NSCustomImageRep.h │ ├── NSDatePicker.h │ ├── NSDatePicker.m │ ├── NSDatePickerCell.h │ ├── NSDictionaryController.h │ ├── NSDictionaryController.m │ ├── NSDockTile.h │ ├── NSDockTile.m │ ├── NSDocument.h │ ├── NSDocument.m │ ├── NSDocumentController.h │ ├── NSDocumentController.m │ ├── NSDragging.h │ ├── NSDrawer.h │ ├── NSDrawer.m │ ├── NSEPSImageRep.h │ ├── NSEPSImageRep.m │ ├── NSErrors.h │ ├── NSEvent.h │ ├── NSEvent.m │ ├── NSFileWrapper.h │ ├── NSFileWrapper.m │ ├── NSFont.h │ ├── NSFont.m │ ├── NSFontDescriptor.h │ ├── NSFontManager.h │ ├── NSFontManager.m │ ├── NSFontPanel.h │ ├── NSForm.h │ ├── NSForm.m │ ├── NSFormCell.h │ ├── NSFreeTypeFont.h │ ├── NSFreeTypeFont.m │ ├── NSGlyphGenerator.h │ ├── NSGlyphInfo.h │ ├── NSGlyphInfo.m │ ├── NSGradient.h │ ├── NSGradient.m │ ├── NSGraphics.h │ ├── NSGraphicsContext old.h │ ├── NSGraphicsContext.h │ ├── NSGraphicsContext.m │ ├── NSHelpManager.h │ ├── NSImage.h │ ├── NSImage.m │ ├── NSImageCell.h │ ├── NSImageRep.h │ ├── NSImageRep.m │ ├── NSImageView.h │ ├── NSImageView.m │ ├── NSInputManager.h │ ├── NSInputServer.h │ ├── NSInterfaceStyle.h │ ├── NSKeyValueBinding.h │ ├── NSKeyValueBinding.m │ ├── NSLayoutManager.h │ ├── NSLayoutManager.m │ ├── NSLevelIndicator.h │ ├── NSLevelIndicator.m │ ├── NSLevelIndicatorCell.h │ ├── NSMatrix.h │ ├── NSMatrix.m │ ├── NSMenu.h │ ├── NSMenu.m │ ├── NSMenuItem.h │ ├── NSMenuItemCell.h │ ├── NSMenuItemCell.m │ ├── NSMenuView.h │ ├── NSMenuView.m │ ├── NSMovie.h │ ├── NSMovie.m │ ├── NSMovieView.h │ ├── NSNib.h │ ├── NSNibConnector.h │ ├── NSNibConnectors.m │ ├── NSNibControlConnector.h │ ├── NSNibDeclarations.h │ ├── NSNibLoading.h │ ├── NSNibLoading.m │ ├── NSNibOutletConnector.h │ ├── NSObjectController.h │ ├── NSOpenPanel.h │ ├── NSOutlineView.h │ ├── NSOutlineView.m │ ├── NSPDFImageRep.h │ ├── NSPICTImageRep.h │ ├── NSPICTImageRep.m │ ├── NSPageLayout.h │ ├── NSPanel.h │ ├── NSPanel.m │ ├── NSParagraphStyle.h │ ├── NSParagraphStyle.m │ ├── NSPasteboard.h │ ├── NSPasteboard.m │ ├── NSPathCell.h │ ├── NSPathCell.m │ ├── NSPathComponentCell.h │ ├── NSPathComponentCell.m │ ├── NSPathControl.h │ ├── NSPathControl.m │ ├── NSPersistentDocument.h │ ├── NSPopUpButton.h │ ├── NSPopUpButton.m │ ├── NSPopUpButtonCell.h │ ├── NSPredicateEditor.h │ ├── NSPredicateEditor.m │ ├── NSPredicateEditorRowTemplate.h │ ├── NSPredicateEditorRowTemplate.m │ ├── NSPrintInfo.h │ ├── NSPrintOperation.h │ ├── NSPrintPanel.h │ ├── NSPrinter.h │ ├── NSPrinter.m │ ├── NSProgressIndicator.h │ ├── NSProgressIndicator.m │ ├── NSResponder.h │ ├── NSResponder.m │ ├── NSRuleEditor.h │ ├── NSRuleEditor.m │ ├── NSRulerMarker.h │ ├── NSRulerView.h │ ├── NSSavePanel.h │ ├── NSScreen.h │ ├── NSScreen.m │ ├── NSScrollView.h │ ├── NSScrollView.m │ ├── NSScroller.h │ ├── NSScroller.m │ ├── NSSearchField.h │ ├── NSSearchField.m │ ├── NSSearchFieldCell.h │ ├── NSSecureTextField.h │ ├── NSSecureTextField.m │ ├── NSSegmentedCell.h │ ├── NSSegmentedControl.h │ ├── NSSegmentedControl.m │ ├── NSShadow.h │ ├── NSShadow.m │ ├── NSSimpleHorizontalTypesetter.h │ ├── NSSlider.h │ ├── NSSlider.m │ ├── NSSliderCell.h │ ├── NSSound.h │ ├── NSSound.m │ ├── NSSpeechRecognizer.h │ ├── NSSpeechRecognizer.m │ ├── NSSpeechSynthesizer.h │ ├── NSSpeechSynthesizer.m │ ├── NSSpellChecker.h │ ├── NSSpellChecker.m │ ├── NSSpellProtocol.h │ ├── NSSplitView.h │ ├── NSSplitView.m │ ├── NSStatusBar.h │ ├── NSStatusBar.m │ ├── NSStatusItem.h │ ├── NSStatusItem.m │ ├── NSStepper.h │ ├── NSStepper.m │ ├── NSStepperCell.h │ ├── NSStringDrawing.h │ ├── NSStringDrawing.m │ ├── NSSystemServer.h │ ├── NSTabView.h │ ├── NSTabView.m │ ├── NSTabViewItem.h │ ├── NSTableColumn.h │ ├── NSTableHeaderCell.h │ ├── NSTableHeaderView.h │ ├── NSTableView.h │ ├── NSTableView.m │ ├── NSText.h │ ├── NSText.m │ ├── NSTextAttachment.h │ ├── NSTextContainer.h │ ├── NSTextContainerAndStorage.m │ ├── NSTextField.h │ ├── NSTextField.m │ ├── NSTextFieldCell.h │ ├── NSTextInputClient.h │ ├── NSTextList.h │ ├── NSTextList.m │ ├── NSTextStorage.h │ ├── NSTextTable.h │ ├── NSTextTable.m │ ├── NSTextView.h │ ├── NSTextView.m │ ├── NSTokenField.h │ ├── NSTokenField.m │ ├── NSTokenFieldCell.h │ ├── NSToolbar.h │ ├── NSToolbar.m │ ├── NSToolbarItem.h │ ├── NSToolbarItemGroup.h │ ├── NSTrackingArea.h │ ├── NSTrackingArea.m │ ├── NSTreeController.h │ ├── NSTreeNode.h │ ├── NSTreeNode.m │ ├── NSTypesetter.h │ ├── NSTypesetter.m │ ├── NSUserDefaultsController.h │ ├── NSUserInterfaceValidation.h │ ├── NSView.h │ ├── NSView.m │ ├── NSViewController.h │ ├── NSViewController.m │ ├── NSWindow.h │ ├── NSWindow.m │ ├── NSWindowController.h │ ├── NSWindowController.m │ ├── NSWorkspace.h │ ├── NSWorkspace.m │ ├── NSX11GraphicsContext.h │ └── NSX11GraphicsContext.m └── StandardKeyBinding.dict ├── AppKitExtensions ├── AppKitExtensions.entitlements ├── AppKitExtensions.qcodeproj ├── AppKitExtensions.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── AppKitExtensions.xcscheme │ │ └── NSScaleRotateFlipViewDemo.xcscheme ├── Info.plist ├── NSScaleRotateFlipViewDemo.qcodeproj ├── Sources │ ├── AppKitExtensions-Info.plist │ ├── AppKitExtensions.h │ ├── NSDOCX.h │ ├── NSDOCX.m │ ├── NSScaleRotateFlipView.h │ ├── NSScaleRotateFlipView.m │ ├── NSXIBLoading.h │ └── NSXIBLoading.m ├── en.lproj │ ├── Credits.rtf │ ├── InfoPlist.strings │ └── MainMenu.xib ├── main.m └── up_32.icns ├── Cocoa ├── Cocoa-Info.plist ├── Cocoa.h ├── Cocoa.m ├── Cocoa.php ├── Cocoa.qcodeproj └── Cocoa.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ └── contents.xcworkspacedata │ └── xcshareddata │ └── xcschemes │ └── Cocoa.xcscheme ├── CoreBluetooth ├── CoreBluetooth-Info.plist ├── CoreBluetooth.h ├── CoreBluetooth.m ├── CoreBluetooth.qcodeproj └── CoreBluetooth.xcodeproj │ └── project.pbxproj ├── CoreData ├── COPYING ├── COPYING.fdl ├── ChangeLog ├── CoreData.h ├── CoreData.qcodeproj ├── CoreData.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── CoreData.xcscheme ├── CoreDataErrors.h ├── CoreDataErrors.m ├── CoreDataHeaders.h ├── CoreDataUtilities.h ├── CoreData_Prefix.pch ├── DataBuilder │ ├── AttributeEditor.h │ ├── AttributeEditor.m │ ├── BUGS │ ├── COPYING │ ├── COPYING.fdl │ ├── ChangeLog │ ├── ConfigurationEditor.h │ ├── ConfigurationEditor.m │ ├── Connection.h │ ├── Connection.m │ ├── Controller.h │ ├── Controller.m │ ├── DataBuilder.entitlements │ ├── DataBuilder.qcodeproj │ ├── DataBuilder.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── DataBuilder.xcscheme │ ├── DataBuilder_Prefix.pch │ ├── Document.h │ ├── Document.m │ ├── DocumentWindowController.h │ ├── DocumentWindowController.m │ ├── Doxyfile │ ├── English.lproj │ │ ├── AttributeEditor.gorm │ │ │ ├── data.classes │ │ │ ├── data.info │ │ │ └── objects.gorm │ │ ├── AttributeEditor.nib │ │ │ ├── classes.nib │ │ │ ├── designable.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ ├── ConfigurationEditor.gorm │ │ │ ├── data.classes │ │ │ ├── data.info │ │ │ └── objects.gorm │ │ ├── ConfigurationEditor.nib │ │ │ ├── classes.nib │ │ │ ├── designable.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ ├── Credits.rtf │ │ ├── DataBuilder.gorm │ │ │ ├── data.classes │ │ │ ├── data.info │ │ │ └── objects.gorm │ │ ├── DataBuilder.nib │ │ │ ├── classes.nib │ │ │ ├── designable.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ ├── DocumentWindow.gorm │ │ │ ├── data.classes │ │ │ ├── data.info │ │ │ └── objects.gorm │ │ ├── DocumentWindow.nib │ │ │ ├── classes.nib │ │ │ ├── designable.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ ├── EntityAttrSeparator.tiff │ │ ├── EntityAttrSeparator_sel.tiff │ │ ├── EntityEditor.gorm │ │ │ ├── data.classes │ │ │ ├── data.info │ │ │ └── objects.gorm │ │ ├── EntityEditor.nib │ │ │ ├── classes.nib │ │ │ ├── designable.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ ├── EntityFetchedPropSeparator.tiff │ │ ├── EntityFetchedPropSeparator_sel.tiff │ │ ├── EntityRelSeparator.tiff │ │ ├── EntityRelSeparator_sel.tiff │ │ ├── FetchedPropertyEditor.gorm │ │ │ ├── data.classes │ │ │ ├── data.info │ │ │ └── objects.gorm │ │ ├── FetchedPropertyEditor.nib │ │ │ ├── classes.nib │ │ │ ├── designable.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ ├── InfoPlist.strings │ │ ├── RelationshipEditor.gorm │ │ │ ├── data.classes │ │ │ ├── data.info │ │ │ └── objects.gorm │ │ └── RelationshipEditor.nib │ │ │ ├── classes.nib │ │ │ ├── designable.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ ├── EntityEditor.h │ ├── EntityEditor.m │ ├── EntityView.h │ ├── EntityView.m │ ├── FetchedPropertyEditor.h │ ├── FetchedPropertyEditor.m │ ├── GNUmakefile │ ├── GNUmakefile.preamble │ ├── Images │ │ ├── DataBuilder.icns │ │ ├── EntityLower.tiff │ │ ├── EntityLower_sel.tiff │ │ ├── EntityMiddle.tiff │ │ ├── EntityMiddle_sel.tiff │ │ ├── EntityUpper.tiff │ │ ├── EntityUpper_sel.tiff │ │ ├── InheritanceView.tiff │ │ ├── RelationshipView.tiff │ │ └── gsdatamodel.icns │ ├── Images_src │ │ ├── DataBuilder.tiff │ │ ├── DataBuilder.xcf │ │ ├── DataBuilderDocument.tiff │ │ ├── DataBuilderDocument.xcf │ │ ├── Entity.png │ │ └── Entity.xcf │ ├── Info.plist │ ├── ModelEditor.h │ ├── ModelEditor.m │ ├── ModelView.h │ ├── ModelView.m │ ├── NSAttributeDescriptionUtilities.h │ ├── NSFontAdditions.h │ ├── NSFontAdditions.m │ ├── NSGeometryAdditions.h │ ├── NSViewAdditions.h │ ├── NSViewAdditions.m │ ├── Private.h │ ├── README │ ├── README.rtf │ ├── RelationshipEditor.h │ ├── RelationshipEditor.m │ ├── Resources │ │ └── Info-gnustep.plist │ ├── TODO │ └── main.m ├── Documentation │ ├── COPYING.fdl │ ├── GSDatamodelFileFormat.txt │ ├── GSPersistentStore.txt │ └── NSManagedObjectID.txt ├── Doxyfile ├── English.lproj │ └── InfoPlist.strings ├── GNUmakefile ├── GNUmakefile.preamble ├── GSPersistentStore.h ├── GSPersistentStore.m ├── GSSQLitePersistentStore.h ├── GSSQLitePersistentStore.m ├── Images │ ├── gscoredata-logo.png │ └── gscoredata-logo.xcf ├── Info.plist ├── NSAttributeDescription.h ├── NSAttributeDescription.m ├── NSEntityDescription.h ├── NSEntityDescription.m ├── NSFetchRequest.h ├── NSFetchRequest.m ├── NSFetchedPropertyDescription.h ├── NSFetchedPropertyDescription.m ├── NSFetchedResultsController.h ├── NSFetchedResultsController.m ├── NSManagedObject.h ├── NSManagedObject.m ├── NSManagedObjectContext.h ├── NSManagedObjectContext.m ├── NSManagedObjectID.h ├── NSManagedObjectID.m ├── NSManagedObjectModel.h ├── NSManagedObjectModel.m ├── NSPersistentCloudKitContainer.h ├── NSPersistentCloudKitContainer.m ├── NSPersistentContainer.h ├── NSPersistentContainer.m ├── NSPersistentStoreCoordinator.h ├── NSPersistentStoreCoordinator.m ├── NSPropertyDescription.h ├── NSPropertyDescription.m ├── NSRelationshipDescription.h ├── NSRelationshipDescription.m └── README ├── CoreDataBase ├── CoreDataBase.h ├── CoreDataBase.php ├── CoreDataBase.qcodeproj ├── CoreDataBase.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── CoreDataBase.xcscheme ├── CoreDataBaseGUI.php ├── Info.plist ├── ManagedObject.h ├── ManagedObject.m ├── ManagedObjectContext.h ├── ManagedObjectContext.m ├── ManagedObjectEntity.h ├── ManagedObjectEntity.m ├── SQL.h ├── SQL.m └── idea.rtf ├── CoreDevice ├── BatteryView.h ├── BatteryView.m ├── CoreDevice.h ├── CoreDevice.m ├── CoreDevice.qcodeproj ├── CoreDevice.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── CoreDevice.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── CoreDevice.xcscheme └── Info.plist ├── CoreFoundation ├── CoreFoundation-Info.plist ├── CoreFoundation.qcodeproj ├── CoreFoundation.xcodeproj │ ├── hns.mode1v3 │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── CoreFoundation.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ ├── All.xcscheme │ │ └── CoreFoundation.xcscheme ├── CoreFoundationTest-Info.plist └── Sources │ ├── CFBase.h │ ├── CFBase.m │ ├── CFString.h │ ├── CFString.m │ └── CoreFoundation.h ├── CoreLocation ├── CLError.h ├── CLErrorDomain.h ├── CLGeocoder.h ├── CLGeocoder.m ├── CLHeading.h ├── CLHeading.m ├── CLLocation.h ├── CLLocationManager.h ├── CLLocationManagerDelegate.h ├── CLPlacemark.h ├── CLPlacemark.m ├── CLRegion.h ├── CLRegion.m ├── CoreLocation.entitlements ├── CoreLocation.h ├── CoreLocation.m ├── CoreLocation.qcodeproj ├── CoreLocation.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── All.xcscheme │ │ ├── CLTestFramework.xcscheme │ │ ├── CoreLocation.xcscheme │ │ ├── CoreLocationDaemon.xcscheme │ │ ├── cltest.xcscheme │ │ └── cltestOursOnOSX.xcscheme ├── CoreLocationDaemon-Info.plist ├── CoreLocationDaemon.h ├── CoreLocationDaemon.m ├── CoreLocationDaemon.qcodeproj ├── CoreLocation_Prefix.pch ├── English.lproj │ ├── InfoPlist.strings │ └── MainMenu.xib ├── Info-test.plist ├── Info.plist ├── cldmain.m ├── cltest.m └── cltest.qcodeproj ├── CoreMotion ├── CMAccelerometer.h ├── CMAttitude.h ├── CMDeviceMotion.h ├── CMError.h ├── CMErrorDomain.h ├── CMGyro.h ├── CMLogItem.h ├── CMMagnetometer.h ├── CMMotionManager.h ├── CMMotionManager.m ├── CoreMotion.h ├── CoreMotion.qcodeproj ├── CoreMotion.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── CoreMotion.xcscheme ├── CoreMotion_Prefix.pch ├── English.lproj │ └── InfoPlist.strings ├── Info.plist ├── cmtest.m └── cmtest.qcodeproj ├── CoreRFID ├── CRTag.h ├── CRTagManager.h ├── CRTagManagerDelegate.h ├── CoreRFID.entitlements ├── CoreRFID.h ├── CoreRFID.m ├── CoreRFID.qcodeproj ├── CoreRFID.xcodeproj │ └── project.pbxproj ├── CoreRFID_Prefix.pch ├── English.lproj │ └── InfoPlist.strings ├── Info.plist └── RFIDProbe │ ├── English.lproj │ ├── InfoPlist.strings │ └── MainMenu.xib │ ├── RFIDProbe-Info.plist │ ├── RFIDProbe.entitlements │ ├── RFIDProbe.qcodeproj │ ├── RFIDProbe.xcodeproj │ └── project.pbxproj │ ├── RFIDProbeAppDelegate.h │ ├── RFIDProbeAppDelegate.m │ ├── RFIDProbe_Prefix.pch │ └── main.m ├── CoreTelephony ├── CTCall.h ├── CTCallCenter.h ├── CTCarrier.h ├── CTModemManager.h ├── CTModemManager.m ├── CTPrivate.h ├── CTTelephonyNetworkInfo.h ├── CoreTelephony.m ├── CoreTelephony.qcodeproj ├── CoreTelephony.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── All.xcscheme │ │ ├── CoreTelephony.xcscheme │ │ └── cttest.xcscheme ├── CoreTelephony_Prefix.pch ├── English.lproj │ ├── AskPin.nib │ │ ├── designable.nib │ │ └── keyedobjects.nib │ └── InfoPlist.strings ├── Info-test.plist ├── Info.plist ├── cttest.m └── cttest.qcodeproj ├── CoreWLAN ├── CW8021XProfile.h ├── CWChannel.h ├── CWConfiguration.h ├── CWEventDelegate.h ├── CWInterface.h ├── CWNetwork.h ├── CWNetworkProfile.h ├── CWWiFiClient.h ├── CoreWLAN.h ├── CoreWLAN.m ├── CoreWLAN.qcodeproj ├── CoreWLAN.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── CoreWLAN.xcscheme │ │ └── cwtest.xcscheme ├── CoreWLANConstants.h ├── CoreWLANTypes.h ├── CoreWLANUtil.h ├── CoreWLAN_Prefix.pch ├── English.lproj │ └── InfoPlist.strings ├── Info-test.plist ├── Info.plist ├── cwtest.m └── cwtest.qcodeproj ├── Foundation ├── CharacterSets │ ├── README │ ├── alphanum.charSet │ ├── control.charSet │ ├── decimal.charSet │ ├── decomposable.charSet │ ├── illegal.charSet │ ├── letterchar.charSet │ ├── nonbase.charSet │ ├── uppercase.charSet │ ├── whitespace.charSet │ └── whitespaceandnl.charSet ├── Foundation-Info.plist ├── Foundation.qcodeproj ├── Foundation.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── Foundation.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ ├── All.xcscheme │ │ ├── Documentation.xcscheme │ │ └── Foundation.xcscheme └── Sources │ ├── Externs.m │ ├── Foundation.h │ ├── Foundation.php │ ├── FoundationErrors.h │ ├── HTMLEntities.strings │ ├── NSAffineTransform.h │ ├── NSAffineTransform.m │ ├── NSArchiver.h │ ├── NSArchiver.m │ ├── NSArray.h │ ├── NSArray.m │ ├── NSAttributedString.h │ ├── NSAttributedString.m │ ├── NSAutoreleasePool.h │ ├── NSAutoreleasePool.m │ ├── NSBlock.h │ ├── NSBlock.m │ ├── NSBundle.h │ ├── NSBundle.m │ ├── NSByteOrder.h │ ├── NSCalendar.h │ ├── NSCalendarDate.h │ ├── NSCharacterSet.h │ ├── NSCharacterSet.m │ ├── NSClassDescription.h │ ├── NSCoder.h │ ├── NSCoder.m │ ├── NSComparisonPredicate.h │ ├── NSCompatibility.h │ ├── NSCompoundPredicate.h │ ├── NSCondition.h │ ├── NSCondition.m │ ├── NSConnection.h │ ├── NSConnection.m │ ├── NSData.h │ ├── NSData.m │ ├── NSDate.h │ ├── NSDate.m │ ├── NSDateFormatter.h │ ├── NSDateFormatter.m │ ├── NSDebug.h │ ├── NSDecimal.h │ ├── NSDecimal.m │ ├── NSDecimalNumber.h │ ├── NSDecimalNumber.m │ ├── NSDictionary.h │ ├── NSDictionary.m │ ├── NSDistantObject.h │ ├── NSDistantObject.m │ ├── NSDistributedLock.h │ ├── NSDistributedLock.m │ ├── NSDistributedNotificationCenter.h │ ├── NSEnumerator.h │ ├── NSError.h │ ├── NSError.m │ ├── NSException.h │ ├── NSException.m │ ├── NSExpression.h │ ├── NSFileHandle.h │ ├── NSFileHandle.m │ ├── NSFileManager.h │ ├── NSFileManager.m │ ├── NSFileWrapper.h │ ├── NSFileWrapper.m │ ├── NSFormatter.h │ ├── NSFormatter.m │ ├── NSGarbageCollector.h │ ├── NSGarbageCollector.m │ ├── NSGeometry.h │ ├── NSGeometry.m │ ├── NSHTTPCookie.h │ ├── NSHTTPCookie.m │ ├── NSHTTPCookieStorage.h │ ├── NSHTTPCookieStorage.m │ ├── NSHashAndMapTable.m │ ├── NSHashTable.h │ ├── NSHost.h │ ├── NSHost.m │ ├── NSIndexPath.h │ ├── NSIndexPathAndSet.m │ ├── NSIndexSet.h │ ├── NSInvocation.h │ ├── NSInvocation.m │ ├── NSJSONSerialization.h │ ├── NSJSONSerialization.m │ ├── NSKeyValueCoding.h │ ├── NSKeyValueCoding.m │ ├── NSKeyValueObserving.h │ ├── NSKeyValueObserving.m │ ├── NSKeyedArchiver.h │ ├── NSKeyedArchiver.m │ ├── NSLocale.h │ ├── NSLocale.m │ ├── NSLock.h │ ├── NSLock.m │ ├── NSMapTable.h │ ├── NSMethodSignature.h │ ├── NSMethodSignature.m │ ├── NSNetServices.h │ ├── NSNetServices.m │ ├── NSNotification.h │ ├── NSNotification.m │ ├── NSNotificationCenter.m │ ├── NSNotificationQueue.h │ ├── NSNotificationQueue.m │ ├── NSNull.h │ ├── NSNull.m │ ├── NSNumber.m │ ├── NSNumberFormatter.h │ ├── NSNumberFormatter.m │ ├── NSObjCRuntime.h │ ├── NSObjCUtilities.m │ ├── NSObject.h │ ├── NSObject.m │ ├── NSOperation.h │ ├── NSOperation.m │ ├── NSPathUtilities.h │ ├── NSPointerArray.h │ ├── NSPointerArray.m │ ├── NSPointerFunctions.h │ ├── NSPointerFunctions.m │ ├── NSPort.h │ ├── NSPort.m │ ├── NSPortCoder.h │ ├── NSPortCoder.m │ ├── NSPortMessage.h │ ├── NSPortNameServer.h │ ├── NSPortNameServer.m │ ├── NSPredicate.h │ ├── NSPredicate.m │ ├── NSPrivate.h │ ├── NSProcessInfo.h │ ├── NSProcessInfo.m │ ├── NSPropertyList.h │ ├── NSPropertyList.m │ ├── NSProtocolChecker.h │ ├── NSProxy.h │ ├── NSProxy.m │ ├── NSRange.h │ ├── NSRegularExpression.h │ ├── NSRegularExpression.m │ ├── NSRunLoop.h │ ├── NSRunLoop.m │ ├── NSScanner.h │ ├── NSScanner.m │ ├── NSSerialization.h │ ├── NSSet.h │ ├── NSSet.m │ ├── NSSortDescriptor.h │ ├── NSSortDescriptor.m │ ├── NSSpellServer.h │ ├── NSSpellServer.m │ ├── NSStream.h │ ├── NSStream.m │ ├── NSString.h │ ├── NSString.m │ ├── NSSystemDirectories.h │ ├── NSTask.h │ ├── NSTask.m │ ├── NSThread.h │ ├── NSThread.m │ ├── NSTimeZone.h │ ├── NSTimeZone.m │ ├── NSTimer.h │ ├── NSTimer.m │ ├── NSURL.h │ ├── NSURL.m │ ├── NSURLAuthenticationChallenge.h │ ├── NSURLAuthenticationChallenge.m │ ├── NSURLCache.h │ ├── NSURLCache.m │ ├── NSURLConnection.h │ ├── NSURLConnection.m │ ├── NSURLCredential.h │ ├── NSURLCredential.m │ ├── NSURLCredentialStorage.h │ ├── NSURLCredentialStorage.m │ ├── NSURLDownload.h │ ├── NSURLDownload.m │ ├── NSURLError.h │ ├── NSURLHandle.h │ ├── NSURLHandle.m │ ├── NSURLProtectionSpace.h │ ├── NSURLProtectionSpace.m │ ├── NSURLProtocol.h │ ├── NSURLProtocol.m │ ├── NSURLRequest.h │ ├── NSURLRequest.m │ ├── NSURLResponse.h │ ├── NSURLResponse.m │ ├── NSUndoManager.h │ ├── NSUndoManager.m │ ├── NSUserDefaults.h │ ├── NSUserDefaults.m │ ├── NSUtilities.h │ ├── NSValue.h │ ├── NSValue.m │ ├── NSValueTransformer.h │ ├── NSValueTransformer.m │ ├── NSXMLDTD.h │ ├── NSXMLDTD.m │ ├── NSXMLDTDNode.h │ ├── NSXMLDTDNode.m │ ├── NSXMLDocument.h │ ├── NSXMLDocument.m │ ├── NSXMLElement.h │ ├── NSXMLElement.m │ ├── NSXMLNode.h │ ├── NSXMLNode.m │ ├── NSXMLNodeOptions.h │ ├── NSXMLParser.h │ ├── NSXMLParser.m │ ├── NSXPCConnection.h │ ├── NSZone.h │ ├── Unicode.h │ ├── Unicode.m │ ├── caseconv.h │ ├── cop.h │ ├── cyrillic.h │ ├── decomp.h │ ├── nextstep.h │ └── tzfile.h ├── Frameworks.qcodeproj ├── Frameworks.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── Frameworks.xcscheme │ ├── SDK.xcscheme │ ├── copy MacPorts dylibs.xcscheme │ ├── myFrameworks + Send.xcscheme │ └── src.xcscheme ├── IOBluetooth ├── Bluetooth.h ├── BluetoothAssignedNumbers.h ├── BluetoothPrivate.h ├── IOBluetooth-Info.plist ├── IOBluetooth.h ├── IOBluetooth.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── All.xcscheme │ │ ├── IOBluetoothCore.xcscheme │ │ ├── IOBluetoothUI.xcscheme │ │ └── iobttest.xcscheme ├── IOBluetoothCore.qcodeproj ├── IOBluetoothUI-Info.plist ├── IOBluetoothUI.h ├── IOBluetoothUI.qcodeproj ├── IOBluetoothUIUserLib.h ├── Info-test.plist ├── Panels │ ├── Base.lproj │ │ ├── DeviceSelector.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ │ ├── ObjectPushUI.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ │ ├── Pairing.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ │ └── ServiceBrowser.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ ├── de.lproj │ │ ├── DeviceSelector.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ │ ├── ObjectPushUI.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ │ ├── Pairing.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ │ └── ServiceBrowser.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ └── fr.lproj │ │ ├── DeviceSelector.nib │ │ ├── designable.nib │ │ └── keyedobjects.nib │ │ ├── ObjectPushUI.nib │ │ ├── designable.nib │ │ └── keyedobjects.nib │ │ ├── Pairing.nib │ │ ├── designable.nib │ │ └── keyedobjects.nib │ │ └── ServiceBrowser.nib │ │ ├── designable.nib │ │ └── keyedobjects.nib ├── iobttest.m ├── iobttest.qcodeproj ├── net │ └── bluetooth │ │ └── bluez.h └── objc │ ├── IOBluetoothController.h │ ├── IOBluetoothController.m │ ├── IOBluetoothDevice.h │ ├── IOBluetoothDevice.m │ ├── IOBluetoothDeviceInquiry.h │ ├── IOBluetoothDeviceInquiry.m │ ├── IOBluetoothDeviceSelectorController.h │ ├── IOBluetoothDeviceSelectorController.m │ ├── IOBluetoothL2CAPChannel.h │ ├── IOBluetoothL2CAPChannel.m │ ├── IOBluetoothOBEXSession.h │ ├── IOBluetoothOBEXSession.m │ ├── IOBluetoothObject.h │ ├── IOBluetoothObject.m │ ├── IOBluetoothObjectPushUIController.h │ ├── IOBluetoothObjectPushUIController.m │ ├── IOBluetoothPairingController.h │ ├── IOBluetoothPairingController.m │ ├── IOBluetoothRFCOMMChannel.h │ ├── IOBluetoothRFCOMMChannel.m │ ├── IOBluetoothSDPDataElement.h │ ├── IOBluetoothSDPDataElement.m │ ├── IOBluetoothSDPServiceAttribute.h │ ├── IOBluetoothSDPServiceAttribute.m │ ├── IOBluetoothSDPServiceRecord.h │ ├── IOBluetoothSDPServiceRecord.m │ ├── IOBluetoothSDPUUID.h │ ├── IOBluetoothSDPUUID.m │ ├── IOBluetoothServiceBrowserController.h │ ├── IOBluetoothServiceBrowserController.m │ ├── IOBluetoothUserNotification.h │ ├── IOBluetoothUserNotification.m │ ├── OBEXFileTransferServices.h │ ├── OBEXFileTransferServices.m │ ├── OBEXSession.h │ └── OBEXSession.m ├── ImageKit ├── IKImageBrowserView.h ├── IKImageBrowserView.m ├── IKImageView.h ├── IKImageView.m ├── IKPictureTaker.h ├── IKPictureTaker.m ├── ImageKit-Info.plist ├── ImageKit.qcodeproj └── ImageKit.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ └── xcschemes │ └── ImageKit.xcscheme ├── LGPL LICENCE.txt ├── Make.qcodeproj ├── MapKit ├── CLExtensions.h ├── CLExtensions.m ├── English.lproj │ └── InfoPlist.strings ├── Icons │ ├── flag_cyan_32.png │ ├── flag_green_32.png │ ├── flag_orange_32.png │ └── flag_red_32.png ├── Info.plist ├── MKAnnotation.h ├── MKAnnotationView.h ├── MKAnnotationView.m ├── MKCircle.h ├── MKCircleView.h ├── MKGeometry.h ├── MKGeometry.m ├── MKMapView.h ├── MKMapView.m ├── MKMultiPoint.h ├── MKOverlay.h ├── MKOverlayPathView.h ├── MKOverlayView.h ├── MKOverlayView.m ├── MKPinAnnotationView.h ├── MKPlacemark.h ├── MKPointAnnotation.h ├── MKPolygon.h ├── MKPolygonView.h ├── MKPolyline.h ├── MKPolylineView.h ├── MKReverseGeocoder.h ├── MKShape.h ├── MKTypes.h ├── MKUserLocation.h ├── MKUserLocation.m ├── MapKit.entitlements ├── MapKit.h ├── MapKit.qcodeproj ├── MapKit.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── MapKit.xcscheme │ │ └── MapKitTest.xcscheme ├── MapKitTest-Info.plist ├── MapKitTest.qcodeproj ├── MapKitTest │ ├── English.lproj │ │ ├── Credits.rtf │ │ ├── InfoPlist.strings │ │ ├── MainMenu.xib │ │ └── MyDocument.xib │ ├── MapKitTest-Info.plist │ ├── MapKitTest_Prefix.pch │ ├── MyDocument.h │ ├── MyDocument.m │ └── main.m ├── MapKit_Prefix.pch └── PreinstalledTiles │ ├── 0 │ └── 0 │ │ └── 0.png │ └── 1 │ ├── 0 │ ├── 0.png │ └── 1.png │ └── 1 │ ├── 0.png │ └── 1.png ├── Message ├── Message-Info.plist ├── Message.php ├── Message.qcodeproj ├── Message.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Message.xcscheme ├── NSMailDelivery.h └── NSMailDelivery.m ├── OCUnit ├── Documentation │ ├── Notes │ │ ├── Acknowledgements.html │ │ ├── OpenSourceLicense.html │ │ └── ReleaseNotes.html │ ├── OPENSTEP │ │ ├── OCUnit-OpenStep.readme │ │ └── UserGuide.rtf │ ├── Tutorials │ │ └── OCUnitWWDC2002.rtfd │ │ │ ├── .typeAttributes.dict │ │ │ ├── TXT.rtf │ │ │ ├── Xcode Build.pdf │ │ │ └── Xcode Build.pdf.tiff │ ├── images │ │ ├── Shikenjo.gif │ │ └── sente.gif │ └── index.html ├── Examples │ ├── Person │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ ├── Info.plist │ │ ├── Person.h │ │ ├── Person.m │ │ ├── Person.xcode │ │ │ └── project.pbxproj │ │ ├── Person_Prefix.pch │ │ ├── TestPerson.h │ │ ├── TestPerson.m │ │ └── main.c │ ├── PersonComplete │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ ├── Info.plist │ │ ├── Person.h │ │ ├── Person.m │ │ ├── PersonComplete.xcode │ │ │ └── project.pbxproj │ │ ├── PersonComplete_Prefix.pch │ │ ├── TestPerson.h │ │ ├── TestPerson.m │ │ └── main.c │ ├── README │ ├── ReleaseNotes.txt │ ├── SenFoundationPerformanceTest │ │ ├── ClosurePerformanceTest.h │ │ ├── ClosurePerformanceTest.m │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ ├── GSmakefile │ │ ├── Info.plist │ │ ├── Makefile │ │ ├── Makefile.postamble │ │ ├── Makefile.preamble │ │ ├── PB.project │ │ ├── SenFoundationPerformanceTest.pbproj │ │ │ └── project.pbxproj │ │ ├── SenFoundationPerformanceTest.xcode │ │ │ └── project.pbxproj │ │ ├── SenFoundationPerformanceTest_Prefix.pch │ │ ├── h.template │ │ ├── m.template │ │ ├── main.c │ │ └── version.plist │ ├── SenRandomTest │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ ├── Info.plist │ │ ├── SenRandom.h │ │ ├── SenRandom.m │ │ ├── SenRandomConformanceTest.h │ │ ├── SenRandomConformanceTest.m │ │ ├── SenRandomPerformanceTest.h │ │ ├── SenRandomPerformanceTest.m │ │ ├── SenRandomTest.h │ │ ├── SenRandomTest.m │ │ ├── SenRandomTest.xcode │ │ │ └── project.pbxproj │ │ ├── SenRandomTest_Prefix.pch │ │ ├── SenRandomVisualTest.h │ │ ├── SenRandomVisualTest.m │ │ ├── cokus.c │ │ ├── main.c │ │ ├── mt19937.c │ │ ├── mt19937int.c │ │ └── version.plist │ ├── TestExtras │ │ ├── CompletionTest.h │ │ ├── CompletionTest.m │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── objects.nib │ │ ├── TestExtras.xcode │ │ │ └── project.pbxproj │ │ └── main.m │ └── Testable │ │ ├── Application │ │ ├── Application.iconheader │ │ ├── Application.xcode │ │ │ └── project.pbxproj │ │ ├── Application_Prefix.pch │ │ ├── Application_main.m │ │ ├── English.lproj │ │ │ ├── Application-windows.nib │ │ │ │ ├── classes.nib │ │ │ │ └── objects.nib │ │ │ ├── Application.nib │ │ │ │ ├── NSAppleMenuImage.tiff │ │ │ │ ├── classes.nib │ │ │ │ └── objects.nib │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── objects.nib │ │ ├── Info.plist │ │ ├── Makefile │ │ ├── Makefile.postamble │ │ ├── Makefile.preamble │ │ ├── PB.project │ │ ├── SetTestCase.h │ │ ├── SetTestCase.m │ │ ├── TestInterface.h │ │ ├── TestInterface.m │ │ ├── TestTest.h │ │ ├── TestTest.m │ │ ├── h.template │ │ ├── java.template │ │ ├── m.template │ │ ├── main.m │ │ └── version.plist │ │ ├── ApplicationBundle │ │ ├── ApplicationBundle.iconheader │ │ ├── ApplicationBundle_main.m │ │ ├── Delegate.h │ │ ├── Delegate.m │ │ ├── English.lproj │ │ │ ├── ApplicationBundle-windows.nib │ │ │ │ ├── classes.nib │ │ │ │ └── objects.nib │ │ │ └── ApplicationBundle.nib │ │ │ │ ├── NSAppleMenuImage.tiff │ │ │ │ ├── classes.nib │ │ │ │ └── objects.nib │ │ ├── Makefile │ │ ├── Makefile.postamble │ │ ├── Makefile.preamble │ │ ├── PB.project │ │ ├── Some.h │ │ ├── Some.m │ │ ├── Tests.bproj │ │ │ ├── Makefile │ │ │ ├── Makefile.postamble │ │ │ ├── Makefile.preamble │ │ │ ├── PB.project │ │ │ ├── SomeTest.h │ │ │ ├── SomeTest.m │ │ │ ├── h.template │ │ │ └── m.template │ │ ├── h.template │ │ ├── java.template │ │ └── m.template │ │ ├── Bundle.bproj │ │ ├── BreakTest.h │ │ ├── BreakTest.m │ │ ├── Bundle.bproj.pbproj │ │ │ └── project.pbxproj │ │ ├── GSmakefile │ │ ├── Makefile │ │ ├── Makefile.postamble │ │ ├── Makefile.preamble │ │ ├── PB.project │ │ ├── SetTestCase.h │ │ ├── SetTestCase.m │ │ ├── h.template │ │ └── m.template │ │ ├── Framework.fproj │ │ ├── BreakTest.h │ │ ├── BreakTest.m │ │ ├── Framework.fproj.pbproj │ │ │ └── project.pbxproj │ │ ├── GSmakefile │ │ ├── Makefile │ │ ├── Makefile.postamble │ │ ├── Makefile.preamble │ │ ├── PB.project │ │ ├── SetTestCase.h │ │ ├── SetTestCase.m │ │ ├── h.template │ │ └── m.template │ │ ├── FrameworkWithJava │ │ ├── My │ │ │ ├── ClassUsingJava.h │ │ │ ├── ClassUsingJava.m │ │ │ ├── JavaClass.java │ │ │ ├── Makefile │ │ │ ├── Makefile.postamble │ │ │ ├── Makefile.preamble │ │ │ ├── My.pbproj │ │ │ │ └── project.pbxproj │ │ │ ├── PB.project │ │ │ ├── h.template │ │ │ └── m.template │ │ └── My_Test │ │ │ ├── Makefile │ │ │ ├── Makefile.postamble │ │ │ ├── Makefile.preamble │ │ │ ├── MyTestCase.h │ │ │ ├── MyTestCase.m │ │ │ ├── My_Test.pbproj │ │ │ └── project.pbxproj │ │ │ ├── PB.project │ │ │ ├── h.template │ │ │ └── m.template │ │ ├── WebApplication │ │ ├── Application.h │ │ ├── Application.m │ │ ├── ClientSideJava.subproj │ │ │ ├── Makefile.postamble │ │ │ ├── Makefile.preamble │ │ │ └── PB.project │ │ ├── CommonJava.subproj │ │ │ ├── Makefile.postamble │ │ │ ├── Makefile.preamble │ │ │ └── PB.project │ │ ├── CustomInfo.plist │ │ ├── DirectAction.h │ │ ├── DirectAction.m │ │ ├── EOImplementationFile.template │ │ ├── EOInterfaceFile.template │ │ ├── EOJavaClass.template │ │ ├── Main.api │ │ ├── Main.h │ │ ├── Main.m │ │ ├── Main.wo │ │ │ ├── Main.html │ │ │ └── Main.wod │ │ ├── Makefile │ │ ├── Makefile.postamble │ │ ├── Makefile.preamble │ │ ├── PB.project │ │ ├── Session.h │ │ ├── Session.m │ │ ├── Test.h │ │ ├── Test.m │ │ ├── WebApplication_main.m │ │ ├── gdb.ini │ │ ├── h.template │ │ ├── java.template │ │ ├── m.template │ │ └── wos.template │ │ ├── WebFramework │ │ ├── ClientSideJava.subproj │ │ │ ├── Makefile.postamble │ │ │ ├── Makefile.preamble │ │ │ └── PB.project │ │ ├── CommonJava.subproj │ │ │ ├── Makefile.postamble │ │ │ ├── Makefile.preamble │ │ │ └── PB.project │ │ ├── CustomInfo.plist │ │ ├── EOImplementationFile.template │ │ ├── EOInterfaceFile.template │ │ ├── EOJavaClass.template │ │ ├── Makefile │ │ ├── Makefile.postamble │ │ ├── Makefile.preamble │ │ ├── PB.project │ │ ├── Test.h │ │ ├── Test.m │ │ ├── h.template │ │ ├── java.template │ │ ├── m.template │ │ └── wos.template │ │ └── tool │ │ ├── GSmakefile │ │ ├── Makefile │ │ ├── Makefile.postamble │ │ ├── Makefile.preamble │ │ ├── PB.project │ │ ├── Test.h │ │ ├── Test.m │ │ ├── h.template │ │ ├── m.template │ │ ├── tool.pbproj │ │ └── project.pbxproj │ │ └── tool_main.m ├── Extras │ ├── Packaging │ │ ├── HomePackage │ │ │ ├── BUILD │ │ │ ├── ReadMe.rtf │ │ │ └── installOCUnit │ │ ├── License.html │ │ ├── RootPackage │ │ │ ├── BUILD │ │ │ ├── IFRequirement.strings │ │ │ ├── IFRequirementsInfo.plist │ │ │ ├── OCUnitRoot.pmsp │ │ │ ├── ReadMe.rtf │ │ │ ├── Welcome.rtf │ │ │ ├── buildRootPackage │ │ │ └── convertUserToRoot │ │ └── sente.gif │ ├── ProjectBuilder Integration │ │ ├── Documentation │ │ │ ├── Shikenjo.gif │ │ │ ├── index.html │ │ │ └── sente.gif │ │ ├── PBWO │ │ │ ├── Makefiles │ │ │ │ ├── README │ │ │ │ ├── Resources │ │ │ │ │ └── otestSpec.plist │ │ │ │ └── pb_makefiles │ │ │ │ │ ├── aggregate.make.preamble │ │ │ │ │ ├── common.make.postamble │ │ │ │ │ └── test.make │ │ │ └── SenTestableProjects │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.postamble │ │ │ │ ├── Makefile.preamble │ │ │ │ ├── OpenSourceLicense.html │ │ │ │ ├── PB.project │ │ │ │ ├── SenTestableProjectType.h │ │ │ │ ├── SenTestableProjectType.m │ │ │ │ ├── h.template │ │ │ │ └── m.template │ │ └── PBX │ │ │ ├── Add-to-Jambase-parse-info.plist │ │ │ ├── Makefiles │ │ │ └── Resources │ │ │ │ └── OCUnit │ │ │ │ └── RunTargetUnitTests │ │ │ ├── Objective-C SenTestCase subclass.pbfiletemplate │ │ │ ├── TemplateInfo.plist │ │ │ ├── class.h │ │ │ └── class.m │ │ │ ├── README │ │ │ └── Sente TestingKit │ │ │ ├── Cocoa Application │ │ │ ├── CocoaApp.pbproj │ │ │ │ ├── TemplateInfo.plist │ │ │ │ └── project.pbxproj │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ └── main.m │ │ │ ├── Cocoa Bundle │ │ │ ├── CocoaTestBundle.pbproj │ │ │ │ ├── TemplateInfo.plist │ │ │ │ └── project.pbxproj │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ └── main.c │ │ │ ├── Cocoa Framework │ │ │ ├── CocoaTestFramework.pbproj │ │ │ │ ├── TemplateInfo.plist │ │ │ │ └── project.pbxproj │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ └── main.c │ │ │ └── Foundation Test Tool │ │ │ ├── Test.h │ │ │ ├── Test.m │ │ │ ├── Tester.pbproj │ │ │ └── project.pbxproj │ │ │ └── main.m │ ├── SenStateCapture │ │ ├── Documentation.rtf │ │ ├── Example │ │ │ └── StateTest │ │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── Example.h │ │ │ │ ├── Example.m │ │ │ │ ├── ExampleTesting.h │ │ │ │ ├── ExampleTesting.m │ │ │ │ ├── Info.plist │ │ │ │ ├── StateTest.xcode │ │ │ │ └── project.pbxproj │ │ │ │ ├── StateTest_Prefix.pch │ │ │ │ ├── main.m │ │ │ │ └── version.plist │ │ ├── SenStateCapture.h │ │ ├── SenStateCapture.m │ │ ├── SenTestStateCapture.h │ │ └── SenTestStateCapture.m │ └── Xcode Integration │ │ ├── Documentation │ │ ├── BuildTestResults.jpg │ │ ├── OtestAsExecutable.jpg │ │ ├── ShellScriptInspector.jpg │ │ ├── Shikenjo.gif │ │ ├── index.html │ │ └── sente.gif │ │ ├── Templates │ │ ├── File Templates │ │ │ └── Cocoa │ │ │ │ └── Objective-C SenTestCase subclass.pbfiletemplate │ │ │ │ ├── TemplateInfo.plist │ │ │ │ ├── class.h │ │ │ │ └── class.m │ │ ├── Project Templates │ │ │ ├── Application │ │ │ │ ├── Cocoa Application + Test │ │ │ │ │ ├── CocoaApp.pbproj │ │ │ │ │ │ ├── TemplateInfo.plist │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── CocoaApp_Prefix.pch │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ └── MainMenu.nib │ │ │ │ │ │ │ ├── classes.nib │ │ │ │ │ │ │ ├── info.nib │ │ │ │ │ │ │ └── objects.nib │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── main.m │ │ │ │ │ └── version.plist │ │ │ │ └── Cocoa Document-based Application + Test │ │ │ │ │ ├── CocoaDocApp.pbproj │ │ │ │ │ ├── TemplateInfo.plist │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── CocoaDocApp_Prefix.pch │ │ │ │ │ ├── English.lproj │ │ │ │ │ ├── Credits.rtf │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ ├── MainMenu.nib │ │ │ │ │ │ ├── classes.nib │ │ │ │ │ │ ├── info.nib │ │ │ │ │ │ └── objects.nib │ │ │ │ │ └── MyDocument.nib │ │ │ │ │ │ ├── classes.nib │ │ │ │ │ │ ├── info.nib │ │ │ │ │ │ └── objects.nib │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MyDocument.h │ │ │ │ │ ├── MyDocument.m │ │ │ │ │ ├── main.m │ │ │ │ │ └── version.plist │ │ │ ├── Bundle │ │ │ │ └── Cocoa Bundle + Test │ │ │ │ │ ├── CocoaBundle.pbproj │ │ │ │ │ ├── TemplateInfo.plist │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── CocoaBundle_Prefix.pch │ │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── main.c │ │ │ │ │ └── version.plist │ │ │ └── Framework │ │ │ │ └── Cocoa Framework + Test │ │ │ │ ├── CocoaFramework.pbproj │ │ │ │ ├── TemplateInfo.plist │ │ │ │ └── project.pbxproj │ │ │ │ ├── CocoaFramework_Prefix.pch │ │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ ├── main.c │ │ │ │ └── version.plist │ │ └── Target Templates │ │ │ └── Cocoa │ │ │ └── Test Framework.trgttmpl │ │ └── Tools │ │ └── RunTargetUnitTests ├── License.html ├── OCUnit.qcodeproj ├── README ├── ReadMe.rtf ├── SourceCode │ ├── README │ ├── SenFoundation │ │ ├── BundleInserter-windows.gdb │ │ ├── BundleInserter-windows.postamble │ │ ├── BundleInserter-windows.preamble │ │ ├── BundleInserter.gdb │ │ ├── BundleInserter.postamble │ │ ├── BundleInserter.preamble │ │ ├── English.lproj │ │ │ └── SenDateInterval.strings │ │ ├── French.lproj │ │ │ └── SenDateInterval.strings │ │ ├── GNUmakefile │ │ ├── GSmakefile │ │ ├── Makefile │ │ ├── Makefile.postamble │ │ ├── Makefile.preamble │ │ ├── NSArray_SenAdditions.h │ │ ├── NSArray_SenAdditions.m │ │ ├── NSBundle_SenAdditions.h │ │ ├── NSBundle_SenAdditions.m │ │ ├── NSException_SenAdditions.h │ │ ├── NSException_SenAdditions.m │ │ ├── NSMutableDictionary_SenAdditions.h │ │ ├── NSMutableDictionary_SenAdditions.m │ │ ├── NSNumber_Extensions.h │ │ ├── NSNumber_Extensions.m │ │ ├── NSObject_SenAdditions.h │ │ ├── NSObject_SenAdditions.m │ │ ├── NSObject_SenRuntimeUtilities.h │ │ ├── NSObject_SenRuntimeUtilities.m │ │ ├── NSObject_SenTree.h │ │ ├── NSObject_SenTree.m │ │ ├── NSString_SenAdditions.h │ │ ├── NSString_SenAdditions.m │ │ ├── NSTask_SenAdditions.h │ │ ├── NSTask_SenAdditions.m │ │ ├── NSUserDefaults_SenAdditions.h │ │ ├── NSUserDefaults_SenAdditions.m │ │ ├── OpenSourceLicense.html │ │ ├── PB.project │ │ ├── SenAssertion.h │ │ ├── SenClassEnumerator.h │ │ ├── SenClassEnumerator.m │ │ ├── SenCollection.h │ │ ├── SenCollection.m │ │ ├── SenDateInterval.h │ │ ├── SenDateInterval.m │ │ ├── SenEmptiness.h │ │ ├── SenEmptiness.m │ │ ├── SenFileSystemTree.h │ │ ├── SenFileSystemTree.m │ │ ├── SenFoundation.h │ │ ├── SenFoundation.pbproj │ │ │ └── project.pbxproj │ │ ├── SenFoundation.qcodeproj │ │ ├── SenFoundationDefines.h │ │ ├── SenInvocationEnumerator.h │ │ ├── SenInvocationEnumerator.m │ │ ├── SenMutableTree.h │ │ ├── SenMutableTree.m │ │ ├── SenQualifier.h │ │ ├── SenQualifier.m │ │ ├── SenRandom.h │ │ ├── SenRandom.m │ │ ├── SenSelection.h │ │ ├── SenSelection.m │ │ ├── SenSortOrdering.h │ │ ├── SenSortOrdering.m │ │ ├── SenTreeEnumerator.h │ │ ├── SenTreeEnumerator.m │ │ ├── SenTrees.h │ │ ├── SenUtilities.h │ │ ├── SenUtilities.m │ │ ├── SenValueTree.h │ │ ├── SenValueTree.m │ │ ├── Version │ │ ├── h.template │ │ ├── m.template │ │ ├── mt19937int.c │ │ └── sente.gif │ ├── SenInterfaceTestingPalette │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── SenInterfaceTestingPalette.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── objects.nib │ │ ├── Info.plist │ │ ├── Makefile │ │ ├── Makefile.postamble │ │ ├── Makefile.preamble │ │ ├── OpenSourceLicense.html │ │ ├── PB.project │ │ ├── README │ │ ├── SenInterfaceTestingPalette.h │ │ ├── SenInterfaceTestingPalette.m │ │ ├── SenInterfaceTestingPalette.pbproj │ │ │ └── project.pbxproj │ │ ├── SenInterfaceTestingPalette.tiff │ │ ├── SenInterfaceTestingPalette.xcode │ │ │ └── project.pbxproj │ │ ├── SenInterfaceTestingPalette_Prefix.pch │ │ ├── h.template │ │ ├── m.template │ │ ├── palette.table │ │ └── version.plist │ ├── SenTestingKit │ │ ├── ApplicationWrapperExtensions.plist │ │ ├── CustomInfo.plist │ │ ├── Documentation │ │ │ ├── GenerateDocs.txt │ │ │ ├── IntroSenTestingKit.html │ │ │ ├── NSException_SenTestFailure.html │ │ │ ├── NSInvocation_SenTesting.html │ │ │ ├── NSObject_SenTestRuntimeUtilities.html │ │ │ ├── SenInterfaceTestCase.html │ │ │ ├── SenTest.html │ │ │ ├── SenTestCase.html │ │ │ ├── SenTestCaseRun.html │ │ │ ├── SenTestCase_Macros.html │ │ │ ├── SenTestClassEnumerator.html │ │ │ ├── SenTestDefines.html │ │ │ ├── SenTestDistributedNotifier.html │ │ │ ├── SenTestInvocationEnumerator.html │ │ │ ├── SenTestLog.html │ │ │ ├── SenTestObserver.html │ │ │ ├── SenTestProbe.html │ │ │ ├── SenTestRun.html │ │ │ ├── SenTestSuite.html │ │ │ ├── SenTestSuiteRun.html │ │ │ ├── SenTestingKitTOC.html │ │ │ ├── SenTestingUtilities.html │ │ │ └── Tests.subproj │ │ │ │ ├── SenTestContinueOrRaiseTesting.html │ │ │ │ ├── SenTestEmptySuite.html │ │ │ │ ├── SenTestErrorTesting.html │ │ │ │ ├── SenTestFail.html │ │ │ │ ├── SenTestMacroTesting.html │ │ │ │ ├── SenTestNewStyleMacros.html │ │ │ │ ├── SenTestPerformance.html │ │ │ │ ├── SenTestShould.html │ │ │ │ ├── SenTestShouldBeEqual.html │ │ │ │ ├── SenTestShouldRaise.html │ │ │ │ └── SenTestTestSuite.html │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ ├── GNUmakefile │ │ ├── GSmakefile │ │ ├── Info.plist │ │ ├── Makefile │ │ ├── Makefile.postamble │ │ ├── Makefile.preamble │ │ ├── NSException_SenTestFailure.h │ │ ├── NSException_SenTestFailure.m │ │ ├── NSInvocation_SenTesting.h │ │ ├── NSInvocation_SenTesting.m │ │ ├── NSObject_SenTestRuntimeUtilities.h │ │ ├── NSObject_SenTestRuntimeUtilities.m │ │ ├── NoSourceDirectoryExtensions.plist │ │ ├── OpenSourceLicense.html │ │ ├── PB.project │ │ ├── SenInterfaceTestCase.h │ │ ├── SenInterfaceTestCase.m │ │ ├── SenTest.h │ │ ├── SenTest.m │ │ ├── SenTestCase.h │ │ ├── SenTestCase.m │ │ ├── SenTestCaseRun.h │ │ ├── SenTestCaseRun.m │ │ ├── SenTestCase_Macros.h │ │ ├── SenTestClassEnumerator.h │ │ ├── SenTestClassEnumerator.m │ │ ├── SenTestDefines.h │ │ ├── SenTestDistributedNotifier.h │ │ ├── SenTestDistributedNotifier.m │ │ ├── SenTestInvocationEnumerator.h │ │ ├── SenTestInvocationEnumerator.m │ │ ├── SenTestLog.h │ │ ├── SenTestLog.m │ │ ├── SenTestObserver.h │ │ ├── SenTestObserver.m │ │ ├── SenTestProbe.h │ │ ├── SenTestProbe.m │ │ ├── SenTestRun.h │ │ ├── SenTestRun.m │ │ ├── SenTestSuite.h │ │ ├── SenTestSuite.m │ │ ├── SenTestSuiteRun.h │ │ ├── SenTestSuiteRun.m │ │ ├── SenTestingKit.h │ │ ├── SenTestingKit.pbproj │ │ │ └── project.pbxproj │ │ ├── SenTestingKit.qcodeproj │ │ ├── SenTestingKit.xcode │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── SenTestingKit.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── SenTestingKit.xcscheme │ │ │ │ ├── SenTestingKitTest.xcscheme │ │ │ │ └── SenTestingKit_UnitTests.xcscheme │ │ ├── SenTestingKitTest-Info.plist │ │ ├── SenTestingKit_Prefix.pch │ │ ├── SenTestingUtilities.h │ │ ├── SenTestingUtilities.m │ │ ├── Tests.subproj │ │ │ ├── GNUmakefile │ │ │ ├── GSmakefile │ │ │ ├── Makefile │ │ │ ├── Makefile.postamble │ │ │ ├── Makefile.preamble │ │ │ ├── PB.project │ │ │ ├── SenTestContinueOrRaiseTesting.h │ │ │ ├── SenTestContinueOrRaiseTesting.m │ │ │ ├── SenTestEmptySuite.h │ │ │ ├── SenTestEmptySuite.m │ │ │ ├── SenTestErrorTesting.h │ │ │ ├── SenTestErrorTesting.m │ │ │ ├── SenTestFail.h │ │ │ ├── SenTestFail.m │ │ │ ├── SenTestMacroTesting.h │ │ │ ├── SenTestMacroTesting.m │ │ │ ├── SenTestNewStyleMacros.h │ │ │ ├── SenTestNewStyleMacros.m │ │ │ ├── SenTestPerformance.h │ │ │ ├── SenTestPerformance.m │ │ │ ├── SenTestShould.h │ │ │ ├── SenTestShould.m │ │ │ ├── SenTestShouldBeEqual.h │ │ │ ├── SenTestShouldBeEqual.m │ │ │ ├── SenTestShouldRaise.h │ │ │ ├── SenTestShouldRaise.m │ │ │ ├── SenTestTestSuite.h │ │ │ ├── SenTestTestSuite.m │ │ │ ├── SenTestingTests.qcodeproj │ │ │ ├── h.template │ │ │ └── m.template │ │ ├── UnitTests-Info.plist │ │ ├── h.template │ │ ├── m.template │ │ ├── makedoc │ │ ├── sente.gif │ │ └── version.plist │ ├── Shikenjo │ │ ├── CustomInfo.plist │ │ ├── English.lproj │ │ │ ├── InfoPanel-macos.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── objects.nib │ │ │ ├── InfoPanel.nib │ │ │ │ ├── classes.nib │ │ │ │ └── objects.nib │ │ │ ├── Localizable.strings │ │ │ ├── Shikenjo-macos.nib │ │ │ │ ├── NSAppleMenuImage.tiff │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── objects.nib │ │ │ └── Shikenjo.nib │ │ │ │ ├── NSAppleMenuImage.tiff │ │ │ │ ├── classes.nib │ │ │ │ └── objects.nib │ │ ├── Error.tiff │ │ ├── Failure.tiff │ │ ├── InfoPanelController.h │ │ ├── InfoPanelController.m │ │ ├── Inspector.tiff │ │ ├── Klein.tiff │ │ ├── Makefile │ │ ├── Makefile.postamble │ │ ├── Makefile.preamble │ │ ├── OpenSourceLicense.html │ │ ├── Options.tiff │ │ ├── PB.project │ │ ├── Run.tiff │ │ ├── Sente.pdf │ │ ├── Sente_70.eps │ │ ├── Shikenjo.h │ │ ├── Shikenjo.iconheader │ │ ├── Shikenjo.m │ │ ├── Shikenjo.pbproj │ │ │ └── project.pbxproj │ │ ├── Shikenjo.qcodeproj │ │ ├── Shikenjo.tiff │ │ ├── Shikenjo_main.m │ │ ├── Stop.tiff │ │ ├── h.template │ │ ├── java.template │ │ └── m.template │ └── otest │ │ ├── GNUmakefile │ │ ├── GSmakefile │ │ ├── Makefile │ │ ├── Makefile.postamble │ │ ├── Makefile.preamble │ │ ├── PB.project │ │ ├── SenTestTool.h │ │ ├── SenTestTool.m │ │ ├── h.template │ │ ├── m.template │ │ ├── otest.1 │ │ ├── otest.pbproj │ │ └── project.pbxproj │ │ ├── otest.qcodeproj │ │ ├── otest.xcode │ │ └── project.pbxproj │ │ ├── otest.xcodeproj │ │ └── project.pbxproj │ │ ├── otest_Prefix.pch │ │ └── otest_main.m └── sente.gif ├── ObjC ├── AST.h ├── AST.m ├── Compile.h ├── Compile.m ├── Evaluate.h ├── Evaluate.m ├── Expression.h ├── Expression.m ├── Inspector.h ├── Inspector.m ├── Inspector.xib ├── Makefile ├── ObjC-Info.plist ├── ObjC.qcodeproj ├── ObjCKit.h ├── ObjCKit.qcodeproj ├── ObjCKit.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── ObjCKit.xcscheme │ │ ├── Test.xcscheme │ │ └── objc.xcscheme ├── Postprocess.h ├── Postprocess.m ├── Print.h ├── Print.m ├── Refactor.h ├── Refactor.m ├── Simplify.h ├── Simplify.m ├── ToDo ├── gram.ym ├── main.m ├── objc ├── objc10.h ├── objc10.m ├── objc20.h ├── objc20.m ├── objc2c.h ├── objc2c.m ├── objc2php.h ├── objc2php.m ├── scan.lm └── test │ ├── helloworld.m │ ├── script.m │ ├── simple.m │ ├── special.m │ └── test.m ├── OpenCL └── CMTensor.h ├── PDFKit ├── AppController.h ├── AppController.m ├── English.lproj │ └── MainMenu.nib │ │ ├── data.dependency │ │ ├── designable.nib │ │ └── keyedobjects.nib ├── NSPDFImageRep.m ├── PDFAnnotation.h ├── PDFAnnotation.m ├── PDFDestination.h ├── PDFDestination.m ├── PDFDocument.h ├── PDFDocument.m ├── PDFKit-Info.plist ├── PDFKit.entitlements ├── PDFKit.h ├── PDFKit.php ├── PDFKit.qcodeproj ├── PDFKit.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── PDFCombine.xcscheme │ │ ├── PDFKit.xcscheme │ │ ├── PDFTest.xcscheme │ │ └── Quartz.xcscheme ├── PDFKitPrivate.h ├── PDFObject.m ├── PDFOutline.h ├── PDFOutline.m ├── PDFPage.h ├── PDFPage.m ├── PDFParser.m ├── PDFStream.m ├── PDFTest-Info.plist ├── PDFView.h ├── PDFView.m ├── Quartz-Info.plist ├── Quartz.h ├── Quartz.m ├── Quartz.qcodeproj └── ToDo ├── PreferencePanes ├── NSPreferencePane.h ├── NSPreferencePane.m ├── PreferencePanes-Info.plist ├── PreferencePanes.h ├── PreferencePanes.php ├── PreferencePanes.qcodeproj └── PreferencePanes.xcodeproj │ └── project.pbxproj ├── QTKit ├── QTKit-Info.plist ├── QTKit.qcodeproj ├── QTKit.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── QTKit.xcscheme └── Sources │ ├── NSStreamSplitter.h │ ├── NSStreamSplitter.m │ ├── QTDataReference.h │ ├── QTKit.h │ ├── QTMedia.h │ ├── QTMovie.h │ ├── QTMovie.m │ ├── QTMovieView.h │ ├── QTTime.h │ ├── QTTimeRange.h │ └── QTTrack.h ├── README ├── ScreenSaver ├── English.lproj │ └── InfoPlist.strings ├── Info.plist ├── ScreenSaver.h ├── ScreenSaver.qcodeproj ├── ScreenSaver.xcodeproj │ └── project.pbxproj ├── ScreenSaverDefaults.h ├── ScreenSaverDefaults.m ├── ScreenSaverView.h ├── ScreenSaverView.m └── ScreenSaver_Prefix.pch ├── Security ├── Authorization.h ├── Authorization.m ├── AuthorizationDB.h ├── AuthorizationTags.h ├── SecBase.h ├── Security-Info.plist ├── Security.h ├── Security.qcodeproj └── Security.xcodeproj │ └── project.pbxproj ├── SecurityFoundation ├── SFAuthorization.h ├── SFAuthorization.m ├── SecurityFoundation-Info.plist ├── SecurityFoundation.qcodeproj └── SecurityFoundation.xcodeproj │ └── project.pbxproj ├── SecurityInterface ├── English.lproj │ └── Authorization.nib │ │ ├── designable.nib │ │ └── keyedobjects.nib ├── Icons │ ├── lock_32.png │ └── ulock_32.png ├── SFAuthorizationView.h ├── SFAuthorizationView.m ├── SecurityInterface-Info.plist ├── SecurityInterface.qcodeproj └── SecurityInterface.xcodeproj │ └── project.pbxproj ├── System ├── System-Info.plist └── System.qcodeproj ├── SystemConfiguration ├── configd.m └── plugins │ ├── BatteryUpdater.m │ ├── Bluetooth.m │ ├── IPConfiguration.m │ ├── InterfaceNamer.m │ ├── IrDA.m │ ├── Location.m │ ├── PCMCIA.m │ ├── PPPController.m │ └── Wireless.m ├── SystemStatus ├── LocationDatabase │ ├── Introduction to the database layout.html │ ├── Locnode.h │ ├── Locnode.m │ ├── Makefile │ ├── README │ ├── extract.m │ └── opengeodb.sql.gz ├── Models.plist ├── NSCameraMovie.h ├── NSCameraMovie.m ├── NSSystemStatus.h ├── NSSystemStatus.m ├── SYSBattery.h ├── SYSBattery.m ├── SYSDevice.h ├── SYSDevice.m ├── SYSEnvironment.h ├── SYSEnvironment.m ├── SYSInternet.h ├── SYSInternet.m ├── SYSLocation.h ├── SYSLocation.m ├── SYSNetwork.h ├── SYSNetwork.m ├── SYSWireless.h ├── SYSWireless.m ├── SystemStatus-Info.plist ├── SystemStatus.qcodeproj ├── SystemStatus.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── SystemStatus.xcscheme ├── camera.h └── doc │ └── cameraAPI_0204241.pdf ├── SystemUIPlugin ├── NSMenuExtra.h ├── NSMenuExtra.m ├── SystemUIPlugin-Info.plist ├── SystemUIPlugin.qcodeproj ├── SystemUIPlugin.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── SystemUIPlugin.xcscheme └── doc │ └── Writing Menu Extras.rtf ├── Tests.qcodeproj ├── Tools ├── PlistBuddy.m ├── PlistBuddy.qcodeproj ├── Tools.qcodeproj ├── Tools.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── PlistBuddy.xcscheme │ │ ├── Tools.xcscheme │ │ ├── abook.xcscheme │ │ ├── defaults.xcscheme │ │ ├── mdo.xcscheme │ │ ├── open.xcscheme │ │ ├── plutil.xcscheme │ │ ├── say.xcscheme │ │ ├── scselect.xcscheme │ │ └── scutil.xcscheme ├── abook.m ├── abook.qcodeproj ├── defaults.m ├── defaults.qcodeproj ├── mdo.m ├── mdo.qcodeproj ├── open.m ├── open.qcodeproj ├── plutil.m ├── plutil.qcodeproj ├── say.m ├── say.qcodeproj ├── scselect.m ├── scselect.qcodeproj ├── scutil.m └── scutil.qcodeproj ├── UIKit ├── UIApplication.h ├── UIApplication.m ├── UIControl.h ├── UIControl.m ├── UIHardware.h ├── UIHardware.m ├── UIKit-Info.plist ├── UIKit.h ├── UIKit.m ├── UIKit.qcodeproj ├── UIKit.xcodeproj │ └── project.pbxproj ├── UIKitDefines.h ├── UIKitDefines.m ├── UIResponder.h ├── UIResponder.m ├── UIView.h └── UIView.m ├── UnitTesting ├── AddressBookTests │ ├── ABAddressBookTest.m │ ├── ABGroupTest.m │ ├── ABPersonTest.m │ ├── ABSearchTest.m │ ├── AddressBookTests.m │ ├── AddressBookTests.qcodeproj │ └── Info.plist ├── AppKitTests │ ├── AppKitTests.qcodeproj │ ├── Info.plist │ ├── NSClipViewTest.m │ ├── NSFontDescriptorTest.m │ ├── NSFontTest.m │ ├── NSLayoutManagerTest.m │ ├── NSScrollViewTest.m │ ├── NSStringDrawingTest.m │ ├── NSTextContainerTest.m │ ├── NSTextFieldCellTest.m │ ├── NSTextStorageTest.m │ ├── NSTextViewTest.m │ ├── NSViewBoundsTest.m │ ├── NSViewHierarchyTest.m │ ├── NSViewTest.m │ ├── NSWorkspaceTest.m │ └── floatspeed.m ├── CoreLocationTests │ ├── CoreLocationTests.m │ ├── CoreLocationTests.qcodeproj │ └── Info.plist ├── FoundationTests │ ├── FoundationTests.qcodeproj │ ├── FunctionsTest.m │ ├── Info.plist │ ├── NSAffineTransformTest.m │ ├── NSAttributedStringTest.m │ ├── NSBundleTest.m │ ├── NSByteSwappingTest.m │ ├── NSConnectionTest.m │ ├── NSDataTest.m │ ├── NSDistantObjectTest.m │ ├── NSHTTPCookieTest.m │ ├── NSInvocationTest.m │ ├── NSKVCTest.m │ ├── NSMethodSignatureTest.m │ ├── NSMutableArrayTest.m │ ├── NSPortCoderTest.m │ ├── NSPortTest.m │ ├── NSPredicateTest.m │ ├── NSPropertyListSerialization.m │ ├── NSRegularExpressionTest.m │ ├── NSScannerTest.m │ ├── NSStringTest.m │ ├── NSURLTest.m │ ├── NSValueTest.m │ └── NSXMLTest.m ├── MapKitTests │ ├── Info.plist │ ├── MapKitTests.m │ └── MapKitTests.qcodeproj ├── MessageTests │ ├── Info.plist │ ├── MessageTests.m │ └── MessageTests.qcodeproj ├── PDFKitTests │ ├── Info.plist │ ├── PDFKitTests.m │ └── PDFKitTests.qcodeproj ├── UnitTests.qcodeproj └── UnitTests.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── UnitTests.xccheckout │ └── xcshareddata │ └── xcschemes │ ├── AddressBookTests.xcscheme │ ├── AppKitTests.xcscheme │ ├── CoreLocationTests.xcscheme │ ├── FoundationTests.xcscheme │ ├── MapKitTests.xcscheme │ ├── MessageTests.xcscheme │ ├── PDFKitTests.xcscheme │ └── UnitTests.xcscheme ├── XCTest ├── XCTest-Info.plist ├── XCTest.h ├── XCTest.m ├── XCTest.qcodeproj └── XCTest.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ └── xcschemes │ └── XCTest.xcscheme ├── macports-dylibs ├── include │ ├── jconfig.h │ ├── jerror.h │ ├── jmorecfg.h │ ├── png.h │ ├── tiffconf.h │ ├── tiffio.h │ └── tiffvers.h └── lib │ ├── libcrypto.1.0.0.dylib │ ├── libcrypto.dylib │ ├── libfreetype.6.dylib │ ├── libfreetype.dylib │ ├── libgif.4.dylib │ ├── libgif.dylib │ ├── libjpeg.62.dylib │ ├── libjpeg.dylib │ ├── libpng.3.dylib │ ├── libpng.dylib │ ├── libpng12.0.dylib │ ├── libpng12.dylib │ ├── libssl.1.0.0 2.dylib │ ├── libssl.dylib │ ├── libtiff.dylib │ ├── libungif.4.dylib │ ├── libungif.dylib │ ├── libz.1.2.5 2.dylib │ ├── libz.1.dylib │ └── libz.dylib ├── mySTEP.make └── qemu-wheezy-vexpress ├── setup.sh └── start.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/.gitignore -------------------------------------------------------------------------------- /AddressBook/ABAddressBook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AddressBook/ABAddressBook.h -------------------------------------------------------------------------------- /AddressBook/ABAddressBook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AddressBook/ABAddressBook.m -------------------------------------------------------------------------------- /AddressBook/ABGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AddressBook/ABGlobals.h -------------------------------------------------------------------------------- /AddressBook/ABGlobals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AddressBook/ABGlobals.m -------------------------------------------------------------------------------- /AddressBook/ABGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AddressBook/ABGroup.h -------------------------------------------------------------------------------- /AddressBook/ABGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AddressBook/ABGroup.m -------------------------------------------------------------------------------- /AddressBook/ABImageLoading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AddressBook/ABImageLoading.h -------------------------------------------------------------------------------- /AddressBook/ABImageLoading.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AddressBook/ABImageLoading.m -------------------------------------------------------------------------------- /AddressBook/ABMultiValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AddressBook/ABMultiValue.h -------------------------------------------------------------------------------- /AddressBook/ABMultiValue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AddressBook/ABMultiValue.m -------------------------------------------------------------------------------- /AddressBook/ABPerson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AddressBook/ABPerson.h -------------------------------------------------------------------------------- /AddressBook/ABPerson.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AddressBook/ABPerson.m -------------------------------------------------------------------------------- /AddressBook/ABRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AddressBook/ABRecord.h -------------------------------------------------------------------------------- /AddressBook/ABRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AddressBook/ABRecord.m -------------------------------------------------------------------------------- /AddressBook/ABSearchElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AddressBook/ABSearchElement.h -------------------------------------------------------------------------------- /AddressBook/ABSearchElement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AddressBook/ABSearchElement.m -------------------------------------------------------------------------------- /AddressBook/ABTypedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AddressBook/ABTypedefs.h -------------------------------------------------------------------------------- /AddressBook/AddressBook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AddressBook/AddressBook.h -------------------------------------------------------------------------------- /AddressBook/AddressBook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AddressBook/AddressBook.php -------------------------------------------------------------------------------- /AddressBook/AddressBook.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AddressBook/AddressBook.qcodeproj -------------------------------------------------------------------------------- /AddressBook/Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AddressBook/Private.h -------------------------------------------------------------------------------- /AppKit/AppKit-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/AppKit-Info.plist -------------------------------------------------------------------------------- /AppKit/AppKit.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/AppKit.entitlements -------------------------------------------------------------------------------- /AppKit/AppKit.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/AppKit.qcodeproj -------------------------------------------------------------------------------- /AppKit/Cursors/GSArrowCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Cursors/GSArrowCursor.tiff -------------------------------------------------------------------------------- /AppKit/Cursors/GSCopyCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Cursors/GSCopyCursor.tiff -------------------------------------------------------------------------------- /AppKit/Cursors/GSIBeamCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Cursors/GSIBeamCursor.tiff -------------------------------------------------------------------------------- /AppKit/Cursors/GSLinkCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Cursors/GSLinkCursor.tiff -------------------------------------------------------------------------------- /AppKit/Icons/info_16.png: -------------------------------------------------------------------------------- 1 | ../../../Icons/Harmony/Additions/info_16.png -------------------------------------------------------------------------------- /AppKit/Icons/paper_clip.png: -------------------------------------------------------------------------------- 1 | ../../../Applications/myMail/Icons/paper_clip.png -------------------------------------------------------------------------------- /AppKit/Images/GSArrowDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSArrowDown.png -------------------------------------------------------------------------------- /AppKit/Images/GSArrowDownH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSArrowDownH.png -------------------------------------------------------------------------------- /AppKit/Images/GSArrowLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSArrowLeft.png -------------------------------------------------------------------------------- /AppKit/Images/GSArrowLeftH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSArrowLeftH.png -------------------------------------------------------------------------------- /AppKit/Images/GSArrowRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSArrowRight.png -------------------------------------------------------------------------------- /AppKit/Images/GSArrowRightH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSArrowRightH.png -------------------------------------------------------------------------------- /AppKit/Images/GSArrowUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSArrowUp.png -------------------------------------------------------------------------------- /AppKit/Images/GSArrowUpH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSArrowUpH.png -------------------------------------------------------------------------------- /AppKit/Images/GSColorWheel.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSColorWheel.icns -------------------------------------------------------------------------------- /AppKit/Images/GSColorWheel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSColorWheel.jpg -------------------------------------------------------------------------------- /AppKit/Images/GSComboBox.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSComboBox.tiff -------------------------------------------------------------------------------- /AppKit/Images/GSComboBoxH.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSComboBoxH.tiff -------------------------------------------------------------------------------- /AppKit/Images/GSDimple.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSDimple.tiff -------------------------------------------------------------------------------- /AppKit/Images/GSDiscloseH.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSDiscloseH.tiff -------------------------------------------------------------------------------- /AppKit/Images/GSDiscloseHalf.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSDiscloseHalf.tiff -------------------------------------------------------------------------------- /AppKit/Images/GSDiscloseOff.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSDiscloseOff.tiff -------------------------------------------------------------------------------- /AppKit/Images/GSDiscloseOn.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSDiscloseOn.tiff -------------------------------------------------------------------------------- /AppKit/Images/GSDocument.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSDocument.tiff -------------------------------------------------------------------------------- /AppKit/Images/GSFolder.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSFolder.tiff -------------------------------------------------------------------------------- /AppKit/Images/GSHome.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSHome.tiff -------------------------------------------------------------------------------- /AppKit/Images/GSMount.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSMount.tiff -------------------------------------------------------------------------------- /AppKit/Images/GSMultiple.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSMultiple.tiff -------------------------------------------------------------------------------- /AppKit/Images/GSPopup.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSPopup.tiff -------------------------------------------------------------------------------- /AppKit/Images/GSPullDown.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSPullDown.tiff -------------------------------------------------------------------------------- /AppKit/Images/GSPullDownH.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSPullDownH.tiff -------------------------------------------------------------------------------- /AppKit/Images/GSRight.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSRight.tiff -------------------------------------------------------------------------------- /AppKit/Images/GSRightH.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSRightH.tiff -------------------------------------------------------------------------------- /AppKit/Images/GSSearch.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSSearch.tiff -------------------------------------------------------------------------------- /AppKit/Images/GSSliderHoriz.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSSliderHoriz.tiff -------------------------------------------------------------------------------- /AppKit/Images/GSSliderVert.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSSliderVert.tiff -------------------------------------------------------------------------------- /AppKit/Images/GSStop.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSStop.tiff -------------------------------------------------------------------------------- /AppKit/Images/GSSubmenuArrow.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSSubmenuArrow.tiff -------------------------------------------------------------------------------- /AppKit/Images/GSUnix.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSUnix.tiff -------------------------------------------------------------------------------- /AppKit/Images/GSUnknown.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSUnknown.tiff -------------------------------------------------------------------------------- /AppKit/Images/GSUnmount.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/GSUnmount.tiff -------------------------------------------------------------------------------- /AppKit/Images/NSRadioButton.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/NSRadioButton.tiff -------------------------------------------------------------------------------- /AppKit/Images/NSSwitch.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/NSSwitch.tiff -------------------------------------------------------------------------------- /AppKit/Images/NSToolbarPrint.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/NSToolbarPrint.icns -------------------------------------------------------------------------------- /AppKit/Images/URL.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/URL.tiff -------------------------------------------------------------------------------- /AppKit/Images/rtf.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/rtf.tiff -------------------------------------------------------------------------------- /AppKit/Images/rtfd.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/rtfd.tiff -------------------------------------------------------------------------------- /AppKit/Images/text.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Images/text.tiff -------------------------------------------------------------------------------- /AppKit/NibTest/1bK Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/NibTest/1bK Copy.png -------------------------------------------------------------------------------- /AppKit/NibTest/1bK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/NibTest/1bK.png -------------------------------------------------------------------------------- /AppKit/NibTest/AppController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/NibTest/AppController.h -------------------------------------------------------------------------------- /AppKit/NibTest/AppController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/NibTest/AppController.m -------------------------------------------------------------------------------- /AppKit/NibTest/AppKitViewTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/NibTest/AppKitViewTest.php -------------------------------------------------------------------------------- /AppKit/NibTest/CircleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/NibTest/CircleView.h -------------------------------------------------------------------------------- /AppKit/NibTest/CircleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/NibTest/CircleView.m -------------------------------------------------------------------------------- /AppKit/NibTest/Default.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/NibTest/Default.tiff -------------------------------------------------------------------------------- /AppKit/NibTest/Lion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/NibTest/Lion.jpg -------------------------------------------------------------------------------- /AppKit/NibTest/MixedFrameworks/AppKit.framework: -------------------------------------------------------------------------------- 1 | /usr/local/QuantumSTEP/System/Library/Frameworks/AppKit.framework -------------------------------------------------------------------------------- /AppKit/NibTest/MixedFrameworks/Cocoa.framework: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Cocoa.framework -------------------------------------------------------------------------------- /AppKit/NibTest/MixedFrameworks/CoreData.framework: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/CoreData.framework -------------------------------------------------------------------------------- /AppKit/NibTest/MixedFrameworks/CoreFoundation.framework: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/CoreFoundation.framework -------------------------------------------------------------------------------- /AppKit/NibTest/MixedFrameworks/Foundation.framework: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Foundation.framework -------------------------------------------------------------------------------- /AppKit/NibTest/MixedFrameworks/Security.framework: -------------------------------------------------------------------------------- 1 | /System/Library/Frameworks/Security.framework -------------------------------------------------------------------------------- /AppKit/NibTest/TestView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/NibTest/TestView.h -------------------------------------------------------------------------------- /AppKit/NibTest/TestView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/NibTest/TestView.m -------------------------------------------------------------------------------- /AppKit/NibTest/addbk_16.png: -------------------------------------------------------------------------------- 1 | /Users/hns/Documents/Projects/QuantumSTEP/System/Sources/Icons/Harmony/PNG/addbk_16.png -------------------------------------------------------------------------------- /AppKit/NibTest/addbk_32.png: -------------------------------------------------------------------------------- 1 | /Users/hns/Documents/Projects/QuantumSTEP/System/Sources/Icons/Harmony/PNG/addbk_32.png -------------------------------------------------------------------------------- /AppKit/NibTest/dial_32.png: -------------------------------------------------------------------------------- 1 | /Users/hns/Documents/Projects/QuantumSTEP/System/Sources/Icons/Harmony/Additions/dial_32.png -------------------------------------------------------------------------------- /AppKit/NibTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/NibTest/main.m -------------------------------------------------------------------------------- /AppKit/NibTest/myModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/NibTest/myModel.h -------------------------------------------------------------------------------- /AppKit/NibTest/myModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/NibTest/myModel.m -------------------------------------------------------------------------------- /AppKit/NibTest/myTest.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/NibTest/myTest.icns -------------------------------------------------------------------------------- /AppKit/NibTest/myView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/NibTest/myView.h -------------------------------------------------------------------------------- /AppKit/NibTest/myView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/NibTest/myView.m -------------------------------------------------------------------------------- /AppKit/NibTest/rss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/NibTest/rss.gif -------------------------------------------------------------------------------- /AppKit/NibTest/save_16.png: -------------------------------------------------------------------------------- 1 | /Users/hns/Documents/Projects/QuantumSTEP/System/Sources/Icons/Harmony/PNG/save_16.png -------------------------------------------------------------------------------- /AppKit/Sounds/Basso.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sounds/Basso.wav -------------------------------------------------------------------------------- /AppKit/Sounds/Blow.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sounds/Blow.wav -------------------------------------------------------------------------------- /AppKit/Sounds/Bottle.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sounds/Bottle.wav -------------------------------------------------------------------------------- /AppKit/Sounds/Frog.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sounds/Frog.wav -------------------------------------------------------------------------------- /AppKit/Sounds/Glass.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sounds/Glass.wav -------------------------------------------------------------------------------- /AppKit/Sounds/Hero.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sounds/Hero.wav -------------------------------------------------------------------------------- /AppKit/Sounds/Ping.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sounds/Ping.wav -------------------------------------------------------------------------------- /AppKit/Sounds/Pop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sounds/Pop.wav -------------------------------------------------------------------------------- /AppKit/Sounds/Sosumi.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sounds/Sosumi.wav -------------------------------------------------------------------------------- /AppKit/Sounds/Submarine.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sounds/Submarine.wav -------------------------------------------------------------------------------- /AppKit/Sounds/Tink.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sounds/Tink.wav -------------------------------------------------------------------------------- /AppKit/Sources/AppKit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/AppKit.css -------------------------------------------------------------------------------- /AppKit/Sources/AppKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/AppKit.h -------------------------------------------------------------------------------- /AppKit/Sources/AppKit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/AppKit.js -------------------------------------------------------------------------------- /AppKit/Sources/AppKit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/AppKit.php -------------------------------------------------------------------------------- /AppKit/Sources/AppKitDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/AppKitDefines.h -------------------------------------------------------------------------------- /AppKit/Sources/AppKitErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/AppKitErrors.h -------------------------------------------------------------------------------- /AppKit/Sources/Externs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/Externs.m -------------------------------------------------------------------------------- /AppKit/Sources/Functions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/Functions.m -------------------------------------------------------------------------------- /AppKit/Sources/GSServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/GSServices.h -------------------------------------------------------------------------------- /AppKit/Sources/GSServices.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/GSServices.m -------------------------------------------------------------------------------- /AppKit/Sources/NSActionCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSActionCell.h -------------------------------------------------------------------------------- /AppKit/Sources/NSActionCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSActionCell.m -------------------------------------------------------------------------------- /AppKit/Sources/NSAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSAlert.h -------------------------------------------------------------------------------- /AppKit/Sources/NSAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSAnimation.h -------------------------------------------------------------------------------- /AppKit/Sources/NSAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSAnimation.m -------------------------------------------------------------------------------- /AppKit/Sources/NSAppKitPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSAppKitPrivate.h -------------------------------------------------------------------------------- /AppKit/Sources/NSApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSApplication.h -------------------------------------------------------------------------------- /AppKit/Sources/NSApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSApplication.m -------------------------------------------------------------------------------- /AppKit/Sources/NSBackendPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSBackendPrivate.h -------------------------------------------------------------------------------- /AppKit/Sources/NSBezierPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSBezierPath.h -------------------------------------------------------------------------------- /AppKit/Sources/NSBezierPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSBezierPath.m -------------------------------------------------------------------------------- /AppKit/Sources/NSBitmapImageRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSBitmapImageRep.h -------------------------------------------------------------------------------- /AppKit/Sources/NSBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSBox.h -------------------------------------------------------------------------------- /AppKit/Sources/NSBox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSBox.m -------------------------------------------------------------------------------- /AppKit/Sources/NSBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSBrowser.h -------------------------------------------------------------------------------- /AppKit/Sources/NSBrowser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSBrowser.m -------------------------------------------------------------------------------- /AppKit/Sources/NSBrowserCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSBrowserCell.h -------------------------------------------------------------------------------- /AppKit/Sources/NSBrowserCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSBrowserCell.m -------------------------------------------------------------------------------- /AppKit/Sources/NSButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSButton.h -------------------------------------------------------------------------------- /AppKit/Sources/NSButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSButton.m -------------------------------------------------------------------------------- /AppKit/Sources/NSButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSButtonCell.h -------------------------------------------------------------------------------- /AppKit/Sources/NSCIImageRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSCIImageRep.h -------------------------------------------------------------------------------- /AppKit/Sources/NSCIImageRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSCIImageRep.m -------------------------------------------------------------------------------- /AppKit/Sources/NSCachedImageRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSCachedImageRep.h -------------------------------------------------------------------------------- /AppKit/Sources/NSCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSCell.h -------------------------------------------------------------------------------- /AppKit/Sources/NSCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSCell.m -------------------------------------------------------------------------------- /AppKit/Sources/NSClipView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSClipView.h -------------------------------------------------------------------------------- /AppKit/Sources/NSClipView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSClipView.m -------------------------------------------------------------------------------- /AppKit/Sources/NSCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSCollectionView.h -------------------------------------------------------------------------------- /AppKit/Sources/NSCollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSCollectionView.m -------------------------------------------------------------------------------- /AppKit/Sources/NSColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSColor.h -------------------------------------------------------------------------------- /AppKit/Sources/NSColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSColor.m -------------------------------------------------------------------------------- /AppKit/Sources/NSColorList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSColorList.h -------------------------------------------------------------------------------- /AppKit/Sources/NSColorPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSColorPanel.h -------------------------------------------------------------------------------- /AppKit/Sources/NSColorPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSColorPicker.h -------------------------------------------------------------------------------- /AppKit/Sources/NSColorPicking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSColorPicking.h -------------------------------------------------------------------------------- /AppKit/Sources/NSColorSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSColorSpace.h -------------------------------------------------------------------------------- /AppKit/Sources/NSColorSpace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSColorSpace.m -------------------------------------------------------------------------------- /AppKit/Sources/NSColorWell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSColorWell.h -------------------------------------------------------------------------------- /AppKit/Sources/NSColorWell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSColorWell.m -------------------------------------------------------------------------------- /AppKit/Sources/NSComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSComboBox.h -------------------------------------------------------------------------------- /AppKit/Sources/NSComboBox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSComboBox.m -------------------------------------------------------------------------------- /AppKit/Sources/NSComboBoxCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSComboBoxCell.h -------------------------------------------------------------------------------- /AppKit/Sources/NSControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSControl.h -------------------------------------------------------------------------------- /AppKit/Sources/NSControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSControl.m -------------------------------------------------------------------------------- /AppKit/Sources/NSController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSController.h -------------------------------------------------------------------------------- /AppKit/Sources/NSController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSController.m -------------------------------------------------------------------------------- /AppKit/Sources/NSCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSCursor.h -------------------------------------------------------------------------------- /AppKit/Sources/NSCursor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSCursor.m -------------------------------------------------------------------------------- /AppKit/Sources/NSCustomImageRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSCustomImageRep.h -------------------------------------------------------------------------------- /AppKit/Sources/NSDatePicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSDatePicker.h -------------------------------------------------------------------------------- /AppKit/Sources/NSDatePicker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSDatePicker.m -------------------------------------------------------------------------------- /AppKit/Sources/NSDatePickerCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSDatePickerCell.h -------------------------------------------------------------------------------- /AppKit/Sources/NSDockTile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSDockTile.h -------------------------------------------------------------------------------- /AppKit/Sources/NSDockTile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSDockTile.m -------------------------------------------------------------------------------- /AppKit/Sources/NSDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSDocument.h -------------------------------------------------------------------------------- /AppKit/Sources/NSDocument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSDocument.m -------------------------------------------------------------------------------- /AppKit/Sources/NSDragging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSDragging.h -------------------------------------------------------------------------------- /AppKit/Sources/NSDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSDrawer.h -------------------------------------------------------------------------------- /AppKit/Sources/NSDrawer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSDrawer.m -------------------------------------------------------------------------------- /AppKit/Sources/NSEPSImageRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSEPSImageRep.h -------------------------------------------------------------------------------- /AppKit/Sources/NSEPSImageRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSEPSImageRep.m -------------------------------------------------------------------------------- /AppKit/Sources/NSErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSErrors.h -------------------------------------------------------------------------------- /AppKit/Sources/NSEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSEvent.h -------------------------------------------------------------------------------- /AppKit/Sources/NSEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSEvent.m -------------------------------------------------------------------------------- /AppKit/Sources/NSFileWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSFileWrapper.h -------------------------------------------------------------------------------- /AppKit/Sources/NSFileWrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSFileWrapper.m -------------------------------------------------------------------------------- /AppKit/Sources/NSFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSFont.h -------------------------------------------------------------------------------- /AppKit/Sources/NSFont.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSFont.m -------------------------------------------------------------------------------- /AppKit/Sources/NSFontDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSFontDescriptor.h -------------------------------------------------------------------------------- /AppKit/Sources/NSFontManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSFontManager.h -------------------------------------------------------------------------------- /AppKit/Sources/NSFontManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSFontManager.m -------------------------------------------------------------------------------- /AppKit/Sources/NSFontPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSFontPanel.h -------------------------------------------------------------------------------- /AppKit/Sources/NSForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSForm.h -------------------------------------------------------------------------------- /AppKit/Sources/NSForm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSForm.m -------------------------------------------------------------------------------- /AppKit/Sources/NSFormCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSFormCell.h -------------------------------------------------------------------------------- /AppKit/Sources/NSFreeTypeFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSFreeTypeFont.h -------------------------------------------------------------------------------- /AppKit/Sources/NSFreeTypeFont.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSFreeTypeFont.m -------------------------------------------------------------------------------- /AppKit/Sources/NSGlyphGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSGlyphGenerator.h -------------------------------------------------------------------------------- /AppKit/Sources/NSGlyphInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSGlyphInfo.h -------------------------------------------------------------------------------- /AppKit/Sources/NSGlyphInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSGlyphInfo.m -------------------------------------------------------------------------------- /AppKit/Sources/NSGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSGradient.h -------------------------------------------------------------------------------- /AppKit/Sources/NSGradient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSGradient.m -------------------------------------------------------------------------------- /AppKit/Sources/NSGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSGraphics.h -------------------------------------------------------------------------------- /AppKit/Sources/NSHelpManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSHelpManager.h -------------------------------------------------------------------------------- /AppKit/Sources/NSImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSImage.h -------------------------------------------------------------------------------- /AppKit/Sources/NSImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSImage.m -------------------------------------------------------------------------------- /AppKit/Sources/NSImageCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSImageCell.h -------------------------------------------------------------------------------- /AppKit/Sources/NSImageRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSImageRep.h -------------------------------------------------------------------------------- /AppKit/Sources/NSImageRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSImageRep.m -------------------------------------------------------------------------------- /AppKit/Sources/NSImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSImageView.h -------------------------------------------------------------------------------- /AppKit/Sources/NSImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSImageView.m -------------------------------------------------------------------------------- /AppKit/Sources/NSInputManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSInputManager.h -------------------------------------------------------------------------------- /AppKit/Sources/NSInputServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSInputServer.h -------------------------------------------------------------------------------- /AppKit/Sources/NSInterfaceStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSInterfaceStyle.h -------------------------------------------------------------------------------- /AppKit/Sources/NSLayoutManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSLayoutManager.h -------------------------------------------------------------------------------- /AppKit/Sources/NSLayoutManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSLayoutManager.m -------------------------------------------------------------------------------- /AppKit/Sources/NSLevelIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSLevelIndicator.h -------------------------------------------------------------------------------- /AppKit/Sources/NSLevelIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSLevelIndicator.m -------------------------------------------------------------------------------- /AppKit/Sources/NSMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSMatrix.h -------------------------------------------------------------------------------- /AppKit/Sources/NSMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSMatrix.m -------------------------------------------------------------------------------- /AppKit/Sources/NSMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSMenu.h -------------------------------------------------------------------------------- /AppKit/Sources/NSMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSMenu.m -------------------------------------------------------------------------------- /AppKit/Sources/NSMenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSMenuItem.h -------------------------------------------------------------------------------- /AppKit/Sources/NSMenuItemCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSMenuItemCell.h -------------------------------------------------------------------------------- /AppKit/Sources/NSMenuItemCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSMenuItemCell.m -------------------------------------------------------------------------------- /AppKit/Sources/NSMenuView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSMenuView.h -------------------------------------------------------------------------------- /AppKit/Sources/NSMenuView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSMenuView.m -------------------------------------------------------------------------------- /AppKit/Sources/NSMovie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSMovie.h -------------------------------------------------------------------------------- /AppKit/Sources/NSMovie.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSMovie.m -------------------------------------------------------------------------------- /AppKit/Sources/NSMovieView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSMovieView.h -------------------------------------------------------------------------------- /AppKit/Sources/NSNib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSNib.h -------------------------------------------------------------------------------- /AppKit/Sources/NSNibConnector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSNibConnector.h -------------------------------------------------------------------------------- /AppKit/Sources/NSNibConnectors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSNibConnectors.m -------------------------------------------------------------------------------- /AppKit/Sources/NSNibLoading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSNibLoading.h -------------------------------------------------------------------------------- /AppKit/Sources/NSNibLoading.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSNibLoading.m -------------------------------------------------------------------------------- /AppKit/Sources/NSOpenPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSOpenPanel.h -------------------------------------------------------------------------------- /AppKit/Sources/NSOutlineView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSOutlineView.h -------------------------------------------------------------------------------- /AppKit/Sources/NSOutlineView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSOutlineView.m -------------------------------------------------------------------------------- /AppKit/Sources/NSPDFImageRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSPDFImageRep.h -------------------------------------------------------------------------------- /AppKit/Sources/NSPICTImageRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSPICTImageRep.h -------------------------------------------------------------------------------- /AppKit/Sources/NSPICTImageRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSPICTImageRep.m -------------------------------------------------------------------------------- /AppKit/Sources/NSPageLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSPageLayout.h -------------------------------------------------------------------------------- /AppKit/Sources/NSPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSPanel.h -------------------------------------------------------------------------------- /AppKit/Sources/NSPanel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSPanel.m -------------------------------------------------------------------------------- /AppKit/Sources/NSParagraphStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSParagraphStyle.h -------------------------------------------------------------------------------- /AppKit/Sources/NSParagraphStyle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSParagraphStyle.m -------------------------------------------------------------------------------- /AppKit/Sources/NSPasteboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSPasteboard.h -------------------------------------------------------------------------------- /AppKit/Sources/NSPasteboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSPasteboard.m -------------------------------------------------------------------------------- /AppKit/Sources/NSPathCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSPathCell.h -------------------------------------------------------------------------------- /AppKit/Sources/NSPathCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSPathCell.m -------------------------------------------------------------------------------- /AppKit/Sources/NSPathControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSPathControl.h -------------------------------------------------------------------------------- /AppKit/Sources/NSPathControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSPathControl.m -------------------------------------------------------------------------------- /AppKit/Sources/NSPopUpButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSPopUpButton.h -------------------------------------------------------------------------------- /AppKit/Sources/NSPopUpButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSPopUpButton.m -------------------------------------------------------------------------------- /AppKit/Sources/NSPrintInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSPrintInfo.h -------------------------------------------------------------------------------- /AppKit/Sources/NSPrintOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSPrintOperation.h -------------------------------------------------------------------------------- /AppKit/Sources/NSPrintPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSPrintPanel.h -------------------------------------------------------------------------------- /AppKit/Sources/NSPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSPrinter.h -------------------------------------------------------------------------------- /AppKit/Sources/NSPrinter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSPrinter.m -------------------------------------------------------------------------------- /AppKit/Sources/NSResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSResponder.h -------------------------------------------------------------------------------- /AppKit/Sources/NSResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSResponder.m -------------------------------------------------------------------------------- /AppKit/Sources/NSRuleEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSRuleEditor.h -------------------------------------------------------------------------------- /AppKit/Sources/NSRuleEditor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSRuleEditor.m -------------------------------------------------------------------------------- /AppKit/Sources/NSRulerMarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSRulerMarker.h -------------------------------------------------------------------------------- /AppKit/Sources/NSRulerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSRulerView.h -------------------------------------------------------------------------------- /AppKit/Sources/NSSavePanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSSavePanel.h -------------------------------------------------------------------------------- /AppKit/Sources/NSScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSScreen.h -------------------------------------------------------------------------------- /AppKit/Sources/NSScreen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSScreen.m -------------------------------------------------------------------------------- /AppKit/Sources/NSScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSScrollView.h -------------------------------------------------------------------------------- /AppKit/Sources/NSScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSScrollView.m -------------------------------------------------------------------------------- /AppKit/Sources/NSScroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSScroller.h -------------------------------------------------------------------------------- /AppKit/Sources/NSScroller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSScroller.m -------------------------------------------------------------------------------- /AppKit/Sources/NSSearchField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSSearchField.h -------------------------------------------------------------------------------- /AppKit/Sources/NSSearchField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSSearchField.m -------------------------------------------------------------------------------- /AppKit/Sources/NSSegmentedCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSSegmentedCell.h -------------------------------------------------------------------------------- /AppKit/Sources/NSShadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSShadow.h -------------------------------------------------------------------------------- /AppKit/Sources/NSShadow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSShadow.m -------------------------------------------------------------------------------- /AppKit/Sources/NSSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSSlider.h -------------------------------------------------------------------------------- /AppKit/Sources/NSSlider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSSlider.m -------------------------------------------------------------------------------- /AppKit/Sources/NSSliderCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSSliderCell.h -------------------------------------------------------------------------------- /AppKit/Sources/NSSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSSound.h -------------------------------------------------------------------------------- /AppKit/Sources/NSSound.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSSound.m -------------------------------------------------------------------------------- /AppKit/Sources/NSSpellChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSSpellChecker.h -------------------------------------------------------------------------------- /AppKit/Sources/NSSpellChecker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSSpellChecker.m -------------------------------------------------------------------------------- /AppKit/Sources/NSSpellProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSSpellProtocol.h -------------------------------------------------------------------------------- /AppKit/Sources/NSSplitView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSSplitView.h -------------------------------------------------------------------------------- /AppKit/Sources/NSSplitView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSSplitView.m -------------------------------------------------------------------------------- /AppKit/Sources/NSStatusBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSStatusBar.h -------------------------------------------------------------------------------- /AppKit/Sources/NSStatusBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSStatusBar.m -------------------------------------------------------------------------------- /AppKit/Sources/NSStatusItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSStatusItem.h -------------------------------------------------------------------------------- /AppKit/Sources/NSStatusItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSStatusItem.m -------------------------------------------------------------------------------- /AppKit/Sources/NSStepper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSStepper.h -------------------------------------------------------------------------------- /AppKit/Sources/NSStepper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSStepper.m -------------------------------------------------------------------------------- /AppKit/Sources/NSStepperCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSStepperCell.h -------------------------------------------------------------------------------- /AppKit/Sources/NSStringDrawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSStringDrawing.h -------------------------------------------------------------------------------- /AppKit/Sources/NSStringDrawing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSStringDrawing.m -------------------------------------------------------------------------------- /AppKit/Sources/NSSystemServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSSystemServer.h -------------------------------------------------------------------------------- /AppKit/Sources/NSTabView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTabView.h -------------------------------------------------------------------------------- /AppKit/Sources/NSTabView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTabView.m -------------------------------------------------------------------------------- /AppKit/Sources/NSTabViewItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTabViewItem.h -------------------------------------------------------------------------------- /AppKit/Sources/NSTableColumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTableColumn.h -------------------------------------------------------------------------------- /AppKit/Sources/NSTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTableView.h -------------------------------------------------------------------------------- /AppKit/Sources/NSTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTableView.m -------------------------------------------------------------------------------- /AppKit/Sources/NSText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSText.h -------------------------------------------------------------------------------- /AppKit/Sources/NSText.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSText.m -------------------------------------------------------------------------------- /AppKit/Sources/NSTextAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTextAttachment.h -------------------------------------------------------------------------------- /AppKit/Sources/NSTextContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTextContainer.h -------------------------------------------------------------------------------- /AppKit/Sources/NSTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTextField.h -------------------------------------------------------------------------------- /AppKit/Sources/NSTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTextField.m -------------------------------------------------------------------------------- /AppKit/Sources/NSTextFieldCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTextFieldCell.h -------------------------------------------------------------------------------- /AppKit/Sources/NSTextList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTextList.h -------------------------------------------------------------------------------- /AppKit/Sources/NSTextList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTextList.m -------------------------------------------------------------------------------- /AppKit/Sources/NSTextStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTextStorage.h -------------------------------------------------------------------------------- /AppKit/Sources/NSTextTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTextTable.h -------------------------------------------------------------------------------- /AppKit/Sources/NSTextTable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTextTable.m -------------------------------------------------------------------------------- /AppKit/Sources/NSTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTextView.h -------------------------------------------------------------------------------- /AppKit/Sources/NSTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTextView.m -------------------------------------------------------------------------------- /AppKit/Sources/NSTokenField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTokenField.h -------------------------------------------------------------------------------- /AppKit/Sources/NSTokenField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTokenField.m -------------------------------------------------------------------------------- /AppKit/Sources/NSTokenFieldCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTokenFieldCell.h -------------------------------------------------------------------------------- /AppKit/Sources/NSToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSToolbar.h -------------------------------------------------------------------------------- /AppKit/Sources/NSToolbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSToolbar.m -------------------------------------------------------------------------------- /AppKit/Sources/NSToolbarItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSToolbarItem.h -------------------------------------------------------------------------------- /AppKit/Sources/NSTrackingArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTrackingArea.h -------------------------------------------------------------------------------- /AppKit/Sources/NSTrackingArea.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTrackingArea.m -------------------------------------------------------------------------------- /AppKit/Sources/NSTreeController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTreeController.h -------------------------------------------------------------------------------- /AppKit/Sources/NSTreeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTreeNode.h -------------------------------------------------------------------------------- /AppKit/Sources/NSTreeNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTreeNode.m -------------------------------------------------------------------------------- /AppKit/Sources/NSTypesetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTypesetter.h -------------------------------------------------------------------------------- /AppKit/Sources/NSTypesetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSTypesetter.m -------------------------------------------------------------------------------- /AppKit/Sources/NSView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSView.h -------------------------------------------------------------------------------- /AppKit/Sources/NSView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSView.m -------------------------------------------------------------------------------- /AppKit/Sources/NSViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSViewController.h -------------------------------------------------------------------------------- /AppKit/Sources/NSViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSViewController.m -------------------------------------------------------------------------------- /AppKit/Sources/NSWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSWindow.h -------------------------------------------------------------------------------- /AppKit/Sources/NSWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSWindow.m -------------------------------------------------------------------------------- /AppKit/Sources/NSWorkspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSWorkspace.h -------------------------------------------------------------------------------- /AppKit/Sources/NSWorkspace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/Sources/NSWorkspace.m -------------------------------------------------------------------------------- /AppKit/StandardKeyBinding.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKit/StandardKeyBinding.dict -------------------------------------------------------------------------------- /AppKitExtensions/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKitExtensions/Info.plist -------------------------------------------------------------------------------- /AppKitExtensions/Sources/NSDOCX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKitExtensions/Sources/NSDOCX.h -------------------------------------------------------------------------------- /AppKitExtensions/Sources/NSDOCX.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKitExtensions/Sources/NSDOCX.m -------------------------------------------------------------------------------- /AppKitExtensions/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKitExtensions/main.m -------------------------------------------------------------------------------- /AppKitExtensions/up_32.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/AppKitExtensions/up_32.icns -------------------------------------------------------------------------------- /Cocoa/Cocoa-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Cocoa/Cocoa-Info.plist -------------------------------------------------------------------------------- /Cocoa/Cocoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Cocoa/Cocoa.h -------------------------------------------------------------------------------- /Cocoa/Cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Cocoa/Cocoa.m -------------------------------------------------------------------------------- /Cocoa/Cocoa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Cocoa/Cocoa.php -------------------------------------------------------------------------------- /Cocoa/Cocoa.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Cocoa/Cocoa.qcodeproj -------------------------------------------------------------------------------- /CoreBluetooth/CoreBluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreBluetooth/CoreBluetooth.h -------------------------------------------------------------------------------- /CoreBluetooth/CoreBluetooth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreBluetooth/CoreBluetooth.m -------------------------------------------------------------------------------- /CoreData/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/COPYING -------------------------------------------------------------------------------- /CoreData/COPYING.fdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/COPYING.fdl -------------------------------------------------------------------------------- /CoreData/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/ChangeLog -------------------------------------------------------------------------------- /CoreData/CoreData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/CoreData.h -------------------------------------------------------------------------------- /CoreData/CoreData.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/CoreData.qcodeproj -------------------------------------------------------------------------------- /CoreData/CoreDataErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/CoreDataErrors.h -------------------------------------------------------------------------------- /CoreData/CoreDataErrors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/CoreDataErrors.m -------------------------------------------------------------------------------- /CoreData/CoreDataHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/CoreDataHeaders.h -------------------------------------------------------------------------------- /CoreData/CoreDataUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/CoreDataUtilities.h -------------------------------------------------------------------------------- /CoreData/CoreData_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/CoreData_Prefix.pch -------------------------------------------------------------------------------- /CoreData/DataBuilder/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/DataBuilder/BUGS -------------------------------------------------------------------------------- /CoreData/DataBuilder/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/DataBuilder/COPYING -------------------------------------------------------------------------------- /CoreData/DataBuilder/COPYING.fdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/DataBuilder/COPYING.fdl -------------------------------------------------------------------------------- /CoreData/DataBuilder/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/DataBuilder/ChangeLog -------------------------------------------------------------------------------- /CoreData/DataBuilder/Connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/DataBuilder/Connection.h -------------------------------------------------------------------------------- /CoreData/DataBuilder/Connection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/DataBuilder/Connection.m -------------------------------------------------------------------------------- /CoreData/DataBuilder/Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/DataBuilder/Controller.h -------------------------------------------------------------------------------- /CoreData/DataBuilder/Controller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/DataBuilder/Controller.m -------------------------------------------------------------------------------- /CoreData/DataBuilder/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/DataBuilder/Document.h -------------------------------------------------------------------------------- /CoreData/DataBuilder/Document.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/DataBuilder/Document.m -------------------------------------------------------------------------------- /CoreData/DataBuilder/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/DataBuilder/Doxyfile -------------------------------------------------------------------------------- /CoreData/DataBuilder/EntityView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/DataBuilder/EntityView.h -------------------------------------------------------------------------------- /CoreData/DataBuilder/EntityView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/DataBuilder/EntityView.m -------------------------------------------------------------------------------- /CoreData/DataBuilder/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/DataBuilder/GNUmakefile -------------------------------------------------------------------------------- /CoreData/DataBuilder/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/DataBuilder/Info.plist -------------------------------------------------------------------------------- /CoreData/DataBuilder/ModelView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/DataBuilder/ModelView.h -------------------------------------------------------------------------------- /CoreData/DataBuilder/ModelView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/DataBuilder/ModelView.m -------------------------------------------------------------------------------- /CoreData/DataBuilder/Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/DataBuilder/Private.h -------------------------------------------------------------------------------- /CoreData/DataBuilder/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/DataBuilder/README -------------------------------------------------------------------------------- /CoreData/DataBuilder/README.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/DataBuilder/README.rtf -------------------------------------------------------------------------------- /CoreData/DataBuilder/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/DataBuilder/TODO -------------------------------------------------------------------------------- /CoreData/DataBuilder/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/DataBuilder/main.m -------------------------------------------------------------------------------- /CoreData/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/Doxyfile -------------------------------------------------------------------------------- /CoreData/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/GNUmakefile -------------------------------------------------------------------------------- /CoreData/GNUmakefile.preamble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/GNUmakefile.preamble -------------------------------------------------------------------------------- /CoreData/GSPersistentStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/GSPersistentStore.h -------------------------------------------------------------------------------- /CoreData/GSPersistentStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/GSPersistentStore.m -------------------------------------------------------------------------------- /CoreData/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/Info.plist -------------------------------------------------------------------------------- /CoreData/NSAttributeDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/NSAttributeDescription.h -------------------------------------------------------------------------------- /CoreData/NSAttributeDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/NSAttributeDescription.m -------------------------------------------------------------------------------- /CoreData/NSEntityDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/NSEntityDescription.h -------------------------------------------------------------------------------- /CoreData/NSEntityDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/NSEntityDescription.m -------------------------------------------------------------------------------- /CoreData/NSFetchRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/NSFetchRequest.h -------------------------------------------------------------------------------- /CoreData/NSFetchRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/NSFetchRequest.m -------------------------------------------------------------------------------- /CoreData/NSManagedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/NSManagedObject.h -------------------------------------------------------------------------------- /CoreData/NSManagedObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/NSManagedObject.m -------------------------------------------------------------------------------- /CoreData/NSManagedObjectContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/NSManagedObjectContext.h -------------------------------------------------------------------------------- /CoreData/NSManagedObjectContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/NSManagedObjectContext.m -------------------------------------------------------------------------------- /CoreData/NSManagedObjectID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/NSManagedObjectID.h -------------------------------------------------------------------------------- /CoreData/NSManagedObjectID.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/NSManagedObjectID.m -------------------------------------------------------------------------------- /CoreData/NSManagedObjectModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/NSManagedObjectModel.h -------------------------------------------------------------------------------- /CoreData/NSManagedObjectModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/NSManagedObjectModel.m -------------------------------------------------------------------------------- /CoreData/NSPersistentContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/NSPersistentContainer.h -------------------------------------------------------------------------------- /CoreData/NSPersistentContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/NSPersistentContainer.m -------------------------------------------------------------------------------- /CoreData/NSPropertyDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/NSPropertyDescription.h -------------------------------------------------------------------------------- /CoreData/NSPropertyDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/NSPropertyDescription.m -------------------------------------------------------------------------------- /CoreData/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreData/README -------------------------------------------------------------------------------- /CoreDataBase/CoreDataBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreDataBase/CoreDataBase.h -------------------------------------------------------------------------------- /CoreDataBase/CoreDataBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreDataBase/CoreDataBase.php -------------------------------------------------------------------------------- /CoreDataBase/CoreDataBaseGUI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreDataBase/CoreDataBaseGUI.php -------------------------------------------------------------------------------- /CoreDataBase/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreDataBase/Info.plist -------------------------------------------------------------------------------- /CoreDataBase/ManagedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreDataBase/ManagedObject.h -------------------------------------------------------------------------------- /CoreDataBase/ManagedObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreDataBase/ManagedObject.m -------------------------------------------------------------------------------- /CoreDataBase/SQL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreDataBase/SQL.h -------------------------------------------------------------------------------- /CoreDataBase/SQL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreDataBase/SQL.m -------------------------------------------------------------------------------- /CoreDataBase/idea.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreDataBase/idea.rtf -------------------------------------------------------------------------------- /CoreDevice/BatteryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreDevice/BatteryView.h -------------------------------------------------------------------------------- /CoreDevice/BatteryView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreDevice/BatteryView.m -------------------------------------------------------------------------------- /CoreDevice/CoreDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreDevice/CoreDevice.h -------------------------------------------------------------------------------- /CoreDevice/CoreDevice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreDevice/CoreDevice.m -------------------------------------------------------------------------------- /CoreDevice/CoreDevice.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreDevice/CoreDevice.qcodeproj -------------------------------------------------------------------------------- /CoreDevice/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreDevice/Info.plist -------------------------------------------------------------------------------- /CoreFoundation/Sources/CFBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreFoundation/Sources/CFBase.h -------------------------------------------------------------------------------- /CoreFoundation/Sources/CFBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreFoundation/Sources/CFBase.m -------------------------------------------------------------------------------- /CoreFoundation/Sources/CFString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreFoundation/Sources/CFString.h -------------------------------------------------------------------------------- /CoreFoundation/Sources/CFString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreFoundation/Sources/CFString.m -------------------------------------------------------------------------------- /CoreLocation/CLError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreLocation/CLError.h -------------------------------------------------------------------------------- /CoreLocation/CLErrorDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreLocation/CLErrorDomain.h -------------------------------------------------------------------------------- /CoreLocation/CLGeocoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreLocation/CLGeocoder.h -------------------------------------------------------------------------------- /CoreLocation/CLGeocoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreLocation/CLGeocoder.m -------------------------------------------------------------------------------- /CoreLocation/CLHeading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreLocation/CLHeading.h -------------------------------------------------------------------------------- /CoreLocation/CLHeading.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreLocation/CLHeading.m -------------------------------------------------------------------------------- /CoreLocation/CLLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreLocation/CLLocation.h -------------------------------------------------------------------------------- /CoreLocation/CLLocationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreLocation/CLLocationManager.h -------------------------------------------------------------------------------- /CoreLocation/CLPlacemark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreLocation/CLPlacemark.h -------------------------------------------------------------------------------- /CoreLocation/CLPlacemark.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreLocation/CLPlacemark.m -------------------------------------------------------------------------------- /CoreLocation/CLRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreLocation/CLRegion.h -------------------------------------------------------------------------------- /CoreLocation/CLRegion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreLocation/CLRegion.m -------------------------------------------------------------------------------- /CoreLocation/CoreLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreLocation/CoreLocation.h -------------------------------------------------------------------------------- /CoreLocation/CoreLocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreLocation/CoreLocation.m -------------------------------------------------------------------------------- /CoreLocation/CoreLocationDaemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreLocation/CoreLocationDaemon.h -------------------------------------------------------------------------------- /CoreLocation/CoreLocationDaemon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreLocation/CoreLocationDaemon.m -------------------------------------------------------------------------------- /CoreLocation/Info-test.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreLocation/Info-test.plist -------------------------------------------------------------------------------- /CoreLocation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreLocation/Info.plist -------------------------------------------------------------------------------- /CoreLocation/cldmain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreLocation/cldmain.m -------------------------------------------------------------------------------- /CoreLocation/cltest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreLocation/cltest.m -------------------------------------------------------------------------------- /CoreLocation/cltest.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreLocation/cltest.qcodeproj -------------------------------------------------------------------------------- /CoreMotion/CMAccelerometer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreMotion/CMAccelerometer.h -------------------------------------------------------------------------------- /CoreMotion/CMAttitude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreMotion/CMAttitude.h -------------------------------------------------------------------------------- /CoreMotion/CMDeviceMotion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreMotion/CMDeviceMotion.h -------------------------------------------------------------------------------- /CoreMotion/CMError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreMotion/CMError.h -------------------------------------------------------------------------------- /CoreMotion/CMErrorDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreMotion/CMErrorDomain.h -------------------------------------------------------------------------------- /CoreMotion/CMGyro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreMotion/CMGyro.h -------------------------------------------------------------------------------- /CoreMotion/CMLogItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreMotion/CMLogItem.h -------------------------------------------------------------------------------- /CoreMotion/CMMagnetometer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreMotion/CMMagnetometer.h -------------------------------------------------------------------------------- /CoreMotion/CMMotionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreMotion/CMMotionManager.h -------------------------------------------------------------------------------- /CoreMotion/CMMotionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreMotion/CMMotionManager.m -------------------------------------------------------------------------------- /CoreMotion/CoreMotion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreMotion/CoreMotion.h -------------------------------------------------------------------------------- /CoreMotion/CoreMotion.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreMotion/CoreMotion.qcodeproj -------------------------------------------------------------------------------- /CoreMotion/CoreMotion_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreMotion/CoreMotion_Prefix.pch -------------------------------------------------------------------------------- /CoreMotion/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreMotion/Info.plist -------------------------------------------------------------------------------- /CoreMotion/cmtest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreMotion/cmtest.m -------------------------------------------------------------------------------- /CoreMotion/cmtest.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreMotion/cmtest.qcodeproj -------------------------------------------------------------------------------- /CoreRFID/CRTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreRFID/CRTag.h -------------------------------------------------------------------------------- /CoreRFID/CRTagManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreRFID/CRTagManager.h -------------------------------------------------------------------------------- /CoreRFID/CRTagManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreRFID/CRTagManagerDelegate.h -------------------------------------------------------------------------------- /CoreRFID/CoreRFID.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreRFID/CoreRFID.entitlements -------------------------------------------------------------------------------- /CoreRFID/CoreRFID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreRFID/CoreRFID.h -------------------------------------------------------------------------------- /CoreRFID/CoreRFID.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreRFID/CoreRFID.m -------------------------------------------------------------------------------- /CoreRFID/CoreRFID.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreRFID/CoreRFID.qcodeproj -------------------------------------------------------------------------------- /CoreRFID/CoreRFID_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreRFID/CoreRFID_Prefix.pch -------------------------------------------------------------------------------- /CoreRFID/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreRFID/Info.plist -------------------------------------------------------------------------------- /CoreRFID/RFIDProbe/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CoreRFID/RFIDProbe/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreRFID/RFIDProbe/main.m -------------------------------------------------------------------------------- /CoreTelephony/CTCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreTelephony/CTCall.h -------------------------------------------------------------------------------- /CoreTelephony/CTCallCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreTelephony/CTCallCenter.h -------------------------------------------------------------------------------- /CoreTelephony/CTCarrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreTelephony/CTCarrier.h -------------------------------------------------------------------------------- /CoreTelephony/CTModemManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreTelephony/CTModemManager.h -------------------------------------------------------------------------------- /CoreTelephony/CTModemManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreTelephony/CTModemManager.m -------------------------------------------------------------------------------- /CoreTelephony/CTPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreTelephony/CTPrivate.h -------------------------------------------------------------------------------- /CoreTelephony/CoreTelephony.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreTelephony/CoreTelephony.m -------------------------------------------------------------------------------- /CoreTelephony/Info-test.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreTelephony/Info-test.plist -------------------------------------------------------------------------------- /CoreTelephony/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreTelephony/Info.plist -------------------------------------------------------------------------------- /CoreTelephony/cttest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreTelephony/cttest.m -------------------------------------------------------------------------------- /CoreTelephony/cttest.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreTelephony/cttest.qcodeproj -------------------------------------------------------------------------------- /CoreWLAN/CW8021XProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreWLAN/CW8021XProfile.h -------------------------------------------------------------------------------- /CoreWLAN/CWChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreWLAN/CWChannel.h -------------------------------------------------------------------------------- /CoreWLAN/CWConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreWLAN/CWConfiguration.h -------------------------------------------------------------------------------- /CoreWLAN/CWEventDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreWLAN/CWEventDelegate.h -------------------------------------------------------------------------------- /CoreWLAN/CWInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreWLAN/CWInterface.h -------------------------------------------------------------------------------- /CoreWLAN/CWNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreWLAN/CWNetwork.h -------------------------------------------------------------------------------- /CoreWLAN/CWNetworkProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreWLAN/CWNetworkProfile.h -------------------------------------------------------------------------------- /CoreWLAN/CWWiFiClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreWLAN/CWWiFiClient.h -------------------------------------------------------------------------------- /CoreWLAN/CoreWLAN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreWLAN/CoreWLAN.h -------------------------------------------------------------------------------- /CoreWLAN/CoreWLAN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreWLAN/CoreWLAN.m -------------------------------------------------------------------------------- /CoreWLAN/CoreWLAN.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreWLAN/CoreWLAN.qcodeproj -------------------------------------------------------------------------------- /CoreWLAN/CoreWLANConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreWLAN/CoreWLANConstants.h -------------------------------------------------------------------------------- /CoreWLAN/CoreWLANTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreWLAN/CoreWLANTypes.h -------------------------------------------------------------------------------- /CoreWLAN/CoreWLANUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreWLAN/CoreWLANUtil.h -------------------------------------------------------------------------------- /CoreWLAN/CoreWLAN_Prefix.pch: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CoreWLAN/Info-test.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreWLAN/Info-test.plist -------------------------------------------------------------------------------- /CoreWLAN/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreWLAN/Info.plist -------------------------------------------------------------------------------- /CoreWLAN/cwtest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreWLAN/cwtest.m -------------------------------------------------------------------------------- /CoreWLAN/cwtest.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/CoreWLAN/cwtest.qcodeproj -------------------------------------------------------------------------------- /Foundation/CharacterSets/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/CharacterSets/README -------------------------------------------------------------------------------- /Foundation/Foundation-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Foundation-Info.plist -------------------------------------------------------------------------------- /Foundation/Foundation.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Foundation.qcodeproj -------------------------------------------------------------------------------- /Foundation/Sources/Externs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/Externs.m -------------------------------------------------------------------------------- /Foundation/Sources/Foundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/Foundation.h -------------------------------------------------------------------------------- /Foundation/Sources/Foundation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/Foundation.php -------------------------------------------------------------------------------- /Foundation/Sources/HTMLEntities.strings: -------------------------------------------------------------------------------- 1 | ../../SimpleWebKit/Sources/HTMLEntities.strings -------------------------------------------------------------------------------- /Foundation/Sources/NSArchiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSArchiver.h -------------------------------------------------------------------------------- /Foundation/Sources/NSArchiver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSArchiver.m -------------------------------------------------------------------------------- /Foundation/Sources/NSArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSArray.h -------------------------------------------------------------------------------- /Foundation/Sources/NSArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSArray.m -------------------------------------------------------------------------------- /Foundation/Sources/NSBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSBlock.h -------------------------------------------------------------------------------- /Foundation/Sources/NSBlock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSBlock.m -------------------------------------------------------------------------------- /Foundation/Sources/NSBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSBundle.h -------------------------------------------------------------------------------- /Foundation/Sources/NSBundle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSBundle.m -------------------------------------------------------------------------------- /Foundation/Sources/NSByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSByteOrder.h -------------------------------------------------------------------------------- /Foundation/Sources/NSCalendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSCalendar.h -------------------------------------------------------------------------------- /Foundation/Sources/NSCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSCoder.h -------------------------------------------------------------------------------- /Foundation/Sources/NSCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSCoder.m -------------------------------------------------------------------------------- /Foundation/Sources/NSCondition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSCondition.h -------------------------------------------------------------------------------- /Foundation/Sources/NSCondition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSCondition.m -------------------------------------------------------------------------------- /Foundation/Sources/NSConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSConnection.h -------------------------------------------------------------------------------- /Foundation/Sources/NSConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSConnection.m -------------------------------------------------------------------------------- /Foundation/Sources/NSData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSData.h -------------------------------------------------------------------------------- /Foundation/Sources/NSData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSData.m -------------------------------------------------------------------------------- /Foundation/Sources/NSDate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSDate.h -------------------------------------------------------------------------------- /Foundation/Sources/NSDate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSDate.m -------------------------------------------------------------------------------- /Foundation/Sources/NSDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSDebug.h -------------------------------------------------------------------------------- /Foundation/Sources/NSDecimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSDecimal.h -------------------------------------------------------------------------------- /Foundation/Sources/NSDecimal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSDecimal.m -------------------------------------------------------------------------------- /Foundation/Sources/NSDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSDictionary.h -------------------------------------------------------------------------------- /Foundation/Sources/NSDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSDictionary.m -------------------------------------------------------------------------------- /Foundation/Sources/NSEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSEnumerator.h -------------------------------------------------------------------------------- /Foundation/Sources/NSError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSError.h -------------------------------------------------------------------------------- /Foundation/Sources/NSError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSError.m -------------------------------------------------------------------------------- /Foundation/Sources/NSException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSException.h -------------------------------------------------------------------------------- /Foundation/Sources/NSException.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSException.m -------------------------------------------------------------------------------- /Foundation/Sources/NSExpression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSExpression.h -------------------------------------------------------------------------------- /Foundation/Sources/NSFileHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSFileHandle.h -------------------------------------------------------------------------------- /Foundation/Sources/NSFileHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSFileHandle.m -------------------------------------------------------------------------------- /Foundation/Sources/NSFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSFormatter.h -------------------------------------------------------------------------------- /Foundation/Sources/NSFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSFormatter.m -------------------------------------------------------------------------------- /Foundation/Sources/NSGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSGeometry.h -------------------------------------------------------------------------------- /Foundation/Sources/NSGeometry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSGeometry.m -------------------------------------------------------------------------------- /Foundation/Sources/NSHTTPCookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSHTTPCookie.h -------------------------------------------------------------------------------- /Foundation/Sources/NSHTTPCookie.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSHTTPCookie.m -------------------------------------------------------------------------------- /Foundation/Sources/NSHashTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSHashTable.h -------------------------------------------------------------------------------- /Foundation/Sources/NSHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSHost.h -------------------------------------------------------------------------------- /Foundation/Sources/NSHost.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSHost.m -------------------------------------------------------------------------------- /Foundation/Sources/NSIndexPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSIndexPath.h -------------------------------------------------------------------------------- /Foundation/Sources/NSIndexSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSIndexSet.h -------------------------------------------------------------------------------- /Foundation/Sources/NSInvocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSInvocation.h -------------------------------------------------------------------------------- /Foundation/Sources/NSInvocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSInvocation.m -------------------------------------------------------------------------------- /Foundation/Sources/NSLocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSLocale.h -------------------------------------------------------------------------------- /Foundation/Sources/NSLocale.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSLocale.m -------------------------------------------------------------------------------- /Foundation/Sources/NSLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSLock.h -------------------------------------------------------------------------------- /Foundation/Sources/NSLock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSLock.m -------------------------------------------------------------------------------- /Foundation/Sources/NSMapTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSMapTable.h -------------------------------------------------------------------------------- /Foundation/Sources/NSNull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSNull.h -------------------------------------------------------------------------------- /Foundation/Sources/NSNull.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSNull.m -------------------------------------------------------------------------------- /Foundation/Sources/NSNumber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSNumber.m -------------------------------------------------------------------------------- /Foundation/Sources/NSObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSObject.h -------------------------------------------------------------------------------- /Foundation/Sources/NSObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSObject.m -------------------------------------------------------------------------------- /Foundation/Sources/NSOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSOperation.h -------------------------------------------------------------------------------- /Foundation/Sources/NSOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSOperation.m -------------------------------------------------------------------------------- /Foundation/Sources/NSPort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSPort.h -------------------------------------------------------------------------------- /Foundation/Sources/NSPort.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSPort.m -------------------------------------------------------------------------------- /Foundation/Sources/NSPortCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSPortCoder.h -------------------------------------------------------------------------------- /Foundation/Sources/NSPortCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSPortCoder.m -------------------------------------------------------------------------------- /Foundation/Sources/NSPredicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSPredicate.h -------------------------------------------------------------------------------- /Foundation/Sources/NSPredicate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSPredicate.m -------------------------------------------------------------------------------- /Foundation/Sources/NSPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSPrivate.h -------------------------------------------------------------------------------- /Foundation/Sources/NSProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSProxy.h -------------------------------------------------------------------------------- /Foundation/Sources/NSProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSProxy.m -------------------------------------------------------------------------------- /Foundation/Sources/NSRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSRange.h -------------------------------------------------------------------------------- /Foundation/Sources/NSRunLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSRunLoop.h -------------------------------------------------------------------------------- /Foundation/Sources/NSRunLoop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSRunLoop.m -------------------------------------------------------------------------------- /Foundation/Sources/NSScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSScanner.h -------------------------------------------------------------------------------- /Foundation/Sources/NSScanner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSScanner.m -------------------------------------------------------------------------------- /Foundation/Sources/NSSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSSet.h -------------------------------------------------------------------------------- /Foundation/Sources/NSSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSSet.m -------------------------------------------------------------------------------- /Foundation/Sources/NSStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSStream.h -------------------------------------------------------------------------------- /Foundation/Sources/NSStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSStream.m -------------------------------------------------------------------------------- /Foundation/Sources/NSString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSString.h -------------------------------------------------------------------------------- /Foundation/Sources/NSString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSString.m -------------------------------------------------------------------------------- /Foundation/Sources/NSTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSTask.h -------------------------------------------------------------------------------- /Foundation/Sources/NSTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSTask.m -------------------------------------------------------------------------------- /Foundation/Sources/NSThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSThread.h -------------------------------------------------------------------------------- /Foundation/Sources/NSThread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSThread.m -------------------------------------------------------------------------------- /Foundation/Sources/NSTimeZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSTimeZone.h -------------------------------------------------------------------------------- /Foundation/Sources/NSTimeZone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSTimeZone.m -------------------------------------------------------------------------------- /Foundation/Sources/NSTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSTimer.h -------------------------------------------------------------------------------- /Foundation/Sources/NSTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSTimer.m -------------------------------------------------------------------------------- /Foundation/Sources/NSURL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSURL.h -------------------------------------------------------------------------------- /Foundation/Sources/NSURL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSURL.m -------------------------------------------------------------------------------- /Foundation/Sources/NSURLCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSURLCache.h -------------------------------------------------------------------------------- /Foundation/Sources/NSURLCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSURLCache.m -------------------------------------------------------------------------------- /Foundation/Sources/NSURLError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSURLError.h -------------------------------------------------------------------------------- /Foundation/Sources/NSURLHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSURLHandle.h -------------------------------------------------------------------------------- /Foundation/Sources/NSURLHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSURLHandle.m -------------------------------------------------------------------------------- /Foundation/Sources/NSURLRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSURLRequest.h -------------------------------------------------------------------------------- /Foundation/Sources/NSURLRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSURLRequest.m -------------------------------------------------------------------------------- /Foundation/Sources/NSUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSUtilities.h -------------------------------------------------------------------------------- /Foundation/Sources/NSValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSValue.h -------------------------------------------------------------------------------- /Foundation/Sources/NSValue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSValue.m -------------------------------------------------------------------------------- /Foundation/Sources/NSXMLDTD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSXMLDTD.h -------------------------------------------------------------------------------- /Foundation/Sources/NSXMLDTD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSXMLDTD.m -------------------------------------------------------------------------------- /Foundation/Sources/NSXMLDTDNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSXMLDTDNode.h -------------------------------------------------------------------------------- /Foundation/Sources/NSXMLDTDNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSXMLDTDNode.m -------------------------------------------------------------------------------- /Foundation/Sources/NSXMLElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSXMLElement.h -------------------------------------------------------------------------------- /Foundation/Sources/NSXMLElement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSXMLElement.m -------------------------------------------------------------------------------- /Foundation/Sources/NSXMLNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSXMLNode.h -------------------------------------------------------------------------------- /Foundation/Sources/NSXMLNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSXMLNode.m -------------------------------------------------------------------------------- /Foundation/Sources/NSXMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSXMLParser.h -------------------------------------------------------------------------------- /Foundation/Sources/NSXMLParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSXMLParser.m -------------------------------------------------------------------------------- /Foundation/Sources/NSZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/NSZone.h -------------------------------------------------------------------------------- /Foundation/Sources/Unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/Unicode.h -------------------------------------------------------------------------------- /Foundation/Sources/Unicode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/Unicode.m -------------------------------------------------------------------------------- /Foundation/Sources/caseconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/caseconv.h -------------------------------------------------------------------------------- /Foundation/Sources/cop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/cop.h -------------------------------------------------------------------------------- /Foundation/Sources/cyrillic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/cyrillic.h -------------------------------------------------------------------------------- /Foundation/Sources/decomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/decomp.h -------------------------------------------------------------------------------- /Foundation/Sources/nextstep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/nextstep.h -------------------------------------------------------------------------------- /Foundation/Sources/tzfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Foundation/Sources/tzfile.h -------------------------------------------------------------------------------- /Frameworks.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Frameworks.qcodeproj -------------------------------------------------------------------------------- /IOBluetooth/Bluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/IOBluetooth/Bluetooth.h -------------------------------------------------------------------------------- /IOBluetooth/BluetoothPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/IOBluetooth/BluetoothPrivate.h -------------------------------------------------------------------------------- /IOBluetooth/IOBluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/IOBluetooth/IOBluetooth.h -------------------------------------------------------------------------------- /IOBluetooth/IOBluetoothUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/IOBluetooth/IOBluetoothUI.h -------------------------------------------------------------------------------- /IOBluetooth/Info-test.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/IOBluetooth/Info-test.plist -------------------------------------------------------------------------------- /IOBluetooth/iobttest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/IOBluetooth/iobttest.m -------------------------------------------------------------------------------- /IOBluetooth/iobttest.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/IOBluetooth/iobttest.qcodeproj -------------------------------------------------------------------------------- /IOBluetooth/net/bluetooth/bluez.h: -------------------------------------------------------------------------------- 1 | // bluez.h 2 | // no longer used 3 | -------------------------------------------------------------------------------- /IOBluetooth/objc/OBEXSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/IOBluetooth/objc/OBEXSession.h -------------------------------------------------------------------------------- /IOBluetooth/objc/OBEXSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/IOBluetooth/objc/OBEXSession.m -------------------------------------------------------------------------------- /ImageKit/IKImageBrowserView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ImageKit/IKImageBrowserView.h -------------------------------------------------------------------------------- /ImageKit/IKImageBrowserView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ImageKit/IKImageBrowserView.m -------------------------------------------------------------------------------- /ImageKit/IKImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ImageKit/IKImageView.h -------------------------------------------------------------------------------- /ImageKit/IKImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ImageKit/IKImageView.m -------------------------------------------------------------------------------- /ImageKit/IKPictureTaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ImageKit/IKPictureTaker.h -------------------------------------------------------------------------------- /ImageKit/IKPictureTaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ImageKit/IKPictureTaker.m -------------------------------------------------------------------------------- /ImageKit/ImageKit-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ImageKit/ImageKit-Info.plist -------------------------------------------------------------------------------- /ImageKit/ImageKit.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ImageKit/ImageKit.qcodeproj -------------------------------------------------------------------------------- /LGPL LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/LGPL LICENCE.txt -------------------------------------------------------------------------------- /Make.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Make.qcodeproj -------------------------------------------------------------------------------- /MapKit/CLExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/CLExtensions.h -------------------------------------------------------------------------------- /MapKit/CLExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/CLExtensions.m -------------------------------------------------------------------------------- /MapKit/Icons/flag_cyan_32.png: -------------------------------------------------------------------------------- 1 | ../../../Icons/Harmony/Additions/flag_cyan_32.png -------------------------------------------------------------------------------- /MapKit/Icons/flag_green_32.png: -------------------------------------------------------------------------------- 1 | ../../../Icons/Harmony/Additions/flag_green_32.png -------------------------------------------------------------------------------- /MapKit/Icons/flag_orange_32.png: -------------------------------------------------------------------------------- 1 | ../../../Icons/Harmony/Additions/flag_orange_32.png -------------------------------------------------------------------------------- /MapKit/Icons/flag_red_32.png: -------------------------------------------------------------------------------- 1 | ../../../Icons/Harmony/PNG/flag_32.png -------------------------------------------------------------------------------- /MapKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/Info.plist -------------------------------------------------------------------------------- /MapKit/MKAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MKAnnotation.h -------------------------------------------------------------------------------- /MapKit/MKAnnotationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MKAnnotationView.h -------------------------------------------------------------------------------- /MapKit/MKAnnotationView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MKAnnotationView.m -------------------------------------------------------------------------------- /MapKit/MKCircle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MKCircle.h -------------------------------------------------------------------------------- /MapKit/MKCircleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MKCircleView.h -------------------------------------------------------------------------------- /MapKit/MKGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MKGeometry.h -------------------------------------------------------------------------------- /MapKit/MKGeometry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MKGeometry.m -------------------------------------------------------------------------------- /MapKit/MKMapView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MKMapView.h -------------------------------------------------------------------------------- /MapKit/MKMapView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MKMapView.m -------------------------------------------------------------------------------- /MapKit/MKMultiPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MKMultiPoint.h -------------------------------------------------------------------------------- /MapKit/MKOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MKOverlay.h -------------------------------------------------------------------------------- /MapKit/MKOverlayPathView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MKOverlayPathView.h -------------------------------------------------------------------------------- /MapKit/MKOverlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MKOverlayView.h -------------------------------------------------------------------------------- /MapKit/MKOverlayView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MKOverlayView.m -------------------------------------------------------------------------------- /MapKit/MKPinAnnotationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MKPinAnnotationView.h -------------------------------------------------------------------------------- /MapKit/MKPlacemark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MKPlacemark.h -------------------------------------------------------------------------------- /MapKit/MKPointAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MKPointAnnotation.h -------------------------------------------------------------------------------- /MapKit/MKPolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MKPolygon.h -------------------------------------------------------------------------------- /MapKit/MKPolygonView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MKPolygonView.h -------------------------------------------------------------------------------- /MapKit/MKPolyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MKPolyline.h -------------------------------------------------------------------------------- /MapKit/MKPolylineView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MKPolylineView.h -------------------------------------------------------------------------------- /MapKit/MKReverseGeocoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MKReverseGeocoder.h -------------------------------------------------------------------------------- /MapKit/MKShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MKShape.h -------------------------------------------------------------------------------- /MapKit/MKTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MKTypes.h -------------------------------------------------------------------------------- /MapKit/MKUserLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MKUserLocation.h -------------------------------------------------------------------------------- /MapKit/MKUserLocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MKUserLocation.m -------------------------------------------------------------------------------- /MapKit/MapKit.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MapKit.entitlements -------------------------------------------------------------------------------- /MapKit/MapKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MapKit.h -------------------------------------------------------------------------------- /MapKit/MapKit.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MapKit.qcodeproj -------------------------------------------------------------------------------- /MapKit/MapKitTest-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MapKitTest-Info.plist -------------------------------------------------------------------------------- /MapKit/MapKitTest.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MapKitTest.qcodeproj -------------------------------------------------------------------------------- /MapKit/MapKitTest/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /MapKit/MapKitTest/MyDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MapKitTest/MyDocument.h -------------------------------------------------------------------------------- /MapKit/MapKitTest/MyDocument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MapKitTest/MyDocument.m -------------------------------------------------------------------------------- /MapKit/MapKitTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MapKitTest/main.m -------------------------------------------------------------------------------- /MapKit/MapKit_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/MapKit/MapKit_Prefix.pch -------------------------------------------------------------------------------- /Message/Message-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Message/Message-Info.plist -------------------------------------------------------------------------------- /Message/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Message/Message.php -------------------------------------------------------------------------------- /Message/Message.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Message/Message.qcodeproj -------------------------------------------------------------------------------- /Message/NSMailDelivery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Message/NSMailDelivery.h -------------------------------------------------------------------------------- /Message/NSMailDelivery.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Message/NSMailDelivery.m -------------------------------------------------------------------------------- /OCUnit/Documentation/Tutorials/OCUnitWWDC2002.rtfd/.typeAttributes.dict: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OCUnit/Documentation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/OCUnit/Documentation/index.html -------------------------------------------------------------------------------- /OCUnit/Examples/Person/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/OCUnit/Examples/Person/Info.plist -------------------------------------------------------------------------------- /OCUnit/Examples/Person/Person.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/OCUnit/Examples/Person/Person.h -------------------------------------------------------------------------------- /OCUnit/Examples/Person/Person.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/OCUnit/Examples/Person/Person.m -------------------------------------------------------------------------------- /OCUnit/Examples/Person/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/OCUnit/Examples/Person/main.c -------------------------------------------------------------------------------- /OCUnit/Examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/OCUnit/Examples/README -------------------------------------------------------------------------------- /OCUnit/Examples/ReleaseNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/OCUnit/Examples/ReleaseNotes.txt -------------------------------------------------------------------------------- /OCUnit/Examples/TestExtras/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/OCUnit/Examples/TestExtras/main.m -------------------------------------------------------------------------------- /OCUnit/Examples/Testable/WebApplication/Main.wo/Main.wod: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /OCUnit/Examples/Testable/WebFramework/CustomInfo.plist: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /OCUnit/License.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/OCUnit/License.html -------------------------------------------------------------------------------- /OCUnit/OCUnit.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/OCUnit/OCUnit.qcodeproj -------------------------------------------------------------------------------- /OCUnit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/OCUnit/README -------------------------------------------------------------------------------- /OCUnit/ReadMe.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/OCUnit/ReadMe.rtf -------------------------------------------------------------------------------- /OCUnit/SourceCode/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/OCUnit/SourceCode/README -------------------------------------------------------------------------------- /OCUnit/SourceCode/SenFoundation/BundleInserter-windows.postamble: -------------------------------------------------------------------------------- 1 | continue 2 | -------------------------------------------------------------------------------- /OCUnit/SourceCode/SenFoundation/BundleInserter-windows.preamble: -------------------------------------------------------------------------------- 1 | set args %@ 2 | break main 3 | run 4 | -------------------------------------------------------------------------------- /OCUnit/SourceCode/SenFoundation/BundleInserter.postamble: -------------------------------------------------------------------------------- 1 | continue 2 | -------------------------------------------------------------------------------- /OCUnit/SourceCode/SenTestingKit/CustomInfo.plist: -------------------------------------------------------------------------------- 1 | { 2 | versionString = "v21"; 3 | } 4 | -------------------------------------------------------------------------------- /OCUnit/sente.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/OCUnit/sente.gif -------------------------------------------------------------------------------- /ObjC/AST.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/AST.h -------------------------------------------------------------------------------- /ObjC/AST.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/AST.m -------------------------------------------------------------------------------- /ObjC/Compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/Compile.h -------------------------------------------------------------------------------- /ObjC/Compile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/Compile.m -------------------------------------------------------------------------------- /ObjC/Evaluate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/Evaluate.h -------------------------------------------------------------------------------- /ObjC/Evaluate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/Evaluate.m -------------------------------------------------------------------------------- /ObjC/Expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/Expression.h -------------------------------------------------------------------------------- /ObjC/Expression.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/Expression.m -------------------------------------------------------------------------------- /ObjC/Inspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/Inspector.h -------------------------------------------------------------------------------- /ObjC/Inspector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/Inspector.m -------------------------------------------------------------------------------- /ObjC/Inspector.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/Inspector.xib -------------------------------------------------------------------------------- /ObjC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/Makefile -------------------------------------------------------------------------------- /ObjC/ObjC-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/ObjC-Info.plist -------------------------------------------------------------------------------- /ObjC/ObjC.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/ObjC.qcodeproj -------------------------------------------------------------------------------- /ObjC/ObjCKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/ObjCKit.h -------------------------------------------------------------------------------- /ObjC/ObjCKit.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/ObjCKit.qcodeproj -------------------------------------------------------------------------------- /ObjC/Postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/Postprocess.h -------------------------------------------------------------------------------- /ObjC/Postprocess.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/Postprocess.m -------------------------------------------------------------------------------- /ObjC/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/Print.h -------------------------------------------------------------------------------- /ObjC/Print.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/Print.m -------------------------------------------------------------------------------- /ObjC/Refactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/Refactor.h -------------------------------------------------------------------------------- /ObjC/Refactor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/Refactor.m -------------------------------------------------------------------------------- /ObjC/Simplify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/Simplify.h -------------------------------------------------------------------------------- /ObjC/Simplify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/Simplify.m -------------------------------------------------------------------------------- /ObjC/ToDo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/ToDo -------------------------------------------------------------------------------- /ObjC/gram.ym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/gram.ym -------------------------------------------------------------------------------- /ObjC/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/main.m -------------------------------------------------------------------------------- /ObjC/objc: -------------------------------------------------------------------------------- 1 | /usr/share/QuantumSTEP/Developer/bin/objc -------------------------------------------------------------------------------- /ObjC/objc10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/objc10.h -------------------------------------------------------------------------------- /ObjC/objc10.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/objc10.m -------------------------------------------------------------------------------- /ObjC/objc20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/objc20.h -------------------------------------------------------------------------------- /ObjC/objc20.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/objc20.m -------------------------------------------------------------------------------- /ObjC/objc2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/objc2c.h -------------------------------------------------------------------------------- /ObjC/objc2c.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/objc2c.m -------------------------------------------------------------------------------- /ObjC/objc2php.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/objc2php.h -------------------------------------------------------------------------------- /ObjC/objc2php.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/objc2php.m -------------------------------------------------------------------------------- /ObjC/scan.lm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/scan.lm -------------------------------------------------------------------------------- /ObjC/test/helloworld.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/test/helloworld.m -------------------------------------------------------------------------------- /ObjC/test/script.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/test/script.m -------------------------------------------------------------------------------- /ObjC/test/simple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/test/simple.m -------------------------------------------------------------------------------- /ObjC/test/special.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/test/special.m -------------------------------------------------------------------------------- /ObjC/test/test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ObjC/test/test.m -------------------------------------------------------------------------------- /OpenCL/CMTensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/OpenCL/CMTensor.h -------------------------------------------------------------------------------- /PDFKit/AppController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/AppController.h -------------------------------------------------------------------------------- /PDFKit/AppController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/AppController.m -------------------------------------------------------------------------------- /PDFKit/NSPDFImageRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/NSPDFImageRep.m -------------------------------------------------------------------------------- /PDFKit/PDFAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/PDFAnnotation.h -------------------------------------------------------------------------------- /PDFKit/PDFAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/PDFAnnotation.m -------------------------------------------------------------------------------- /PDFKit/PDFDestination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/PDFDestination.h -------------------------------------------------------------------------------- /PDFKit/PDFDestination.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/PDFDestination.m -------------------------------------------------------------------------------- /PDFKit/PDFDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/PDFDocument.h -------------------------------------------------------------------------------- /PDFKit/PDFDocument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/PDFDocument.m -------------------------------------------------------------------------------- /PDFKit/PDFKit-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/PDFKit-Info.plist -------------------------------------------------------------------------------- /PDFKit/PDFKit.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/PDFKit.entitlements -------------------------------------------------------------------------------- /PDFKit/PDFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/PDFKit.h -------------------------------------------------------------------------------- /PDFKit/PDFKit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/PDFKit.php -------------------------------------------------------------------------------- /PDFKit/PDFKit.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/PDFKit.qcodeproj -------------------------------------------------------------------------------- /PDFKit/PDFKitPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/PDFKitPrivate.h -------------------------------------------------------------------------------- /PDFKit/PDFObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/PDFObject.m -------------------------------------------------------------------------------- /PDFKit/PDFOutline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/PDFOutline.h -------------------------------------------------------------------------------- /PDFKit/PDFOutline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/PDFOutline.m -------------------------------------------------------------------------------- /PDFKit/PDFPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/PDFPage.h -------------------------------------------------------------------------------- /PDFKit/PDFPage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/PDFPage.m -------------------------------------------------------------------------------- /PDFKit/PDFParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/PDFParser.m -------------------------------------------------------------------------------- /PDFKit/PDFStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/PDFStream.m -------------------------------------------------------------------------------- /PDFKit/PDFTest-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/PDFTest-Info.plist -------------------------------------------------------------------------------- /PDFKit/PDFView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/PDFView.h -------------------------------------------------------------------------------- /PDFKit/PDFView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/PDFView.m -------------------------------------------------------------------------------- /PDFKit/Quartz-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/Quartz-Info.plist -------------------------------------------------------------------------------- /PDFKit/Quartz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/Quartz.h -------------------------------------------------------------------------------- /PDFKit/Quartz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/Quartz.m -------------------------------------------------------------------------------- /PDFKit/Quartz.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/Quartz.qcodeproj -------------------------------------------------------------------------------- /PDFKit/ToDo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/PDFKit/ToDo -------------------------------------------------------------------------------- /QTKit/QTKit-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/QTKit/QTKit-Info.plist -------------------------------------------------------------------------------- /QTKit/QTKit.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/QTKit/QTKit.qcodeproj -------------------------------------------------------------------------------- /QTKit/Sources/QTKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/QTKit/Sources/QTKit.h -------------------------------------------------------------------------------- /QTKit/Sources/QTMedia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/QTKit/Sources/QTMedia.h -------------------------------------------------------------------------------- /QTKit/Sources/QTMovie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/QTKit/Sources/QTMovie.h -------------------------------------------------------------------------------- /QTKit/Sources/QTMovie.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/QTKit/Sources/QTMovie.m -------------------------------------------------------------------------------- /QTKit/Sources/QTMovieView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/QTKit/Sources/QTMovieView.h -------------------------------------------------------------------------------- /QTKit/Sources/QTTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/QTKit/Sources/QTTime.h -------------------------------------------------------------------------------- /QTKit/Sources/QTTimeRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/QTKit/Sources/QTTimeRange.h -------------------------------------------------------------------------------- /QTKit/Sources/QTTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/QTKit/Sources/QTTrack.h -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/README -------------------------------------------------------------------------------- /ScreenSaver/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ScreenSaver/Info.plist -------------------------------------------------------------------------------- /ScreenSaver/ScreenSaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ScreenSaver/ScreenSaver.h -------------------------------------------------------------------------------- /ScreenSaver/ScreenSaverView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ScreenSaver/ScreenSaverView.h -------------------------------------------------------------------------------- /ScreenSaver/ScreenSaverView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/ScreenSaver/ScreenSaverView.m -------------------------------------------------------------------------------- /Security/Authorization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Security/Authorization.h -------------------------------------------------------------------------------- /Security/Authorization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Security/Authorization.m -------------------------------------------------------------------------------- /Security/AuthorizationDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Security/AuthorizationDB.h -------------------------------------------------------------------------------- /Security/AuthorizationTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Security/AuthorizationTags.h -------------------------------------------------------------------------------- /Security/SecBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Security/SecBase.h -------------------------------------------------------------------------------- /Security/Security-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Security/Security-Info.plist -------------------------------------------------------------------------------- /Security/Security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Security/Security.h -------------------------------------------------------------------------------- /Security/Security.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Security/Security.qcodeproj -------------------------------------------------------------------------------- /SecurityInterface/Icons/lock_32.png: -------------------------------------------------------------------------------- 1 | ../../../Icons/Harmony/PNG/lock_32.png -------------------------------------------------------------------------------- /SecurityInterface/Icons/ulock_32.png: -------------------------------------------------------------------------------- 1 | ../../../Icons/Harmony/PNG/ulock_32.png -------------------------------------------------------------------------------- /System/System-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/System/System-Info.plist -------------------------------------------------------------------------------- /System/System.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/System/System.qcodeproj -------------------------------------------------------------------------------- /SystemConfiguration/configd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/SystemConfiguration/configd.m -------------------------------------------------------------------------------- /SystemStatus/Models.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/SystemStatus/Models.plist -------------------------------------------------------------------------------- /SystemStatus/NSCameraMovie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/SystemStatus/NSCameraMovie.h -------------------------------------------------------------------------------- /SystemStatus/NSCameraMovie.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/SystemStatus/NSCameraMovie.m -------------------------------------------------------------------------------- /SystemStatus/NSSystemStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/SystemStatus/NSSystemStatus.h -------------------------------------------------------------------------------- /SystemStatus/NSSystemStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/SystemStatus/NSSystemStatus.m -------------------------------------------------------------------------------- /SystemStatus/SYSBattery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/SystemStatus/SYSBattery.h -------------------------------------------------------------------------------- /SystemStatus/SYSBattery.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/SystemStatus/SYSBattery.m -------------------------------------------------------------------------------- /SystemStatus/SYSDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/SystemStatus/SYSDevice.h -------------------------------------------------------------------------------- /SystemStatus/SYSDevice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/SystemStatus/SYSDevice.m -------------------------------------------------------------------------------- /SystemStatus/SYSEnvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/SystemStatus/SYSEnvironment.h -------------------------------------------------------------------------------- /SystemStatus/SYSEnvironment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/SystemStatus/SYSEnvironment.m -------------------------------------------------------------------------------- /SystemStatus/SYSInternet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/SystemStatus/SYSInternet.h -------------------------------------------------------------------------------- /SystemStatus/SYSInternet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/SystemStatus/SYSInternet.m -------------------------------------------------------------------------------- /SystemStatus/SYSLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/SystemStatus/SYSLocation.h -------------------------------------------------------------------------------- /SystemStatus/SYSLocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/SystemStatus/SYSLocation.m -------------------------------------------------------------------------------- /SystemStatus/SYSNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/SystemStatus/SYSNetwork.h -------------------------------------------------------------------------------- /SystemStatus/SYSNetwork.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/SystemStatus/SYSNetwork.m -------------------------------------------------------------------------------- /SystemStatus/SYSWireless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/SystemStatus/SYSWireless.h -------------------------------------------------------------------------------- /SystemStatus/SYSWireless.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/SystemStatus/SYSWireless.m -------------------------------------------------------------------------------- /SystemStatus/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/SystemStatus/camera.h -------------------------------------------------------------------------------- /SystemUIPlugin/NSMenuExtra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/SystemUIPlugin/NSMenuExtra.h -------------------------------------------------------------------------------- /SystemUIPlugin/NSMenuExtra.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/SystemUIPlugin/NSMenuExtra.m -------------------------------------------------------------------------------- /Tests.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Tests.qcodeproj -------------------------------------------------------------------------------- /Tools/PlistBuddy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Tools/PlistBuddy.m -------------------------------------------------------------------------------- /Tools/PlistBuddy.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Tools/PlistBuddy.qcodeproj -------------------------------------------------------------------------------- /Tools/Tools.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Tools/Tools.qcodeproj -------------------------------------------------------------------------------- /Tools/abook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Tools/abook.m -------------------------------------------------------------------------------- /Tools/abook.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Tools/abook.qcodeproj -------------------------------------------------------------------------------- /Tools/defaults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Tools/defaults.m -------------------------------------------------------------------------------- /Tools/defaults.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Tools/defaults.qcodeproj -------------------------------------------------------------------------------- /Tools/mdo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Tools/mdo.m -------------------------------------------------------------------------------- /Tools/mdo.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Tools/mdo.qcodeproj -------------------------------------------------------------------------------- /Tools/open.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Tools/open.m -------------------------------------------------------------------------------- /Tools/open.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Tools/open.qcodeproj -------------------------------------------------------------------------------- /Tools/plutil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Tools/plutil.m -------------------------------------------------------------------------------- /Tools/plutil.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Tools/plutil.qcodeproj -------------------------------------------------------------------------------- /Tools/say.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Tools/say.m -------------------------------------------------------------------------------- /Tools/say.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Tools/say.qcodeproj -------------------------------------------------------------------------------- /Tools/scselect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Tools/scselect.m -------------------------------------------------------------------------------- /Tools/scselect.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Tools/scselect.qcodeproj -------------------------------------------------------------------------------- /Tools/scutil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Tools/scutil.m -------------------------------------------------------------------------------- /Tools/scutil.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/Tools/scutil.qcodeproj -------------------------------------------------------------------------------- /UIKit/UIApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/UIKit/UIApplication.h -------------------------------------------------------------------------------- /UIKit/UIApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/UIKit/UIApplication.m -------------------------------------------------------------------------------- /UIKit/UIControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/UIKit/UIControl.h -------------------------------------------------------------------------------- /UIKit/UIControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/UIKit/UIControl.m -------------------------------------------------------------------------------- /UIKit/UIHardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/UIKit/UIHardware.h -------------------------------------------------------------------------------- /UIKit/UIHardware.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/UIKit/UIHardware.m -------------------------------------------------------------------------------- /UIKit/UIKit-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/UIKit/UIKit-Info.plist -------------------------------------------------------------------------------- /UIKit/UIKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/UIKit/UIKit.h -------------------------------------------------------------------------------- /UIKit/UIKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/UIKit/UIKit.m -------------------------------------------------------------------------------- /UIKit/UIKit.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/UIKit/UIKit.qcodeproj -------------------------------------------------------------------------------- /UIKit/UIKitDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/UIKit/UIKitDefines.h -------------------------------------------------------------------------------- /UIKit/UIKitDefines.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/UIKit/UIKitDefines.m -------------------------------------------------------------------------------- /UIKit/UIResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/UIKit/UIResponder.h -------------------------------------------------------------------------------- /UIKit/UIResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/UIKit/UIResponder.m -------------------------------------------------------------------------------- /UIKit/UIView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/UIKit/UIView.h -------------------------------------------------------------------------------- /UIKit/UIView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/UIKit/UIView.m -------------------------------------------------------------------------------- /XCTest/XCTest-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/XCTest/XCTest-Info.plist -------------------------------------------------------------------------------- /XCTest/XCTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/XCTest/XCTest.h -------------------------------------------------------------------------------- /XCTest/XCTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/XCTest/XCTest.m -------------------------------------------------------------------------------- /XCTest/XCTest.qcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/XCTest/XCTest.qcodeproj -------------------------------------------------------------------------------- /macports-dylibs/include/png.h: -------------------------------------------------------------------------------- 1 | libpng12/png.h -------------------------------------------------------------------------------- /macports-dylibs/lib/libcrypto.dylib: -------------------------------------------------------------------------------- 1 | libcrypto.1.0.0.dylib -------------------------------------------------------------------------------- /macports-dylibs/lib/libfreetype.6.dylib: -------------------------------------------------------------------------------- 1 | libfreetype.6.3.15.dylib -------------------------------------------------------------------------------- /macports-dylibs/lib/libfreetype.dylib: -------------------------------------------------------------------------------- 1 | libfreetype.6.3.15.dylib -------------------------------------------------------------------------------- /macports-dylibs/lib/libgif.4.dylib: -------------------------------------------------------------------------------- 1 | libungif.4.1.4.dylib -------------------------------------------------------------------------------- /macports-dylibs/lib/libgif.dylib: -------------------------------------------------------------------------------- 1 | libungif.4.1.4.dylib -------------------------------------------------------------------------------- /macports-dylibs/lib/libjpeg.62.dylib: -------------------------------------------------------------------------------- 1 | libjpeg.62.0.0.dylib -------------------------------------------------------------------------------- /macports-dylibs/lib/libjpeg.dylib: -------------------------------------------------------------------------------- 1 | libjpeg.62.0.0.dylib -------------------------------------------------------------------------------- /macports-dylibs/lib/libpng.3.dylib: -------------------------------------------------------------------------------- 1 | libpng.3.15.0.dylib -------------------------------------------------------------------------------- /macports-dylibs/lib/libpng.dylib: -------------------------------------------------------------------------------- 1 | libpng.3.15.0.dylib -------------------------------------------------------------------------------- /macports-dylibs/lib/libpng12.0.dylib: -------------------------------------------------------------------------------- 1 | libpng12.0.15.0.dylib -------------------------------------------------------------------------------- /macports-dylibs/lib/libpng12.dylib: -------------------------------------------------------------------------------- 1 | libpng12.0.15.0.dylib -------------------------------------------------------------------------------- /macports-dylibs/lib/libssl.dylib: -------------------------------------------------------------------------------- 1 | libssl.1.0.0.dylib -------------------------------------------------------------------------------- /macports-dylibs/lib/libtiff.dylib: -------------------------------------------------------------------------------- 1 | libtiff.3.dylib -------------------------------------------------------------------------------- /macports-dylibs/lib/libungif.4.dylib: -------------------------------------------------------------------------------- 1 | libungif.4.1.4.dylib -------------------------------------------------------------------------------- /macports-dylibs/lib/libungif.dylib: -------------------------------------------------------------------------------- 1 | libungif.4.1.4.dylib -------------------------------------------------------------------------------- /macports-dylibs/lib/libz.1.dylib: -------------------------------------------------------------------------------- 1 | libz.1.2.5.dylib -------------------------------------------------------------------------------- /macports-dylibs/lib/libz.dylib: -------------------------------------------------------------------------------- 1 | libz.1.2.5.dylib -------------------------------------------------------------------------------- /mySTEP.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/mySTEP.make -------------------------------------------------------------------------------- /qemu-wheezy-vexpress/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/qemu-wheezy-vexpress/setup.sh -------------------------------------------------------------------------------- /qemu-wheezy-vexpress/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldelico/mySTEP/HEAD/qemu-wheezy-vexpress/start.sh --------------------------------------------------------------------------------