├── .github └── workflows │ ├── linux.yml │ ├── macos.yml │ ├── ubuntu.yml │ └── windows.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE.md ├── README.md └── src ├── app ├── CMakeLists.txt ├── GUI │ ├── BoxesList │ │ ├── boolpropertywidget.cpp │ │ ├── boolpropertywidget.h │ │ ├── boxscrollarea.cpp │ │ ├── boxscrollarea.h │ │ ├── boxscroller.cpp │ │ ├── boxscroller.h │ │ ├── boxscrollwidget.cpp │ │ ├── boxscrollwidget.h │ │ ├── boxsinglewidget.cpp │ │ ├── boxsinglewidget.h │ │ ├── boxtargetwidget.cpp │ │ └── boxtargetwidget.h │ ├── Dialogs │ │ ├── animationtopaintdialog.cpp │ │ ├── animationtopaintdialog.h │ │ ├── dialogsinterfaceimpl.cpp │ │ └── dialogsinterfaceimpl.h │ ├── Expressions │ │ ├── expressiondialog.cpp │ │ ├── expressiondialog.h │ │ ├── expressioneditor.cpp │ │ ├── expressioneditor.h │ │ ├── expressionhighlighter.cpp │ │ └── expressionhighlighter.h │ ├── RenderWidgets │ │ ├── closablecontainer.cpp │ │ ├── closablecontainer.h │ │ ├── outputsettingsdialog.cpp │ │ ├── outputsettingsdialog.h │ │ ├── outputsettingsdisplaywidget.cpp │ │ ├── outputsettingsdisplaywidget.h │ │ ├── outputsettingsprofilesdialog.cpp │ │ ├── outputsettingsprofilesdialog.h │ │ ├── renderinstancewidget.cpp │ │ ├── renderinstancewidget.h │ │ ├── rendersettingsdialog.cpp │ │ ├── rendersettingsdialog.h │ │ ├── rendersettingsdisplaywidget.cpp │ │ ├── rendersettingsdisplaywidget.h │ │ ├── renderwidget.cpp │ │ └── renderwidget.h │ ├── Settings │ │ ├── generalsettingswidget.cpp │ │ ├── generalsettingswidget.h │ │ ├── pluginssettingswidget.cpp │ │ ├── pluginssettingswidget.h │ │ ├── settingsdialog.cpp │ │ ├── settingsdialog.h │ │ ├── timelinesettingswidget.cpp │ │ └── timelinesettingswidget.h │ ├── animationdockwidget.cpp │ ├── animationdockwidget.h │ ├── canvasbasewrappernode.cpp │ ├── canvasbasewrappernode.h │ ├── canvaswindow.cpp │ ├── canvaswindow.h │ ├── canvaswindowevents.cpp │ ├── canvaswrappernode.cpp │ ├── canvaswrappernode.h │ ├── effectactions.cpp │ ├── ekeyfilter.cpp │ ├── ekeyfilter.h │ ├── ewidgetsimpl.cpp │ ├── ewidgetsimpl.h │ ├── extraactions.cpp │ ├── graphboxeslist.cpp │ ├── keysview.cpp │ ├── keysview.h │ ├── layouthandler.cpp │ ├── layouthandler.h │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── menu.cpp │ ├── timelinebasewrappernode.cpp │ ├── timelinebasewrappernode.h │ ├── timelinedockwidget.cpp │ ├── timelinedockwidget.h │ ├── timelinehighlightwidget.cpp │ ├── timelinehighlightwidget.h │ ├── timelinewidget.cpp │ ├── timelinewidget.h │ ├── timelinewrappernode.cpp │ ├── timelinewrappernode.h │ ├── window.cpp │ └── window.h ├── app.desktop.in ├── appdata.xml.in ├── effectsloader.cpp ├── effectsloader.h ├── eimporters.cpp ├── eimporters.h ├── evfileio.cpp ├── friction.iss ├── friction.qss ├── friction.rc.in ├── main.cpp ├── memorychecker.cpp ├── memorychecker.h ├── memoryhandler.cpp ├── memoryhandler.h ├── meta.xml.in ├── pixmaps │ ├── Checkbox_checked_disabled.png │ ├── Checkbox_checked_normal.png │ ├── crosshair_closed.png │ ├── cursor-adj-s.xpm │ ├── cursor-crosshairs.xpm │ ├── cursor-ellipse.xpm │ ├── cursor-eraser.xpm │ ├── cursor-node.xpm │ ├── cursor-pen.xpm │ ├── cursor-pencil.xpm │ ├── cursor-rect.xpm │ ├── cursor-text-insert.xpm │ ├── cursor-text.xpm │ ├── cursor_add.png │ ├── cursor_arrow.png │ ├── cursor_arrow_forbidden.png │ ├── cursor_color_picker.png │ ├── cursor_crosshair_open.png │ ├── cursor_crosshair_precise_open.png │ ├── cursor_forbidden_everywhere.png │ ├── cursor_hand_closed.png │ ├── cursor_hand_open.png │ ├── cursor_move_n_s.png │ ├── cursor_move_ne_sw.png │ ├── cursor_move_nw_se.png │ ├── cursor_move_w_e.png │ ├── cursor_pencil.png │ ├── down-arrow.png │ ├── enve.ico │ └── up-arrow.png ├── presets │ └── render │ │ ├── 001-friction-preset-mp4-h264.conf │ │ ├── 002-friction-preset-mp4-h264-mp3.conf │ │ ├── 003-friction-preset-prores-444.conf │ │ ├── 004-friction-preset-prores-444-aac.conf │ │ ├── 005-friction-preset-png.conf │ │ └── 006-friction-preset-tiff.conf ├── renderhandler.cpp ├── renderhandler.h ├── resources.qrc ├── svgo.config.js └── xdg │ ├── friction.desktop │ └── friction.xml ├── cmake ├── friction-common.cmake ├── friction-ffmpeg.cmake ├── friction-meta.cmake ├── friction-quazip.cmake └── friction-version.cmake ├── core ├── Animators │ ├── SmartPath │ │ ├── listofnodes.cpp │ │ ├── listofnodes.h │ │ ├── node.cpp │ │ ├── node.h │ │ ├── nodelist.cpp │ │ ├── nodelist.h │ │ ├── smartpath.cpp │ │ ├── smartpath.h │ │ ├── smartpathanimator.cpp │ │ ├── smartpathanimator.h │ │ ├── smartpathanimatoractions.cpp │ │ ├── smartpathcollection.cpp │ │ └── smartpathcollection.h │ ├── animator.cpp │ ├── animator.h │ ├── animatort.cpp │ ├── animatort.h │ ├── basedanimatort.cpp │ ├── basedanimatort.h │ ├── basedkeyt.cpp │ ├── basedkeyt.h │ ├── boolanimator.cpp │ ├── boolanimator.h │ ├── brushsettingsanimator.cpp │ ├── brushsettingsanimator.h │ ├── clampedpoint.cpp │ ├── clampedpoint.h │ ├── clampedvalue.cpp │ ├── clampedvalue.h │ ├── coloranimator.cpp │ ├── coloranimator.h │ ├── complexanimator.cpp │ ├── complexanimator.h │ ├── complexkey.cpp │ ├── complexkey.h │ ├── customproperties.cpp │ ├── customproperties.h │ ├── dynamiccomplexanimator.h │ ├── eboxorsound.cpp │ ├── eboxorsound.h │ ├── eeffect.cpp │ ├── eeffect.h │ ├── gradient.cpp │ ├── gradient.h │ ├── gradientpoints.cpp │ ├── gradientpoints.h │ ├── graphanimator.cpp │ ├── graphanimator.h │ ├── graphanimatort.cpp │ ├── graphanimatort.h │ ├── graphkey.cpp │ ├── graphkey.h │ ├── graphkeyt.cpp │ ├── graphkeyt.h │ ├── intanimator.cpp │ ├── intanimator.h │ ├── interoptimalanimatort.h │ ├── interpolationanimator.cpp │ ├── interpolationanimator.h │ ├── interpolationanimatort.cpp │ ├── interpolationanimatort.h │ ├── interpolationkey.cpp │ ├── interpolationkey.h │ ├── interpolationkeyt.cpp │ ├── interpolationkeyt.h │ ├── key.cpp │ ├── key.h │ ├── keyt.cpp │ ├── keyt.h │ ├── outlinesettingsanimator.cpp │ ├── outlinesettingsanimator.h │ ├── overlappingkeylist.cpp │ ├── overlappingkeylist.h │ ├── overlappingkeys.cpp │ ├── overlappingkeys.h │ ├── paintsettingsanimator.cpp │ ├── paintsettingsanimator.h │ ├── qcubicsegment1danimator.cpp │ ├── qcubicsegment1danimator.h │ ├── qpointfanimator.cpp │ ├── qpointfanimator.h │ ├── qrealanimator.cpp │ ├── qrealanimator.h │ ├── qrealkey.cpp │ ├── qrealkey.h │ ├── qrealpoint.cpp │ ├── qrealpoint.h │ ├── qrealsnapshot.cpp │ ├── qrealsnapshot.h │ ├── qrealvalueeffect.cpp │ ├── qrealvalueeffect.h │ ├── qstringanimator.cpp │ ├── qstringanimator.h │ ├── sceneboundgradient.cpp │ ├── sceneboundgradient.h │ ├── staticcomplexanimator.cpp │ ├── staticcomplexanimator.h │ ├── steppedanimator.cpp │ ├── steppedanimator.h │ ├── texteffectcollection.cpp │ ├── texteffectcollection.h │ ├── transformanimator.cpp │ └── transformanimator.h ├── BlendEffects │ ├── blendeffect.cpp │ ├── blendeffect.h │ ├── blendeffectboxshadow.cpp │ ├── blendeffectboxshadow.h │ ├── blendeffectcollection.cpp │ ├── blendeffectcollection.h │ ├── blendeffectmenucreator.cpp │ ├── blendeffectmenucreator.h │ ├── moveblendeffect.cpp │ ├── moveblendeffect.h │ ├── targetedblendeffect.cpp │ └── targetedblendeffect.h ├── Boxes │ ├── animationbox.cpp │ ├── animationbox.h │ ├── boundingbox.cpp │ ├── boundingbox.h │ ├── boxrendercontainer.cpp │ ├── boxrendercontainer.h │ ├── boxrenderdata.cpp │ ├── boxrenderdata.h │ ├── boxwithpatheffects.cpp │ ├── boxwithpatheffects.h │ ├── canvasrenderdata.cpp │ ├── canvasrenderdata.h │ ├── circle.cpp │ ├── circle.h │ ├── containerbox.cpp │ ├── containerbox.h │ ├── customboxcreator.h │ ├── ecustombox.cpp │ ├── ecustombox.h │ ├── effectsrenderer.cpp │ ├── effectsrenderer.h │ ├── effectsubtaskspawner.cpp │ ├── effectsubtaskspawner.h │ ├── externallinkboxt.h │ ├── frameremapping.cpp │ ├── frameremapping.h │ ├── imagebox.cpp │ ├── imagebox.h │ ├── imagerenderdata.cpp │ ├── imagerenderdata.h │ ├── imagesequencebox.cpp │ ├── imagesequencebox.h │ ├── internallinkbox.cpp │ ├── internallinkbox.h │ ├── internallinkboxbase.h │ ├── internallinkcanvas.cpp │ ├── internallinkcanvas.h │ ├── internallinkgroupbox.cpp │ ├── internallinkgroupbox.h │ ├── layerboxrenderdata.cpp │ ├── layerboxrenderdata.h │ ├── linkcanvasrenderdata.cpp │ ├── linkcanvasrenderdata.h │ ├── nullobject.cpp │ ├── nullobject.h │ ├── pathbox.cpp │ ├── pathbox.h │ ├── pathboxrenderdata.cpp │ ├── pathboxrenderdata.h │ ├── patheffectsmenu.cpp │ ├── patheffectsmenu.h │ ├── rectangle.cpp │ ├── rectangle.h │ ├── renderdatahandler.cpp │ ├── renderdatahandler.h │ ├── smartvectorpath.cpp │ ├── smartvectorpath.h │ ├── svglinkbox.cpp │ ├── svglinkbox.h │ ├── textbox.cpp │ ├── textbox.h │ ├── textboxrenderdata.cpp │ ├── textboxrenderdata.h │ ├── videobox.cpp │ └── videobox.h ├── CMakeLists.txt ├── CacheHandlers │ ├── cachecontainer.cpp │ ├── cachecontainer.h │ ├── hddcachablecachehandler.cpp │ ├── hddcachablecachehandler.h │ ├── hddcachablecont.cpp │ ├── hddcachablecont.h │ ├── hddcachablerangecont.cpp │ ├── hddcachablerangecont.h │ ├── imagecachecontainer.cpp │ ├── imagecachecontainer.h │ ├── imagedatahandler.cpp │ ├── imagedatahandler.h │ ├── samples.cpp │ ├── samples.h │ ├── sceneframecontainer.cpp │ ├── sceneframecontainer.h │ ├── soundcachecontainer.cpp │ ├── soundcachecontainer.h │ ├── soundcachehandler.cpp │ ├── soundcachehandler.h │ ├── soundtmpfilehandlers.cpp │ ├── soundtmpfilehandlers.h │ ├── tmpdeleter.cpp │ ├── tmpdeleter.h │ ├── tmploader.cpp │ ├── tmploader.h │ ├── tmpsaver.cpp │ ├── tmpsaver.h │ ├── usedrange.cpp │ ├── usedrange.h │ └── usepointer.h ├── Expressions │ ├── expression.cpp │ ├── expression.h │ ├── expressionpresets.cpp │ ├── expressionpresets.h │ ├── framebinding.cpp │ ├── framebinding.h │ ├── presets │ │ ├── clamp.fexpr │ │ ├── copyX.fexpr │ │ ├── copyY.fexpr │ │ ├── easeInBack.fexpr │ │ ├── easeInBounce.fexpr │ │ ├── easeInCirc.fexpr │ │ ├── easeInCubic.fexpr │ │ ├── easeInElastic.fexpr │ │ ├── easeInExpo.fexpr │ │ ├── easeInOutBack.fexpr │ │ ├── easeInOutBounce.fexpr │ │ ├── easeInOutCirc.fexpr │ │ ├── easeInOutCubic.fexpr │ │ ├── easeInOutElastic.fexpr │ │ ├── easeInOutExpo.fexpr │ │ ├── easeInOutQuad.fexpr │ │ ├── easeInOutQuart.fexpr │ │ ├── easeInOutQuint.fexpr │ │ ├── easeInOutSine.fexpr │ │ ├── easeInQuad.fexpr │ │ ├── easeInQuart.fexpr │ │ ├── easeInQuint.fexpr │ │ ├── easeInSine.fexpr │ │ ├── easeOutBack.fexpr │ │ ├── easeOutBounce.fexpr │ │ ├── easeOutCirc.fexpr │ │ ├── easeOutCubic.fexpr │ │ ├── easeOutElastic.fexpr │ │ ├── easeOutExpo.fexpr │ │ ├── easeOutQuad.fexpr │ │ ├── easeOutQuart.fexpr │ │ ├── easeOutQuint.fexpr │ │ ├── easeOutSine.fexpr │ │ ├── lerp.fexpr │ │ ├── noise.fexpr │ │ ├── orbitX.fexpr │ │ ├── orbitY.fexpr │ │ ├── oscillation.fexpr │ │ ├── rotation.fexpr │ │ ├── time.fexpr │ │ ├── trackObject.fexpr │ │ ├── wave.fexpr │ │ └── wiggle.fexpr │ ├── propertybinding.cpp │ ├── propertybinding.h │ ├── propertybindingbase.cpp │ ├── propertybindingbase.h │ ├── propertybindingparser.cpp │ ├── propertybindingparser.h │ ├── scenebinding.cpp │ ├── scenebinding.h │ ├── valuebinding.cpp │ └── valuebinding.h ├── FileCacheHandlers │ ├── animationcachehandler.cpp │ ├── animationcachehandler.h │ ├── audiostreamsdata.cpp │ ├── audiostreamsdata.h │ ├── filecachehandler.cpp │ ├── filecachehandler.h │ ├── filedatacachehandler.cpp │ ├── filedatacachehandler.h │ ├── filehandlerobjref.cpp │ ├── filehandlerobjref.h │ ├── imagecachehandler.cpp │ ├── imagecachehandler.h │ ├── imagesequencecachehandler.cpp │ ├── imagesequencecachehandler.h │ ├── soundreader.cpp │ ├── soundreader.h │ ├── soundreaderformerger.cpp │ ├── soundreaderformerger.h │ ├── svgfilecachehandler.cpp │ ├── svgfilecachehandler.h │ ├── videocachehandler.cpp │ ├── videocachehandler.h │ ├── videoframeloader.cpp │ ├── videoframeloader.h │ ├── videostreamsdata.cpp │ └── videostreamsdata.h ├── GUI │ ├── boxeslistactionbutton.cpp │ ├── boxeslistactionbutton.h │ ├── coloranimatorbutton.cpp │ ├── coloranimatorbutton.h │ ├── dialogsinterface.cpp │ ├── dialogsinterface.h │ ├── edialogs.cpp │ ├── edialogs.h │ ├── ewidgets.cpp │ ├── ewidgets.h │ ├── global.cpp │ ├── global.h │ ├── propertynamedialog.cpp │ ├── propertynamedialog.h │ ├── sizesetter.cpp │ ├── sizesetter.h │ ├── valueinput.cpp │ └── valueinput.h ├── MovablePoints │ ├── animatedpoint.cpp │ ├── animatedpoint.h │ ├── boxpathpoint.cpp │ ├── boxpathpoint.h │ ├── gradientpoint.cpp │ ├── gradientpoint.h │ ├── movablepoint.cpp │ ├── movablepoint.h │ ├── nonanimatedmovablepoint.cpp │ ├── nonanimatedmovablepoint.h │ ├── pathpivot.cpp │ ├── pathpivot.h │ ├── pathpointshandler.cpp │ ├── pathpointshandler.h │ ├── pointshandler.cpp │ ├── pointshandler.h │ ├── segment.cpp │ ├── segment.h │ ├── smartctrlpoint.cpp │ ├── smartctrlpoint.h │ ├── smartnodepoint.cpp │ └── smartnodepoint.h ├── Paint │ ├── brushcontexedwrapper.cpp │ ├── brushcontexedwrapper.h │ ├── brushescontext.cpp │ ├── brushescontext.h │ ├── simplebrushwrapper.cpp │ └── simplebrushwrapper.h ├── PathEffects │ ├── custompatheffect.cpp │ ├── custompatheffect.h │ ├── custompatheffectcreator.h │ ├── dashpatheffect.cpp │ ├── dashpatheffect.h │ ├── displacepatheffect.cpp │ ├── displacepatheffect.h │ ├── duplicatepatheffect.cpp │ ├── duplicatepatheffect.h │ ├── linespatheffect.cpp │ ├── linespatheffect.h │ ├── patheffect.cpp │ ├── patheffect.h │ ├── patheffectcaller.cpp │ ├── patheffectcaller.h │ ├── patheffectcollection.cpp │ ├── patheffectcollection.h │ ├── patheffectmenucreator.cpp │ ├── patheffectmenucreator.h │ ├── patheffectsinclude.h │ ├── patheffectstask.cpp │ ├── patheffectstask.h │ ├── solidifypatheffect.cpp │ ├── solidifypatheffect.h │ ├── spatialdisplacepatheffect.cpp │ ├── spatialdisplacepatheffect.h │ ├── subdividepatheffect.cpp │ ├── subdividepatheffect.h │ ├── subpatheffect.cpp │ ├── subpatheffect.h │ ├── sumpatheffect.cpp │ ├── sumpatheffect.h │ ├── zigzagpatheffect.cpp │ └── zigzagpatheffect.h ├── Private │ ├── Tasks │ │ ├── complextask.cpp │ │ ├── complextask.h │ │ ├── execcontroller.cpp │ │ ├── execcontroller.h │ │ ├── gputaskexecutor.cpp │ │ ├── gputaskexecutor.h │ │ ├── offscreenqgl33c.cpp │ │ ├── offscreenqgl33c.h │ │ ├── taskexecutor.cpp │ │ ├── taskexecutor.h │ │ ├── taskque.cpp │ │ ├── taskque.h │ │ ├── taskquehandler.cpp │ │ ├── taskquehandler.h │ │ ├── taskscheduler.cpp │ │ └── taskscheduler.h │ ├── document.cpp │ ├── document.h │ ├── documentrw.cpp │ ├── esettings.cpp │ ├── esettings.h │ ├── memorystructs.cpp │ ├── memorystructs.h │ └── qatomiclist.h ├── Properties │ ├── boolproperty.cpp │ ├── boolproperty.h │ ├── boolpropertycontainer.cpp │ ├── boolpropertycontainer.h │ ├── boxtargetproperty.cpp │ ├── boxtargetproperty.h │ ├── comboboxproperty.cpp │ ├── comboboxproperty.h │ ├── emimedata.h │ ├── namedproperty.h │ ├── newproperty.h │ ├── property.cpp │ └── property.h ├── RasterEffects │ ├── blureffect.cpp │ ├── blureffect.h │ ├── brightnesscontrasteffect.cpp │ ├── brightnesscontrasteffect.frag │ ├── brightnesscontrasteffect.h │ ├── colorizeeffect.cpp │ ├── colorizeeffect.frag │ ├── colorizeeffect.h │ ├── customrastereffect.cpp │ ├── customrastereffect.h │ ├── customrastereffectcreator.h │ ├── motionblureffect.cpp │ ├── motionblureffect.h │ ├── noisefadeeffect.cpp │ ├── noisefadeeffect.frag │ ├── noisefadeeffect.h │ ├── openglrastereffectcaller.cpp │ ├── openglrastereffectcaller.h │ ├── rastereffect.cpp │ ├── rastereffect.h │ ├── rastereffectcaller.cpp │ ├── rastereffectcaller.h │ ├── rastereffectcollection.cpp │ ├── rastereffectcollection.h │ ├── rastereffectmenucreator.cpp │ ├── rastereffectmenucreator.h │ ├── rastereffectsinclude.h │ ├── shadoweffect.cpp │ ├── shadoweffect.h │ ├── wipeeffect.cpp │ ├── wipeeffect.frag │ └── wipeeffect.h ├── ReadWrite │ ├── efuturepos.h │ ├── ereadstream.cpp │ ├── ereadstream.h │ ├── evformat.h │ ├── ewritestream.cpp │ ├── ewritestream.h │ ├── filefooter.cpp │ ├── filefooter.h │ └── xevformat.h ├── Segments │ ├── conicsegment.cpp │ ├── conicsegment.h │ ├── cubiclist.cpp │ ├── cubiclist.h │ ├── cubicnode.h │ ├── fitcurves.cpp │ ├── fitcurves.h │ ├── qcubicsegment1d.cpp │ ├── qcubicsegment1d.h │ ├── qcubicsegment2d.cpp │ ├── qcubicsegment2d.h │ ├── quadsegment.h │ ├── smoothcurves.cpp │ └── smoothcurves.h ├── ShaderEffects │ ├── PropertyCreators │ │ ├── coloranimatorcreator.h │ │ ├── intanimatorcreator.h │ │ ├── qpointfanimatorcreator.h │ │ ├── qrealanimatorcreator.h │ │ └── shaderpropertycreator.h │ ├── shadereffect.cpp │ ├── shadereffect.h │ ├── shadereffectcaller.cpp │ ├── shadereffectcaller.h │ ├── shadereffectcreator.cpp │ ├── shadereffectcreator.h │ ├── shadereffectjs.cpp │ ├── shadereffectjs.h │ ├── shadereffectprogram.cpp │ ├── shadereffectprogram.h │ ├── shadervaluehandler.cpp │ ├── shadervaluehandler.h │ ├── uniformspecifiercreator.cpp │ └── uniformspecifiercreator.h ├── Sound │ ├── audiohandler.cpp │ ├── audiohandler.h │ ├── eindependentsound.cpp │ ├── eindependentsound.h │ ├── esound.cpp │ ├── esound.h │ ├── esoundlink.cpp │ ├── esoundlink.h │ ├── esoundobjectbase.cpp │ ├── esoundobjectbase.h │ ├── esoundsettings.cpp │ ├── esoundsettings.h │ ├── evideosound.cpp │ ├── evideosound.h │ ├── soundcomposition.cpp │ ├── soundcomposition.h │ ├── soundmerger.cpp │ └── soundmerger.h ├── Tasks │ ├── domeletask.cpp │ ├── domeletask.h │ ├── etask.cpp │ ├── etask.h │ ├── etaskbase.cpp │ ├── etaskbase.h │ ├── updatable.cpp │ └── updatable.h ├── Timeline │ ├── animationrect.cpp │ ├── animationrect.h │ ├── durationrectangle.cpp │ ├── durationrectangle.h │ ├── fixedlenanimationrect.cpp │ └── fixedlenanimationrect.h ├── TransformEffects │ ├── followobjecteffect.cpp │ ├── followobjecteffect.h │ ├── followobjecteffectbase.cpp │ ├── followobjecteffectbase.h │ ├── followobjectrelativeeffect.cpp │ ├── followobjectrelativeeffect.h │ ├── followpatheffect.cpp │ ├── followpatheffect.h │ ├── parenteffect.cpp │ ├── parenteffect.h │ ├── targettransformeffect.cpp │ ├── targettransformeffect.h │ ├── trackeffect.cpp │ ├── trackeffect.h │ ├── transformeffect.cpp │ ├── transformeffect.h │ ├── transformeffectcollection.cpp │ ├── transformeffectcollection.h │ ├── transformeffectmenucreator.cpp │ └── transformeffectmenucreator.h ├── XML │ ├── runtimewriteid.h │ ├── xevexporter.cpp │ ├── xevexporter.h │ ├── xevimporter.cpp │ ├── xevimporter.h │ ├── xevzipfilesaver.cpp │ ├── xevzipfilesaver.h │ ├── xmlexporthelpers.cpp │ └── xmlexporthelpers.h ├── action.cpp ├── action.h ├── actions.cpp ├── actions.h ├── appsupport.cpp ├── appsupport.h ├── canvas.cpp ├── canvas.h ├── canvasbase.cpp ├── canvasbase.h ├── canvasgizmos.cpp ├── canvashandlesmartpath.cpp ├── canvasmouseevents.cpp ├── canvasmouseinteractions.cpp ├── canvasselectedboxesactions.cpp ├── canvasselectedpointsactions.cpp ├── clipboardcontainer.cpp ├── clipboardcontainer.h ├── colorhelpers.cpp ├── colorhelpers.h ├── colorsetting.cpp ├── colorsetting.h ├── colorshaders │ ├── alpha.frag │ ├── blue.frag │ ├── border.frag │ ├── doubleborder.frag │ ├── gradient.frag │ ├── green.frag │ ├── hsl_saturation.frag │ ├── hsv_saturation.frag │ ├── hue.frag │ ├── lightness.frag │ ├── plain.frag │ ├── red.frag │ └── value.frag ├── conncontext.cpp ├── conncontext.h ├── conncontextobjlist.h ├── conncontextptr.h ├── core_global.h ├── coreresources.qrc ├── cpurendertools.h ├── customhandler.h ├── customidentifier.cpp ├── customidentifier.h ├── differsinterpolate.cpp ├── differsinterpolate.h ├── drawpath.cpp ├── drawpath.h ├── eevent.cpp ├── eevent.h ├── efiltersettings.cpp ├── efiltersettings.h ├── etexture.cpp ├── etexture.h ├── etextureframebuffer.cpp ├── etextureframebuffer.h ├── exceptions.cpp ├── exceptions.h ├── fileshandler.cpp ├── fileshandler.h ├── filesourcescache.cpp ├── filesourcescache.h ├── formatoptions.h ├── framerange.cpp ├── framerange.h ├── gizmos.h ├── glhelpers.cpp ├── glhelpers.h ├── gpurendertools.cpp ├── gpurendertools.h ├── hardwareenums.h ├── hardwareinfo.cpp ├── hardwareinfo.h ├── importhandler.cpp ├── importhandler.h ├── matrixdecomposition.cpp ├── matrixdecomposition.h ├── memorydatahandler.cpp ├── memorydatahandler.h ├── namefixer.cpp ├── namefixer.h ├── nodepointvalues.cpp ├── nodepointvalues.h ├── outputsettings.cpp ├── outputsettings.h ├── paintsettings.h ├── paintsettingsapplier.cpp ├── paintsettingsapplier.h ├── pathoperations.cpp ├── pathoperations.h ├── pointhelpers.cpp ├── pointhelpers.h ├── pointtypemenu.h ├── randomgrid.cpp ├── randomgrid.h ├── rangemap.h ├── regexhelpers.h ├── renderinstancesettings.cpp ├── renderinstancesettings.h ├── rendersettings.cpp ├── rendersettings.h ├── shaders │ ├── maxalpha.frag │ ├── plain.vert │ └── textured.vert ├── simplemath.cpp ├── simplemath.h ├── simpletask.cpp ├── simpletask.h ├── singlewidgettarget.cpp ├── singlewidgettarget.h ├── skia │ ├── skiadefines.h │ ├── skiahelpers.cpp │ ├── skiahelpers.h │ ├── skiaincludes.h │ ├── skqtconversions.cpp │ └── skqtconversions.h ├── smartPointers │ ├── ememory.h │ ├── eobject.h │ ├── selfref.h │ ├── stdpointer.h │ ├── stdselfref.cpp │ └── stdselfref.h ├── svgexporter.cpp ├── svgexporter.h ├── svgexporthelpers.cpp ├── svgexporthelpers.h ├── svgimporter.cpp ├── svgimporter.h ├── switchablecontext.cpp ├── switchablecontext.h ├── swt_abstraction.cpp ├── swt_abstraction.h ├── swt_rulescollection.cpp ├── swt_rulescollection.h ├── texteffect.cpp ├── texteffect.h ├── themesupport.cpp ├── themesupport.h ├── threadsafeqjsengine.h ├── transformvalues.cpp ├── transformvalues.h ├── typemenu.cpp ├── typemenu.h ├── undoredo.cpp ├── undoredo.h ├── videoencoder.cpp ├── videoencoder.h ├── windowsincludes.h ├── wrappedint.cpp ├── wrappedint.h ├── zipfileloader.cpp ├── zipfileloader.h ├── zipfilesaver.cpp └── zipfilesaver.h ├── examples ├── pathEffects │ └── eLinearize │ │ ├── eLinearize.pro │ │ ├── elinearize.cpp │ │ ├── elinearize.h │ │ └── elinearize_global.h ├── rasterEffects │ ├── dabTest │ │ ├── dabTest.pro │ │ ├── dabtest.cpp │ │ ├── dabtest.h │ │ ├── dabtest_global.h │ │ ├── normal.frag │ │ └── resources.qrc │ ├── eBlur │ │ ├── eBlur.pro │ │ ├── eblur.cpp │ │ ├── eblur.h │ │ └── eblur_global.h │ ├── eShadow │ │ ├── eShadow.pro │ │ ├── eshadow.cpp │ │ ├── eshadow.h │ │ └── eshadow_global.h │ └── oil │ │ ├── OilImpl │ │ ├── oilPaint.h │ │ ├── oilbristle.cpp │ │ ├── oilbristle.h │ │ ├── oilbrush.cpp │ │ ├── oilbrush.h │ │ ├── oilhelpers.cpp │ │ ├── oilhelpers.h │ │ ├── oilsimulator.cpp │ │ ├── oilsimulator.h │ │ ├── oiltrace.cpp │ │ └── oiltrace.h │ │ ├── oileffect.cpp │ │ └── oileffect.h └── shaderEffects │ ├── eBrightnessContrast.frag │ ├── eBrightnessContrast.gre │ ├── eColorize.frag │ ├── eColorize.gre │ ├── eColorize2.frag │ ├── eColorize2.gre │ ├── eDots.frag │ ├── eDots.gre │ ├── eExplode.frag │ ├── eExplode.gre │ ├── eMultiplyRed.frag │ ├── eMultiplyRed.gre │ ├── eNoiseFade.frag │ ├── eNoiseFade.gre │ ├── eWipe.frag │ ├── eWipe.gre │ ├── eWipeLeft.frag │ ├── eWipeLeft.gre │ ├── eWipeRight.frag │ └── eWipeRight.gre ├── scripts ├── Dockerfile.vfxplatform ├── README.md ├── build.bat ├── build.sh ├── build_changelog.sh ├── build_hicolor.sh ├── build_mac.sh ├── build_mac_ci.sh ├── build_mac_sdk.sh ├── build_mac_universal.sh ├── build_mxe_ffmpeg.sh ├── build_qscintilla.bat ├── build_qt5.bat ├── build_qt_debug.sh ├── build_source_tarball.sh ├── build_vfxplatform.sh ├── build_vfxplatform_friction.sh ├── build_vfxplatform_package.sh ├── build_vfxplatform_sdk01.sh ├── build_vfxplatform_sdk02.sh ├── build_vfxplatform_sdk03.sh ├── ci.sh ├── configure_qt5.bat ├── easing │ ├── README.md │ ├── build.sh │ ├── presets │ │ ├── README.md │ │ ├── easeInBack.js │ │ ├── easeInBounce.js │ │ ├── easeInCirc.js │ │ ├── easeInCubic.js │ │ ├── easeInElastic.js │ │ ├── easeInExpo.js │ │ ├── easeInOutBack.js │ │ ├── easeInOutBounce.js │ │ ├── easeInOutCirc.js │ │ ├── easeInOutCubic.js │ │ ├── easeInOutElastic.js │ │ ├── easeInOutExpo.js │ │ ├── easeInOutQuad.js │ │ ├── easeInOutQuart.js │ │ ├── easeInOutQuint.js │ │ ├── easeInOutSine.js │ │ ├── easeInQuad.js │ │ ├── easeInQuart.js │ │ ├── easeInQuint.js │ │ ├── easeInSine.js │ │ ├── easeOutBack.js │ │ ├── easeOutBounce.js │ │ ├── easeOutCirc.js │ │ ├── easeOutCubic.js │ │ ├── easeOutElastic.js │ │ ├── easeOutExpo.js │ │ ├── easeOutQuad.js │ │ ├── easeOutQuart.js │ │ ├── easeOutQuint.js │ │ └── easeOutSine.js │ └── src │ │ ├── bindings.js │ │ ├── common.js │ │ ├── easeInBack.js │ │ ├── easeInBounce.js │ │ ├── easeInCirc.js │ │ ├── easeInCubic.js │ │ ├── easeInElastic.js │ │ ├── easeInExpo.js │ │ ├── easeInOutBack.js │ │ ├── easeInOutBounce.js │ │ ├── easeInOutCirc.js │ │ ├── easeInOutCubic.js │ │ ├── easeInOutElastic.js │ │ ├── easeInOutExpo.js │ │ ├── easeInOutQuad.js │ │ ├── easeInOutQuart.js │ │ ├── easeInOutQuint.js │ │ ├── easeInOutSine.js │ │ ├── easeInQuad.js │ │ ├── easeInQuart.js │ │ ├── easeInQuint.js │ │ ├── easeInSine.js │ │ ├── easeOutBack.js │ │ ├── easeOutBounce.js │ │ ├── easeOutCirc.js │ │ ├── easeOutCubic.js │ │ ├── easeOutElastic.js │ │ ├── easeOutExpo.js │ │ ├── easeOutQuad.js │ │ ├── easeOutQuart.js │ │ ├── easeOutQuint.js │ │ └── easeOutSine.js ├── flatpak │ ├── build.sh │ ├── devel-graphics.friction.Friction.json │ ├── flathub.json │ ├── graphics.friction.Friction.json │ ├── package.sh │ └── run.sh ├── git-backup.sh ├── macos_fix_dylib.sh ├── make_ico.sh ├── mkicns.sh ├── patches │ ├── cmake-zlib-macos154.diff │ ├── ffmpeg-tiff-assocalpha.diff │ ├── lame-avoid_undefined_symbols_error.diff │ ├── qtbase-macos-versions.diff │ ├── qtbase-qversion.diff │ ├── qtbase-use-wayland-on-gnome.diff │ ├── qtbase-win-versions.diff │ ├── qtwayland-xdg-shell-ssd.diff │ ├── vorbis-configure.diff │ ├── vpx-Makefile.diff │ └── vpx-configure.diff ├── push_docker.sh ├── run_docker.sh ├── sign_checksums.sh └── vfxplatform.spec └── ui ├── CMakeLists.txt ├── dialogs ├── adjustscenedialog.cpp ├── adjustscenedialog.h ├── applyexpressiondialog.cpp ├── applyexpressiondialog.h ├── commandpalette.cpp ├── commandpalette.h ├── dialog.cpp ├── dialog.h ├── durationrectsettingsdialog.cpp ├── durationrectsettingsdialog.h ├── exportsvgdialog.cpp ├── exportsvgdialog.h ├── markereditordialog.cpp ├── markereditordialog.h ├── qrealpointvaluedialog.cpp ├── qrealpointvaluedialog.h ├── renderoutputwidget.cpp ├── renderoutputwidget.h ├── scenesettingsdialog.cpp └── scenesettingsdialog.h ├── gradientwidgets ├── currentgradientwidget.cpp ├── currentgradientwidget.h ├── displayedgradientswidget.cpp ├── displayedgradientswidget.h ├── gradientslistwidget.cpp ├── gradientslistwidget.h ├── gradientwidget.cpp └── gradientwidget.h ├── misc ├── keyfocustarget.cpp ├── keyfocustarget.h ├── noshortcutaction.cpp └── noshortcutaction.h ├── optimalscrollarena ├── minimalscrollwidget.cpp ├── minimalscrollwidget.h ├── scrollarea.cpp ├── scrollarea.h ├── scrollvisiblepartbase.cpp ├── scrollvisiblepartbase.h ├── scrollwidget.cpp ├── scrollwidget.h ├── scrollwidgetvisiblepart.cpp ├── scrollwidgetvisiblepart.h ├── singlewidget.cpp └── singlewidget.h ├── ui_global.h └── widgets ├── aboutwidget.cpp ├── aboutwidget.h ├── actionbutton.cpp ├── actionbutton.h ├── alignwidget.cpp ├── alignwidget.h ├── assetswidget.cpp ├── assetswidget.h ├── bookmarkedcolors.cpp ├── bookmarkedcolors.h ├── bookmarkedwidget.cpp ├── bookmarkedwidget.h ├── buttonbase.cpp ├── buttonbase.h ├── buttonslist.cpp ├── buttonslist.h ├── canvassettingswidget.cpp ├── canvassettingswidget.h ├── canvastoolbar.cpp ├── canvastoolbar.h ├── changewidthwidget.cpp ├── changewidthwidget.h ├── colorlabel.cpp ├── colorlabel.h ├── colorsettingswidget.cpp ├── colorsettingswidget.h ├── colortoolbar.cpp ├── colortoolbar.h ├── colortoolbutton.cpp ├── colortoolbutton.h ├── colorvaluerect.cpp ├── colorvaluerect.h ├── colorwidget.cpp ├── colorwidget.h ├── colorwidgetshaders.cpp ├── colorwidgetshaders.h ├── ecombobox.cpp ├── ecombobox.h ├── editablecombobox.cpp ├── editablecombobox.h ├── fakemenubar.cpp ├── fakemenubar.h ├── fillstrokesettings.cpp ├── fillstrokesettings.h ├── flowlayout.cpp ├── flowlayout.h ├── fontswidget.cpp ├── fontswidget.h ├── framescrollbar.cpp ├── framescrollbar.h ├── framespinbox.cpp ├── framespinbox.h ├── glwidget.cpp ├── glwidget.h ├── glwindow.cpp ├── glwindow.h ├── labeledslider.cpp ├── labeledslider.h ├── markereditor.cpp ├── markereditor.h ├── performancesettingswidget.cpp ├── performancesettingswidget.h ├── presetsettingswidget.cpp ├── presetsettingswidget.h ├── qdoubleslider.cpp ├── qdoubleslider.h ├── qrealanimatorvalueslider.cpp ├── qrealanimatorvalueslider.h ├── savedcolorbutton.cpp ├── savedcolorbutton.h ├── savedcolorswidget.cpp ├── savedcolorswidget.h ├── scenechooser.cpp ├── scenechooser.h ├── settingswidget.cpp ├── settingswidget.h ├── toolbar.cpp ├── toolbar.h ├── toolbox.cpp ├── toolbox.h ├── toolboxtoolbar.cpp ├── toolboxtoolbar.h ├── toolbutton.h ├── toolcontrols.cpp ├── toolcontrols.h ├── twocolumnlayout.cpp ├── twocolumnlayout.h ├── uilayout.cpp ├── uilayout.h ├── vlabel.h ├── welcomedialog.cpp ├── welcomedialog.h ├── widgetstack.cpp ├── widgetstack.h ├── widgetwrappernode.cpp ├── widgetwrappernode.h ├── wrappernode.cpp └── wrappernode.h /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/.github/workflows/ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/README.md -------------------------------------------------------------------------------- /src/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/CMakeLists.txt -------------------------------------------------------------------------------- /src/app/GUI/BoxesList/boxscrollarea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/BoxesList/boxscrollarea.cpp -------------------------------------------------------------------------------- /src/app/GUI/BoxesList/boxscrollarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/BoxesList/boxscrollarea.h -------------------------------------------------------------------------------- /src/app/GUI/BoxesList/boxscroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/BoxesList/boxscroller.cpp -------------------------------------------------------------------------------- /src/app/GUI/BoxesList/boxscroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/BoxesList/boxscroller.h -------------------------------------------------------------------------------- /src/app/GUI/BoxesList/boxscrollwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/BoxesList/boxscrollwidget.cpp -------------------------------------------------------------------------------- /src/app/GUI/BoxesList/boxscrollwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/BoxesList/boxscrollwidget.h -------------------------------------------------------------------------------- /src/app/GUI/BoxesList/boxsinglewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/BoxesList/boxsinglewidget.cpp -------------------------------------------------------------------------------- /src/app/GUI/BoxesList/boxsinglewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/BoxesList/boxsinglewidget.h -------------------------------------------------------------------------------- /src/app/GUI/BoxesList/boxtargetwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/BoxesList/boxtargetwidget.cpp -------------------------------------------------------------------------------- /src/app/GUI/BoxesList/boxtargetwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/BoxesList/boxtargetwidget.h -------------------------------------------------------------------------------- /src/app/GUI/RenderWidgets/renderwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/RenderWidgets/renderwidget.h -------------------------------------------------------------------------------- /src/app/GUI/Settings/settingsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/Settings/settingsdialog.cpp -------------------------------------------------------------------------------- /src/app/GUI/Settings/settingsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/Settings/settingsdialog.h -------------------------------------------------------------------------------- /src/app/GUI/animationdockwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/animationdockwidget.cpp -------------------------------------------------------------------------------- /src/app/GUI/animationdockwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/animationdockwidget.h -------------------------------------------------------------------------------- /src/app/GUI/canvasbasewrappernode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/canvasbasewrappernode.cpp -------------------------------------------------------------------------------- /src/app/GUI/canvasbasewrappernode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/canvasbasewrappernode.h -------------------------------------------------------------------------------- /src/app/GUI/canvaswindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/canvaswindow.cpp -------------------------------------------------------------------------------- /src/app/GUI/canvaswindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/canvaswindow.h -------------------------------------------------------------------------------- /src/app/GUI/canvaswindowevents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/canvaswindowevents.cpp -------------------------------------------------------------------------------- /src/app/GUI/canvaswrappernode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/canvaswrappernode.cpp -------------------------------------------------------------------------------- /src/app/GUI/canvaswrappernode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/canvaswrappernode.h -------------------------------------------------------------------------------- /src/app/GUI/effectactions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/effectactions.cpp -------------------------------------------------------------------------------- /src/app/GUI/ekeyfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/ekeyfilter.cpp -------------------------------------------------------------------------------- /src/app/GUI/ekeyfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/ekeyfilter.h -------------------------------------------------------------------------------- /src/app/GUI/ewidgetsimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/ewidgetsimpl.cpp -------------------------------------------------------------------------------- /src/app/GUI/ewidgetsimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/ewidgetsimpl.h -------------------------------------------------------------------------------- /src/app/GUI/extraactions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/extraactions.cpp -------------------------------------------------------------------------------- /src/app/GUI/graphboxeslist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/graphboxeslist.cpp -------------------------------------------------------------------------------- /src/app/GUI/keysview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/keysview.cpp -------------------------------------------------------------------------------- /src/app/GUI/keysview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/keysview.h -------------------------------------------------------------------------------- /src/app/GUI/layouthandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/layouthandler.cpp -------------------------------------------------------------------------------- /src/app/GUI/layouthandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/layouthandler.h -------------------------------------------------------------------------------- /src/app/GUI/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/mainwindow.cpp -------------------------------------------------------------------------------- /src/app/GUI/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/mainwindow.h -------------------------------------------------------------------------------- /src/app/GUI/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/menu.cpp -------------------------------------------------------------------------------- /src/app/GUI/timelinebasewrappernode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/timelinebasewrappernode.cpp -------------------------------------------------------------------------------- /src/app/GUI/timelinebasewrappernode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/timelinebasewrappernode.h -------------------------------------------------------------------------------- /src/app/GUI/timelinedockwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/timelinedockwidget.cpp -------------------------------------------------------------------------------- /src/app/GUI/timelinedockwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/timelinedockwidget.h -------------------------------------------------------------------------------- /src/app/GUI/timelinehighlightwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/timelinehighlightwidget.cpp -------------------------------------------------------------------------------- /src/app/GUI/timelinehighlightwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/timelinehighlightwidget.h -------------------------------------------------------------------------------- /src/app/GUI/timelinewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/timelinewidget.cpp -------------------------------------------------------------------------------- /src/app/GUI/timelinewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/timelinewidget.h -------------------------------------------------------------------------------- /src/app/GUI/timelinewrappernode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/timelinewrappernode.cpp -------------------------------------------------------------------------------- /src/app/GUI/timelinewrappernode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/timelinewrappernode.h -------------------------------------------------------------------------------- /src/app/GUI/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/window.cpp -------------------------------------------------------------------------------- /src/app/GUI/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/GUI/window.h -------------------------------------------------------------------------------- /src/app/app.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/app.desktop.in -------------------------------------------------------------------------------- /src/app/appdata.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/appdata.xml.in -------------------------------------------------------------------------------- /src/app/effectsloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/effectsloader.cpp -------------------------------------------------------------------------------- /src/app/effectsloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/effectsloader.h -------------------------------------------------------------------------------- /src/app/eimporters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/eimporters.cpp -------------------------------------------------------------------------------- /src/app/eimporters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/eimporters.h -------------------------------------------------------------------------------- /src/app/evfileio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/evfileio.cpp -------------------------------------------------------------------------------- /src/app/friction.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/friction.iss -------------------------------------------------------------------------------- /src/app/friction.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/friction.qss -------------------------------------------------------------------------------- /src/app/friction.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/friction.rc.in -------------------------------------------------------------------------------- /src/app/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/main.cpp -------------------------------------------------------------------------------- /src/app/memorychecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/memorychecker.cpp -------------------------------------------------------------------------------- /src/app/memorychecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/memorychecker.h -------------------------------------------------------------------------------- /src/app/memoryhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/memoryhandler.cpp -------------------------------------------------------------------------------- /src/app/memoryhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/memoryhandler.h -------------------------------------------------------------------------------- /src/app/meta.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/meta.xml.in -------------------------------------------------------------------------------- /src/app/pixmaps/crosshair_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/pixmaps/crosshair_closed.png -------------------------------------------------------------------------------- /src/app/pixmaps/cursor-adj-s.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/pixmaps/cursor-adj-s.xpm -------------------------------------------------------------------------------- /src/app/pixmaps/cursor-crosshairs.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/pixmaps/cursor-crosshairs.xpm -------------------------------------------------------------------------------- /src/app/pixmaps/cursor-ellipse.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/pixmaps/cursor-ellipse.xpm -------------------------------------------------------------------------------- /src/app/pixmaps/cursor-eraser.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/pixmaps/cursor-eraser.xpm -------------------------------------------------------------------------------- /src/app/pixmaps/cursor-node.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/pixmaps/cursor-node.xpm -------------------------------------------------------------------------------- /src/app/pixmaps/cursor-pen.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/pixmaps/cursor-pen.xpm -------------------------------------------------------------------------------- /src/app/pixmaps/cursor-pencil.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/pixmaps/cursor-pencil.xpm -------------------------------------------------------------------------------- /src/app/pixmaps/cursor-rect.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/pixmaps/cursor-rect.xpm -------------------------------------------------------------------------------- /src/app/pixmaps/cursor-text-insert.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/pixmaps/cursor-text-insert.xpm -------------------------------------------------------------------------------- /src/app/pixmaps/cursor-text.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/pixmaps/cursor-text.xpm -------------------------------------------------------------------------------- /src/app/pixmaps/cursor_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/pixmaps/cursor_add.png -------------------------------------------------------------------------------- /src/app/pixmaps/cursor_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/pixmaps/cursor_arrow.png -------------------------------------------------------------------------------- /src/app/pixmaps/cursor_color_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/pixmaps/cursor_color_picker.png -------------------------------------------------------------------------------- /src/app/pixmaps/cursor_crosshair_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/pixmaps/cursor_crosshair_open.png -------------------------------------------------------------------------------- /src/app/pixmaps/cursor_hand_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/pixmaps/cursor_hand_closed.png -------------------------------------------------------------------------------- /src/app/pixmaps/cursor_hand_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/pixmaps/cursor_hand_open.png -------------------------------------------------------------------------------- /src/app/pixmaps/cursor_move_n_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/pixmaps/cursor_move_n_s.png -------------------------------------------------------------------------------- /src/app/pixmaps/cursor_move_ne_sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/pixmaps/cursor_move_ne_sw.png -------------------------------------------------------------------------------- /src/app/pixmaps/cursor_move_nw_se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/pixmaps/cursor_move_nw_se.png -------------------------------------------------------------------------------- /src/app/pixmaps/cursor_move_w_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/pixmaps/cursor_move_w_e.png -------------------------------------------------------------------------------- /src/app/pixmaps/cursor_pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/pixmaps/cursor_pencil.png -------------------------------------------------------------------------------- /src/app/pixmaps/down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/pixmaps/down-arrow.png -------------------------------------------------------------------------------- /src/app/pixmaps/enve.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/pixmaps/enve.ico -------------------------------------------------------------------------------- /src/app/pixmaps/up-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/pixmaps/up-arrow.png -------------------------------------------------------------------------------- /src/app/renderhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/renderhandler.cpp -------------------------------------------------------------------------------- /src/app/renderhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/renderhandler.h -------------------------------------------------------------------------------- /src/app/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/resources.qrc -------------------------------------------------------------------------------- /src/app/svgo.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/svgo.config.js -------------------------------------------------------------------------------- /src/app/xdg/friction.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/xdg/friction.desktop -------------------------------------------------------------------------------- /src/app/xdg/friction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/app/xdg/friction.xml -------------------------------------------------------------------------------- /src/cmake/friction-common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/cmake/friction-common.cmake -------------------------------------------------------------------------------- /src/cmake/friction-ffmpeg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/cmake/friction-ffmpeg.cmake -------------------------------------------------------------------------------- /src/cmake/friction-meta.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/cmake/friction-meta.cmake -------------------------------------------------------------------------------- /src/cmake/friction-quazip.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/cmake/friction-quazip.cmake -------------------------------------------------------------------------------- /src/cmake/friction-version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/cmake/friction-version.cmake -------------------------------------------------------------------------------- /src/core/Animators/SmartPath/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/SmartPath/node.cpp -------------------------------------------------------------------------------- /src/core/Animators/SmartPath/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/SmartPath/node.h -------------------------------------------------------------------------------- /src/core/Animators/SmartPath/nodelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/SmartPath/nodelist.cpp -------------------------------------------------------------------------------- /src/core/Animators/SmartPath/nodelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/SmartPath/nodelist.h -------------------------------------------------------------------------------- /src/core/Animators/SmartPath/smartpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/SmartPath/smartpath.h -------------------------------------------------------------------------------- /src/core/Animators/animator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/animator.cpp -------------------------------------------------------------------------------- /src/core/Animators/animator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/animator.h -------------------------------------------------------------------------------- /src/core/Animators/animatort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/animatort.cpp -------------------------------------------------------------------------------- /src/core/Animators/animatort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/animatort.h -------------------------------------------------------------------------------- /src/core/Animators/basedanimatort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/basedanimatort.cpp -------------------------------------------------------------------------------- /src/core/Animators/basedanimatort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/basedanimatort.h -------------------------------------------------------------------------------- /src/core/Animators/basedkeyt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/basedkeyt.cpp -------------------------------------------------------------------------------- /src/core/Animators/basedkeyt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/basedkeyt.h -------------------------------------------------------------------------------- /src/core/Animators/boolanimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/boolanimator.cpp -------------------------------------------------------------------------------- /src/core/Animators/boolanimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/boolanimator.h -------------------------------------------------------------------------------- /src/core/Animators/clampedpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/clampedpoint.cpp -------------------------------------------------------------------------------- /src/core/Animators/clampedpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/clampedpoint.h -------------------------------------------------------------------------------- /src/core/Animators/clampedvalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/clampedvalue.cpp -------------------------------------------------------------------------------- /src/core/Animators/clampedvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/clampedvalue.h -------------------------------------------------------------------------------- /src/core/Animators/coloranimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/coloranimator.cpp -------------------------------------------------------------------------------- /src/core/Animators/coloranimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/coloranimator.h -------------------------------------------------------------------------------- /src/core/Animators/complexanimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/complexanimator.cpp -------------------------------------------------------------------------------- /src/core/Animators/complexanimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/complexanimator.h -------------------------------------------------------------------------------- /src/core/Animators/complexkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/complexkey.cpp -------------------------------------------------------------------------------- /src/core/Animators/complexkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/complexkey.h -------------------------------------------------------------------------------- /src/core/Animators/customproperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/customproperties.cpp -------------------------------------------------------------------------------- /src/core/Animators/customproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/customproperties.h -------------------------------------------------------------------------------- /src/core/Animators/eboxorsound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/eboxorsound.cpp -------------------------------------------------------------------------------- /src/core/Animators/eboxorsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/eboxorsound.h -------------------------------------------------------------------------------- /src/core/Animators/eeffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/eeffect.cpp -------------------------------------------------------------------------------- /src/core/Animators/eeffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/eeffect.h -------------------------------------------------------------------------------- /src/core/Animators/gradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/gradient.cpp -------------------------------------------------------------------------------- /src/core/Animators/gradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/gradient.h -------------------------------------------------------------------------------- /src/core/Animators/gradientpoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/gradientpoints.cpp -------------------------------------------------------------------------------- /src/core/Animators/gradientpoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/gradientpoints.h -------------------------------------------------------------------------------- /src/core/Animators/graphanimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/graphanimator.cpp -------------------------------------------------------------------------------- /src/core/Animators/graphanimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/graphanimator.h -------------------------------------------------------------------------------- /src/core/Animators/graphanimatort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/graphanimatort.cpp -------------------------------------------------------------------------------- /src/core/Animators/graphanimatort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/graphanimatort.h -------------------------------------------------------------------------------- /src/core/Animators/graphkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/graphkey.cpp -------------------------------------------------------------------------------- /src/core/Animators/graphkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/graphkey.h -------------------------------------------------------------------------------- /src/core/Animators/graphkeyt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/graphkeyt.cpp -------------------------------------------------------------------------------- /src/core/Animators/graphkeyt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/graphkeyt.h -------------------------------------------------------------------------------- /src/core/Animators/intanimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/intanimator.cpp -------------------------------------------------------------------------------- /src/core/Animators/intanimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/intanimator.h -------------------------------------------------------------------------------- /src/core/Animators/interpolationkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/interpolationkey.cpp -------------------------------------------------------------------------------- /src/core/Animators/interpolationkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/interpolationkey.h -------------------------------------------------------------------------------- /src/core/Animators/interpolationkeyt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/interpolationkeyt.cpp -------------------------------------------------------------------------------- /src/core/Animators/interpolationkeyt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/interpolationkeyt.h -------------------------------------------------------------------------------- /src/core/Animators/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/key.cpp -------------------------------------------------------------------------------- /src/core/Animators/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/key.h -------------------------------------------------------------------------------- /src/core/Animators/keyt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/keyt.cpp -------------------------------------------------------------------------------- /src/core/Animators/keyt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/keyt.h -------------------------------------------------------------------------------- /src/core/Animators/overlappingkeylist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/overlappingkeylist.cpp -------------------------------------------------------------------------------- /src/core/Animators/overlappingkeylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/overlappingkeylist.h -------------------------------------------------------------------------------- /src/core/Animators/overlappingkeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/overlappingkeys.cpp -------------------------------------------------------------------------------- /src/core/Animators/overlappingkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/overlappingkeys.h -------------------------------------------------------------------------------- /src/core/Animators/qpointfanimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/qpointfanimator.cpp -------------------------------------------------------------------------------- /src/core/Animators/qpointfanimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/qpointfanimator.h -------------------------------------------------------------------------------- /src/core/Animators/qrealanimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/qrealanimator.cpp -------------------------------------------------------------------------------- /src/core/Animators/qrealanimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/qrealanimator.h -------------------------------------------------------------------------------- /src/core/Animators/qrealkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/qrealkey.cpp -------------------------------------------------------------------------------- /src/core/Animators/qrealkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/qrealkey.h -------------------------------------------------------------------------------- /src/core/Animators/qrealpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/qrealpoint.cpp -------------------------------------------------------------------------------- /src/core/Animators/qrealpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/qrealpoint.h -------------------------------------------------------------------------------- /src/core/Animators/qrealsnapshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/qrealsnapshot.cpp -------------------------------------------------------------------------------- /src/core/Animators/qrealsnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/qrealsnapshot.h -------------------------------------------------------------------------------- /src/core/Animators/qrealvalueeffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/qrealvalueeffect.cpp -------------------------------------------------------------------------------- /src/core/Animators/qrealvalueeffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/qrealvalueeffect.h -------------------------------------------------------------------------------- /src/core/Animators/qstringanimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/qstringanimator.cpp -------------------------------------------------------------------------------- /src/core/Animators/qstringanimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/qstringanimator.h -------------------------------------------------------------------------------- /src/core/Animators/sceneboundgradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/sceneboundgradient.cpp -------------------------------------------------------------------------------- /src/core/Animators/sceneboundgradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/sceneboundgradient.h -------------------------------------------------------------------------------- /src/core/Animators/steppedanimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/steppedanimator.cpp -------------------------------------------------------------------------------- /src/core/Animators/steppedanimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/steppedanimator.h -------------------------------------------------------------------------------- /src/core/Animators/texteffectcollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/texteffectcollection.h -------------------------------------------------------------------------------- /src/core/Animators/transformanimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/transformanimator.cpp -------------------------------------------------------------------------------- /src/core/Animators/transformanimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Animators/transformanimator.h -------------------------------------------------------------------------------- /src/core/BlendEffects/blendeffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/BlendEffects/blendeffect.cpp -------------------------------------------------------------------------------- /src/core/BlendEffects/blendeffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/BlendEffects/blendeffect.h -------------------------------------------------------------------------------- /src/core/BlendEffects/moveblendeffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/BlendEffects/moveblendeffect.cpp -------------------------------------------------------------------------------- /src/core/BlendEffects/moveblendeffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/BlendEffects/moveblendeffect.h -------------------------------------------------------------------------------- /src/core/Boxes/animationbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/animationbox.cpp -------------------------------------------------------------------------------- /src/core/Boxes/animationbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/animationbox.h -------------------------------------------------------------------------------- /src/core/Boxes/boundingbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/boundingbox.cpp -------------------------------------------------------------------------------- /src/core/Boxes/boundingbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/boundingbox.h -------------------------------------------------------------------------------- /src/core/Boxes/boxrendercontainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/boxrendercontainer.cpp -------------------------------------------------------------------------------- /src/core/Boxes/boxrendercontainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/boxrendercontainer.h -------------------------------------------------------------------------------- /src/core/Boxes/boxrenderdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/boxrenderdata.cpp -------------------------------------------------------------------------------- /src/core/Boxes/boxrenderdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/boxrenderdata.h -------------------------------------------------------------------------------- /src/core/Boxes/boxwithpatheffects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/boxwithpatheffects.cpp -------------------------------------------------------------------------------- /src/core/Boxes/boxwithpatheffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/boxwithpatheffects.h -------------------------------------------------------------------------------- /src/core/Boxes/canvasrenderdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/canvasrenderdata.cpp -------------------------------------------------------------------------------- /src/core/Boxes/canvasrenderdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/canvasrenderdata.h -------------------------------------------------------------------------------- /src/core/Boxes/circle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/circle.cpp -------------------------------------------------------------------------------- /src/core/Boxes/circle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/circle.h -------------------------------------------------------------------------------- /src/core/Boxes/containerbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/containerbox.cpp -------------------------------------------------------------------------------- /src/core/Boxes/containerbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/containerbox.h -------------------------------------------------------------------------------- /src/core/Boxes/customboxcreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/customboxcreator.h -------------------------------------------------------------------------------- /src/core/Boxes/ecustombox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/ecustombox.cpp -------------------------------------------------------------------------------- /src/core/Boxes/ecustombox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/ecustombox.h -------------------------------------------------------------------------------- /src/core/Boxes/effectsrenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/effectsrenderer.cpp -------------------------------------------------------------------------------- /src/core/Boxes/effectsrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/effectsrenderer.h -------------------------------------------------------------------------------- /src/core/Boxes/effectsubtaskspawner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/effectsubtaskspawner.cpp -------------------------------------------------------------------------------- /src/core/Boxes/effectsubtaskspawner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/effectsubtaskspawner.h -------------------------------------------------------------------------------- /src/core/Boxes/externallinkboxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/externallinkboxt.h -------------------------------------------------------------------------------- /src/core/Boxes/frameremapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/frameremapping.cpp -------------------------------------------------------------------------------- /src/core/Boxes/frameremapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/frameremapping.h -------------------------------------------------------------------------------- /src/core/Boxes/imagebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/imagebox.cpp -------------------------------------------------------------------------------- /src/core/Boxes/imagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/imagebox.h -------------------------------------------------------------------------------- /src/core/Boxes/imagerenderdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/imagerenderdata.cpp -------------------------------------------------------------------------------- /src/core/Boxes/imagerenderdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/imagerenderdata.h -------------------------------------------------------------------------------- /src/core/Boxes/imagesequencebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/imagesequencebox.cpp -------------------------------------------------------------------------------- /src/core/Boxes/imagesequencebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/imagesequencebox.h -------------------------------------------------------------------------------- /src/core/Boxes/internallinkbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/internallinkbox.cpp -------------------------------------------------------------------------------- /src/core/Boxes/internallinkbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/internallinkbox.h -------------------------------------------------------------------------------- /src/core/Boxes/internallinkboxbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/internallinkboxbase.h -------------------------------------------------------------------------------- /src/core/Boxes/internallinkcanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/internallinkcanvas.cpp -------------------------------------------------------------------------------- /src/core/Boxes/internallinkcanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/internallinkcanvas.h -------------------------------------------------------------------------------- /src/core/Boxes/internallinkgroupbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/internallinkgroupbox.cpp -------------------------------------------------------------------------------- /src/core/Boxes/internallinkgroupbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/internallinkgroupbox.h -------------------------------------------------------------------------------- /src/core/Boxes/layerboxrenderdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/layerboxrenderdata.cpp -------------------------------------------------------------------------------- /src/core/Boxes/layerboxrenderdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/layerboxrenderdata.h -------------------------------------------------------------------------------- /src/core/Boxes/linkcanvasrenderdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/linkcanvasrenderdata.cpp -------------------------------------------------------------------------------- /src/core/Boxes/linkcanvasrenderdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/linkcanvasrenderdata.h -------------------------------------------------------------------------------- /src/core/Boxes/nullobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/nullobject.cpp -------------------------------------------------------------------------------- /src/core/Boxes/nullobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/nullobject.h -------------------------------------------------------------------------------- /src/core/Boxes/pathbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/pathbox.cpp -------------------------------------------------------------------------------- /src/core/Boxes/pathbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/pathbox.h -------------------------------------------------------------------------------- /src/core/Boxes/pathboxrenderdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/pathboxrenderdata.cpp -------------------------------------------------------------------------------- /src/core/Boxes/pathboxrenderdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/pathboxrenderdata.h -------------------------------------------------------------------------------- /src/core/Boxes/patheffectsmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/patheffectsmenu.cpp -------------------------------------------------------------------------------- /src/core/Boxes/patheffectsmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/patheffectsmenu.h -------------------------------------------------------------------------------- /src/core/Boxes/rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/rectangle.cpp -------------------------------------------------------------------------------- /src/core/Boxes/rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/rectangle.h -------------------------------------------------------------------------------- /src/core/Boxes/renderdatahandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/renderdatahandler.cpp -------------------------------------------------------------------------------- /src/core/Boxes/renderdatahandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/renderdatahandler.h -------------------------------------------------------------------------------- /src/core/Boxes/smartvectorpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/smartvectorpath.cpp -------------------------------------------------------------------------------- /src/core/Boxes/smartvectorpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/smartvectorpath.h -------------------------------------------------------------------------------- /src/core/Boxes/svglinkbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/svglinkbox.cpp -------------------------------------------------------------------------------- /src/core/Boxes/svglinkbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/svglinkbox.h -------------------------------------------------------------------------------- /src/core/Boxes/textbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/textbox.cpp -------------------------------------------------------------------------------- /src/core/Boxes/textbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/textbox.h -------------------------------------------------------------------------------- /src/core/Boxes/textboxrenderdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/textboxrenderdata.cpp -------------------------------------------------------------------------------- /src/core/Boxes/textboxrenderdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/textboxrenderdata.h -------------------------------------------------------------------------------- /src/core/Boxes/videobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/videobox.cpp -------------------------------------------------------------------------------- /src/core/Boxes/videobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Boxes/videobox.h -------------------------------------------------------------------------------- /src/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/CMakeLists.txt -------------------------------------------------------------------------------- /src/core/CacheHandlers/cachecontainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/CacheHandlers/cachecontainer.cpp -------------------------------------------------------------------------------- /src/core/CacheHandlers/cachecontainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/CacheHandlers/cachecontainer.h -------------------------------------------------------------------------------- /src/core/CacheHandlers/hddcachablecont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/CacheHandlers/hddcachablecont.h -------------------------------------------------------------------------------- /src/core/CacheHandlers/imagedatahandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/CacheHandlers/imagedatahandler.h -------------------------------------------------------------------------------- /src/core/CacheHandlers/samples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/CacheHandlers/samples.cpp -------------------------------------------------------------------------------- /src/core/CacheHandlers/samples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/CacheHandlers/samples.h -------------------------------------------------------------------------------- /src/core/CacheHandlers/tmpdeleter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/CacheHandlers/tmpdeleter.cpp -------------------------------------------------------------------------------- /src/core/CacheHandlers/tmpdeleter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/CacheHandlers/tmpdeleter.h -------------------------------------------------------------------------------- /src/core/CacheHandlers/tmploader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/CacheHandlers/tmploader.cpp -------------------------------------------------------------------------------- /src/core/CacheHandlers/tmploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/CacheHandlers/tmploader.h -------------------------------------------------------------------------------- /src/core/CacheHandlers/tmpsaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/CacheHandlers/tmpsaver.cpp -------------------------------------------------------------------------------- /src/core/CacheHandlers/tmpsaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/CacheHandlers/tmpsaver.h -------------------------------------------------------------------------------- /src/core/CacheHandlers/usedrange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/CacheHandlers/usedrange.cpp -------------------------------------------------------------------------------- /src/core/CacheHandlers/usedrange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/CacheHandlers/usedrange.h -------------------------------------------------------------------------------- /src/core/CacheHandlers/usepointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/CacheHandlers/usepointer.h -------------------------------------------------------------------------------- /src/core/Expressions/expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Expressions/expression.cpp -------------------------------------------------------------------------------- /src/core/Expressions/expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Expressions/expression.h -------------------------------------------------------------------------------- /src/core/Expressions/expressionpresets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Expressions/expressionpresets.h -------------------------------------------------------------------------------- /src/core/Expressions/framebinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Expressions/framebinding.cpp -------------------------------------------------------------------------------- /src/core/Expressions/framebinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Expressions/framebinding.h -------------------------------------------------------------------------------- /src/core/Expressions/presets/clamp.fexpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Expressions/presets/clamp.fexpr -------------------------------------------------------------------------------- /src/core/Expressions/presets/copyX.fexpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Expressions/presets/copyX.fexpr -------------------------------------------------------------------------------- /src/core/Expressions/presets/copyY.fexpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Expressions/presets/copyY.fexpr -------------------------------------------------------------------------------- /src/core/Expressions/presets/lerp.fexpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Expressions/presets/lerp.fexpr -------------------------------------------------------------------------------- /src/core/Expressions/presets/noise.fexpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Expressions/presets/noise.fexpr -------------------------------------------------------------------------------- /src/core/Expressions/presets/orbitX.fexpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Expressions/presets/orbitX.fexpr -------------------------------------------------------------------------------- /src/core/Expressions/presets/orbitY.fexpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Expressions/presets/orbitY.fexpr -------------------------------------------------------------------------------- /src/core/Expressions/presets/time.fexpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Expressions/presets/time.fexpr -------------------------------------------------------------------------------- /src/core/Expressions/presets/wave.fexpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Expressions/presets/wave.fexpr -------------------------------------------------------------------------------- /src/core/Expressions/presets/wiggle.fexpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Expressions/presets/wiggle.fexpr -------------------------------------------------------------------------------- /src/core/Expressions/propertybinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Expressions/propertybinding.cpp -------------------------------------------------------------------------------- /src/core/Expressions/propertybinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Expressions/propertybinding.h -------------------------------------------------------------------------------- /src/core/Expressions/scenebinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Expressions/scenebinding.cpp -------------------------------------------------------------------------------- /src/core/Expressions/scenebinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Expressions/scenebinding.h -------------------------------------------------------------------------------- /src/core/Expressions/valuebinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Expressions/valuebinding.cpp -------------------------------------------------------------------------------- /src/core/Expressions/valuebinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Expressions/valuebinding.h -------------------------------------------------------------------------------- /src/core/FileCacheHandlers/soundreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/FileCacheHandlers/soundreader.h -------------------------------------------------------------------------------- /src/core/GUI/boxeslistactionbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/GUI/boxeslistactionbutton.cpp -------------------------------------------------------------------------------- /src/core/GUI/boxeslistactionbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/GUI/boxeslistactionbutton.h -------------------------------------------------------------------------------- /src/core/GUI/coloranimatorbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/GUI/coloranimatorbutton.cpp -------------------------------------------------------------------------------- /src/core/GUI/coloranimatorbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/GUI/coloranimatorbutton.h -------------------------------------------------------------------------------- /src/core/GUI/dialogsinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/GUI/dialogsinterface.cpp -------------------------------------------------------------------------------- /src/core/GUI/dialogsinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/GUI/dialogsinterface.h -------------------------------------------------------------------------------- /src/core/GUI/edialogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/GUI/edialogs.cpp -------------------------------------------------------------------------------- /src/core/GUI/edialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/GUI/edialogs.h -------------------------------------------------------------------------------- /src/core/GUI/ewidgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/GUI/ewidgets.cpp -------------------------------------------------------------------------------- /src/core/GUI/ewidgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/GUI/ewidgets.h -------------------------------------------------------------------------------- /src/core/GUI/global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/GUI/global.cpp -------------------------------------------------------------------------------- /src/core/GUI/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/GUI/global.h -------------------------------------------------------------------------------- /src/core/GUI/propertynamedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/GUI/propertynamedialog.cpp -------------------------------------------------------------------------------- /src/core/GUI/propertynamedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/GUI/propertynamedialog.h -------------------------------------------------------------------------------- /src/core/GUI/sizesetter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/GUI/sizesetter.cpp -------------------------------------------------------------------------------- /src/core/GUI/sizesetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/GUI/sizesetter.h -------------------------------------------------------------------------------- /src/core/GUI/valueinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/GUI/valueinput.cpp -------------------------------------------------------------------------------- /src/core/GUI/valueinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/GUI/valueinput.h -------------------------------------------------------------------------------- /src/core/MovablePoints/animatedpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/MovablePoints/animatedpoint.cpp -------------------------------------------------------------------------------- /src/core/MovablePoints/animatedpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/MovablePoints/animatedpoint.h -------------------------------------------------------------------------------- /src/core/MovablePoints/boxpathpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/MovablePoints/boxpathpoint.cpp -------------------------------------------------------------------------------- /src/core/MovablePoints/boxpathpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/MovablePoints/boxpathpoint.h -------------------------------------------------------------------------------- /src/core/MovablePoints/gradientpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/MovablePoints/gradientpoint.cpp -------------------------------------------------------------------------------- /src/core/MovablePoints/gradientpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/MovablePoints/gradientpoint.h -------------------------------------------------------------------------------- /src/core/MovablePoints/movablepoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/MovablePoints/movablepoint.cpp -------------------------------------------------------------------------------- /src/core/MovablePoints/movablepoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/MovablePoints/movablepoint.h -------------------------------------------------------------------------------- /src/core/MovablePoints/pathpivot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/MovablePoints/pathpivot.cpp -------------------------------------------------------------------------------- /src/core/MovablePoints/pathpivot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/MovablePoints/pathpivot.h -------------------------------------------------------------------------------- /src/core/MovablePoints/pointshandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/MovablePoints/pointshandler.cpp -------------------------------------------------------------------------------- /src/core/MovablePoints/pointshandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/MovablePoints/pointshandler.h -------------------------------------------------------------------------------- /src/core/MovablePoints/segment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/MovablePoints/segment.cpp -------------------------------------------------------------------------------- /src/core/MovablePoints/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/MovablePoints/segment.h -------------------------------------------------------------------------------- /src/core/MovablePoints/smartctrlpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/MovablePoints/smartctrlpoint.cpp -------------------------------------------------------------------------------- /src/core/MovablePoints/smartctrlpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/MovablePoints/smartctrlpoint.h -------------------------------------------------------------------------------- /src/core/MovablePoints/smartnodepoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/MovablePoints/smartnodepoint.cpp -------------------------------------------------------------------------------- /src/core/MovablePoints/smartnodepoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/MovablePoints/smartnodepoint.h -------------------------------------------------------------------------------- /src/core/Paint/brushcontexedwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Paint/brushcontexedwrapper.cpp -------------------------------------------------------------------------------- /src/core/Paint/brushcontexedwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Paint/brushcontexedwrapper.h -------------------------------------------------------------------------------- /src/core/Paint/brushescontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Paint/brushescontext.cpp -------------------------------------------------------------------------------- /src/core/Paint/brushescontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Paint/brushescontext.h -------------------------------------------------------------------------------- /src/core/Paint/simplebrushwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Paint/simplebrushwrapper.cpp -------------------------------------------------------------------------------- /src/core/Paint/simplebrushwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Paint/simplebrushwrapper.h -------------------------------------------------------------------------------- /src/core/PathEffects/custompatheffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/PathEffects/custompatheffect.cpp -------------------------------------------------------------------------------- /src/core/PathEffects/custompatheffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/PathEffects/custompatheffect.h -------------------------------------------------------------------------------- /src/core/PathEffects/dashpatheffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/PathEffects/dashpatheffect.cpp -------------------------------------------------------------------------------- /src/core/PathEffects/dashpatheffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/PathEffects/dashpatheffect.h -------------------------------------------------------------------------------- /src/core/PathEffects/displacepatheffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/PathEffects/displacepatheffect.h -------------------------------------------------------------------------------- /src/core/PathEffects/linespatheffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/PathEffects/linespatheffect.cpp -------------------------------------------------------------------------------- /src/core/PathEffects/linespatheffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/PathEffects/linespatheffect.h -------------------------------------------------------------------------------- /src/core/PathEffects/patheffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/PathEffects/patheffect.cpp -------------------------------------------------------------------------------- /src/core/PathEffects/patheffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/PathEffects/patheffect.h -------------------------------------------------------------------------------- /src/core/PathEffects/patheffectcaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/PathEffects/patheffectcaller.cpp -------------------------------------------------------------------------------- /src/core/PathEffects/patheffectcaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/PathEffects/patheffectcaller.h -------------------------------------------------------------------------------- /src/core/PathEffects/patheffectsinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/PathEffects/patheffectsinclude.h -------------------------------------------------------------------------------- /src/core/PathEffects/patheffectstask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/PathEffects/patheffectstask.cpp -------------------------------------------------------------------------------- /src/core/PathEffects/patheffectstask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/PathEffects/patheffectstask.h -------------------------------------------------------------------------------- /src/core/PathEffects/solidifypatheffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/PathEffects/solidifypatheffect.h -------------------------------------------------------------------------------- /src/core/PathEffects/subpatheffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/PathEffects/subpatheffect.cpp -------------------------------------------------------------------------------- /src/core/PathEffects/subpatheffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/PathEffects/subpatheffect.h -------------------------------------------------------------------------------- /src/core/PathEffects/sumpatheffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/PathEffects/sumpatheffect.cpp -------------------------------------------------------------------------------- /src/core/PathEffects/sumpatheffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/PathEffects/sumpatheffect.h -------------------------------------------------------------------------------- /src/core/PathEffects/zigzagpatheffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/PathEffects/zigzagpatheffect.cpp -------------------------------------------------------------------------------- /src/core/PathEffects/zigzagpatheffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/PathEffects/zigzagpatheffect.h -------------------------------------------------------------------------------- /src/core/Private/Tasks/complextask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Private/Tasks/complextask.cpp -------------------------------------------------------------------------------- /src/core/Private/Tasks/complextask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Private/Tasks/complextask.h -------------------------------------------------------------------------------- /src/core/Private/Tasks/execcontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Private/Tasks/execcontroller.cpp -------------------------------------------------------------------------------- /src/core/Private/Tasks/execcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Private/Tasks/execcontroller.h -------------------------------------------------------------------------------- /src/core/Private/Tasks/gputaskexecutor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Private/Tasks/gputaskexecutor.h -------------------------------------------------------------------------------- /src/core/Private/Tasks/offscreenqgl33c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Private/Tasks/offscreenqgl33c.h -------------------------------------------------------------------------------- /src/core/Private/Tasks/taskexecutor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Private/Tasks/taskexecutor.cpp -------------------------------------------------------------------------------- /src/core/Private/Tasks/taskexecutor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Private/Tasks/taskexecutor.h -------------------------------------------------------------------------------- /src/core/Private/Tasks/taskque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Private/Tasks/taskque.cpp -------------------------------------------------------------------------------- /src/core/Private/Tasks/taskque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Private/Tasks/taskque.h -------------------------------------------------------------------------------- /src/core/Private/Tasks/taskquehandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Private/Tasks/taskquehandler.cpp -------------------------------------------------------------------------------- /src/core/Private/Tasks/taskquehandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Private/Tasks/taskquehandler.h -------------------------------------------------------------------------------- /src/core/Private/Tasks/taskscheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Private/Tasks/taskscheduler.cpp -------------------------------------------------------------------------------- /src/core/Private/Tasks/taskscheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Private/Tasks/taskscheduler.h -------------------------------------------------------------------------------- /src/core/Private/document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Private/document.cpp -------------------------------------------------------------------------------- /src/core/Private/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Private/document.h -------------------------------------------------------------------------------- /src/core/Private/documentrw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Private/documentrw.cpp -------------------------------------------------------------------------------- /src/core/Private/esettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Private/esettings.cpp -------------------------------------------------------------------------------- /src/core/Private/esettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Private/esettings.h -------------------------------------------------------------------------------- /src/core/Private/memorystructs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Private/memorystructs.cpp -------------------------------------------------------------------------------- /src/core/Private/memorystructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Private/memorystructs.h -------------------------------------------------------------------------------- /src/core/Private/qatomiclist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Private/qatomiclist.h -------------------------------------------------------------------------------- /src/core/Properties/boolproperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Properties/boolproperty.cpp -------------------------------------------------------------------------------- /src/core/Properties/boolproperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Properties/boolproperty.h -------------------------------------------------------------------------------- /src/core/Properties/boxtargetproperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Properties/boxtargetproperty.cpp -------------------------------------------------------------------------------- /src/core/Properties/boxtargetproperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Properties/boxtargetproperty.h -------------------------------------------------------------------------------- /src/core/Properties/comboboxproperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Properties/comboboxproperty.cpp -------------------------------------------------------------------------------- /src/core/Properties/comboboxproperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Properties/comboboxproperty.h -------------------------------------------------------------------------------- /src/core/Properties/emimedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Properties/emimedata.h -------------------------------------------------------------------------------- /src/core/Properties/namedproperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Properties/namedproperty.h -------------------------------------------------------------------------------- /src/core/Properties/newproperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Properties/newproperty.h -------------------------------------------------------------------------------- /src/core/Properties/property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Properties/property.cpp -------------------------------------------------------------------------------- /src/core/Properties/property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Properties/property.h -------------------------------------------------------------------------------- /src/core/RasterEffects/blureffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/RasterEffects/blureffect.cpp -------------------------------------------------------------------------------- /src/core/RasterEffects/blureffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/RasterEffects/blureffect.h -------------------------------------------------------------------------------- /src/core/RasterEffects/colorizeeffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/RasterEffects/colorizeeffect.cpp -------------------------------------------------------------------------------- /src/core/RasterEffects/colorizeeffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/RasterEffects/colorizeeffect.h -------------------------------------------------------------------------------- /src/core/RasterEffects/motionblureffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/RasterEffects/motionblureffect.h -------------------------------------------------------------------------------- /src/core/RasterEffects/noisefadeeffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/RasterEffects/noisefadeeffect.h -------------------------------------------------------------------------------- /src/core/RasterEffects/rastereffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/RasterEffects/rastereffect.cpp -------------------------------------------------------------------------------- /src/core/RasterEffects/rastereffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/RasterEffects/rastereffect.h -------------------------------------------------------------------------------- /src/core/RasterEffects/shadoweffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/RasterEffects/shadoweffect.cpp -------------------------------------------------------------------------------- /src/core/RasterEffects/shadoweffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/RasterEffects/shadoweffect.h -------------------------------------------------------------------------------- /src/core/RasterEffects/wipeeffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/RasterEffects/wipeeffect.cpp -------------------------------------------------------------------------------- /src/core/RasterEffects/wipeeffect.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/RasterEffects/wipeeffect.frag -------------------------------------------------------------------------------- /src/core/RasterEffects/wipeeffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/RasterEffects/wipeeffect.h -------------------------------------------------------------------------------- /src/core/ReadWrite/efuturepos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/ReadWrite/efuturepos.h -------------------------------------------------------------------------------- /src/core/ReadWrite/ereadstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/ReadWrite/ereadstream.cpp -------------------------------------------------------------------------------- /src/core/ReadWrite/ereadstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/ReadWrite/ereadstream.h -------------------------------------------------------------------------------- /src/core/ReadWrite/evformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/ReadWrite/evformat.h -------------------------------------------------------------------------------- /src/core/ReadWrite/ewritestream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/ReadWrite/ewritestream.cpp -------------------------------------------------------------------------------- /src/core/ReadWrite/ewritestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/ReadWrite/ewritestream.h -------------------------------------------------------------------------------- /src/core/ReadWrite/filefooter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/ReadWrite/filefooter.cpp -------------------------------------------------------------------------------- /src/core/ReadWrite/filefooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/ReadWrite/filefooter.h -------------------------------------------------------------------------------- /src/core/ReadWrite/xevformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/ReadWrite/xevformat.h -------------------------------------------------------------------------------- /src/core/Segments/conicsegment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Segments/conicsegment.cpp -------------------------------------------------------------------------------- /src/core/Segments/conicsegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Segments/conicsegment.h -------------------------------------------------------------------------------- /src/core/Segments/cubiclist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Segments/cubiclist.cpp -------------------------------------------------------------------------------- /src/core/Segments/cubiclist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Segments/cubiclist.h -------------------------------------------------------------------------------- /src/core/Segments/cubicnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Segments/cubicnode.h -------------------------------------------------------------------------------- /src/core/Segments/fitcurves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Segments/fitcurves.cpp -------------------------------------------------------------------------------- /src/core/Segments/fitcurves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Segments/fitcurves.h -------------------------------------------------------------------------------- /src/core/Segments/qcubicsegment1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Segments/qcubicsegment1d.cpp -------------------------------------------------------------------------------- /src/core/Segments/qcubicsegment1d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Segments/qcubicsegment1d.h -------------------------------------------------------------------------------- /src/core/Segments/qcubicsegment2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Segments/qcubicsegment2d.cpp -------------------------------------------------------------------------------- /src/core/Segments/qcubicsegment2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Segments/qcubicsegment2d.h -------------------------------------------------------------------------------- /src/core/Segments/quadsegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Segments/quadsegment.h -------------------------------------------------------------------------------- /src/core/Segments/smoothcurves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Segments/smoothcurves.cpp -------------------------------------------------------------------------------- /src/core/Segments/smoothcurves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Segments/smoothcurves.h -------------------------------------------------------------------------------- /src/core/ShaderEffects/shadereffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/ShaderEffects/shadereffect.cpp -------------------------------------------------------------------------------- /src/core/ShaderEffects/shadereffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/ShaderEffects/shadereffect.h -------------------------------------------------------------------------------- /src/core/ShaderEffects/shadereffectjs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/ShaderEffects/shadereffectjs.cpp -------------------------------------------------------------------------------- /src/core/ShaderEffects/shadereffectjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/ShaderEffects/shadereffectjs.h -------------------------------------------------------------------------------- /src/core/Sound/audiohandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Sound/audiohandler.cpp -------------------------------------------------------------------------------- /src/core/Sound/audiohandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Sound/audiohandler.h -------------------------------------------------------------------------------- /src/core/Sound/eindependentsound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Sound/eindependentsound.cpp -------------------------------------------------------------------------------- /src/core/Sound/eindependentsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Sound/eindependentsound.h -------------------------------------------------------------------------------- /src/core/Sound/esound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Sound/esound.cpp -------------------------------------------------------------------------------- /src/core/Sound/esound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Sound/esound.h -------------------------------------------------------------------------------- /src/core/Sound/esoundlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Sound/esoundlink.cpp -------------------------------------------------------------------------------- /src/core/Sound/esoundlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Sound/esoundlink.h -------------------------------------------------------------------------------- /src/core/Sound/esoundobjectbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Sound/esoundobjectbase.cpp -------------------------------------------------------------------------------- /src/core/Sound/esoundobjectbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Sound/esoundobjectbase.h -------------------------------------------------------------------------------- /src/core/Sound/esoundsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Sound/esoundsettings.cpp -------------------------------------------------------------------------------- /src/core/Sound/esoundsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Sound/esoundsettings.h -------------------------------------------------------------------------------- /src/core/Sound/evideosound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Sound/evideosound.cpp -------------------------------------------------------------------------------- /src/core/Sound/evideosound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Sound/evideosound.h -------------------------------------------------------------------------------- /src/core/Sound/soundcomposition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Sound/soundcomposition.cpp -------------------------------------------------------------------------------- /src/core/Sound/soundcomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Sound/soundcomposition.h -------------------------------------------------------------------------------- /src/core/Sound/soundmerger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Sound/soundmerger.cpp -------------------------------------------------------------------------------- /src/core/Sound/soundmerger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Sound/soundmerger.h -------------------------------------------------------------------------------- /src/core/Tasks/domeletask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Tasks/domeletask.cpp -------------------------------------------------------------------------------- /src/core/Tasks/domeletask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Tasks/domeletask.h -------------------------------------------------------------------------------- /src/core/Tasks/etask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Tasks/etask.cpp -------------------------------------------------------------------------------- /src/core/Tasks/etask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Tasks/etask.h -------------------------------------------------------------------------------- /src/core/Tasks/etaskbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Tasks/etaskbase.cpp -------------------------------------------------------------------------------- /src/core/Tasks/etaskbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Tasks/etaskbase.h -------------------------------------------------------------------------------- /src/core/Tasks/updatable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Tasks/updatable.cpp -------------------------------------------------------------------------------- /src/core/Tasks/updatable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Tasks/updatable.h -------------------------------------------------------------------------------- /src/core/Timeline/animationrect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Timeline/animationrect.cpp -------------------------------------------------------------------------------- /src/core/Timeline/animationrect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Timeline/animationrect.h -------------------------------------------------------------------------------- /src/core/Timeline/durationrectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Timeline/durationrectangle.cpp -------------------------------------------------------------------------------- /src/core/Timeline/durationrectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Timeline/durationrectangle.h -------------------------------------------------------------------------------- /src/core/Timeline/fixedlenanimationrect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/Timeline/fixedlenanimationrect.h -------------------------------------------------------------------------------- /src/core/TransformEffects/parenteffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/TransformEffects/parenteffect.h -------------------------------------------------------------------------------- /src/core/TransformEffects/trackeffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/TransformEffects/trackeffect.cpp -------------------------------------------------------------------------------- /src/core/TransformEffects/trackeffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/TransformEffects/trackeffect.h -------------------------------------------------------------------------------- /src/core/XML/runtimewriteid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/XML/runtimewriteid.h -------------------------------------------------------------------------------- /src/core/XML/xevexporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/XML/xevexporter.cpp -------------------------------------------------------------------------------- /src/core/XML/xevexporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/XML/xevexporter.h -------------------------------------------------------------------------------- /src/core/XML/xevimporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/XML/xevimporter.cpp -------------------------------------------------------------------------------- /src/core/XML/xevimporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/XML/xevimporter.h -------------------------------------------------------------------------------- /src/core/XML/xevzipfilesaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/XML/xevzipfilesaver.cpp -------------------------------------------------------------------------------- /src/core/XML/xevzipfilesaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/XML/xevzipfilesaver.h -------------------------------------------------------------------------------- /src/core/XML/xmlexporthelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/XML/xmlexporthelpers.cpp -------------------------------------------------------------------------------- /src/core/XML/xmlexporthelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/XML/xmlexporthelpers.h -------------------------------------------------------------------------------- /src/core/action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/action.cpp -------------------------------------------------------------------------------- /src/core/action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/action.h -------------------------------------------------------------------------------- /src/core/actions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/actions.cpp -------------------------------------------------------------------------------- /src/core/actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/actions.h -------------------------------------------------------------------------------- /src/core/appsupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/appsupport.cpp -------------------------------------------------------------------------------- /src/core/appsupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/appsupport.h -------------------------------------------------------------------------------- /src/core/canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/canvas.cpp -------------------------------------------------------------------------------- /src/core/canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/canvas.h -------------------------------------------------------------------------------- /src/core/canvasbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/canvasbase.cpp -------------------------------------------------------------------------------- /src/core/canvasbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/canvasbase.h -------------------------------------------------------------------------------- /src/core/canvasgizmos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/canvasgizmos.cpp -------------------------------------------------------------------------------- /src/core/canvashandlesmartpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/canvashandlesmartpath.cpp -------------------------------------------------------------------------------- /src/core/canvasmouseevents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/canvasmouseevents.cpp -------------------------------------------------------------------------------- /src/core/canvasmouseinteractions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/canvasmouseinteractions.cpp -------------------------------------------------------------------------------- /src/core/canvasselectedboxesactions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/canvasselectedboxesactions.cpp -------------------------------------------------------------------------------- /src/core/canvasselectedpointsactions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/canvasselectedpointsactions.cpp -------------------------------------------------------------------------------- /src/core/clipboardcontainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/clipboardcontainer.cpp -------------------------------------------------------------------------------- /src/core/clipboardcontainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/clipboardcontainer.h -------------------------------------------------------------------------------- /src/core/colorhelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/colorhelpers.cpp -------------------------------------------------------------------------------- /src/core/colorhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/colorhelpers.h -------------------------------------------------------------------------------- /src/core/colorsetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/colorsetting.cpp -------------------------------------------------------------------------------- /src/core/colorsetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/colorsetting.h -------------------------------------------------------------------------------- /src/core/colorshaders/alpha.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/colorshaders/alpha.frag -------------------------------------------------------------------------------- /src/core/colorshaders/blue.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/colorshaders/blue.frag -------------------------------------------------------------------------------- /src/core/colorshaders/border.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/colorshaders/border.frag -------------------------------------------------------------------------------- /src/core/colorshaders/doubleborder.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/colorshaders/doubleborder.frag -------------------------------------------------------------------------------- /src/core/colorshaders/gradient.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/colorshaders/gradient.frag -------------------------------------------------------------------------------- /src/core/colorshaders/green.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/colorshaders/green.frag -------------------------------------------------------------------------------- /src/core/colorshaders/hsl_saturation.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/colorshaders/hsl_saturation.frag -------------------------------------------------------------------------------- /src/core/colorshaders/hsv_saturation.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/colorshaders/hsv_saturation.frag -------------------------------------------------------------------------------- /src/core/colorshaders/hue.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/colorshaders/hue.frag -------------------------------------------------------------------------------- /src/core/colorshaders/lightness.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/colorshaders/lightness.frag -------------------------------------------------------------------------------- /src/core/colorshaders/plain.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/colorshaders/plain.frag -------------------------------------------------------------------------------- /src/core/colorshaders/red.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/colorshaders/red.frag -------------------------------------------------------------------------------- /src/core/colorshaders/value.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/colorshaders/value.frag -------------------------------------------------------------------------------- /src/core/conncontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/conncontext.cpp -------------------------------------------------------------------------------- /src/core/conncontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/conncontext.h -------------------------------------------------------------------------------- /src/core/conncontextobjlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/conncontextobjlist.h -------------------------------------------------------------------------------- /src/core/conncontextptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/conncontextptr.h -------------------------------------------------------------------------------- /src/core/core_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/core_global.h -------------------------------------------------------------------------------- /src/core/coreresources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/coreresources.qrc -------------------------------------------------------------------------------- /src/core/cpurendertools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/cpurendertools.h -------------------------------------------------------------------------------- /src/core/customhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/customhandler.h -------------------------------------------------------------------------------- /src/core/customidentifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/customidentifier.cpp -------------------------------------------------------------------------------- /src/core/customidentifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/customidentifier.h -------------------------------------------------------------------------------- /src/core/differsinterpolate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/differsinterpolate.cpp -------------------------------------------------------------------------------- /src/core/differsinterpolate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/differsinterpolate.h -------------------------------------------------------------------------------- /src/core/drawpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/drawpath.cpp -------------------------------------------------------------------------------- /src/core/drawpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/drawpath.h -------------------------------------------------------------------------------- /src/core/eevent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/eevent.cpp -------------------------------------------------------------------------------- /src/core/eevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/eevent.h -------------------------------------------------------------------------------- /src/core/efiltersettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/efiltersettings.cpp -------------------------------------------------------------------------------- /src/core/efiltersettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/efiltersettings.h -------------------------------------------------------------------------------- /src/core/etexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/etexture.cpp -------------------------------------------------------------------------------- /src/core/etexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/etexture.h -------------------------------------------------------------------------------- /src/core/etextureframebuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/etextureframebuffer.cpp -------------------------------------------------------------------------------- /src/core/etextureframebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/etextureframebuffer.h -------------------------------------------------------------------------------- /src/core/exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/exceptions.cpp -------------------------------------------------------------------------------- /src/core/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/exceptions.h -------------------------------------------------------------------------------- /src/core/fileshandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/fileshandler.cpp -------------------------------------------------------------------------------- /src/core/fileshandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/fileshandler.h -------------------------------------------------------------------------------- /src/core/filesourcescache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/filesourcescache.cpp -------------------------------------------------------------------------------- /src/core/filesourcescache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/filesourcescache.h -------------------------------------------------------------------------------- /src/core/formatoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/formatoptions.h -------------------------------------------------------------------------------- /src/core/framerange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/framerange.cpp -------------------------------------------------------------------------------- /src/core/framerange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/framerange.h -------------------------------------------------------------------------------- /src/core/gizmos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/gizmos.h -------------------------------------------------------------------------------- /src/core/glhelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/glhelpers.cpp -------------------------------------------------------------------------------- /src/core/glhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/glhelpers.h -------------------------------------------------------------------------------- /src/core/gpurendertools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/gpurendertools.cpp -------------------------------------------------------------------------------- /src/core/gpurendertools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/gpurendertools.h -------------------------------------------------------------------------------- /src/core/hardwareenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/hardwareenums.h -------------------------------------------------------------------------------- /src/core/hardwareinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/hardwareinfo.cpp -------------------------------------------------------------------------------- /src/core/hardwareinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/hardwareinfo.h -------------------------------------------------------------------------------- /src/core/importhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/importhandler.cpp -------------------------------------------------------------------------------- /src/core/importhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/importhandler.h -------------------------------------------------------------------------------- /src/core/matrixdecomposition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/matrixdecomposition.cpp -------------------------------------------------------------------------------- /src/core/matrixdecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/matrixdecomposition.h -------------------------------------------------------------------------------- /src/core/memorydatahandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/memorydatahandler.cpp -------------------------------------------------------------------------------- /src/core/memorydatahandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/memorydatahandler.h -------------------------------------------------------------------------------- /src/core/namefixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/namefixer.cpp -------------------------------------------------------------------------------- /src/core/namefixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/namefixer.h -------------------------------------------------------------------------------- /src/core/nodepointvalues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/nodepointvalues.cpp -------------------------------------------------------------------------------- /src/core/nodepointvalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/nodepointvalues.h -------------------------------------------------------------------------------- /src/core/outputsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/outputsettings.cpp -------------------------------------------------------------------------------- /src/core/outputsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/outputsettings.h -------------------------------------------------------------------------------- /src/core/paintsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/paintsettings.h -------------------------------------------------------------------------------- /src/core/paintsettingsapplier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/paintsettingsapplier.cpp -------------------------------------------------------------------------------- /src/core/paintsettingsapplier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/paintsettingsapplier.h -------------------------------------------------------------------------------- /src/core/pathoperations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/pathoperations.cpp -------------------------------------------------------------------------------- /src/core/pathoperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/pathoperations.h -------------------------------------------------------------------------------- /src/core/pointhelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/pointhelpers.cpp -------------------------------------------------------------------------------- /src/core/pointhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/pointhelpers.h -------------------------------------------------------------------------------- /src/core/pointtypemenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/pointtypemenu.h -------------------------------------------------------------------------------- /src/core/randomgrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/randomgrid.cpp -------------------------------------------------------------------------------- /src/core/randomgrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/randomgrid.h -------------------------------------------------------------------------------- /src/core/rangemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/rangemap.h -------------------------------------------------------------------------------- /src/core/regexhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/regexhelpers.h -------------------------------------------------------------------------------- /src/core/renderinstancesettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/renderinstancesettings.cpp -------------------------------------------------------------------------------- /src/core/renderinstancesettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/renderinstancesettings.h -------------------------------------------------------------------------------- /src/core/rendersettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/rendersettings.cpp -------------------------------------------------------------------------------- /src/core/rendersettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/rendersettings.h -------------------------------------------------------------------------------- /src/core/shaders/maxalpha.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/shaders/maxalpha.frag -------------------------------------------------------------------------------- /src/core/shaders/plain.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/shaders/plain.vert -------------------------------------------------------------------------------- /src/core/shaders/textured.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/shaders/textured.vert -------------------------------------------------------------------------------- /src/core/simplemath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/simplemath.cpp -------------------------------------------------------------------------------- /src/core/simplemath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/simplemath.h -------------------------------------------------------------------------------- /src/core/simpletask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/simpletask.cpp -------------------------------------------------------------------------------- /src/core/simpletask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/simpletask.h -------------------------------------------------------------------------------- /src/core/singlewidgettarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/singlewidgettarget.cpp -------------------------------------------------------------------------------- /src/core/singlewidgettarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/singlewidgettarget.h -------------------------------------------------------------------------------- /src/core/skia/skiadefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/skia/skiadefines.h -------------------------------------------------------------------------------- /src/core/skia/skiahelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/skia/skiahelpers.cpp -------------------------------------------------------------------------------- /src/core/skia/skiahelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/skia/skiahelpers.h -------------------------------------------------------------------------------- /src/core/skia/skiaincludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/skia/skiaincludes.h -------------------------------------------------------------------------------- /src/core/skia/skqtconversions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/skia/skqtconversions.cpp -------------------------------------------------------------------------------- /src/core/skia/skqtconversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/skia/skqtconversions.h -------------------------------------------------------------------------------- /src/core/smartPointers/ememory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/smartPointers/ememory.h -------------------------------------------------------------------------------- /src/core/smartPointers/eobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/smartPointers/eobject.h -------------------------------------------------------------------------------- /src/core/smartPointers/selfref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/smartPointers/selfref.h -------------------------------------------------------------------------------- /src/core/smartPointers/stdpointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/smartPointers/stdpointer.h -------------------------------------------------------------------------------- /src/core/smartPointers/stdselfref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/smartPointers/stdselfref.cpp -------------------------------------------------------------------------------- /src/core/smartPointers/stdselfref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/smartPointers/stdselfref.h -------------------------------------------------------------------------------- /src/core/svgexporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/svgexporter.cpp -------------------------------------------------------------------------------- /src/core/svgexporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/svgexporter.h -------------------------------------------------------------------------------- /src/core/svgexporthelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/svgexporthelpers.cpp -------------------------------------------------------------------------------- /src/core/svgexporthelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/svgexporthelpers.h -------------------------------------------------------------------------------- /src/core/svgimporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/svgimporter.cpp -------------------------------------------------------------------------------- /src/core/svgimporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/svgimporter.h -------------------------------------------------------------------------------- /src/core/switchablecontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/switchablecontext.cpp -------------------------------------------------------------------------------- /src/core/switchablecontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/switchablecontext.h -------------------------------------------------------------------------------- /src/core/swt_abstraction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/swt_abstraction.cpp -------------------------------------------------------------------------------- /src/core/swt_abstraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/swt_abstraction.h -------------------------------------------------------------------------------- /src/core/swt_rulescollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/swt_rulescollection.cpp -------------------------------------------------------------------------------- /src/core/swt_rulescollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/swt_rulescollection.h -------------------------------------------------------------------------------- /src/core/texteffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/texteffect.cpp -------------------------------------------------------------------------------- /src/core/texteffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/texteffect.h -------------------------------------------------------------------------------- /src/core/themesupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/themesupport.cpp -------------------------------------------------------------------------------- /src/core/themesupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/themesupport.h -------------------------------------------------------------------------------- /src/core/threadsafeqjsengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/threadsafeqjsengine.h -------------------------------------------------------------------------------- /src/core/transformvalues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/transformvalues.cpp -------------------------------------------------------------------------------- /src/core/transformvalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/transformvalues.h -------------------------------------------------------------------------------- /src/core/typemenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/typemenu.cpp -------------------------------------------------------------------------------- /src/core/typemenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/typemenu.h -------------------------------------------------------------------------------- /src/core/undoredo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/undoredo.cpp -------------------------------------------------------------------------------- /src/core/undoredo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/undoredo.h -------------------------------------------------------------------------------- /src/core/videoencoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/videoencoder.cpp -------------------------------------------------------------------------------- /src/core/videoencoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/videoencoder.h -------------------------------------------------------------------------------- /src/core/windowsincludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/windowsincludes.h -------------------------------------------------------------------------------- /src/core/wrappedint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/wrappedint.cpp -------------------------------------------------------------------------------- /src/core/wrappedint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/wrappedint.h -------------------------------------------------------------------------------- /src/core/zipfileloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/zipfileloader.cpp -------------------------------------------------------------------------------- /src/core/zipfileloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/zipfileloader.h -------------------------------------------------------------------------------- /src/core/zipfilesaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/zipfilesaver.cpp -------------------------------------------------------------------------------- /src/core/zipfilesaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/core/zipfilesaver.h -------------------------------------------------------------------------------- /src/examples/rasterEffects/eBlur/eblur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/examples/rasterEffects/eBlur/eblur.h -------------------------------------------------------------------------------- /src/examples/shaderEffects/eColorize.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/examples/shaderEffects/eColorize.frag -------------------------------------------------------------------------------- /src/examples/shaderEffects/eColorize.gre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/examples/shaderEffects/eColorize.gre -------------------------------------------------------------------------------- /src/examples/shaderEffects/eColorize2.gre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/examples/shaderEffects/eColorize2.gre -------------------------------------------------------------------------------- /src/examples/shaderEffects/eDots.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/examples/shaderEffects/eDots.frag -------------------------------------------------------------------------------- /src/examples/shaderEffects/eDots.gre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/examples/shaderEffects/eDots.gre -------------------------------------------------------------------------------- /src/examples/shaderEffects/eExplode.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/examples/shaderEffects/eExplode.frag -------------------------------------------------------------------------------- /src/examples/shaderEffects/eExplode.gre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/examples/shaderEffects/eExplode.gre -------------------------------------------------------------------------------- /src/examples/shaderEffects/eNoiseFade.gre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/examples/shaderEffects/eNoiseFade.gre -------------------------------------------------------------------------------- /src/examples/shaderEffects/eWipe.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/examples/shaderEffects/eWipe.frag -------------------------------------------------------------------------------- /src/examples/shaderEffects/eWipe.gre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/examples/shaderEffects/eWipe.gre -------------------------------------------------------------------------------- /src/examples/shaderEffects/eWipeLeft.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/examples/shaderEffects/eWipeLeft.frag -------------------------------------------------------------------------------- /src/examples/shaderEffects/eWipeLeft.gre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/examples/shaderEffects/eWipeLeft.gre -------------------------------------------------------------------------------- /src/examples/shaderEffects/eWipeRight.gre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/examples/shaderEffects/eWipeRight.gre -------------------------------------------------------------------------------- /src/scripts/Dockerfile.vfxplatform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/Dockerfile.vfxplatform -------------------------------------------------------------------------------- /src/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/README.md -------------------------------------------------------------------------------- /src/scripts/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/build.bat -------------------------------------------------------------------------------- /src/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/build.sh -------------------------------------------------------------------------------- /src/scripts/build_changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/build_changelog.sh -------------------------------------------------------------------------------- /src/scripts/build_hicolor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/build_hicolor.sh -------------------------------------------------------------------------------- /src/scripts/build_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/build_mac.sh -------------------------------------------------------------------------------- /src/scripts/build_mac_ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/build_mac_ci.sh -------------------------------------------------------------------------------- /src/scripts/build_mac_sdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/build_mac_sdk.sh -------------------------------------------------------------------------------- /src/scripts/build_mac_universal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/build_mac_universal.sh -------------------------------------------------------------------------------- /src/scripts/build_mxe_ffmpeg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/build_mxe_ffmpeg.sh -------------------------------------------------------------------------------- /src/scripts/build_qscintilla.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/build_qscintilla.bat -------------------------------------------------------------------------------- /src/scripts/build_qt5.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/build_qt5.bat -------------------------------------------------------------------------------- /src/scripts/build_qt_debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/build_qt_debug.sh -------------------------------------------------------------------------------- /src/scripts/build_source_tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/build_source_tarball.sh -------------------------------------------------------------------------------- /src/scripts/build_vfxplatform.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/build_vfxplatform.sh -------------------------------------------------------------------------------- /src/scripts/build_vfxplatform_friction.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/build_vfxplatform_friction.sh -------------------------------------------------------------------------------- /src/scripts/build_vfxplatform_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/build_vfxplatform_package.sh -------------------------------------------------------------------------------- /src/scripts/build_vfxplatform_sdk01.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/build_vfxplatform_sdk01.sh -------------------------------------------------------------------------------- /src/scripts/build_vfxplatform_sdk02.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/build_vfxplatform_sdk02.sh -------------------------------------------------------------------------------- /src/scripts/build_vfxplatform_sdk03.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/build_vfxplatform_sdk03.sh -------------------------------------------------------------------------------- /src/scripts/ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/ci.sh -------------------------------------------------------------------------------- /src/scripts/configure_qt5.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/configure_qt5.bat -------------------------------------------------------------------------------- /src/scripts/easing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/README.md -------------------------------------------------------------------------------- /src/scripts/easing/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/build.sh -------------------------------------------------------------------------------- /src/scripts/easing/presets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/presets/README.md -------------------------------------------------------------------------------- /src/scripts/easing/presets/easeInBack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/presets/easeInBack.js -------------------------------------------------------------------------------- /src/scripts/easing/presets/easeInCirc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/presets/easeInCirc.js -------------------------------------------------------------------------------- /src/scripts/easing/presets/easeInCubic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/presets/easeInCubic.js -------------------------------------------------------------------------------- /src/scripts/easing/presets/easeInExpo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/presets/easeInExpo.js -------------------------------------------------------------------------------- /src/scripts/easing/presets/easeInQuad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/presets/easeInQuad.js -------------------------------------------------------------------------------- /src/scripts/easing/presets/easeInQuart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/presets/easeInQuart.js -------------------------------------------------------------------------------- /src/scripts/easing/presets/easeInQuint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/presets/easeInQuint.js -------------------------------------------------------------------------------- /src/scripts/easing/presets/easeInSine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/presets/easeInSine.js -------------------------------------------------------------------------------- /src/scripts/easing/presets/easeOutBack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/presets/easeOutBack.js -------------------------------------------------------------------------------- /src/scripts/easing/presets/easeOutCirc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/presets/easeOutCirc.js -------------------------------------------------------------------------------- /src/scripts/easing/presets/easeOutExpo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/presets/easeOutExpo.js -------------------------------------------------------------------------------- /src/scripts/easing/presets/easeOutQuad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/presets/easeOutQuad.js -------------------------------------------------------------------------------- /src/scripts/easing/presets/easeOutSine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/presets/easeOutSine.js -------------------------------------------------------------------------------- /src/scripts/easing/src/bindings.js: -------------------------------------------------------------------------------- 1 | current = $frame; 2 | -------------------------------------------------------------------------------- /src/scripts/easing/src/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/common.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeInBack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeInBack.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeInBounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeInBounce.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeInCirc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeInCirc.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeInCubic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeInCubic.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeInElastic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeInElastic.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeInExpo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeInExpo.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeInOutBack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeInOutBack.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeInOutBounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeInOutBounce.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeInOutCirc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeInOutCirc.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeInOutCubic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeInOutCubic.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeInOutExpo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeInOutExpo.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeInOutQuad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeInOutQuad.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeInOutQuart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeInOutQuart.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeInOutQuint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeInOutQuint.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeInOutSine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeInOutSine.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeInQuad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeInQuad.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeInQuart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeInQuart.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeInQuint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeInQuint.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeInSine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeInSine.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeOutBack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeOutBack.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeOutBounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeOutBounce.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeOutCirc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeOutCirc.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeOutCubic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeOutCubic.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeOutElastic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeOutElastic.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeOutExpo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeOutExpo.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeOutQuad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeOutQuad.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeOutQuart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeOutQuart.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeOutQuint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeOutQuint.js -------------------------------------------------------------------------------- /src/scripts/easing/src/easeOutSine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/easing/src/easeOutSine.js -------------------------------------------------------------------------------- /src/scripts/flatpak/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/flatpak/build.sh -------------------------------------------------------------------------------- /src/scripts/flatpak/flathub.json: -------------------------------------------------------------------------------- 1 | { 2 | "only-arches": ["x86_64"] 3 | } 4 | -------------------------------------------------------------------------------- /src/scripts/flatpak/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/flatpak/package.sh -------------------------------------------------------------------------------- /src/scripts/flatpak/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/flatpak/run.sh -------------------------------------------------------------------------------- /src/scripts/git-backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/git-backup.sh -------------------------------------------------------------------------------- /src/scripts/macos_fix_dylib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/macos_fix_dylib.sh -------------------------------------------------------------------------------- /src/scripts/make_ico.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/make_ico.sh -------------------------------------------------------------------------------- /src/scripts/mkicns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/mkicns.sh -------------------------------------------------------------------------------- /src/scripts/patches/qtbase-qversion.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/patches/qtbase-qversion.diff -------------------------------------------------------------------------------- /src/scripts/patches/vorbis-configure.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/patches/vorbis-configure.diff -------------------------------------------------------------------------------- /src/scripts/patches/vpx-Makefile.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/patches/vpx-Makefile.diff -------------------------------------------------------------------------------- /src/scripts/patches/vpx-configure.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/patches/vpx-configure.diff -------------------------------------------------------------------------------- /src/scripts/push_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/push_docker.sh -------------------------------------------------------------------------------- /src/scripts/run_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/run_docker.sh -------------------------------------------------------------------------------- /src/scripts/sign_checksums.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/sign_checksums.sh -------------------------------------------------------------------------------- /src/scripts/vfxplatform.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/scripts/vfxplatform.spec -------------------------------------------------------------------------------- /src/ui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/CMakeLists.txt -------------------------------------------------------------------------------- /src/ui/dialogs/adjustscenedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/dialogs/adjustscenedialog.cpp -------------------------------------------------------------------------------- /src/ui/dialogs/adjustscenedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/dialogs/adjustscenedialog.h -------------------------------------------------------------------------------- /src/ui/dialogs/applyexpressiondialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/dialogs/applyexpressiondialog.cpp -------------------------------------------------------------------------------- /src/ui/dialogs/applyexpressiondialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/dialogs/applyexpressiondialog.h -------------------------------------------------------------------------------- /src/ui/dialogs/commandpalette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/dialogs/commandpalette.cpp -------------------------------------------------------------------------------- /src/ui/dialogs/commandpalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/dialogs/commandpalette.h -------------------------------------------------------------------------------- /src/ui/dialogs/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/dialogs/dialog.cpp -------------------------------------------------------------------------------- /src/ui/dialogs/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/dialogs/dialog.h -------------------------------------------------------------------------------- /src/ui/dialogs/exportsvgdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/dialogs/exportsvgdialog.cpp -------------------------------------------------------------------------------- /src/ui/dialogs/exportsvgdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/dialogs/exportsvgdialog.h -------------------------------------------------------------------------------- /src/ui/dialogs/markereditordialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/dialogs/markereditordialog.cpp -------------------------------------------------------------------------------- /src/ui/dialogs/markereditordialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/dialogs/markereditordialog.h -------------------------------------------------------------------------------- /src/ui/dialogs/qrealpointvaluedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/dialogs/qrealpointvaluedialog.cpp -------------------------------------------------------------------------------- /src/ui/dialogs/qrealpointvaluedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/dialogs/qrealpointvaluedialog.h -------------------------------------------------------------------------------- /src/ui/dialogs/renderoutputwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/dialogs/renderoutputwidget.cpp -------------------------------------------------------------------------------- /src/ui/dialogs/renderoutputwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/dialogs/renderoutputwidget.h -------------------------------------------------------------------------------- /src/ui/dialogs/scenesettingsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/dialogs/scenesettingsdialog.cpp -------------------------------------------------------------------------------- /src/ui/dialogs/scenesettingsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/dialogs/scenesettingsdialog.h -------------------------------------------------------------------------------- /src/ui/gradientwidgets/gradientwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/gradientwidgets/gradientwidget.cpp -------------------------------------------------------------------------------- /src/ui/gradientwidgets/gradientwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/gradientwidgets/gradientwidget.h -------------------------------------------------------------------------------- /src/ui/misc/keyfocustarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/misc/keyfocustarget.cpp -------------------------------------------------------------------------------- /src/ui/misc/keyfocustarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/misc/keyfocustarget.h -------------------------------------------------------------------------------- /src/ui/misc/noshortcutaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/misc/noshortcutaction.cpp -------------------------------------------------------------------------------- /src/ui/misc/noshortcutaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/misc/noshortcutaction.h -------------------------------------------------------------------------------- /src/ui/optimalscrollarena/scrollarea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/optimalscrollarena/scrollarea.cpp -------------------------------------------------------------------------------- /src/ui/optimalscrollarena/scrollarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/optimalscrollarena/scrollarea.h -------------------------------------------------------------------------------- /src/ui/optimalscrollarena/scrollwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/optimalscrollarena/scrollwidget.h -------------------------------------------------------------------------------- /src/ui/optimalscrollarena/singlewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/optimalscrollarena/singlewidget.h -------------------------------------------------------------------------------- /src/ui/ui_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/ui_global.h -------------------------------------------------------------------------------- /src/ui/widgets/aboutwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/aboutwidget.cpp -------------------------------------------------------------------------------- /src/ui/widgets/aboutwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/aboutwidget.h -------------------------------------------------------------------------------- /src/ui/widgets/actionbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/actionbutton.cpp -------------------------------------------------------------------------------- /src/ui/widgets/actionbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/actionbutton.h -------------------------------------------------------------------------------- /src/ui/widgets/alignwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/alignwidget.cpp -------------------------------------------------------------------------------- /src/ui/widgets/alignwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/alignwidget.h -------------------------------------------------------------------------------- /src/ui/widgets/assetswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/assetswidget.cpp -------------------------------------------------------------------------------- /src/ui/widgets/assetswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/assetswidget.h -------------------------------------------------------------------------------- /src/ui/widgets/bookmarkedcolors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/bookmarkedcolors.cpp -------------------------------------------------------------------------------- /src/ui/widgets/bookmarkedcolors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/bookmarkedcolors.h -------------------------------------------------------------------------------- /src/ui/widgets/bookmarkedwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/bookmarkedwidget.cpp -------------------------------------------------------------------------------- /src/ui/widgets/bookmarkedwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/bookmarkedwidget.h -------------------------------------------------------------------------------- /src/ui/widgets/buttonbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/buttonbase.cpp -------------------------------------------------------------------------------- /src/ui/widgets/buttonbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/buttonbase.h -------------------------------------------------------------------------------- /src/ui/widgets/buttonslist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/buttonslist.cpp -------------------------------------------------------------------------------- /src/ui/widgets/buttonslist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/buttonslist.h -------------------------------------------------------------------------------- /src/ui/widgets/canvassettingswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/canvassettingswidget.cpp -------------------------------------------------------------------------------- /src/ui/widgets/canvassettingswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/canvassettingswidget.h -------------------------------------------------------------------------------- /src/ui/widgets/canvastoolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/canvastoolbar.cpp -------------------------------------------------------------------------------- /src/ui/widgets/canvastoolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/canvastoolbar.h -------------------------------------------------------------------------------- /src/ui/widgets/changewidthwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/changewidthwidget.cpp -------------------------------------------------------------------------------- /src/ui/widgets/changewidthwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/changewidthwidget.h -------------------------------------------------------------------------------- /src/ui/widgets/colorlabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/colorlabel.cpp -------------------------------------------------------------------------------- /src/ui/widgets/colorlabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/colorlabel.h -------------------------------------------------------------------------------- /src/ui/widgets/colorsettingswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/colorsettingswidget.cpp -------------------------------------------------------------------------------- /src/ui/widgets/colorsettingswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/colorsettingswidget.h -------------------------------------------------------------------------------- /src/ui/widgets/colortoolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/colortoolbar.cpp -------------------------------------------------------------------------------- /src/ui/widgets/colortoolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/colortoolbar.h -------------------------------------------------------------------------------- /src/ui/widgets/colortoolbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/colortoolbutton.cpp -------------------------------------------------------------------------------- /src/ui/widgets/colortoolbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/colortoolbutton.h -------------------------------------------------------------------------------- /src/ui/widgets/colorvaluerect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/colorvaluerect.cpp -------------------------------------------------------------------------------- /src/ui/widgets/colorvaluerect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/colorvaluerect.h -------------------------------------------------------------------------------- /src/ui/widgets/colorwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/colorwidget.cpp -------------------------------------------------------------------------------- /src/ui/widgets/colorwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/colorwidget.h -------------------------------------------------------------------------------- /src/ui/widgets/colorwidgetshaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/colorwidgetshaders.cpp -------------------------------------------------------------------------------- /src/ui/widgets/colorwidgetshaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/colorwidgetshaders.h -------------------------------------------------------------------------------- /src/ui/widgets/ecombobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/ecombobox.cpp -------------------------------------------------------------------------------- /src/ui/widgets/ecombobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/ecombobox.h -------------------------------------------------------------------------------- /src/ui/widgets/editablecombobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/editablecombobox.cpp -------------------------------------------------------------------------------- /src/ui/widgets/editablecombobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/editablecombobox.h -------------------------------------------------------------------------------- /src/ui/widgets/fakemenubar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/fakemenubar.cpp -------------------------------------------------------------------------------- /src/ui/widgets/fakemenubar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/fakemenubar.h -------------------------------------------------------------------------------- /src/ui/widgets/fillstrokesettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/fillstrokesettings.cpp -------------------------------------------------------------------------------- /src/ui/widgets/fillstrokesettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/fillstrokesettings.h -------------------------------------------------------------------------------- /src/ui/widgets/flowlayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/flowlayout.cpp -------------------------------------------------------------------------------- /src/ui/widgets/flowlayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/flowlayout.h -------------------------------------------------------------------------------- /src/ui/widgets/fontswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/fontswidget.cpp -------------------------------------------------------------------------------- /src/ui/widgets/fontswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/fontswidget.h -------------------------------------------------------------------------------- /src/ui/widgets/framescrollbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/framescrollbar.cpp -------------------------------------------------------------------------------- /src/ui/widgets/framescrollbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/framescrollbar.h -------------------------------------------------------------------------------- /src/ui/widgets/framespinbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/framespinbox.cpp -------------------------------------------------------------------------------- /src/ui/widgets/framespinbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/framespinbox.h -------------------------------------------------------------------------------- /src/ui/widgets/glwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/glwidget.cpp -------------------------------------------------------------------------------- /src/ui/widgets/glwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/glwidget.h -------------------------------------------------------------------------------- /src/ui/widgets/glwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/glwindow.cpp -------------------------------------------------------------------------------- /src/ui/widgets/glwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/glwindow.h -------------------------------------------------------------------------------- /src/ui/widgets/labeledslider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/labeledslider.cpp -------------------------------------------------------------------------------- /src/ui/widgets/labeledslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/labeledslider.h -------------------------------------------------------------------------------- /src/ui/widgets/markereditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/markereditor.cpp -------------------------------------------------------------------------------- /src/ui/widgets/markereditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/markereditor.h -------------------------------------------------------------------------------- /src/ui/widgets/presetsettingswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/presetsettingswidget.cpp -------------------------------------------------------------------------------- /src/ui/widgets/presetsettingswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/presetsettingswidget.h -------------------------------------------------------------------------------- /src/ui/widgets/qdoubleslider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/qdoubleslider.cpp -------------------------------------------------------------------------------- /src/ui/widgets/qdoubleslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/qdoubleslider.h -------------------------------------------------------------------------------- /src/ui/widgets/qrealanimatorvalueslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/qrealanimatorvalueslider.h -------------------------------------------------------------------------------- /src/ui/widgets/savedcolorbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/savedcolorbutton.cpp -------------------------------------------------------------------------------- /src/ui/widgets/savedcolorbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/savedcolorbutton.h -------------------------------------------------------------------------------- /src/ui/widgets/savedcolorswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/savedcolorswidget.cpp -------------------------------------------------------------------------------- /src/ui/widgets/savedcolorswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/savedcolorswidget.h -------------------------------------------------------------------------------- /src/ui/widgets/scenechooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/scenechooser.cpp -------------------------------------------------------------------------------- /src/ui/widgets/scenechooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/scenechooser.h -------------------------------------------------------------------------------- /src/ui/widgets/settingswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/settingswidget.cpp -------------------------------------------------------------------------------- /src/ui/widgets/settingswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/settingswidget.h -------------------------------------------------------------------------------- /src/ui/widgets/toolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/toolbar.cpp -------------------------------------------------------------------------------- /src/ui/widgets/toolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/toolbar.h -------------------------------------------------------------------------------- /src/ui/widgets/toolbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/toolbox.cpp -------------------------------------------------------------------------------- /src/ui/widgets/toolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/toolbox.h -------------------------------------------------------------------------------- /src/ui/widgets/toolboxtoolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/toolboxtoolbar.cpp -------------------------------------------------------------------------------- /src/ui/widgets/toolboxtoolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/toolboxtoolbar.h -------------------------------------------------------------------------------- /src/ui/widgets/toolbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/toolbutton.h -------------------------------------------------------------------------------- /src/ui/widgets/toolcontrols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/toolcontrols.cpp -------------------------------------------------------------------------------- /src/ui/widgets/toolcontrols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/toolcontrols.h -------------------------------------------------------------------------------- /src/ui/widgets/twocolumnlayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/twocolumnlayout.cpp -------------------------------------------------------------------------------- /src/ui/widgets/twocolumnlayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/twocolumnlayout.h -------------------------------------------------------------------------------- /src/ui/widgets/uilayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/uilayout.cpp -------------------------------------------------------------------------------- /src/ui/widgets/uilayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/uilayout.h -------------------------------------------------------------------------------- /src/ui/widgets/vlabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/vlabel.h -------------------------------------------------------------------------------- /src/ui/widgets/welcomedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/welcomedialog.cpp -------------------------------------------------------------------------------- /src/ui/widgets/welcomedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/welcomedialog.h -------------------------------------------------------------------------------- /src/ui/widgets/widgetstack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/widgetstack.cpp -------------------------------------------------------------------------------- /src/ui/widgets/widgetstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/widgetstack.h -------------------------------------------------------------------------------- /src/ui/widgets/widgetwrappernode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/widgetwrappernode.cpp -------------------------------------------------------------------------------- /src/ui/widgets/widgetwrappernode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/widgetwrappernode.h -------------------------------------------------------------------------------- /src/ui/widgets/wrappernode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/wrappernode.cpp -------------------------------------------------------------------------------- /src/ui/widgets/wrappernode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friction2d/friction/HEAD/src/ui/widgets/wrappernode.h --------------------------------------------------------------------------------