gitextract_u8hxl36n/ ├── AudioVideoCore/ │ ├── AudioData.cpp │ ├── AudioData.h │ ├── AudioDecodec.cpp │ ├── AudioDecodec.h │ ├── AudioPlayer.cpp │ ├── AudioPlayer.h │ ├── AudioPlayerThread.cpp │ ├── AudioPlayerThread.h │ ├── AudioVideoCore.pro │ └── audiovideocore_global.h ├── CustomControls/ │ ├── CustomCombineControl/ │ │ ├── UICustomColorControl.cpp │ │ ├── UICustomColorControl.h │ │ ├── UICustomCombineControlBase.cpp │ │ ├── UICustomCombineControlBase.h │ │ ├── UICustomComboBoxControl.cpp │ │ ├── UICustomComboBoxControl.h │ │ ├── UICustomDateEditControl.cpp │ │ ├── UICustomDateEditControl.h │ │ ├── UICustomDoubleControl.cpp │ │ ├── UICustomDoubleControl.h │ │ ├── UICustomFontComboBoxControl.cpp │ │ ├── UICustomFontComboBoxControl.h │ │ ├── UICustomGroupControl.cpp │ │ ├── UICustomGroupControl.h │ │ ├── UICustomIntControl.cpp │ │ ├── UICustomIntControl.h │ │ ├── UICustomLineEditControl.cpp │ │ ├── UICustomLineEditControl.h │ │ ├── UICustomOrientationControl.cpp │ │ ├── UICustomOrientationControl.h │ │ ├── UICustomPostionControl.cpp │ │ ├── UICustomPostionControl.h │ │ ├── UICustomSwitchControl.cpp │ │ ├── UICustomSwitchControl.h │ │ ├── UICustomTextEditTagControl.cpp │ │ ├── UICustomTextEditTagControl.h │ │ ├── UICustomTimeEditControl.cpp │ │ └── UICustomTimeEditControl.h │ ├── CustomControls.pro │ ├── UICurtomLeftBarControl/ │ │ ├── UICustomLefTabsControl.h │ │ ├── UICustomLeftItemWidget.cpp │ │ ├── UICustomLeftItemWidget.h │ │ ├── UICustomLeftTabsControl.cpp │ │ ├── UICustomLeftWidget.cpp │ │ └── UICustomLeftWidget.h │ ├── UICustomColorControl/ │ │ ├── UICustomColorCircle.cpp │ │ ├── UICustomColorCircle.h │ │ ├── UICustomColorSlider.cpp │ │ ├── UICustomColorSlider.h │ │ ├── UICustomColorSliderItem.cpp │ │ ├── UICustomColorSliderItem.h │ │ ├── UICustomColorWidget.cpp │ │ ├── UICustomColorWidget.h │ │ ├── UICustomCustomColorOperator.cpp │ │ ├── UICustomCustomColorOperator.h │ │ ├── UICustonColorDialog.cpp │ │ └── UICustonColorDialog.h │ ├── UICustomSingleControl/ │ │ ├── UICustomCalendarWidget.cpp │ │ ├── UICustomCalendarWidget.h │ │ ├── UICustomColorViewWidget.cpp │ │ ├── UICustomColorViewWidget.h │ │ ├── UICustomComboBox.cpp │ │ ├── UICustomComboBox.h │ │ ├── UICustomDateEdit.cpp │ │ ├── UICustomDateEdit.h │ │ ├── UICustomDoubleSpinBox.cpp │ │ ├── UICustomDoubleSpinBox.h │ │ ├── UICustomImageViewer.cpp │ │ ├── UICustomImageViewer.h │ │ ├── UICustomIntSpinBox.cpp │ │ ├── UICustomIntSpinBox.h │ │ ├── UICustomLineEdit.cpp │ │ ├── UICustomLineEdit.h │ │ ├── UICustomPostionWidget.cpp │ │ ├── UICustomPostionWidget.h │ │ ├── UICustomSwitchWidget.cpp │ │ ├── UICustomSwitchWidget.h │ │ ├── UICustomTextEdit.cpp │ │ ├── UICustomTextEdit.h │ │ ├── UICustomTimeEdit.cpp │ │ └── UICustomTimeEdit.h │ └── customcontrols_global.h ├── CustomWidgets/ │ ├── CustomWidgets.pro │ ├── UICustomCore/ │ │ ├── CustomStyleConfig.cpp │ │ └── CustomStyleConfig.h │ ├── UICustomWidgtes/ │ │ ├── CustomDialog.cpp │ │ ├── CustomDialog.h │ │ ├── CustomMainWindow.cpp │ │ ├── CustomMainWindow.h │ │ ├── CustomTestWidget.cpp │ │ ├── CustomTestWidget.h │ │ ├── CustomWidget.cpp │ │ └── CustomWidget.h │ ├── customwidgets_global.h │ ├── qss/ │ │ └── light.css │ └── qss.qrc ├── EasyCanvas/ │ ├── EasyCanvas.pro │ ├── GlobalHotKey/ │ │ ├── GlobalHotKeyFilter.cpp │ │ ├── GlobalHotKeyFilter.h │ │ ├── GlobalHotKeyInfo.cpp │ │ ├── GlobalHotKeyInfo.h │ │ ├── GlobalHotKeyManager.cpp │ │ └── GlobalHotKeyManager.h │ ├── UICore/ │ │ ├── MainWindow.cpp │ │ ├── MainWindow.h │ │ ├── UIAboutMeDialog.cpp │ │ ├── UIAboutMeDialog.h │ │ ├── UIAttributWidget.cpp │ │ └── UIAttributWidget.h │ └── main.cpp ├── EasyCanvas.pro ├── EasyCanvasCore/ │ ├── EasyCanvasCore.pro │ ├── Scheme/ │ │ ├── CanvasSchemeManager.cpp │ │ ├── CanvasSchemeManager.h │ │ ├── SQLCore.cpp │ │ ├── SQLCore.h │ │ ├── SchemeDataInfo.h │ │ ├── UISchemeManagerDialog.cpp │ │ ├── UISchemeManagerDialog.h │ │ ├── UISchemeManagerWidget.cpp │ │ └── UISchemeManagerWidget.h │ ├── UICanvas/ │ │ ├── UICanvasAudioItem.cpp │ │ ├── UICanvasAudioItem.h │ │ ├── UICanvasEllipseItem.cpp │ │ ├── UICanvasEllipseItem.h │ │ ├── UICanvasImageItem.cpp │ │ ├── UICanvasImageItem.h │ │ ├── UICanvasItemBase.cpp │ │ ├── UICanvasItemBase.h │ │ ├── UICanvasItemManager.cpp │ │ ├── UICanvasItemManager.h │ │ ├── UICanvasOperators.cpp │ │ ├── UICanvasOperators.h │ │ ├── UICanvasPathItem.cpp │ │ ├── UICanvasPathItem.h │ │ ├── UICanvasRectItem.cpp │ │ ├── UICanvasRectItem.h │ │ ├── UICanvasScene.cpp │ │ ├── UICanvasScene.h │ │ ├── UICanvasTextItem.cpp │ │ ├── UICanvasTextItem.h │ │ ├── UICanvasView.cpp │ │ └── UICanvasView.h │ ├── UINodeTree/ │ │ ├── UINodeItem.cpp │ │ ├── UINodeItem.h │ │ ├── UINodeSortFilterProxyModel.cpp │ │ ├── UINodeSortFilterProxyModel.h │ │ ├── UINodeTreeDelegate.cpp │ │ ├── UINodeTreeDelegate.h │ │ ├── UINodeTreeView.cpp │ │ ├── UINodeTreeView.h │ │ ├── UINodeTreeViewModel.cpp │ │ ├── UINodeTreeViewModel.h │ │ ├── UINodeTreeWidget.cpp │ │ └── UINodeTreeWidget.h │ ├── UndoCmd/ │ │ ├── ItemAttributeChangedCmd.cpp │ │ ├── ItemAttributeChangedCmd.h │ │ ├── ItemChangeNameCmd.cpp │ │ ├── ItemChangeNameCmd.h │ │ ├── ItemCreateCmd.cpp │ │ ├── ItemCreateCmd.h │ │ ├── ItemDeleteCmd.cpp │ │ ├── ItemDeleteCmd.h │ │ ├── ItemPasteCmd.cpp │ │ ├── ItemPasteCmd.h │ │ ├── UndoCmdCore.cpp │ │ └── UndoCmdCore.h │ └── easycanvascore_global.h ├── EasyCanvas_zh_CH.ts ├── NDNodeAttribute/ │ ├── NDAttributeBase.cpp │ ├── NDAttributeBase.h │ ├── NDAttributeData.cpp │ ├── NDAttributeData.h │ ├── NDAttributeGroup.cpp │ ├── NDAttributeGroup.h │ ├── NDBoolAttribute.cpp │ ├── NDBoolAttribute.h │ ├── NDColorAttribute.cpp │ ├── NDColorAttribute.h │ ├── NDIntAttribute.cpp │ ├── NDIntAttribute.h │ ├── NDNodeAttribute.pro │ ├── NDNodeBase.cpp │ ├── NDNodeBase.h │ ├── NDNodeManager.cpp │ ├── NDNodeManager.h │ ├── NDPostionAttribute.cpp │ ├── NDPostionAttribute.h │ ├── NDRealAttribute.cpp │ ├── NDRealAttribute.h │ ├── NDStringAttribute.cpp │ ├── NDStringAttribute.h │ ├── NDTextNode.cpp │ ├── NDTextNode.h │ └── ndnodeattribute_global.h ├── NodeAttributeControl/ │ ├── NodeAttributeControl.pro │ ├── UIAttrBoolControl.cpp │ ├── UIAttrBoolControl.h │ ├── UIAttrColorControl.cpp │ ├── UIAttrColorControl.h │ ├── UIAttrFloatControl.cpp │ ├── UIAttrFloatControl.h │ ├── UIAttrIntControl.cpp │ ├── UIAttrIntControl.h │ ├── UIAttrTextControl.cpp │ ├── UIAttrTextControl.h │ ├── UINodeAttrControl.cpp │ ├── UINodeAttrControl.h │ └── nodeattributecontrol_global.h ├── PythonWrap/ │ ├── PythonWrap.pro │ ├── PythonWrapCore.cpp │ ├── PythonWrapCore.h │ ├── pythonwrap.cpp │ ├── pythonwrap.h │ └── pythonwrap_global.h ├── Utils/ │ ├── RALLBlockSignal.cpp │ ├── RALLBlockSignal.h │ ├── Utils.cpp │ ├── Utils.h │ ├── Utils.pro │ └── utils_global.h ├── bin/ │ ├── CustomColor.xml │ └── Script/ │ └── SetColorAlphaScript.py ├── readme.md └── thirdLibs/ ├── PythonQt/ │ ├── include/ │ │ ├── PythonQt.h │ │ ├── PythonQtBoolResult.h │ │ ├── PythonQtClassInfo.h │ │ ├── PythonQtClassWrapper.h │ │ ├── PythonQtConversion.h │ │ ├── PythonQtCppWrapperFactory.h │ │ ├── PythonQtDoc.h │ │ ├── PythonQtImportFileInterface.h │ │ ├── PythonQtImporter.h │ │ ├── PythonQtInstanceWrapper.h │ │ ├── PythonQtMethodInfo.h │ │ ├── PythonQtMisc.h │ │ ├── PythonQtObjectPtr.h │ │ ├── PythonQtProperty.h │ │ ├── PythonQtPythonInclude.h │ │ ├── PythonQtQFileImporter.h │ │ ├── PythonQtSignal.h │ │ ├── PythonQtSignalReceiver.h │ │ ├── PythonQtSlot.h │ │ ├── PythonQtSlotDecorator.h │ │ ├── PythonQtStdDecorators.h │ │ ├── PythonQtStdIn.h │ │ ├── PythonQtStdOut.h │ │ ├── PythonQtSystem.h │ │ ├── PythonQtThreadSupport.h │ │ ├── PythonQtUtils.h │ │ ├── PythonQtVariants.h │ │ ├── PythonQt_QtAll.h │ │ └── gui/ │ │ └── PythonQtScriptingConsole.h │ └── libs/ │ ├── debug/ │ │ ├── PythonQt-Qt5-Python38_d.lib │ │ └── PythonQt_QtAll-Qt5-Python38_d.lib │ └── release/ │ ├── PythonQt-Qt5-Python38.lib │ └── PythonQt_QtAll-Qt5-Python38.lib ├── ffmpeg/ │ ├── include/ │ │ ├── libavcodec/ │ │ │ ├── ac3_parser.h │ │ │ ├── adts_parser.h │ │ │ ├── avcodec.h │ │ │ ├── avdct.h │ │ │ ├── avfft.h │ │ │ ├── d3d11va.h │ │ │ ├── dirac.h │ │ │ ├── dv_profile.h │ │ │ ├── dxva2.h │ │ │ ├── jni.h │ │ │ ├── mediacodec.h │ │ │ ├── qsv.h │ │ │ ├── vaapi.h │ │ │ ├── vdpau.h │ │ │ ├── version.h │ │ │ ├── videotoolbox.h │ │ │ ├── vorbis_parser.h │ │ │ └── xvmc.h │ │ ├── libavdevice/ │ │ │ ├── avdevice.h │ │ │ └── version.h │ │ ├── libavfilter/ │ │ │ ├── avfilter.h │ │ │ ├── buffersink.h │ │ │ ├── buffersrc.h │ │ │ └── version.h │ │ ├── libavformat/ │ │ │ ├── avformat.h │ │ │ ├── avio.h │ │ │ └── version.h │ │ ├── libavutil/ │ │ │ ├── adler32.h │ │ │ ├── aes.h │ │ │ ├── aes_ctr.h │ │ │ ├── attributes.h │ │ │ ├── audio_fifo.h │ │ │ ├── avassert.h │ │ │ ├── avconfig.h │ │ │ ├── avstring.h │ │ │ ├── avutil.h │ │ │ ├── base64.h │ │ │ ├── blowfish.h │ │ │ ├── bprint.h │ │ │ ├── bswap.h │ │ │ ├── buffer.h │ │ │ ├── camellia.h │ │ │ ├── cast5.h │ │ │ ├── channel_layout.h │ │ │ ├── common.h │ │ │ ├── cpu.h │ │ │ ├── crc.h │ │ │ ├── des.h │ │ │ ├── dict.h │ │ │ ├── display.h │ │ │ ├── downmix_info.h │ │ │ ├── encryption_info.h │ │ │ ├── error.h │ │ │ ├── eval.h │ │ │ ├── ffversion.h │ │ │ ├── fifo.h │ │ │ ├── file.h │ │ │ ├── frame.h │ │ │ ├── hash.h │ │ │ ├── hdr_dynamic_metadata.h │ │ │ ├── hmac.h │ │ │ ├── hwcontext.h │ │ │ ├── hwcontext_cuda.h │ │ │ ├── hwcontext_d3d11va.h │ │ │ ├── hwcontext_drm.h │ │ │ ├── hwcontext_dxva2.h │ │ │ ├── hwcontext_mediacodec.h │ │ │ ├── hwcontext_qsv.h │ │ │ ├── hwcontext_vaapi.h │ │ │ ├── hwcontext_vdpau.h │ │ │ ├── hwcontext_videotoolbox.h │ │ │ ├── imgutils.h │ │ │ ├── intfloat.h │ │ │ ├── intreadwrite.h │ │ │ ├── lfg.h │ │ │ ├── log.h │ │ │ ├── lzo.h │ │ │ ├── macros.h │ │ │ ├── mastering_display_metadata.h │ │ │ ├── mathematics.h │ │ │ ├── md5.h │ │ │ ├── mem.h │ │ │ ├── motion_vector.h │ │ │ ├── murmur3.h │ │ │ ├── opt.h │ │ │ ├── parseutils.h │ │ │ ├── pixdesc.h │ │ │ ├── pixelutils.h │ │ │ ├── pixfmt.h │ │ │ ├── random_seed.h │ │ │ ├── rational.h │ │ │ ├── rc4.h │ │ │ ├── replaygain.h │ │ │ ├── ripemd.h │ │ │ ├── samplefmt.h │ │ │ ├── sha.h │ │ │ ├── sha512.h │ │ │ ├── spherical.h │ │ │ ├── stereo3d.h │ │ │ ├── tea.h │ │ │ ├── threadmessage.h │ │ │ ├── time.h │ │ │ ├── timecode.h │ │ │ ├── timestamp.h │ │ │ ├── tree.h │ │ │ ├── twofish.h │ │ │ ├── tx.h │ │ │ ├── version.h │ │ │ └── xtea.h │ │ ├── libpostproc/ │ │ │ ├── postprocess.h │ │ │ └── version.h │ │ ├── libswresample/ │ │ │ ├── swresample.h │ │ │ └── version.h │ │ └── libswscale/ │ │ ├── swscale.h │ │ └── version.h │ └── libs/ │ ├── avcodec-58.def │ ├── avcodec.lib │ ├── avdevice-58.def │ ├── avdevice.lib │ ├── avfilter-7.def │ ├── avfilter.lib │ ├── avformat-58.def │ ├── avformat.lib │ ├── avutil-56.def │ ├── avutil.lib │ ├── postproc-55.def │ ├── postproc.lib │ ├── swresample-3.def │ ├── swresample.lib │ ├── swscale-5.def │ └── swscale.lib └── python3_8/ ├── include/ │ ├── Python-ast.h │ ├── Python.h │ ├── abstract.h │ ├── asdl.h │ ├── ast.h │ ├── bitset.h │ ├── bltinmodule.h │ ├── boolobject.h │ ├── bytearrayobject.h │ ├── bytes_methods.h │ ├── bytesobject.h │ ├── cellobject.h │ ├── ceval.h │ ├── classobject.h │ ├── code.h │ ├── codecs.h │ ├── compile.h │ ├── complexobject.h │ ├── context.h │ ├── cpython/ │ │ ├── abstract.h │ │ ├── dictobject.h │ │ ├── fileobject.h │ │ ├── initconfig.h │ │ ├── interpreteridobject.h │ │ ├── object.h │ │ ├── objimpl.h │ │ ├── pyerrors.h │ │ ├── pylifecycle.h │ │ ├── pymem.h │ │ ├── pystate.h │ │ ├── sysmodule.h │ │ ├── traceback.h │ │ ├── tupleobject.h │ │ └── unicodeobject.h │ ├── datetime.h │ ├── descrobject.h │ ├── dictobject.h │ ├── dtoa.h │ ├── dynamic_annotations.h │ ├── enumobject.h │ ├── errcode.h │ ├── eval.h │ ├── fileobject.h │ ├── fileutils.h │ ├── floatobject.h │ ├── frameobject.h │ ├── funcobject.h │ ├── genobject.h │ ├── graminit.h │ ├── grammar.h │ ├── import.h │ ├── internal/ │ │ ├── pycore_accu.h │ │ ├── pycore_atomic.h │ │ ├── pycore_ceval.h │ │ ├── pycore_code.h │ │ ├── pycore_condvar.h │ │ ├── pycore_context.h │ │ ├── pycore_fileutils.h │ │ ├── pycore_getopt.h │ │ ├── pycore_gil.h │ │ ├── pycore_hamt.h │ │ ├── pycore_initconfig.h │ │ ├── pycore_object.h │ │ ├── pycore_pathconfig.h │ │ ├── pycore_pyerrors.h │ │ ├── pycore_pyhash.h │ │ ├── pycore_pylifecycle.h │ │ ├── pycore_pymem.h │ │ ├── pycore_pystate.h │ │ ├── pycore_traceback.h │ │ ├── pycore_tupleobject.h │ │ └── pycore_warnings.h │ ├── interpreteridobject.h │ ├── intrcheck.h │ ├── iterobject.h │ ├── listobject.h │ ├── longintrepr.h │ ├── longobject.h │ ├── marshal.h │ ├── memoryobject.h │ ├── methodobject.h │ ├── modsupport.h │ ├── moduleobject.h │ ├── namespaceobject.h │ ├── node.h │ ├── object.h │ ├── objimpl.h │ ├── odictobject.h │ ├── opcode.h │ ├── osdefs.h │ ├── osmodule.h │ ├── parsetok.h │ ├── patchlevel.h │ ├── picklebufobject.h │ ├── py_curses.h │ ├── pyarena.h │ ├── pycapsule.h │ ├── pyconfig.h │ ├── pyctype.h │ ├── pydebug.h │ ├── pydtrace.h │ ├── pyerrors.h │ ├── pyexpat.h │ ├── pyfpe.h │ ├── pyhash.h │ ├── pylifecycle.h │ ├── pymacconfig.h │ ├── pymacro.h │ ├── pymath.h │ ├── pymem.h │ ├── pyport.h │ ├── pystate.h │ ├── pystrcmp.h │ ├── pystrhex.h │ ├── pystrtod.h │ ├── pythonrun.h │ ├── pythread.h │ ├── pytime.h │ ├── rangeobject.h │ ├── setobject.h │ ├── sliceobject.h │ ├── structmember.h │ ├── structseq.h │ ├── symtable.h │ ├── sysmodule.h │ ├── token.h │ ├── traceback.h │ ├── tracemalloc.h │ ├── tupleobject.h │ ├── typeslots.h │ ├── ucnhash.h │ ├── unicodeobject.h │ ├── warnings.h │ └── weakrefobject.h └── libs/ ├── _tkinter.lib ├── _tkinter_d.lib ├── python3.lib ├── python38.lib ├── python38_d.lib └── python3_d.lib