gitextract_b0uqak3u/ ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── COPYING ├── NEW_HOST_HOWTO.md ├── README.md ├── STANDALONE.md ├── check_versions.sh ├── cmake/ │ └── modules/ │ ├── COPYING-CMAKE-SCRIPTS │ ├── FindFFTW3.cmake │ └── LibFindMacros.cmake ├── gmic_qt.desktop ├── gmic_qt.pro ├── gmic_qt.qrc ├── icons/ │ └── application/ │ └── gmic_qt.icns ├── pkg-config-check.sh ├── pre_version.sh ├── scripts/ │ ├── travis_build_cmake.sh │ └── travis_build_qmake.sh ├── src/ │ ├── ClickableLabel.cpp │ ├── ClickableLabel.h │ ├── Common.cpp │ ├── Common.h │ ├── CroppedActiveLayerProxy.cpp │ ├── CroppedActiveLayerProxy.h │ ├── CroppedImageListProxy.cpp │ ├── CroppedImageListProxy.h │ ├── DialogSettings.cpp │ ├── DialogSettings.h │ ├── FilterGuiDynamismCache.cpp │ ├── FilterGuiDynamismCache.h │ ├── FilterParameters/ │ │ ├── AbstractParameter.cpp │ │ ├── AbstractParameter.h │ │ ├── BoolParameter.cpp │ │ ├── BoolParameter.h │ │ ├── ButtonParameter.cpp │ │ ├── ButtonParameter.h │ │ ├── ChoiceParameter.cpp │ │ ├── ChoiceParameter.h │ │ ├── ColorParameter.cpp │ │ ├── ColorParameter.h │ │ ├── ConstParameter.cpp │ │ ├── ConstParameter.h │ │ ├── CustomDoubleSpinBox.cpp │ │ ├── CustomDoubleSpinBox.h │ │ ├── CustomSpinBox.cpp │ │ ├── CustomSpinBox.h │ │ ├── FileParameter.cpp │ │ ├── FileParameter.h │ │ ├── FilterParametersWidget.cpp │ │ ├── FilterParametersWidget.h │ │ ├── FloatParameter.cpp │ │ ├── FloatParameter.h │ │ ├── FolderParameter.cpp │ │ ├── FolderParameter.h │ │ ├── IntParameter.cpp │ │ ├── IntParameter.h │ │ ├── LinkParameter.cpp │ │ ├── LinkParameter.h │ │ ├── MultilineTextParameterWidget.cpp │ │ ├── MultilineTextParameterWidget.h │ │ ├── NoteParameter.cpp │ │ ├── NoteParameter.h │ │ ├── PointParameter.cpp │ │ ├── PointParameter.h │ │ ├── SeparatorParameter.cpp │ │ ├── SeparatorParameter.h │ │ ├── TextParameter.cpp │ │ └── TextParameter.h │ ├── FilterSelector/ │ │ ├── FavesModel.cpp │ │ ├── FavesModel.h │ │ ├── FavesModelReader.cpp │ │ ├── FavesModelReader.h │ │ ├── FavesModelWriter.cpp │ │ ├── FavesModelWriter.h │ │ ├── FilterTagMap.cpp │ │ ├── FilterTagMap.h │ │ ├── FiltersModel.cpp │ │ ├── FiltersModel.h │ │ ├── FiltersModelBinaryReader.cpp │ │ ├── FiltersModelBinaryReader.h │ │ ├── FiltersModelBinaryWriter.cpp │ │ ├── FiltersModelBinaryWriter.h │ │ ├── FiltersModelReader.cpp │ │ ├── FiltersModelReader.h │ │ ├── FiltersPresenter.cpp │ │ ├── FiltersPresenter.h │ │ ├── FiltersView/ │ │ │ ├── FilterTreeAbstractItem.cpp │ │ │ ├── FilterTreeAbstractItem.h │ │ │ ├── FilterTreeFolder.cpp │ │ │ ├── FilterTreeFolder.h │ │ │ ├── FilterTreeItem.cpp │ │ │ ├── FilterTreeItem.h │ │ │ ├── FilterTreeItemDelegate.cpp │ │ │ ├── FilterTreeItemDelegate.h │ │ │ ├── FiltersView.cpp │ │ │ ├── FiltersView.h │ │ │ ├── TreeView.cpp │ │ │ └── TreeView.h │ │ ├── FiltersVisibilityMap.cpp │ │ └── FiltersVisibilityMap.h │ ├── FilterSyncRunner.cpp │ ├── FilterSyncRunner.h │ ├── FilterTextTranslator.cpp │ ├── FilterTextTranslator.h │ ├── FilterThread.cpp │ ├── FilterThread.h │ ├── Globals.cpp │ ├── Globals.h │ ├── GmicProcessor.cpp │ ├── GmicProcessor.h │ ├── GmicQt.cpp │ ├── GmicQt.h │ ├── GmicStdlib.cpp │ ├── GmicStdlib.h │ ├── HeadlessProcessor.cpp │ ├── HeadlessProcessor.h │ ├── Host/ │ │ ├── 8bf/ │ │ │ └── host_8bf.cpp │ │ ├── Gimp/ │ │ │ └── host_gimp.cpp │ │ ├── GmicQtHost.h │ │ ├── None/ │ │ │ ├── ImageDialog.cpp │ │ │ ├── ImageDialog.h │ │ │ ├── JpegQualityDialog.cpp │ │ │ ├── JpegQualityDialog.h │ │ │ ├── host_none.cpp │ │ │ └── jpegqualitydialog.ui │ │ └── PaintDotNet/ │ │ └── host_paintdotnet.cpp │ ├── HtmlTranslator.cpp │ ├── HtmlTranslator.h │ ├── IconLoader.cpp │ ├── IconLoader.h │ ├── ImageTools.cpp │ ├── ImageTools.h │ ├── InputOutputState.cpp │ ├── InputOutputState.h │ ├── KeypointList.cpp │ ├── KeypointList.h │ ├── LanguageSettings.cpp │ ├── LanguageSettings.h │ ├── LayersExtentProxy.cpp │ ├── LayersExtentProxy.h │ ├── Logger.cpp │ ├── Logger.h │ ├── MainWindow.cpp │ ├── MainWindow.h │ ├── Misc.cpp │ ├── Misc.h │ ├── OverrideCursor.cpp │ ├── OverrideCursor.h │ ├── ParametersCache.cpp │ ├── ParametersCache.h │ ├── PersistentMemory.cpp │ ├── PersistentMemory.h │ ├── Settings.cpp │ ├── Settings.h │ ├── SourcesWidget.cpp │ ├── SourcesWidget.h │ ├── Tags.cpp │ ├── Tags.h │ ├── TimeLogger.cpp │ ├── TimeLogger.h │ ├── Updater.cpp │ ├── Updater.h │ ├── Utils.cpp │ ├── Utils.h │ ├── Widgets/ │ │ ├── InOutPanel.cpp │ │ ├── InOutPanel.h │ │ ├── LanguageSelectionWidget.cpp │ │ ├── LanguageSelectionWidget.h │ │ ├── PreviewWidget.cpp │ │ ├── PreviewWidget.h │ │ ├── ProgressInfoWidget.cpp │ │ ├── ProgressInfoWidget.h │ │ ├── ProgressInfoWindow.cpp │ │ ├── ProgressInfoWindow.h │ │ ├── SearchFieldWidget.cpp │ │ ├── SearchFieldWidget.h │ │ ├── VisibleTagSelector.cpp │ │ ├── VisibleTagSelector.h │ │ ├── ZoomLevelSelector.cpp │ │ └── ZoomLevelSelector.h │ └── ZoomConstraint.h ├── standalone.qrc ├── translations/ │ ├── authors/ │ │ ├── cs.txt │ │ ├── de.txt │ │ ├── es.txt │ │ ├── fr.txt │ │ ├── id.txt │ │ ├── it.txt │ │ ├── ja.txt │ │ ├── nl.txt │ │ ├── pl.txt │ │ ├── pt.txt │ │ ├── ru.txt │ │ ├── sv.txt │ │ ├── uk.txt │ │ ├── zh.txt │ │ └── zh_tw.txt │ ├── cs.ts │ ├── de.ts │ ├── es.ts │ ├── filters/ │ │ ├── HOWTO.md │ │ ├── csv2ts.sh │ │ ├── gmic_qt_de.csv │ │ ├── gmic_qt_es.csv │ │ ├── gmic_qt_fr.csv │ │ ├── gmic_qt_it.csv │ │ ├── gmic_qt_ja.csv │ │ ├── gmic_qt_nl.csv │ │ ├── gmic_qt_pl.csv │ │ ├── gmic_qt_pt.csv │ │ ├── gmic_qt_ru.csv │ │ ├── gmic_qt_zh.csv │ │ └── ts2csv.sh │ ├── fr.ts │ ├── id.ts │ ├── it.ts │ ├── ja.ts │ ├── lrelease.sh │ ├── nl.ts │ ├── pl.ts │ ├── pt.ts │ ├── ru.ts │ ├── sv.ts │ ├── uk.ts │ ├── zh.ts │ └── zh_tw.ts ├── translations.qrc ├── ui/ │ ├── SearchFieldWidget.ui │ ├── dialogsettings.ui │ ├── filtersview.ui │ ├── headlessprogressdialog.ui │ ├── inoutpanel.ui │ ├── languageselectionwidget.ui │ ├── mainwindow.ui │ ├── multilinetextparameterwidget.ui │ ├── progressinfowidget.ui │ ├── progressinfowindow.ui │ ├── sourceswidget.ui │ └── zoomlevelselector.ui └── wip_translations.qrc