├── .gitignore ├── LICENSE ├── NOTICE ├── Pegasus ├── Categories │ ├── NSObject+Invocation.h │ ├── NSObject+Invocation.m │ ├── UIColor+HexString.h │ └── UIColor+HexString.m ├── Data Structures │ ├── PGFloat.h │ ├── PGFloat.m │ ├── PGTuple.h │ └── PGTuple.m ├── Hierarchy │ ├── Layouts │ │ ├── PGCenterLayout.h │ │ ├── PGCenterLayout.m │ │ ├── PGGridLayout.h │ │ ├── PGGridLayout.m │ │ ├── PGLayout.h │ │ ├── PGLayout.m │ │ ├── PGLinearLayout.h │ │ └── PGLinearLayout.m │ ├── Objects │ │ ├── PGBarButtonItem.h │ │ ├── PGBarButtonItem.m │ │ ├── PGSwitch.h │ │ ├── PGSwitch.m │ │ ├── PGTableViewCell.h │ │ └── PGTableViewCell.m │ ├── PGObject.h │ ├── PGObject.m │ └── Views │ │ ├── PGButton.h │ │ ├── PGButton.m │ │ ├── PGImageView.h │ │ ├── PGImageView.m │ │ ├── PGLabel.h │ │ ├── PGLabel.m │ │ ├── PGProgressView.h │ │ ├── PGProgressView.m │ │ ├── PGScrollView.h │ │ ├── PGScrollView.m │ │ ├── PGTableView.h │ │ ├── PGTableView.m │ │ ├── PGTextField.h │ │ ├── PGTextField.m │ │ ├── PGToolbar.h │ │ ├── PGToolbar.m │ │ ├── PGView.h │ │ └── PGView.m ├── PGAdapter.h ├── PGTransformers.h ├── PGTransformers.m ├── Pegasus.h └── TouchXML │ ├── CXHTMLDocument.h │ ├── CXHTMLDocument.m │ ├── CXMLDocument.h │ ├── CXMLDocument.m │ ├── CXMLDocument_PrivateExtensions.h │ ├── CXMLDocument_PrivateExtensions.m │ ├── CXMLElement.h │ ├── CXMLElement.m │ ├── CXMLElement_CreationExtensions.h │ ├── CXMLElement_CreationExtensions.m │ ├── CXMLElement_ElementTreeExtensions.h │ ├── CXMLElement_ElementTreeExtensions.m │ ├── CXMLNamespaceNode.h │ ├── CXMLNamespaceNode.m │ ├── CXMLNode.h │ ├── CXMLNode.m │ ├── CXMLNode_PrivateExtensions.h │ ├── CXMLNode_PrivateExtensions.m │ ├── CXMLNode_XPathExtensions.h │ ├── CXMLNode_XPathExtensions.m │ ├── Creation │ ├── CXMLDocument_CreationExtensions.h │ ├── CXMLDocument_CreationExtensions.m │ ├── CXMLNode_CreationExtensions.h │ └── CXMLNode_CreationExtensions.m │ ├── Tidy │ ├── CTidy.h │ └── CTidy.m │ └── TouchXML.h ├── README.md └── Sample ├── PegasusSample.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── PegasusSample ├── Default-568h.png ├── PGAppDelegate.h ├── PGAppDelegate.m ├── PGViewController.h ├── PGViewController.m ├── PegasusSample-Info.plist ├── PegasusSample-Prefix.pch ├── UI ├── Images │ ├── alpha.png │ ├── beta.png │ ├── delta.png │ ├── dinosaur.png │ ├── gameboy.png │ ├── gamma.png │ └── soldier.png ├── sample1.xml ├── sample2.xml ├── sample3.xml ├── sample4.xml ├── sample5.xml ├── sample6.xml └── sample7.xml ├── en.lproj └── InfoPlist.strings └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/NOTICE -------------------------------------------------------------------------------- /Pegasus/Categories/NSObject+Invocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Categories/NSObject+Invocation.h -------------------------------------------------------------------------------- /Pegasus/Categories/NSObject+Invocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Categories/NSObject+Invocation.m -------------------------------------------------------------------------------- /Pegasus/Categories/UIColor+HexString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Categories/UIColor+HexString.h -------------------------------------------------------------------------------- /Pegasus/Categories/UIColor+HexString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Categories/UIColor+HexString.m -------------------------------------------------------------------------------- /Pegasus/Data Structures/PGFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Data Structures/PGFloat.h -------------------------------------------------------------------------------- /Pegasus/Data Structures/PGFloat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Data Structures/PGFloat.m -------------------------------------------------------------------------------- /Pegasus/Data Structures/PGTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Data Structures/PGTuple.h -------------------------------------------------------------------------------- /Pegasus/Data Structures/PGTuple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Data Structures/PGTuple.m -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Layouts/PGCenterLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Layouts/PGCenterLayout.h -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Layouts/PGCenterLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Layouts/PGCenterLayout.m -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Layouts/PGGridLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Layouts/PGGridLayout.h -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Layouts/PGGridLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Layouts/PGGridLayout.m -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Layouts/PGLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Layouts/PGLayout.h -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Layouts/PGLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Layouts/PGLayout.m -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Layouts/PGLinearLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Layouts/PGLinearLayout.h -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Layouts/PGLinearLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Layouts/PGLinearLayout.m -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Objects/PGBarButtonItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Objects/PGBarButtonItem.h -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Objects/PGBarButtonItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Objects/PGBarButtonItem.m -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Objects/PGSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Objects/PGSwitch.h -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Objects/PGSwitch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Objects/PGSwitch.m -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Objects/PGTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Objects/PGTableViewCell.h -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Objects/PGTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Objects/PGTableViewCell.m -------------------------------------------------------------------------------- /Pegasus/Hierarchy/PGObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/PGObject.h -------------------------------------------------------------------------------- /Pegasus/Hierarchy/PGObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/PGObject.m -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Views/PGButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Views/PGButton.h -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Views/PGButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Views/PGButton.m -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Views/PGImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Views/PGImageView.h -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Views/PGImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Views/PGImageView.m -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Views/PGLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Views/PGLabel.h -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Views/PGLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Views/PGLabel.m -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Views/PGProgressView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Views/PGProgressView.h -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Views/PGProgressView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Views/PGProgressView.m -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Views/PGScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Views/PGScrollView.h -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Views/PGScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Views/PGScrollView.m -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Views/PGTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Views/PGTableView.h -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Views/PGTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Views/PGTableView.m -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Views/PGTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Views/PGTextField.h -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Views/PGTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Views/PGTextField.m -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Views/PGToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Views/PGToolbar.h -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Views/PGToolbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Views/PGToolbar.m -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Views/PGView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Views/PGView.h -------------------------------------------------------------------------------- /Pegasus/Hierarchy/Views/PGView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Hierarchy/Views/PGView.m -------------------------------------------------------------------------------- /Pegasus/PGAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/PGAdapter.h -------------------------------------------------------------------------------- /Pegasus/PGTransformers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/PGTransformers.h -------------------------------------------------------------------------------- /Pegasus/PGTransformers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/PGTransformers.m -------------------------------------------------------------------------------- /Pegasus/Pegasus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/Pegasus.h -------------------------------------------------------------------------------- /Pegasus/TouchXML/CXHTMLDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/CXHTMLDocument.h -------------------------------------------------------------------------------- /Pegasus/TouchXML/CXHTMLDocument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/CXHTMLDocument.m -------------------------------------------------------------------------------- /Pegasus/TouchXML/CXMLDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/CXMLDocument.h -------------------------------------------------------------------------------- /Pegasus/TouchXML/CXMLDocument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/CXMLDocument.m -------------------------------------------------------------------------------- /Pegasus/TouchXML/CXMLDocument_PrivateExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/CXMLDocument_PrivateExtensions.h -------------------------------------------------------------------------------- /Pegasus/TouchXML/CXMLDocument_PrivateExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/CXMLDocument_PrivateExtensions.m -------------------------------------------------------------------------------- /Pegasus/TouchXML/CXMLElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/CXMLElement.h -------------------------------------------------------------------------------- /Pegasus/TouchXML/CXMLElement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/CXMLElement.m -------------------------------------------------------------------------------- /Pegasus/TouchXML/CXMLElement_CreationExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/CXMLElement_CreationExtensions.h -------------------------------------------------------------------------------- /Pegasus/TouchXML/CXMLElement_CreationExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/CXMLElement_CreationExtensions.m -------------------------------------------------------------------------------- /Pegasus/TouchXML/CXMLElement_ElementTreeExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/CXMLElement_ElementTreeExtensions.h -------------------------------------------------------------------------------- /Pegasus/TouchXML/CXMLElement_ElementTreeExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/CXMLElement_ElementTreeExtensions.m -------------------------------------------------------------------------------- /Pegasus/TouchXML/CXMLNamespaceNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/CXMLNamespaceNode.h -------------------------------------------------------------------------------- /Pegasus/TouchXML/CXMLNamespaceNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/CXMLNamespaceNode.m -------------------------------------------------------------------------------- /Pegasus/TouchXML/CXMLNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/CXMLNode.h -------------------------------------------------------------------------------- /Pegasus/TouchXML/CXMLNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/CXMLNode.m -------------------------------------------------------------------------------- /Pegasus/TouchXML/CXMLNode_PrivateExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/CXMLNode_PrivateExtensions.h -------------------------------------------------------------------------------- /Pegasus/TouchXML/CXMLNode_PrivateExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/CXMLNode_PrivateExtensions.m -------------------------------------------------------------------------------- /Pegasus/TouchXML/CXMLNode_XPathExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/CXMLNode_XPathExtensions.h -------------------------------------------------------------------------------- /Pegasus/TouchXML/CXMLNode_XPathExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/CXMLNode_XPathExtensions.m -------------------------------------------------------------------------------- /Pegasus/TouchXML/Creation/CXMLDocument_CreationExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/Creation/CXMLDocument_CreationExtensions.h -------------------------------------------------------------------------------- /Pegasus/TouchXML/Creation/CXMLDocument_CreationExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/Creation/CXMLDocument_CreationExtensions.m -------------------------------------------------------------------------------- /Pegasus/TouchXML/Creation/CXMLNode_CreationExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/Creation/CXMLNode_CreationExtensions.h -------------------------------------------------------------------------------- /Pegasus/TouchXML/Creation/CXMLNode_CreationExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/Creation/CXMLNode_CreationExtensions.m -------------------------------------------------------------------------------- /Pegasus/TouchXML/Tidy/CTidy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/Tidy/CTidy.h -------------------------------------------------------------------------------- /Pegasus/TouchXML/Tidy/CTidy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/Tidy/CTidy.m -------------------------------------------------------------------------------- /Pegasus/TouchXML/TouchXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Pegasus/TouchXML/TouchXML.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/README.md -------------------------------------------------------------------------------- /Sample/PegasusSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Sample/PegasusSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Sample/PegasusSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Sample/PegasusSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Sample/PegasusSample/Default-568h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Sample/PegasusSample/Default-568h.png -------------------------------------------------------------------------------- /Sample/PegasusSample/PGAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Sample/PegasusSample/PGAppDelegate.h -------------------------------------------------------------------------------- /Sample/PegasusSample/PGAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Sample/PegasusSample/PGAppDelegate.m -------------------------------------------------------------------------------- /Sample/PegasusSample/PGViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Sample/PegasusSample/PGViewController.h -------------------------------------------------------------------------------- /Sample/PegasusSample/PGViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Sample/PegasusSample/PGViewController.m -------------------------------------------------------------------------------- /Sample/PegasusSample/PegasusSample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Sample/PegasusSample/PegasusSample-Info.plist -------------------------------------------------------------------------------- /Sample/PegasusSample/PegasusSample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Sample/PegasusSample/PegasusSample-Prefix.pch -------------------------------------------------------------------------------- /Sample/PegasusSample/UI/Images/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Sample/PegasusSample/UI/Images/alpha.png -------------------------------------------------------------------------------- /Sample/PegasusSample/UI/Images/beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Sample/PegasusSample/UI/Images/beta.png -------------------------------------------------------------------------------- /Sample/PegasusSample/UI/Images/delta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Sample/PegasusSample/UI/Images/delta.png -------------------------------------------------------------------------------- /Sample/PegasusSample/UI/Images/dinosaur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Sample/PegasusSample/UI/Images/dinosaur.png -------------------------------------------------------------------------------- /Sample/PegasusSample/UI/Images/gameboy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Sample/PegasusSample/UI/Images/gameboy.png -------------------------------------------------------------------------------- /Sample/PegasusSample/UI/Images/gamma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Sample/PegasusSample/UI/Images/gamma.png -------------------------------------------------------------------------------- /Sample/PegasusSample/UI/Images/soldier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Sample/PegasusSample/UI/Images/soldier.png -------------------------------------------------------------------------------- /Sample/PegasusSample/UI/sample1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Sample/PegasusSample/UI/sample1.xml -------------------------------------------------------------------------------- /Sample/PegasusSample/UI/sample2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Sample/PegasusSample/UI/sample2.xml -------------------------------------------------------------------------------- /Sample/PegasusSample/UI/sample3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Sample/PegasusSample/UI/sample3.xml -------------------------------------------------------------------------------- /Sample/PegasusSample/UI/sample4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Sample/PegasusSample/UI/sample4.xml -------------------------------------------------------------------------------- /Sample/PegasusSample/UI/sample5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Sample/PegasusSample/UI/sample5.xml -------------------------------------------------------------------------------- /Sample/PegasusSample/UI/sample6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Sample/PegasusSample/UI/sample6.xml -------------------------------------------------------------------------------- /Sample/PegasusSample/UI/sample7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Sample/PegasusSample/UI/sample7.xml -------------------------------------------------------------------------------- /Sample/PegasusSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Sample/PegasusSample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanellis/pegasus/HEAD/Sample/PegasusSample/main.m --------------------------------------------------------------------------------