├── .appveyor.yml ├── .gitignore ├── .travis.yml ├── README.md ├── addon_config.mk ├── assets └── fonts │ ├── FiraMono-Regular.ttf │ └── OpenSans-Regular.ttf ├── example-allParameterTypes ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── example-allParameterTypes.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── example-allParameterTypes AppStore.xcscheme │ │ ├── example-allParameterTypes Debug.xcscheme │ │ └── example-allParameterTypes Release.xcscheme ├── example.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── example Debug.xcscheme │ │ └── example Release.xcscheme ├── of.entitlements ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-basic ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── timelineData.json ├── config.make ├── example-basic.sln ├── example-basic.vcxproj ├── example-basic.vcxproj.filters ├── example-basic.vcxproj.user ├── example-basic.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── example-basic Debug.xcscheme │ │ └── example-basic Release.xcscheme ├── icon.rc ├── of.entitlements ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-colorSchemeAndParametersAdjustment ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── example-colorSchemeAndParametersAdjustment.sln ├── example-colorSchemeAndParametersAdjustment.vcxproj ├── example-colorSchemeAndParametersAdjustment.vcxproj.filters ├── example-colorSchemeAndParametersAdjustment.vcxproj.user ├── example-colorSchemeAndParametersAdjustment.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── example-colorSchemeAndParametersAdjustment Debug.xcscheme │ │ └── example-colorSchemeAndParametersAdjustment Release.xcscheme ├── icon.rc ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-multiWindowOneApp ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── timelineData.json ├── config.make ├── example-multiWindowOneApp.sln ├── example-multiWindowOneApp.vcxproj ├── example-multiWindowOneApp.vcxproj.filters ├── example-multiWindowOneApp.vcxproj.user ├── example-multiWindowOneApp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── example-multiWindowOneApp Debug.xcscheme │ │ └── example-multiWindowOneApp Release.xcscheme ├── icon.rc ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── imgs └── COSALogo.png ├── libs ├── ofxDOM │ ├── include │ │ ├── ofx │ │ │ └── DOM │ │ │ │ ├── CapturedPointer.h │ │ │ │ ├── Document.h │ │ │ │ ├── Element.h │ │ │ │ ├── EventTarget.h │ │ │ │ ├── Events.h │ │ │ │ ├── Exceptions.h │ │ │ │ ├── Layout.h │ │ │ │ ├── Node.h │ │ │ │ ├── NodeEvents.h │ │ │ │ └── Types.h │ │ └── ofxDOM.h │ └── src │ │ ├── CapturedPointer.cpp │ │ ├── Document.cpp │ │ ├── Element.cpp │ │ ├── Events.cpp │ │ ├── Exceptions.cpp │ │ ├── Layout.cpp │ │ ├── Node.cpp │ │ ├── NodeEvents.cpp │ │ └── Types.cpp ├── ofxLineaDeTiempo │ ├── include │ │ └── ofx │ │ │ └── LineaDeTiempo │ │ │ ├── BaseTypes │ │ │ ├── AbstractSerializable.h │ │ │ ├── BaseHasCollection.h │ │ │ ├── BaseSelectable.h │ │ │ └── NamedConstPointerCollection.h │ │ │ ├── Controller │ │ │ ├── BaseController.h │ │ │ ├── Interpolator.h │ │ │ ├── KeyframeCollectionController.h │ │ │ ├── KeyframeController.h │ │ │ ├── KeyframeRegionController.h │ │ │ ├── KeyframeTrackController.h │ │ │ ├── RegionController.h │ │ │ ├── TimeControl.h │ │ │ ├── TrackController.h │ │ │ ├── TrackGroupController.h │ │ │ └── TracksPanelController.h │ │ │ ├── Data │ │ │ ├── KeyframedData.h │ │ │ ├── TimedData.h │ │ │ └── jsonSerializer.h │ │ │ ├── Utils │ │ │ ├── CollectionHelper.h │ │ │ ├── ConstVars.h │ │ │ ├── FontUtils.h │ │ │ ├── ParamHelper.h │ │ │ └── ofxTypeTraits.h │ │ │ └── View │ │ │ ├── BaseTrackView.h │ │ │ ├── KeyframeCollectionView.h │ │ │ ├── KeyframeTrackHeader.h │ │ │ ├── KeyframeTrackView.h │ │ │ ├── KeyframeView.h │ │ │ ├── KeyframesRegionView.h │ │ │ ├── MainRenderer.h │ │ │ ├── ModalView.h │ │ │ ├── Playhead.h │ │ │ ├── RegionHeaderView.h │ │ │ ├── RegionView.h │ │ │ ├── Selector.h │ │ │ ├── TimeControlView.h │ │ │ ├── TimeModifierView.h │ │ │ ├── TimeRuler.h │ │ │ ├── TimeRulerBar.h │ │ │ ├── TimeRulerHeader.h │ │ │ ├── TimelineDocument.h │ │ │ ├── TrackGroupView.h │ │ │ ├── TrackHeader.h │ │ │ ├── TrackHeaderGroup.h │ │ │ ├── TrackView.h │ │ │ ├── TracksClippedView.h │ │ │ ├── TracksPanel.h │ │ │ └── ofxGuiView.h │ └── src │ │ ├── Controller │ │ ├── BaseController.cpp │ │ ├── Interpolator.cpp │ │ ├── KeyframeCollectionController.cpp │ │ ├── KeyframeController.cpp │ │ ├── KeyframeRegionController.cpp │ │ ├── KeyframeTrackController.cpp │ │ ├── RegionController.cpp │ │ ├── TimeControl.cpp │ │ ├── TrackController.cpp │ │ ├── TrackGroupController.cpp │ │ └── TracksPanelController.cpp │ │ ├── Data │ │ ├── KeyframedData.cpp │ │ └── TimedData.cpp │ │ ├── Utils │ │ └── ConstVars.cpp │ │ └── View │ │ ├── BaseTrackView.cpp │ │ ├── KeyframeCollectionView.cpp │ │ ├── KeyframeTrackHeader.cpp │ │ ├── KeyframeTrackView.cpp │ │ ├── KeyframeView.cpp │ │ ├── KeyframesRegionView.cpp │ │ ├── MainRenderer.cpp │ │ ├── ModalView.cpp │ │ ├── Playhead.cpp │ │ ├── RegionHeaderView.cpp │ │ ├── RegionView.cpp │ │ ├── Selector.cpp │ │ ├── TimeControlView.cpp │ │ ├── TimeModifierView.cpp │ │ ├── TimeRuler.cpp │ │ ├── TimeRulerBar.cpp │ │ ├── TimeRulerHeader.cpp │ │ ├── TimelineDocument.cpp │ │ ├── TrackGroupView.cpp │ │ ├── TrackHeader.cpp │ │ ├── TrackHeaderGroup.cpp │ │ ├── TrackView.cpp │ │ ├── TracksClippedView.cpp │ │ ├── TracksPanel.cpp │ │ └── ofxGuiView.cpp ├── ofxMUI │ ├── include │ │ ├── ofx │ │ │ └── MUI │ │ │ │ ├── AutoReziseContainer.h │ │ │ │ ├── Axis.h │ │ │ │ ├── Button.h │ │ │ │ ├── ButtonGroup.h │ │ │ │ ├── ClippedView.h │ │ │ │ ├── Constants.h │ │ │ │ ├── Follower.h │ │ │ │ ├── Handles │ │ │ │ ├── BaseScrollHandle.h │ │ │ │ ├── ConstrainedGrabHandle.h │ │ │ │ ├── EdgeHandle.h │ │ │ │ └── ResizableHandle.h │ │ │ │ ├── Icon.h │ │ │ │ ├── Label.h │ │ │ │ ├── Margins.h │ │ │ │ ├── OrientedElement.h │ │ │ │ ├── Panel.h │ │ │ │ ├── ScaledView.h │ │ │ │ ├── Scope.h │ │ │ │ ├── Shadow.h │ │ │ │ ├── Slider.h │ │ │ │ ├── SliderGroup.h │ │ │ │ ├── Styles.h │ │ │ │ ├── Types.h │ │ │ │ ├── Utils.h │ │ │ │ ├── Widget.h │ │ │ │ ├── ZoomScrollbar.h │ │ │ │ ├── ZoomablePanel.h │ │ │ │ └── ofRectangleHelper.h │ │ └── ofxMUI.h │ └── src │ │ ├── AutoReziseContainer.cpp │ │ ├── Axis.cpp │ │ ├── Button.cpp │ │ ├── ButtonGroup.cpp │ │ ├── ClippedView.cpp │ │ ├── Constants.cpp │ │ ├── Follower.cpp │ │ ├── Handles │ │ ├── BaseScrollHandle.cpp │ │ ├── ConstrainedGrabHandle.cpp │ │ ├── EdgeHandle.cpp │ │ └── ResizableHandle.cpp │ │ ├── Icon.cpp │ │ ├── Label.cpp │ │ ├── Panel.cpp │ │ ├── Shadow.cpp │ │ ├── SliderGroup.cpp │ │ ├── Styles.cpp │ │ ├── Utils.cpp │ │ ├── Widget.cpp │ │ ├── ZoomScrollbar.cpp │ │ └── ZoomablePanel.cpp ├── ofxPointer │ ├── include │ │ └── ofx │ │ │ ├── PointerEvents.h │ │ │ ├── PointerEventsMacOS.h │ │ │ ├── PointerEventsiOS.h │ │ │ └── PointerStrokes.h │ ├── ofxPointer.h │ └── src │ │ ├── PointerEvents.cpp │ │ ├── PointerEventsMacOS.mm │ │ ├── PointerEventsiOS.mm │ │ └── PointerStrokes.cpp ├── ofxRange │ └── include │ │ └── ofRange.h └── ofxTimecode │ ├── README.md │ ├── include │ └── ofxTimecode.h │ └── src │ └── ofxTimecode.cpp ├── license.md └── src └── ofxLineaDeTiempo.h /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/README.md -------------------------------------------------------------------------------- /addon_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/addon_config.mk -------------------------------------------------------------------------------- /assets/fonts/FiraMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/assets/fonts/FiraMono-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/assets/fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /example-allParameterTypes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-allParameterTypes/Makefile -------------------------------------------------------------------------------- /example-allParameterTypes/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-allParameterTypes/Project.xcconfig -------------------------------------------------------------------------------- /example-allParameterTypes/addons.make: -------------------------------------------------------------------------------- 1 | ofxGui 2 | ofxLineaDeTiempo 3 | -------------------------------------------------------------------------------- /example-allParameterTypes/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-allParameterTypes/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-allParameterTypes/config.make -------------------------------------------------------------------------------- /example-allParameterTypes/example-allParameterTypes.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-allParameterTypes/example-allParameterTypes.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-allParameterTypes/example-allParameterTypes.xcodeproj/xcshareddata/xcschemes/example-allParameterTypes AppStore.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-allParameterTypes/example-allParameterTypes.xcodeproj/xcshareddata/xcschemes/example-allParameterTypes AppStore.xcscheme -------------------------------------------------------------------------------- /example-allParameterTypes/example-allParameterTypes.xcodeproj/xcshareddata/xcschemes/example-allParameterTypes Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-allParameterTypes/example-allParameterTypes.xcodeproj/xcshareddata/xcschemes/example-allParameterTypes Debug.xcscheme -------------------------------------------------------------------------------- /example-allParameterTypes/example-allParameterTypes.xcodeproj/xcshareddata/xcschemes/example-allParameterTypes Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-allParameterTypes/example-allParameterTypes.xcodeproj/xcshareddata/xcschemes/example-allParameterTypes Release.xcscheme -------------------------------------------------------------------------------- /example-allParameterTypes/example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-allParameterTypes/example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-allParameterTypes/example.xcodeproj/xcshareddata/xcschemes/example Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-allParameterTypes/example.xcodeproj/xcshareddata/xcschemes/example Debug.xcscheme -------------------------------------------------------------------------------- /example-allParameterTypes/example.xcodeproj/xcshareddata/xcschemes/example Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-allParameterTypes/example.xcodeproj/xcshareddata/xcschemes/example Release.xcscheme -------------------------------------------------------------------------------- /example-allParameterTypes/of.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-allParameterTypes/of.entitlements -------------------------------------------------------------------------------- /example-allParameterTypes/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-allParameterTypes/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example-allParameterTypes/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-allParameterTypes/src/main.cpp -------------------------------------------------------------------------------- /example-allParameterTypes/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-allParameterTypes/src/ofApp.cpp -------------------------------------------------------------------------------- /example-allParameterTypes/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-allParameterTypes/src/ofApp.h -------------------------------------------------------------------------------- /example-basic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-basic/Makefile -------------------------------------------------------------------------------- /example-basic/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-basic/Project.xcconfig -------------------------------------------------------------------------------- /example-basic/addons.make: -------------------------------------------------------------------------------- 1 | ofxGui 2 | ofxLineaDeTiempo 3 | -------------------------------------------------------------------------------- /example-basic/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-basic/bin/data/timelineData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-basic/bin/data/timelineData.json -------------------------------------------------------------------------------- /example-basic/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-basic/config.make -------------------------------------------------------------------------------- /example-basic/example-basic.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-basic/example-basic.sln -------------------------------------------------------------------------------- /example-basic/example-basic.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-basic/example-basic.vcxproj -------------------------------------------------------------------------------- /example-basic/example-basic.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-basic/example-basic.vcxproj.filters -------------------------------------------------------------------------------- /example-basic/example-basic.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-basic/example-basic.vcxproj.user -------------------------------------------------------------------------------- /example-basic/example-basic.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-basic/example-basic.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-basic/example-basic.xcodeproj/xcshareddata/xcschemes/example-basic Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-basic/example-basic.xcodeproj/xcshareddata/xcschemes/example-basic Debug.xcscheme -------------------------------------------------------------------------------- /example-basic/example-basic.xcodeproj/xcshareddata/xcschemes/example-basic Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-basic/example-basic.xcodeproj/xcshareddata/xcschemes/example-basic Release.xcscheme -------------------------------------------------------------------------------- /example-basic/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-basic/icon.rc -------------------------------------------------------------------------------- /example-basic/of.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-basic/of.entitlements -------------------------------------------------------------------------------- /example-basic/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-basic/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example-basic/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-basic/src/main.cpp -------------------------------------------------------------------------------- /example-basic/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-basic/src/ofApp.cpp -------------------------------------------------------------------------------- /example-basic/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-basic/src/ofApp.h -------------------------------------------------------------------------------- /example-colorSchemeAndParametersAdjustment/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-colorSchemeAndParametersAdjustment/Makefile -------------------------------------------------------------------------------- /example-colorSchemeAndParametersAdjustment/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-colorSchemeAndParametersAdjustment/Project.xcconfig -------------------------------------------------------------------------------- /example-colorSchemeAndParametersAdjustment/addons.make: -------------------------------------------------------------------------------- 1 | ofxGui 2 | ofxLineaDeTiempo 3 | -------------------------------------------------------------------------------- /example-colorSchemeAndParametersAdjustment/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-colorSchemeAndParametersAdjustment/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-colorSchemeAndParametersAdjustment/config.make -------------------------------------------------------------------------------- /example-colorSchemeAndParametersAdjustment/example-colorSchemeAndParametersAdjustment.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-colorSchemeAndParametersAdjustment/example-colorSchemeAndParametersAdjustment.sln -------------------------------------------------------------------------------- /example-colorSchemeAndParametersAdjustment/example-colorSchemeAndParametersAdjustment.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-colorSchemeAndParametersAdjustment/example-colorSchemeAndParametersAdjustment.vcxproj -------------------------------------------------------------------------------- /example-colorSchemeAndParametersAdjustment/example-colorSchemeAndParametersAdjustment.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-colorSchemeAndParametersAdjustment/example-colorSchemeAndParametersAdjustment.vcxproj.filters -------------------------------------------------------------------------------- /example-colorSchemeAndParametersAdjustment/example-colorSchemeAndParametersAdjustment.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-colorSchemeAndParametersAdjustment/example-colorSchemeAndParametersAdjustment.vcxproj.user -------------------------------------------------------------------------------- /example-colorSchemeAndParametersAdjustment/example-colorSchemeAndParametersAdjustment.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-colorSchemeAndParametersAdjustment/example-colorSchemeAndParametersAdjustment.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-colorSchemeAndParametersAdjustment/example-colorSchemeAndParametersAdjustment.xcodeproj/xcshareddata/xcschemes/example-colorSchemeAndParametersAdjustment Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-colorSchemeAndParametersAdjustment/example-colorSchemeAndParametersAdjustment.xcodeproj/xcshareddata/xcschemes/example-colorSchemeAndParametersAdjustment Debug.xcscheme -------------------------------------------------------------------------------- /example-colorSchemeAndParametersAdjustment/example-colorSchemeAndParametersAdjustment.xcodeproj/xcshareddata/xcschemes/example-colorSchemeAndParametersAdjustment Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-colorSchemeAndParametersAdjustment/example-colorSchemeAndParametersAdjustment.xcodeproj/xcshareddata/xcschemes/example-colorSchemeAndParametersAdjustment Release.xcscheme -------------------------------------------------------------------------------- /example-colorSchemeAndParametersAdjustment/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-colorSchemeAndParametersAdjustment/icon.rc -------------------------------------------------------------------------------- /example-colorSchemeAndParametersAdjustment/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-colorSchemeAndParametersAdjustment/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example-colorSchemeAndParametersAdjustment/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-colorSchemeAndParametersAdjustment/src/main.cpp -------------------------------------------------------------------------------- /example-colorSchemeAndParametersAdjustment/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-colorSchemeAndParametersAdjustment/src/ofApp.cpp -------------------------------------------------------------------------------- /example-colorSchemeAndParametersAdjustment/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-colorSchemeAndParametersAdjustment/src/ofApp.h -------------------------------------------------------------------------------- /example-multiWindowOneApp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-multiWindowOneApp/Makefile -------------------------------------------------------------------------------- /example-multiWindowOneApp/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-multiWindowOneApp/Project.xcconfig -------------------------------------------------------------------------------- /example-multiWindowOneApp/addons.make: -------------------------------------------------------------------------------- 1 | ofxGui 2 | ofxLineaDeTiempo 3 | -------------------------------------------------------------------------------- /example-multiWindowOneApp/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-multiWindowOneApp/bin/data/timelineData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-multiWindowOneApp/bin/data/timelineData.json -------------------------------------------------------------------------------- /example-multiWindowOneApp/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-multiWindowOneApp/config.make -------------------------------------------------------------------------------- /example-multiWindowOneApp/example-multiWindowOneApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-multiWindowOneApp/example-multiWindowOneApp.sln -------------------------------------------------------------------------------- /example-multiWindowOneApp/example-multiWindowOneApp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-multiWindowOneApp/example-multiWindowOneApp.vcxproj -------------------------------------------------------------------------------- /example-multiWindowOneApp/example-multiWindowOneApp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-multiWindowOneApp/example-multiWindowOneApp.vcxproj.filters -------------------------------------------------------------------------------- /example-multiWindowOneApp/example-multiWindowOneApp.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-multiWindowOneApp/example-multiWindowOneApp.vcxproj.user -------------------------------------------------------------------------------- /example-multiWindowOneApp/example-multiWindowOneApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-multiWindowOneApp/example-multiWindowOneApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-multiWindowOneApp/example-multiWindowOneApp.xcodeproj/xcshareddata/xcschemes/example-multiWindowOneApp Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-multiWindowOneApp/example-multiWindowOneApp.xcodeproj/xcshareddata/xcschemes/example-multiWindowOneApp Debug.xcscheme -------------------------------------------------------------------------------- /example-multiWindowOneApp/example-multiWindowOneApp.xcodeproj/xcshareddata/xcschemes/example-multiWindowOneApp Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-multiWindowOneApp/example-multiWindowOneApp.xcodeproj/xcshareddata/xcschemes/example-multiWindowOneApp Release.xcscheme -------------------------------------------------------------------------------- /example-multiWindowOneApp/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-multiWindowOneApp/icon.rc -------------------------------------------------------------------------------- /example-multiWindowOneApp/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-multiWindowOneApp/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example-multiWindowOneApp/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-multiWindowOneApp/src/main.cpp -------------------------------------------------------------------------------- /example-multiWindowOneApp/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-multiWindowOneApp/src/ofApp.cpp -------------------------------------------------------------------------------- /example-multiWindowOneApp/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/example-multiWindowOneApp/src/ofApp.h -------------------------------------------------------------------------------- /imgs/COSALogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/imgs/COSALogo.png -------------------------------------------------------------------------------- /libs/ofxDOM/include/ofx/DOM/CapturedPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxDOM/include/ofx/DOM/CapturedPointer.h -------------------------------------------------------------------------------- /libs/ofxDOM/include/ofx/DOM/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxDOM/include/ofx/DOM/Document.h -------------------------------------------------------------------------------- /libs/ofxDOM/include/ofx/DOM/Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxDOM/include/ofx/DOM/Element.h -------------------------------------------------------------------------------- /libs/ofxDOM/include/ofx/DOM/EventTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxDOM/include/ofx/DOM/EventTarget.h -------------------------------------------------------------------------------- /libs/ofxDOM/include/ofx/DOM/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxDOM/include/ofx/DOM/Events.h -------------------------------------------------------------------------------- /libs/ofxDOM/include/ofx/DOM/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxDOM/include/ofx/DOM/Exceptions.h -------------------------------------------------------------------------------- /libs/ofxDOM/include/ofx/DOM/Layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxDOM/include/ofx/DOM/Layout.h -------------------------------------------------------------------------------- /libs/ofxDOM/include/ofx/DOM/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxDOM/include/ofx/DOM/Node.h -------------------------------------------------------------------------------- /libs/ofxDOM/include/ofx/DOM/NodeEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxDOM/include/ofx/DOM/NodeEvents.h -------------------------------------------------------------------------------- /libs/ofxDOM/include/ofx/DOM/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxDOM/include/ofx/DOM/Types.h -------------------------------------------------------------------------------- /libs/ofxDOM/include/ofxDOM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxDOM/include/ofxDOM.h -------------------------------------------------------------------------------- /libs/ofxDOM/src/CapturedPointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxDOM/src/CapturedPointer.cpp -------------------------------------------------------------------------------- /libs/ofxDOM/src/Document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxDOM/src/Document.cpp -------------------------------------------------------------------------------- /libs/ofxDOM/src/Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxDOM/src/Element.cpp -------------------------------------------------------------------------------- /libs/ofxDOM/src/Events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxDOM/src/Events.cpp -------------------------------------------------------------------------------- /libs/ofxDOM/src/Exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxDOM/src/Exceptions.cpp -------------------------------------------------------------------------------- /libs/ofxDOM/src/Layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxDOM/src/Layout.cpp -------------------------------------------------------------------------------- /libs/ofxDOM/src/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxDOM/src/Node.cpp -------------------------------------------------------------------------------- /libs/ofxDOM/src/NodeEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxDOM/src/NodeEvents.cpp -------------------------------------------------------------------------------- /libs/ofxDOM/src/Types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxDOM/src/Types.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/BaseTypes/AbstractSerializable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/BaseTypes/AbstractSerializable.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/BaseTypes/BaseHasCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/BaseTypes/BaseHasCollection.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/BaseTypes/BaseSelectable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/BaseTypes/BaseSelectable.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/BaseTypes/NamedConstPointerCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/BaseTypes/NamedConstPointerCollection.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Controller/BaseController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Controller/BaseController.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Controller/Interpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Controller/Interpolator.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Controller/KeyframeCollectionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Controller/KeyframeCollectionController.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Controller/KeyframeController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Controller/KeyframeController.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Controller/KeyframeRegionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Controller/KeyframeRegionController.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Controller/KeyframeTrackController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Controller/KeyframeTrackController.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Controller/RegionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Controller/RegionController.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Controller/TimeControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Controller/TimeControl.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Controller/TrackController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Controller/TrackController.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Controller/TrackGroupController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Controller/TrackGroupController.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Controller/TracksPanelController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Controller/TracksPanelController.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Data/KeyframedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Data/KeyframedData.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Data/TimedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Data/TimedData.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Data/jsonSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Data/jsonSerializer.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Utils/CollectionHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Utils/CollectionHelper.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Utils/ConstVars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Utils/ConstVars.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Utils/FontUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Utils/FontUtils.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Utils/ParamHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Utils/ParamHelper.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Utils/ofxTypeTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/Utils/ofxTypeTraits.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/BaseTrackView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/BaseTrackView.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/KeyframeCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/KeyframeCollectionView.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/KeyframeTrackHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/KeyframeTrackHeader.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/KeyframeTrackView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/KeyframeTrackView.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/KeyframeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/KeyframeView.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/KeyframesRegionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/KeyframesRegionView.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/MainRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/MainRenderer.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/ModalView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/ModalView.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/Playhead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/Playhead.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/RegionHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/RegionHeaderView.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/RegionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/RegionView.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/Selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/Selector.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/TimeControlView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/TimeControlView.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/TimeModifierView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/TimeModifierView.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/TimeRuler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/TimeRuler.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/TimeRulerBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/TimeRulerBar.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/TimeRulerHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/TimeRulerHeader.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/TimelineDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/TimelineDocument.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/TrackGroupView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/TrackGroupView.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/TrackHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/TrackHeader.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/TrackHeaderGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/TrackHeaderGroup.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/TrackView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/TrackView.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/TracksClippedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/TracksClippedView.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/TracksPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/TracksPanel.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/ofxGuiView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/include/ofx/LineaDeTiempo/View/ofxGuiView.h -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/Controller/BaseController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/Controller/BaseController.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/Controller/Interpolator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/Controller/Interpolator.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/Controller/KeyframeCollectionController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/Controller/KeyframeCollectionController.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/Controller/KeyframeController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/Controller/KeyframeController.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/Controller/KeyframeRegionController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/Controller/KeyframeRegionController.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/Controller/KeyframeTrackController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/Controller/KeyframeTrackController.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/Controller/RegionController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/Controller/RegionController.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/Controller/TimeControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/Controller/TimeControl.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/Controller/TrackController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/Controller/TrackController.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/Controller/TrackGroupController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/Controller/TrackGroupController.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/Controller/TracksPanelController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/Controller/TracksPanelController.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/Data/KeyframedData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/Data/KeyframedData.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/Data/TimedData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/Data/TimedData.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/Utils/ConstVars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/Utils/ConstVars.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/View/BaseTrackView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/View/BaseTrackView.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/View/KeyframeCollectionView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/View/KeyframeCollectionView.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/View/KeyframeTrackHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/View/KeyframeTrackHeader.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/View/KeyframeTrackView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/View/KeyframeTrackView.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/View/KeyframeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/View/KeyframeView.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/View/KeyframesRegionView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/View/KeyframesRegionView.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/View/MainRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/View/MainRenderer.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/View/ModalView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/View/ModalView.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/View/Playhead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/View/Playhead.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/View/RegionHeaderView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/View/RegionHeaderView.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/View/RegionView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/View/RegionView.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/View/Selector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/View/Selector.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/View/TimeControlView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/View/TimeControlView.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/View/TimeModifierView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/View/TimeModifierView.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/View/TimeRuler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/View/TimeRuler.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/View/TimeRulerBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/View/TimeRulerBar.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/View/TimeRulerHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/View/TimeRulerHeader.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/View/TimelineDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/View/TimelineDocument.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/View/TrackGroupView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/View/TrackGroupView.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/View/TrackHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/View/TrackHeader.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/View/TrackHeaderGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/View/TrackHeaderGroup.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/View/TrackView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/View/TrackView.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/View/TracksClippedView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/View/TracksClippedView.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/View/TracksPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/View/TracksPanel.cpp -------------------------------------------------------------------------------- /libs/ofxLineaDeTiempo/src/View/ofxGuiView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxLineaDeTiempo/src/View/ofxGuiView.cpp -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/AutoReziseContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/AutoReziseContainer.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/Axis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/Axis.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/Button.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/ButtonGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/ButtonGroup.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/ClippedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/ClippedView.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/Constants.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/Follower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/Follower.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/Handles/BaseScrollHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/Handles/BaseScrollHandle.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/Handles/ConstrainedGrabHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/Handles/ConstrainedGrabHandle.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/Handles/EdgeHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/Handles/EdgeHandle.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/Handles/ResizableHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/Handles/ResizableHandle.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/Icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/Icon.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/Label.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/Margins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/Margins.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/OrientedElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/OrientedElement.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/Panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/Panel.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/ScaledView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/ScaledView.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/Scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/Scope.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/Shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/Shadow.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/Slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/Slider.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/SliderGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/SliderGroup.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/Styles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/Styles.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/Types.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/Utils.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/Widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/Widget.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/ZoomScrollbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/ZoomScrollbar.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/ZoomablePanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/ZoomablePanel.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofx/MUI/ofRectangleHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofx/MUI/ofRectangleHelper.h -------------------------------------------------------------------------------- /libs/ofxMUI/include/ofxMUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/include/ofxMUI.h -------------------------------------------------------------------------------- /libs/ofxMUI/src/AutoReziseContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/src/AutoReziseContainer.cpp -------------------------------------------------------------------------------- /libs/ofxMUI/src/Axis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/src/Axis.cpp -------------------------------------------------------------------------------- /libs/ofxMUI/src/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/src/Button.cpp -------------------------------------------------------------------------------- /libs/ofxMUI/src/ButtonGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/src/ButtonGroup.cpp -------------------------------------------------------------------------------- /libs/ofxMUI/src/ClippedView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/src/ClippedView.cpp -------------------------------------------------------------------------------- /libs/ofxMUI/src/Constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/src/Constants.cpp -------------------------------------------------------------------------------- /libs/ofxMUI/src/Follower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/src/Follower.cpp -------------------------------------------------------------------------------- /libs/ofxMUI/src/Handles/BaseScrollHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/src/Handles/BaseScrollHandle.cpp -------------------------------------------------------------------------------- /libs/ofxMUI/src/Handles/ConstrainedGrabHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/src/Handles/ConstrainedGrabHandle.cpp -------------------------------------------------------------------------------- /libs/ofxMUI/src/Handles/EdgeHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/src/Handles/EdgeHandle.cpp -------------------------------------------------------------------------------- /libs/ofxMUI/src/Handles/ResizableHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/src/Handles/ResizableHandle.cpp -------------------------------------------------------------------------------- /libs/ofxMUI/src/Icon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/src/Icon.cpp -------------------------------------------------------------------------------- /libs/ofxMUI/src/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/src/Label.cpp -------------------------------------------------------------------------------- /libs/ofxMUI/src/Panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/src/Panel.cpp -------------------------------------------------------------------------------- /libs/ofxMUI/src/Shadow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/src/Shadow.cpp -------------------------------------------------------------------------------- /libs/ofxMUI/src/SliderGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/src/SliderGroup.cpp -------------------------------------------------------------------------------- /libs/ofxMUI/src/Styles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/src/Styles.cpp -------------------------------------------------------------------------------- /libs/ofxMUI/src/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/src/Utils.cpp -------------------------------------------------------------------------------- /libs/ofxMUI/src/Widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/src/Widget.cpp -------------------------------------------------------------------------------- /libs/ofxMUI/src/ZoomScrollbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/src/ZoomScrollbar.cpp -------------------------------------------------------------------------------- /libs/ofxMUI/src/ZoomablePanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxMUI/src/ZoomablePanel.cpp -------------------------------------------------------------------------------- /libs/ofxPointer/include/ofx/PointerEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxPointer/include/ofx/PointerEvents.h -------------------------------------------------------------------------------- /libs/ofxPointer/include/ofx/PointerEventsMacOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxPointer/include/ofx/PointerEventsMacOS.h -------------------------------------------------------------------------------- /libs/ofxPointer/include/ofx/PointerEventsiOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxPointer/include/ofx/PointerEventsiOS.h -------------------------------------------------------------------------------- /libs/ofxPointer/include/ofx/PointerStrokes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxPointer/include/ofx/PointerStrokes.h -------------------------------------------------------------------------------- /libs/ofxPointer/ofxPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxPointer/ofxPointer.h -------------------------------------------------------------------------------- /libs/ofxPointer/src/PointerEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxPointer/src/PointerEvents.cpp -------------------------------------------------------------------------------- /libs/ofxPointer/src/PointerEventsMacOS.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxPointer/src/PointerEventsMacOS.mm -------------------------------------------------------------------------------- /libs/ofxPointer/src/PointerEventsiOS.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxPointer/src/PointerEventsiOS.mm -------------------------------------------------------------------------------- /libs/ofxPointer/src/PointerStrokes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxPointer/src/PointerStrokes.cpp -------------------------------------------------------------------------------- /libs/ofxRange/include/ofRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxRange/include/ofRange.h -------------------------------------------------------------------------------- /libs/ofxTimecode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxTimecode/README.md -------------------------------------------------------------------------------- /libs/ofxTimecode/include/ofxTimecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxTimecode/include/ofxTimecode.h -------------------------------------------------------------------------------- /libs/ofxTimecode/src/ofxTimecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/libs/ofxTimecode/src/ofxTimecode.cpp -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/license.md -------------------------------------------------------------------------------- /src/ofxLineaDeTiempo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roymacdonald/ofxLineaDeTiempo/HEAD/src/ofxLineaDeTiempo.h --------------------------------------------------------------------------------