├── .clang-format ├── .gitignore ├── .vscode └── settings.json ├── 3rdparty ├── crashpad │ ├── CrashRecoveryDialog.ui │ ├── README.md │ ├── crashpad.pri │ ├── crashpadmodule.h │ ├── crashpadmodule_common.cpp │ ├── crashpadmodule_mac.cpp │ └── crashpadmodule_win.cpp ├── dragonman225-curved-arrows │ ├── LICENSE │ ├── README.md │ ├── demo_animation.gif │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ ├── src │ │ │ ├── App.tsx │ │ │ ├── Arrow.tsx │ │ │ ├── Line.tsx │ │ │ ├── curved-arrows │ │ │ │ └── utils.ts │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ └── react-app-env.d.ts │ │ ├── tsconfig.json │ │ └── yarn.lock │ ├── package.json │ ├── src │ │ ├── getArrow.ts │ │ ├── getBoxToBoxArrow.ts │ │ ├── index.ts │ │ └── utils.ts │ ├── tsconfig.json │ └── yarn.lock ├── openssl │ ├── README │ ├── license.txt │ └── openssl-1.1.1w-src.zip ├── phtranslator │ ├── LanguageCodes.h │ ├── PhTranslateLib.cpp │ ├── PhTranslateLib.h │ ├── PhTranslator.cpp │ ├── PhTranslator.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── poly2tri │ ├── License.txt │ ├── common │ │ ├── shapes.cc │ │ ├── shapes.h │ │ └── utils.h │ ├── poly2tri.h │ └── sweep │ │ ├── advancing_front.cc │ │ ├── advancing_front.h │ │ ├── cdt.cc │ │ ├── cdt.h │ │ ├── sweep.cc │ │ ├── sweep.h │ │ ├── sweep_context.cc │ │ └── sweep_context.h ├── quazip │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── COPYING │ ├── Doxyfile │ ├── NEWS.txt │ ├── QuaZip-1.x-migration.md │ ├── README.md │ ├── quazip.pri │ ├── quazip │ │ ├── CMakeLists.txt │ │ ├── JlCompress.cpp │ │ ├── JlCompress.h │ │ ├── QuaZipConfig.cmake.in │ │ ├── doc │ │ │ ├── faq.dox │ │ │ ├── index.dox │ │ │ └── usage.dox │ │ ├── ioapi.h │ │ ├── minizip_crypt.h │ │ ├── qioapi.cpp │ │ ├── quaadler32.cpp │ │ ├── quaadler32.h │ │ ├── quachecksum32.cpp │ │ ├── quachecksum32.h │ │ ├── quacrc32.cpp │ │ ├── quacrc32.h │ │ ├── quagzipfile.cpp │ │ ├── quagzipfile.h │ │ ├── quaziodevice.cpp │ │ ├── quaziodevice.h │ │ ├── quazip.cpp │ │ ├── quazip.h │ │ ├── quazip.pc.cmakein │ │ ├── quazip_global.h │ │ ├── quazip_qt_compat.h │ │ ├── quazipdir.cpp │ │ ├── quazipdir.h │ │ ├── quazipfile.cpp │ │ ├── quazipfile.h │ │ ├── quazipfileinfo.cpp │ │ ├── quazipfileinfo.h │ │ ├── quazipnewinfo.cpp │ │ ├── quazipnewinfo.h │ │ ├── unzip.c │ │ ├── unzip.h │ │ ├── zip.c │ │ └── zip.h │ └── qztest │ │ ├── CMakeLists.txt │ │ ├── qztest.cpp │ │ ├── qztest.h │ │ ├── qztest.qrc │ │ ├── test_files │ │ └── issue43_cant_get_dates.zip │ │ ├── testjlcompress.cpp │ │ ├── testjlcompress.h │ │ ├── testquachecksum32.cpp │ │ ├── testquachecksum32.h │ │ ├── testquagzipfile.cpp │ │ ├── testquagzipfile.h │ │ ├── testquaziodevice.cpp │ │ ├── testquaziodevice.h │ │ ├── testquazip.cpp │ │ ├── testquazip.h │ │ ├── testquazipdir.cpp │ │ ├── testquazipdir.h │ │ ├── testquazipfile.cpp │ │ ├── testquazipfile.h │ │ ├── testquazipfileinfo.cpp │ │ ├── testquazipfileinfo.h │ │ ├── testquazipnewinfo.cpp │ │ └── testquazipnewinfo.h ├── quill │ ├── examples │ │ ├── bubble.html │ │ ├── full.html │ │ └── snow.html │ ├── quill.bubble.css │ ├── quill.core.css │ ├── quill.core.js │ ├── quill.js │ ├── quill.min.js │ ├── quill.min.js.map │ └── quill.snow.css ├── simplecrypt │ ├── simplecrypt.cpp │ ├── simplecrypt.h │ └── simplecrypt.pri └── sonnet │ ├── README │ ├── config-hunspell.h │ ├── core_debug.cpp │ ├── core_debug.h │ ├── hunspelldebug.cpp │ ├── hunspelldebug.h │ ├── nsspellcheckerdebug.cpp │ ├── nsspellcheckerdebug.h │ ├── plugins │ ├── dummy │ │ ├── dummyclient.cpp │ │ └── dummyclient.h │ └── windows │ │ ├── windowsclient.cpp │ │ └── windowsclient.h │ ├── sonnet.pri │ ├── sonnet │ ├── CMakeLists.txt │ ├── COPYING.LIB │ ├── KF5SonnetConfig.cmake.in │ ├── README.md │ ├── autotests │ │ ├── CMakeLists.txt │ │ ├── test_core.cpp │ │ ├── test_core.h │ │ ├── test_filter.cpp │ │ ├── test_filter.h │ │ ├── test_highlighter.cpp │ │ ├── test_settings.cpp │ │ ├── test_settings.h │ │ └── test_suggest.cpp │ ├── cmake │ │ ├── FindENCHANT.cmake │ │ ├── FindHUNSPELL.cmake │ │ └── FindVOIKKO.cmake │ ├── data │ │ ├── CMakeLists.txt │ │ ├── gentrigrams.cpp │ │ ├── parsetrigrams.cpp │ │ └── trigrams │ │ │ ├── af_ZA │ │ │ ├── ar_EG │ │ │ ├── az_AZ │ │ │ ├── bg_BG │ │ │ ├── ca_ES │ │ │ ├── cs_CZ │ │ │ ├── cy_GB │ │ │ ├── da_DK │ │ │ ├── de_DE │ │ │ ├── el_GR │ │ │ ├── en_US │ │ │ ├── es_ES │ │ │ ├── et_EE │ │ │ ├── eu_ES │ │ │ ├── fa_IR │ │ │ ├── fi_FI │ │ │ ├── fil_PH │ │ │ ├── fr_FR │ │ │ ├── ha_NG │ │ │ ├── hi_IN │ │ │ ├── hr_HR │ │ │ ├── hu_HU │ │ │ ├── id_ID │ │ │ ├── is_IS │ │ │ ├── it_IT │ │ │ ├── ja_JP │ │ │ ├── kk_KZ │ │ │ ├── ko_KR │ │ │ ├── ky_KG │ │ │ ├── lo_LA │ │ │ ├── lt_LT │ │ │ ├── lv_LV │ │ │ ├── mk_MK │ │ │ ├── mn_MN │ │ │ ├── nb_NO │ │ │ ├── ne_NP │ │ │ ├── nl_NL │ │ │ ├── nr_ZA │ │ │ ├── pl_PL │ │ │ ├── ps_AF │ │ │ ├── pt_BR │ │ │ ├── pt_PT │ │ │ ├── ro_RO │ │ │ ├── ru_RU │ │ │ ├── sk_SK │ │ │ ├── sl_SI │ │ │ ├── so_SO │ │ │ ├── sq_AL │ │ │ ├── sr_RS │ │ │ ├── ss_ZA │ │ │ ├── st_ZA │ │ │ ├── sv_SE │ │ │ ├── sw_TZ │ │ │ ├── th_TH │ │ │ ├── tn_ZA │ │ │ ├── tr_TR │ │ │ ├── ts_ZA │ │ │ ├── uk_UA │ │ │ ├── ur_PK │ │ │ ├── uz_UZ │ │ │ ├── ve_ZA │ │ │ ├── vi_VN │ │ │ ├── xh_ZA │ │ │ └── zu_ZA │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── configdialog.cpp │ │ ├── dialogexample.cpp │ │ ├── dialogexample.h │ │ ├── dictionarycombobox.cpp │ │ ├── highlighterexample.cpp │ │ ├── highlighterexample.h │ │ ├── plaintextedit.cpp │ │ └── textedit.cpp │ ├── metainfo.yaml │ ├── po │ │ ├── af │ │ │ └── sonnet5_qt.po │ │ ├── ar │ │ │ └── sonnet5_qt.po │ │ ├── as │ │ │ └── sonnet5_qt.po │ │ ├── be │ │ │ └── sonnet5_qt.po │ │ ├── be@latin │ │ │ └── sonnet5_qt.po │ │ ├── bg │ │ │ └── sonnet5_qt.po │ │ ├── bn │ │ │ └── sonnet5_qt.po │ │ ├── bn_IN │ │ │ └── sonnet5_qt.po │ │ ├── br │ │ │ └── sonnet5_qt.po │ │ ├── bs │ │ │ └── sonnet5_qt.po │ │ ├── ca │ │ │ └── sonnet5_qt.po │ │ ├── ca@valencia │ │ │ └── sonnet5_qt.po │ │ ├── crh │ │ │ └── sonnet5_qt.po │ │ ├── cs │ │ │ └── sonnet5_qt.po │ │ ├── csb │ │ │ └── sonnet5_qt.po │ │ ├── cy │ │ │ └── sonnet5_qt.po │ │ ├── da │ │ │ └── sonnet5_qt.po │ │ ├── de │ │ │ └── sonnet5_qt.po │ │ ├── el │ │ │ └── sonnet5_qt.po │ │ ├── en_GB │ │ │ └── sonnet5_qt.po │ │ ├── eo │ │ │ └── sonnet5_qt.po │ │ ├── es │ │ │ └── sonnet5_qt.po │ │ ├── et │ │ │ └── sonnet5_qt.po │ │ ├── eu │ │ │ └── sonnet5_qt.po │ │ ├── fa │ │ │ └── sonnet5_qt.po │ │ ├── fi │ │ │ └── sonnet5_qt.po │ │ ├── fr │ │ │ └── sonnet5_qt.po │ │ ├── fy │ │ │ └── sonnet5_qt.po │ │ ├── ga │ │ │ └── sonnet5_qt.po │ │ ├── gd │ │ │ └── sonnet5_qt.po │ │ ├── gl │ │ │ └── sonnet5_qt.po │ │ ├── gu │ │ │ └── sonnet5_qt.po │ │ ├── ha │ │ │ └── sonnet5_qt.po │ │ ├── he │ │ │ └── sonnet5_qt.po │ │ ├── hi │ │ │ └── sonnet5_qt.po │ │ ├── hne │ │ │ └── sonnet5_qt.po │ │ ├── hr │ │ │ └── sonnet5_qt.po │ │ ├── hsb │ │ │ └── sonnet5_qt.po │ │ ├── hu │ │ │ └── sonnet5_qt.po │ │ ├── hy │ │ │ └── sonnet5_qt.po │ │ ├── ia │ │ │ └── sonnet5_qt.po │ │ ├── id │ │ │ └── sonnet5_qt.po │ │ ├── is │ │ │ └── sonnet5_qt.po │ │ ├── it │ │ │ └── sonnet5_qt.po │ │ ├── ja │ │ │ └── sonnet5_qt.po │ │ ├── ka │ │ │ └── sonnet5_qt.po │ │ ├── kk │ │ │ └── sonnet5_qt.po │ │ ├── km │ │ │ └── sonnet5_qt.po │ │ ├── kn │ │ │ └── sonnet5_qt.po │ │ ├── ko │ │ │ └── sonnet5_qt.po │ │ ├── ku │ │ │ └── sonnet5_qt.po │ │ ├── lb │ │ │ └── sonnet5_qt.po │ │ ├── lt │ │ │ └── sonnet5_qt.po │ │ ├── lv │ │ │ └── sonnet5_qt.po │ │ ├── mai │ │ │ └── sonnet5_qt.po │ │ ├── mk │ │ │ └── sonnet5_qt.po │ │ ├── ml │ │ │ └── sonnet5_qt.po │ │ ├── mr │ │ │ └── sonnet5_qt.po │ │ ├── ms │ │ │ └── sonnet5_qt.po │ │ ├── nb │ │ │ └── sonnet5_qt.po │ │ ├── nds │ │ │ └── sonnet5_qt.po │ │ ├── ne │ │ │ └── sonnet5_qt.po │ │ ├── nl │ │ │ └── sonnet5_qt.po │ │ ├── nn │ │ │ └── sonnet5_qt.po │ │ ├── oc │ │ │ └── sonnet5_qt.po │ │ ├── or │ │ │ └── sonnet5_qt.po │ │ ├── pa │ │ │ └── sonnet5_qt.po │ │ ├── pl │ │ │ └── sonnet5_qt.po │ │ ├── ps │ │ │ └── sonnet5_qt.po │ │ ├── pt │ │ │ └── sonnet5_qt.po │ │ ├── pt_BR │ │ │ └── sonnet5_qt.po │ │ ├── ro │ │ │ └── sonnet5_qt.po │ │ ├── ru │ │ │ └── sonnet5_qt.po │ │ ├── se │ │ │ └── sonnet5_qt.po │ │ ├── si │ │ │ └── sonnet5_qt.po │ │ ├── sk │ │ │ └── sonnet5_qt.po │ │ ├── sl │ │ │ └── sonnet5_qt.po │ │ ├── sq │ │ │ └── sonnet5_qt.po │ │ ├── sr │ │ │ └── sonnet5_qt.po │ │ ├── sr@ijekavian │ │ │ └── sonnet5_qt.po │ │ ├── sr@ijekavianlatin │ │ │ └── sonnet5_qt.po │ │ ├── sr@latin │ │ │ └── sonnet5_qt.po │ │ ├── sv │ │ │ └── sonnet5_qt.po │ │ ├── ta │ │ │ └── sonnet5_qt.po │ │ ├── te │ │ │ └── sonnet5_qt.po │ │ ├── tg │ │ │ └── sonnet5_qt.po │ │ ├── th │ │ │ └── sonnet5_qt.po │ │ ├── tr │ │ │ └── sonnet5_qt.po │ │ ├── tt │ │ │ └── sonnet5_qt.po │ │ ├── ug │ │ │ └── sonnet5_qt.po │ │ ├── uk │ │ │ └── sonnet5_qt.po │ │ ├── uz │ │ │ └── sonnet5_qt.po │ │ ├── uz@cyrillic │ │ │ └── sonnet5_qt.po │ │ ├── vi │ │ │ └── sonnet5_qt.po │ │ ├── wa │ │ │ └── sonnet5_qt.po │ │ ├── xh │ │ │ └── sonnet5_qt.po │ │ ├── zh_CN │ │ │ └── sonnet5_qt.po │ │ ├── zh_HK │ │ │ └── sonnet5_qt.po │ │ └── zh_TW │ │ │ └── sonnet5_qt.po │ ├── sonnet.categories │ ├── src │ │ ├── CMakeLists.txt │ │ ├── Messages.sh │ │ ├── core │ │ │ ├── CMakeLists.txt │ │ │ ├── backgroundchecker.cpp │ │ │ ├── backgroundchecker.h │ │ │ ├── backgroundchecker_p.h │ │ │ ├── client.cpp │ │ │ ├── client_p.h │ │ │ ├── guesslanguage.cpp │ │ │ ├── guesslanguage.h │ │ │ ├── languagefilter.cpp │ │ │ ├── languagefilter_p.h │ │ │ ├── loader.cpp │ │ │ ├── loader_p.h │ │ │ ├── settings.cpp │ │ │ ├── settings_p.h │ │ │ ├── sonnet-core.pro │ │ │ ├── speller.cpp │ │ │ ├── speller.h │ │ │ ├── spellerplugin.cpp │ │ │ ├── spellerplugin_p.h │ │ │ ├── textbreaks.cpp │ │ │ ├── textbreaks_p.h │ │ │ ├── tokenizer.cpp │ │ │ └── tokenizer_p.h │ │ ├── plugins │ │ │ ├── CMakeLists.txt │ │ │ ├── aspell │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── aspellclient.cpp │ │ │ │ ├── aspellclient.h │ │ │ │ ├── aspelldict.cpp │ │ │ │ └── aspelldict.h │ │ │ ├── enchant │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── enchantclient.cpp │ │ │ │ ├── enchantclient.h │ │ │ │ ├── enchantdict.cpp │ │ │ │ └── enchantdict.h │ │ │ ├── hspell │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── hspellclient.cpp │ │ │ │ ├── hspellclient.h │ │ │ │ ├── hspelldict.cpp │ │ │ │ └── hspelldict.h │ │ │ ├── hunspell │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── config-hunspell.h.cmake │ │ │ │ ├── hunspell.pro │ │ │ │ ├── hunspellclient.cpp │ │ │ │ ├── hunspellclient.h │ │ │ │ ├── hunspelldict.cpp │ │ │ │ └── hunspelldict.h │ │ │ ├── nsspellchecker │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── nsspellchecker.pro │ │ │ │ ├── nsspellcheckerclient.h │ │ │ │ ├── nsspellcheckerclient.mm │ │ │ │ ├── nsspellcheckerdict.h │ │ │ │ └── nsspellcheckerdict.mm │ │ │ └── voikko │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── voikkoclient.cpp │ │ │ │ ├── voikkoclient.h │ │ │ │ ├── voikkodict.cpp │ │ │ │ └── voikkodict.h │ │ └── ui │ │ │ ├── CMakeLists.txt │ │ │ ├── configdialog.cpp │ │ │ ├── configdialog.h │ │ │ ├── configui.ui │ │ │ ├── configwidget.cpp │ │ │ ├── configwidget.h │ │ │ ├── designer │ │ │ └── CMakeLists.txt │ │ │ ├── dialog.cpp │ │ │ ├── dialog.h │ │ │ ├── dictionarycombobox.cpp │ │ │ ├── dictionarycombobox.h │ │ │ ├── highlighter.cpp │ │ │ ├── highlighter.h │ │ │ ├── sonnet-ui.pro │ │ │ ├── sonnetui.ui │ │ │ ├── spellcheckdecorator.cpp │ │ │ └── spellcheckdecorator.h │ └── tests │ │ ├── backgroundtest.cpp │ │ └── backgroundtest.h │ ├── sonnetcore_export.h │ ├── spellcheckservice.cpp │ └── spellcheckservice.h ├── Info.plist ├── LICENSE.txt ├── PhTranslateLib ├── README ├── _config.yml ├── appicon.icns ├── appicon.ico ├── docs ├── _config.yml ├── advanced-editing.md ├── export.md ├── import.md ├── index.md ├── installation.md ├── notebook.md ├── quick-start.md ├── reports.md ├── screenshots │ ├── about_your_pc.jpg │ ├── advanced-editing │ │ ├── 001.jpg │ │ ├── 002.jpg │ │ ├── 003.jpg │ │ ├── 004.jpg │ │ ├── 005.jpg │ │ ├── 006.jpg │ │ ├── 007.jpg │ │ ├── 008.jpg │ │ ├── 009.jpg │ │ ├── 010.jpg │ │ ├── 011.jpg │ │ ├── 012.jpg │ │ ├── 012a.jpg │ │ ├── 013.jpg │ │ ├── 014.jpg │ │ ├── 015.jpg │ │ ├── 016.jpg │ │ ├── 017.jpg │ │ ├── 018.jpg │ │ └── 019.jpg │ ├── import │ │ ├── 001.jpg │ │ ├── 002.jpg │ │ ├── 003.jpg │ │ └── 004.jpg │ ├── quick-start │ │ ├── 001.jpg │ │ ├── 002.jpg │ │ ├── 003.jpg │ │ ├── 004.jpg │ │ ├── 005.jpg │ │ ├── 006.jpg │ │ ├── 007.jpg │ │ ├── 008.jpg │ │ ├── 009.jpg │ │ ├── 010.jpg │ │ ├── 011.jpg │ │ ├── 012.jpg │ │ ├── 013.jpg │ │ ├── 014.jpg │ │ ├── 015.jpg │ │ ├── 016.jpg │ │ ├── 017.jpg │ │ ├── 018.jpg │ │ └── formatting-icons │ │ │ ├── action.png │ │ │ ├── character.png │ │ │ ├── dialogue.png │ │ │ ├── paranthetical.png │ │ │ ├── shot.png │ │ │ └── transition.png │ ├── scriptalay │ │ ├── 001.jpg │ │ ├── 002.jpg │ │ ├── 003.jpg │ │ ├── 004.jpg │ │ ├── 005.jpg │ │ └── 006.jpg │ ├── scrite-dmg-macos.jpg │ ├── scrite-home.jpg │ ├── scrite-home.qml │ ├── windows-download-warning-2.jpg │ ├── windows-download-warning.jpg │ └── windows-smartscreen-filter.jpg ├── scriptalay.md └── structure.md ├── font ├── Bengali │ ├── HindSiliguri-Bold.ttf │ ├── HindSiliguri-Regular.ttf │ └── source.txt ├── English │ ├── CourierPrime-Bold.ttf │ ├── CourierPrime-BoldItalic.ttf │ ├── CourierPrime-Italic.ttf │ ├── CourierPrime-Regular.ttf │ ├── OFL.txt │ └── source.txt ├── Gujarati │ ├── HindVadodara-Bold.ttf │ ├── HindVadodara-Regular.ttf │ └── source.txt ├── Hindi │ ├── Mukta-Bold.ttf │ ├── Mukta-Regular.ttf │ └── source.txt ├── Kannada │ ├── BalooTamma2-Bold.ttf │ ├── BalooTamma2-Regular.ttf │ └── source.txt ├── Malayalam │ ├── BalooChettan2-Bold.ttf │ ├── BalooChettan2-Regular.ttf │ └── source.txt ├── Marathi │ ├── Shusha-Normal.ttf │ └── source.txt ├── Oriya │ ├── BalooBhaina2-Bold.ttf │ ├── BalooBhaina2-Regular.ttf │ └── source.txt ├── Punjabi │ ├── BalooPaaji2-Bold.ttf │ ├── BalooPaaji2-Regular.ttf │ └── source.txt ├── Rubik │ ├── Rubik-Bold.ttf │ ├── Rubik-BoldItalic.ttf │ ├── Rubik-Italic.ttf │ └── Rubik-Regular.ttf ├── Sanskrit │ ├── Mukta-Bold.ttf │ ├── Mukta-Regular.ttf │ └── source.txt ├── Tamil │ ├── HindMadurai-Bold.ttf │ ├── HindMadurai-Regular.ttf │ └── source.txt └── Telugu │ ├── HindGuntur-Bold.ttf │ ├── HindGuntur-Regular.ttf │ └── source.txt ├── icons ├── action │ ├── add_act.png │ ├── add_act_inverted.png │ ├── add_all.png │ ├── add_all_inverted.png │ ├── add_annotation.png │ ├── add_annotation_inverted.png │ ├── add_episide_inverted.png │ ├── add_episode.png │ ├── add_one.png │ ├── add_one_inverted.png │ ├── add_scene.png │ ├── add_scene_inverted.png │ ├── attach_file.png │ ├── attach_file_inverted.png │ ├── close.png │ ├── close_inverted.png │ ├── command_center.png │ ├── command_center_inverted.png │ ├── delete.png │ ├── delete_inverted.png │ ├── description.png │ ├── description_inverted.png │ ├── dialog_close_button.png │ ├── done_all.png │ ├── done_all_inverted.png │ ├── edit.png │ ├── edit_inverted.png │ ├── edit_title_page.png │ ├── edit_title_page_inverted.png │ ├── filter.png │ ├── filter_inverted.png │ ├── find_replace.png │ ├── find_replace_inverted.png │ ├── flag.png │ ├── flag_inverted.png │ ├── forum.png │ ├── forum_inverted.png │ ├── help.png │ ├── help_inverted.png │ ├── home.png │ ├── home_inverted.png │ ├── info.png │ ├── info_inverted.png │ ├── keyboard_arrow_down.png │ ├── keyboard_arrow_down_inverted.png │ ├── keyboard_arrow_up.png │ ├── keyboard_arrow_up_inverted.png │ ├── keyboard_tab.png │ ├── keyboard_tab_inverted.png │ ├── keyword.png │ ├── keyword_inverted.png │ ├── layout_beat_sheet.png │ ├── layout_beat_sheet_inverted.png │ ├── layout_flow_horizontally.png │ ├── layout_flow_horizontally_inverted.png │ ├── layout_flow_vertically.png │ ├── layout_flow_vertically_inverted.png │ ├── layout_grouping.png │ ├── layout_grouping_inverted.png │ ├── layout_horizontally.png │ ├── layout_horizontally_inverted.png │ ├── layout_options.png │ ├── layout_options_inverted.png │ ├── layout_vertically.png │ ├── layout_vertically_inverted.png │ ├── library.png │ ├── library_inverted.png │ ├── lock_open.png │ ├── lock_open_inverted.png │ ├── lock_outline.png │ ├── lock_outline_inverted.png │ ├── logout.png │ ├── logout_inverted.png │ ├── merge_scene.png │ ├── merge_scene_inverted.png │ ├── note_add.png │ ├── note_add_inverted.png │ ├── pin.png │ ├── pin_inverted.png │ ├── remove_all.png │ ├── remove_all_inverted.png │ ├── remove_one.png │ ├── remove_one_inverted.png │ ├── reset.png │ ├── reset_inverted.png │ ├── search.png │ ├── search_inverted.png │ ├── selection_drag.png │ ├── selection_drag_inverted.png │ ├── settings_applications.png │ ├── settings_applications_inverted.png │ ├── share.png │ ├── share_inverted.png │ ├── share_on_email.png │ ├── share_on_facebook.png │ ├── share_on_linkedin.png │ ├── share_on_twitter.png │ ├── split_scene.png │ ├── split_scene_inverted.png │ ├── tag.png │ ├── tag_inverted.png │ ├── thumbnail.png │ ├── thumbnail_inverted.png │ ├── view_array.png │ └── view_array_inverted.png ├── content │ ├── act.png │ ├── act_inverted.png │ ├── add_box.png │ ├── add_box_inverted.png │ ├── add_circle_outline.png │ ├── add_circle_outline_inverted.png │ ├── blank.png │ ├── bookmark.png │ ├── bookmark_outline.png │ ├── camera_alt.png │ ├── camera_alt_inverted.png │ ├── character_icon.png │ ├── checklist.png │ ├── checklist_inverted.png │ ├── clear_all.png │ ├── clear_all_inverted.png │ ├── comments_panel.png │ ├── comments_panel_inverted.png │ ├── content_copy.png │ ├── content_copy_inverted.png │ ├── content_paste.png │ ├── content_paste_inverted.png │ ├── create.png │ ├── create_inverted.png │ ├── empty_scene.png │ ├── empty_scene_inverted.png │ ├── episode.png │ ├── episode_inverted.png │ ├── fight_scene.png │ ├── fight_scene_inverted.png │ ├── form.png │ ├── form_inverted.png │ ├── language.png │ ├── language_inverted.png │ ├── note.png │ ├── note_inverted.png │ ├── omitted_scene.png │ ├── omitted_scene_inverted.png │ ├── page_count.png │ ├── page_count_inverted.png │ ├── person_add.png │ ├── person_add_inverted.png │ ├── person_outline.png │ ├── person_outline_inverted.png │ ├── persons_add.png │ ├── persons_add_inverted.png │ ├── queue_mus24px.png │ ├── queue_mus24px_inverted.png │ ├── redo.png │ ├── redo_inverted.png │ ├── save.png │ ├── save_as.png │ ├── save_as_inverted.png │ ├── save_inverted.png │ ├── scene.png │ ├── scene_inverted.png │ ├── select_all.png │ ├── select_all_inverted.png │ ├── shadow.png │ ├── standard_scene.png │ ├── standard_scene_inverted.png │ ├── story.png │ ├── story_inverted.png │ ├── time.png │ ├── time_inverted.png │ ├── undo.png │ ├── undo_inverted.png │ ├── view_options.png │ ├── view_options_inverted.png │ ├── warning.png │ └── warning_inverted.png ├── editor │ ├── change_case.png │ ├── change_case_inverted.png │ ├── format_align_center.png │ ├── format_align_center_inverted.png │ ├── format_align_justify.png │ ├── format_align_justify_inverted.png │ ├── format_align_left.png │ ├── format_align_left_inverted.png │ ├── format_align_right.png │ ├── format_align_right_inverted.png │ ├── format_bold.png │ ├── format_bold_inverted.png │ ├── format_clear.png │ ├── format_clear_inverted.png │ ├── format_first_line_indent.png │ ├── format_first_line_indent_inverted.png │ ├── format_italics.png │ ├── format_italics_inverted.png │ ├── format_line_spacing.png │ ├── format_line_spacing_inverted.png │ ├── format_strikethrough.png │ ├── format_strikethrough_inverted.png │ ├── format_underline.png │ ├── format_underline_inverted.png │ ├── lowercase.png │ ├── lowercase_inverted.png │ ├── palette.png │ ├── palette_inverted.png │ ├── uppercase.png │ └── uppercase_inverted.png ├── exporter │ ├── character_relationship_graph.png │ ├── exporters_menu_item.png │ ├── final_draft.png │ ├── fountain.png │ ├── html.png │ ├── odt.png │ ├── pdf.png │ ├── scrite.png │ ├── structure_pdf.png │ └── text.png ├── file │ ├── backup_open.png │ ├── backup_open_inverted.png │ ├── file_download.png │ ├── file_download_inverted.png │ ├── file_pdf.png │ ├── file_upload.png │ ├── file_upload_inverted.png │ ├── folder_open.png │ ├── folder_open_inverted.png │ ├── generate_pdf.png │ ├── import_export.png │ ├── import_export_inverted.png │ ├── protected.png │ ├── protected_inverted.png │ ├── unprotected.png │ └── unprotected_inverted.png ├── filetype │ ├── audio.png │ ├── audio_inverted.png │ ├── document.png │ ├── document_inverted.png │ ├── photo.png │ ├── photo_inverted.png │ ├── video.png │ └── video_inverted.png ├── hardware │ ├── keyboard.png │ ├── keyboard_hide.png │ ├── keyboard_hide_inverted.png │ ├── keyboard_inverted.png │ ├── mouse.png │ └── mouse_inverted.png ├── mediaplayer │ ├── fast_forward.png │ ├── fast_forward_inverted.png │ ├── fast_rewind.png │ ├── fast_rewind_inverted.png │ ├── forward_10.png │ ├── forward_10_inverted.png │ ├── movie.png │ ├── movie_inverted.png │ ├── pause.png │ ├── pause_inverted.png │ ├── play_arrow.png │ ├── play_arrow_inverted.png │ ├── reset_screenplay_offsets.png │ ├── reset_screenplay_offsets_inverted.png │ ├── rewind_10.png │ ├── rewind_10_inverted.png │ ├── sync_with_screenplay.png │ ├── sync_with_screenplay_inverted.png │ ├── time_column.png │ └── time_column_inverted.png ├── navigation │ ├── arrow_down.png │ ├── arrow_down_inverted.png │ ├── arrow_left.png │ ├── arrow_left_inverted.png │ ├── arrow_right.png │ ├── arrow_right_inverted.png │ ├── arrow_up.png │ ├── arrow_up_inverted.png │ ├── check.png │ ├── check_inverted.png │ ├── close.png │ ├── close_inverted.png │ ├── fullscreen.png │ ├── fullscreen_exit.png │ ├── fullscreen_exit_inverted.png │ ├── fullscreen_inverted.png │ ├── keyboard_arrow_down.png │ ├── keyboard_arrow_down_inverted.png │ ├── keyboard_arrow_up.png │ ├── keyboard_arrow_up_inverted.png │ ├── menu.png │ ├── menu_inverted.png │ ├── notebook_tab.png │ ├── notebook_tab_inverted.png │ ├── property_editor.png │ ├── property_editor_inverted.png │ ├── refresh.png │ ├── refresh_inverted.png │ ├── screenplay_tab.png │ ├── screenplay_tab_inverted.png │ ├── scrited_tab.png │ ├── scrited_tab_inverted.png │ ├── shortcuts_linux.png │ ├── shortcuts_macos.png │ ├── shortcuts_windows.png │ ├── structure_tab.png │ ├── structure_tab_inverted.png │ ├── sync.png │ ├── sync_inverted.png │ ├── zoom_fit.png │ ├── zoom_fit_inverted.png │ ├── zoom_in.png │ ├── zoom_in_inverted.png │ ├── zoom_one.png │ ├── zoom_one_inverted.png │ ├── zoom_out.png │ └── zoom_out_inverted.png ├── reports │ ├── character_report.png │ ├── character_screenplay.png │ ├── checklistitem_checked.png │ ├── checklistitem_unchecked.png │ ├── location_report.png │ ├── notebook_report.png │ ├── reports_menu_item.png │ ├── scene_character_matrix_report.png │ ├── screenplay_subset_report.png │ ├── statistics_report.png │ ├── twocolumn-av-layout.png │ ├── twocolumn-left-layout.png │ ├── twocolumn-right-layout.png │ └── twocolumn_report.png └── screenplay │ ├── action.png │ ├── action_inverted.png │ ├── character.png │ ├── character_inverted.png │ ├── dialogue.png │ ├── dialogue_inverted.png │ ├── heading.png │ ├── heading_inverted.png │ ├── parenthetical.png │ ├── parenthetical_inverted.png │ ├── shot.png │ ├── shot_inverted.png │ ├── transition.png │ └── transition_inverted.png ├── images ├── aboutbox.jpg ├── appicon.png ├── banner_logo_overlay.png ├── dmgbackdrop.png ├── exclprodicon.png ├── feature_locked.png ├── homescreen_banner.png ├── homescreen_scriptalay_banner.png ├── library.png ├── library_inverted.png ├── library_woicon.png ├── library_woicon_inverted.png ├── prodicon.png ├── sample_scene.png ├── scrite_discord_button.png ├── scrite_logo_for_report_header.png ├── scrited_closing_frame.png ├── splash.png ├── useraccountdialogbg.png └── white-paper-texture.jpg ├── js └── getBoxToBoxArrow.js ├── main.cpp ├── main.qml ├── misc ├── annotations_metadata.json ├── fetchogattribs.js ├── homescreen_info.md ├── qwebchannel.js ├── richtexteditor.html ├── richtexttransform.html ├── scriptalay_info.md ├── scrited_closing_frame_video.mp4 └── structure_groups.lst ├── packaging ├── linux │ ├── Scrite.desktop │ └── package.sh ├── mac │ ├── dmgbackdrop.qml │ ├── package.sh │ └── prepare.sh └── windows │ ├── FileAssociation.nsh │ ├── installer-x64.nsi.in │ ├── installer-x86.nsi.in │ ├── license.txt │ ├── package-x64.bat │ ├── package-x86.bat │ ├── qt.conf │ ├── vcredist_x64 │ └── vcredist_x86 ├── qml ├── NotebookView.qml ├── ScreenplayEditor.qml ├── ScriteMainWindow.qml ├── ScritedView.qml ├── StructureView.qml ├── TimelineView.qml ├── commandcenter │ ├── CommandCenter.qml │ └── qmldir ├── controls │ ├── VclButton.qml │ ├── VclCheckBox.qml │ ├── VclComboBox.qml │ ├── VclDialog.qml │ ├── VclFileDialog.qml │ ├── VclGroupBox.qml │ ├── VclLabel.qml │ ├── VclMenu.qml │ ├── VclMenuItem.qml │ ├── VclRadioButton.qml │ ├── VclScrollBar.qml │ ├── VclText.qml │ ├── VclTextField.qml │ ├── VclToolButton.qml │ └── qmldir ├── dialogs │ ├── AboutDialog.qml │ ├── BackupsDialog.qml │ ├── CollaboratorsDialog.qml │ ├── ExportConfigurationDialog.qml │ ├── FontSelectionDialog.qml │ ├── HomeScreen.qml │ ├── JoinDiscordCommunity.qml │ ├── JumpToSceneNumberDialog.qml │ ├── LanguageOptionsDialog.qml │ ├── MessageBox.qml │ ├── PdfDialog.qml │ ├── RenameCharacterDialog.qml │ ├── ReportConfigurationDialog.qml │ ├── RequestVersionTypeAccess.qml │ ├── SceneGroupKeywordsDialog.qml │ ├── ScreenplayEditorOptionsDialog.qml │ ├── ScreenplayPageSetupDialog.qml │ ├── ScreenplayTracksDialog.qml │ ├── SettingsDialog.qml │ ├── ShortcutEditorDialog.qml │ ├── ShortcutInputDialog.qml │ ├── SplashScreen.qml │ ├── StructureIndexCardFieldsDialog.qml │ ├── StructureStoryBeatsDialog.qml │ ├── SubscriptionDetailsDialog.qml │ ├── SubscriptionPlanComparisonDialog.qml │ ├── TitlePageDialog.qml │ ├── TrialNotActivatedDialog.qml │ ├── UserAccountDialog.qml │ ├── WaitDialog.qml │ ├── exportconfigurationdialog │ │ ├── editor_CheckBox.qml │ │ ├── editor_IntegerSpinBox.qml │ │ ├── editor_TextBox.qml │ │ ├── editor_Unknown.qml │ │ ├── impl_ExportConfigurationDialog.qml │ │ └── qmldir │ ├── homescreen │ │ ├── EditRecentFilesDialog.qml │ │ ├── HomeScreenImpl.qml │ │ ├── Poster.qml │ │ └── qmldir │ ├── pdfdialog │ │ ├── PdfDialogImpl.qml │ │ └── qmldir │ ├── qmldir │ ├── reportconfigurationdialog │ │ ├── CharactersView.qml │ │ ├── editor_CheckBox.qml │ │ ├── editor_EnumSelector.qml │ │ ├── editor_IntegerSpinBox.qml │ │ ├── editor_MultipleCharacterNameSelector.qml │ │ ├── editor_MultipleEpisodeSelector.qml │ │ ├── editor_MultipleKeywordsSelector.qml │ │ ├── editor_MultipleLocationSelector.qml │ │ ├── editor_MultipleSceneSelector.qml │ │ ├── editor_MultipleTagGroupSelector.qml │ │ ├── editor_TextBox.qml │ │ ├── editor_TwoColumnLayoutSelector.qml │ │ ├── editor_TwoColumnWidthDistributionEditor.qml │ │ ├── editor_Unknown.qml │ │ ├── impl_ReportConfigurationDialog.qml │ │ └── qmldir │ ├── settingsdialog │ │ ├── ApplicationOptionsPage.qml │ │ ├── ApplicationSettingsTab.qml │ │ ├── ApplicationShortcutsPage.qml │ │ ├── ApplicationThemePage.qml │ │ ├── LanguageOptionsPage.qml │ │ ├── LanguageSettingsTab.qml │ │ ├── NotebookOptionsPage.qml │ │ ├── NotebookSettingsTab.qml │ │ ├── ScreenplayEditorOptionsPage.qml │ │ ├── ScreenplayFormattingRulesPage.qml │ │ ├── ScreenplayOptionsPage.qml │ │ ├── ScreenplayPageSetupPage.qml │ │ ├── ScreenplaySettingsTab.qml │ │ ├── ScreenplayTracksPage.qml │ │ ├── StructureIndexCardFieldsPage.qml │ │ ├── StructureOptionsPage.qml │ │ ├── StructureSettingsTab.qml │ │ ├── StructureStoryBeatsPage.qml │ │ ├── impl_SettingsDialog.qml │ │ └── qmldir │ └── useraccountdialog │ │ ├── AccountEmailScreen.qml │ │ ├── ActivationCodeScreen.qml │ │ ├── JunctionScreen.qml │ │ ├── PlanCard.qml │ │ ├── ReloadUserScreen.qml │ │ ├── UserProfileScreen.qml │ │ ├── WelcomeScreen.qml │ │ └── qmldir ├── floatingdockpanels │ ├── FloatingDock.qml │ ├── FloatingDockLayer.qml │ ├── FloatingMarkupToolsDock.qml │ └── qmldir ├── globals │ ├── ActionHub.qml │ ├── Runtime.qml │ ├── SubscriptionPlanOperations.qml │ └── qmldir ├── helpers │ ├── ActionManagerMenu.qml │ ├── ActionManagerToolBar.qml │ ├── ActionManagerToolButton.qml │ ├── ActionToolButton.qml │ ├── AlphabetMappingsView.qml │ ├── AttachmentsDropArea.qml │ ├── AttachmentsView.qml │ ├── BoxShadow.qml │ ├── BusyIcon.qml │ ├── BusyMessage.qml │ ├── ColorMenu.qml │ ├── ColorPalette.qml │ ├── ColorToolButton.qml │ ├── DialogLauncher.qml │ ├── DisabledFeatureNotice.qml │ ├── FileSelector.qml │ ├── FlatToolButton.qml │ ├── FlickableTextArea.qml │ ├── LanguageTransliteratorPopup.qml │ ├── Link.qml │ ├── LodLoader.qml │ ├── MarkSceneAsMenu.qml │ ├── MenuLoader.qml │ ├── PageView.qml │ ├── PdfView.qml │ ├── RectangleTabView.qml │ ├── RichTextEdit.qml │ ├── RubberBand.qml │ ├── SceneFeaturedImage.qml │ ├── SceneHeadingTextField.qml │ ├── SceneTypeImage.qml │ ├── ScreenplayTracksView.qml │ ├── ScrollArea.qml │ ├── SearchBar.qml │ ├── ShortcutField.qml │ ├── SidePanel.qml │ ├── SimpleToolButton.qml │ ├── SpecialSymbolsSupport.qml │ ├── SpellingSuggestionsMenu.qml │ ├── TagText.qml │ ├── TextAreaInput.qml │ ├── TextAreaSpellingSuggestionsMenu.qml │ ├── TextEditCursorDelegate.qml │ ├── TextListInput.qml │ ├── TextTabBar.qml │ ├── TextViewEdit.qml │ ├── ToolTipPopup.qml │ ├── TrapeziumTabView.qml │ ├── UiElementHighlight.qml │ ├── UserAccountToolButton.qml │ ├── ZoomSlider.qml │ └── qmldir ├── mainwindow │ ├── Header.qml │ ├── NotebookTab.qml │ ├── ReloadPromptDialog.qml │ ├── ScreenplayTab.qml │ ├── ScritedTab.qml │ ├── StructureTab.qml │ ├── VerticalToolBar.qml │ ├── Workspace.qml │ └── qmldir ├── notebookview │ ├── NotesTreeView.qml │ ├── NotesTreeViewDelegate.qml │ ├── dialogs │ │ ├── AddCharactersDialog.qml │ │ ├── AddRelationshipDialog.qml │ │ ├── RelationshipNameEditorDialog.qml │ │ └── qmldir │ ├── helpers │ │ ├── CharacterRelationshipsGraphView.qml │ │ ├── CheckListView.qml │ │ ├── DeleteConfirmationPopup.qml │ │ ├── FormField.qml │ │ ├── FormView.qml │ │ ├── TextNoteView.qml │ │ └── qmldir │ ├── menus │ │ ├── CharacterMenu.qml │ │ ├── FormMenu.qml │ │ ├── NewNoteMenu.qml │ │ ├── NoteMenu.qml │ │ └── qmldir │ ├── pages │ │ ├── AbstractNotePage.qml │ │ ├── AbstractNotebookPage.qml │ │ ├── BookmarksNotebookPage.qml │ │ ├── BreakSummaryPage.qml │ │ ├── CharacterPage.qml │ │ ├── CharactersPage.qml │ │ ├── CheckListNotePage.qml │ │ ├── FormNotePage.qml │ │ ├── GenericNotebookPage.qml │ │ ├── NotesPage.qml │ │ ├── SceneNotesPage.qml │ │ ├── ScreenplayPage.qml │ │ ├── TextNotePage.qml │ │ ├── UnusedScenesPage.qml │ │ └── qmldir │ ├── qmldir │ └── tabs │ │ ├── AllCharactersRelationshipsTab.qml │ │ ├── AllCharactersTab.qml │ │ ├── CharacterInformationTab.qml │ │ ├── CharacterRelationshipsTab.qml │ │ ├── NotesTab.qml │ │ ├── SceneCharacterRelationshipsTab.qml │ │ ├── SceneCommentsTab.qml │ │ ├── SceneSynopsisTab.qml │ │ ├── ScreenplayLoglineTab.qml │ │ ├── ScreenplayStatsTab.qml │ │ ├── ScreenplayTitlePageTab.qml │ │ └── qmldir ├── notifications │ ├── AutoUpdateNotifications.qml │ ├── HelpTipNotification.qml │ ├── NotificationsLayer.qml │ ├── NotificationsView.qml │ └── qmldir ├── overlays │ ├── AnimatedTextOverlay.qml │ ├── BusyOverlay.qml │ ├── OverlaysLayer.qml │ └── qmldir ├── qmldir ├── qmldirgen.js ├── screenplayeditor │ ├── PageBreakItem.qml │ ├── ScreenplayBreakElementsContextMenu.qml │ ├── ScreenplayEditorCharacterMenu.qml │ ├── ScreenplayEditorDropArea.qml │ ├── ScreenplayEditorSearchBar.qml │ ├── ScreenplayEditorSidePanel.qml │ ├── ScreenplayEditorStatusBar.qml │ ├── ScreenplayElementListView.qml │ ├── ScreenplaySceneElementsContextMenu.qml │ ├── delegates │ │ ├── AbstractScreenplayElementBreakDelegate.qml │ │ ├── AbstractScreenplayElementDelegate.qml │ │ ├── AbstractScreenplayElementSceneDelegate.qml │ │ ├── OmittedScreenplayElementDelegate.qml │ │ ├── ScreenplayActBreakDelegate.qml │ │ ├── ScreenplayElementListViewFooter.qml │ │ ├── ScreenplayElementListViewHeader.qml │ │ ├── ScreenplayElementSceneDelegate.qml │ │ ├── ScreenplayEpisodeBreakDelegate.qml │ │ ├── ScreenplayIntervalBreakDelegate.qml │ │ ├── qmldir │ │ ├── scenedelegate │ │ │ ├── HighResolutionSceneContent.qml │ │ │ ├── LowResolutionSceneContent.qml │ │ │ └── qmldir │ │ ├── sceneparteditors │ │ │ ├── AbstractScenePartEditor.qml │ │ │ ├── SceneCharacterListPartEditor.qml │ │ │ ├── SceneContentEditor.qml │ │ │ ├── SceneHeadingPartEditor.qml │ │ │ ├── SceneStoryBeatTagsPartEditor.qml │ │ │ ├── SceneSynopsisPartEditor.qml │ │ │ ├── helpers │ │ │ │ ├── SceneMenu.qml │ │ │ │ ├── SceneTextEditorBackground.qml │ │ │ │ ├── SceneTextEditorCompletionPopup.qml │ │ │ │ ├── SceneTextEditorContextMenu.qml │ │ │ │ ├── SceneTextEditorPageNumbers.qml │ │ │ │ ├── SceneTextEditorSpellingSuggestionsMenu.qml │ │ │ │ └── qmldir │ │ │ └── qmldir │ │ └── sidepanel │ │ │ ├── CollapsedCorner.qml │ │ │ ├── CommentsTab.qml │ │ │ ├── ExpandedCorner.qml │ │ │ ├── FeaturedImageTab.qml │ │ │ ├── IndexCardFieldsTab.qml │ │ │ ├── SceneMetaDataTab.qml │ │ │ ├── SceneSidePanel.qml │ │ │ └── qmldir │ ├── qmldir │ └── scenelistpanel │ │ ├── SceneListPanel.qml │ │ ├── SceneListPanelDelegate.qml │ │ ├── SceneListPanelFooter.qml │ │ ├── SceneListPanelHeader.qml │ │ ├── SceneListPanelMenu.qml │ │ ├── SceneListPanelMoveElementsTask.qml │ │ └── qmldir ├── structureview │ ├── AnnotationLayer.qml │ ├── IndexCardFields.qml │ ├── StructureCanvas.qml │ ├── StructureCanvasContextMenu.qml │ ├── StructureCanvasPreview.qml │ ├── StructureCanvasScrollArea.qml │ ├── StructureElementLayer.qml │ ├── StructureGroupsMenu.qml │ ├── StructureViewActionHandlers.qml │ ├── StructureViewStatusBar.qml │ ├── annotations │ │ ├── AbstractAnnotationDelegate.qml │ │ ├── AnnotationFactory.qml │ │ ├── AnnotationGrip.qml │ │ ├── AnnotationPropertyEditor.qml │ │ ├── AnnotationPropertyEditorDock.qml │ │ ├── AnnotationToolBar.qml │ │ ├── CreateAnnotationMouseArea.qml │ │ ├── ImageAnnotationFactory.qml │ │ ├── LineAnnotationFactory.qml │ │ ├── OvalAnnotationFactory.qml │ │ ├── RectangleAnnotationFactory.qml │ │ ├── TextAnnotationFactory.qml │ │ ├── UrlAnnotationFactory.qml │ │ └── qmldir │ ├── qmldir │ └── structureelements │ │ ├── AbstractSelection.qml │ │ ├── AbstractStructureElementUI.qml │ │ ├── ActiveStructureElementBackdrop.qml │ │ ├── CreateStructureElementMouseArea.qml │ │ ├── SelectionContextMenu.qml │ │ ├── StructureCanvasEpisodeBox.qml │ │ ├── StructureCanvasGroupBox.qml │ │ ├── StructureElementConnectorDelegate.qml │ │ ├── StructureElementContextMenu.qml │ │ ├── StructureElementIndexCard.qml │ │ ├── StructureElementStackTabBar.qml │ │ ├── StructureElementSynopsisBox.qml │ │ ├── StructureElementsLayoutTask.qml │ │ ├── StructureElementsSelection.qml │ │ └── qmldir ├── tasks │ ├── OpenFileTask.qml │ ├── OpenFromLibraryTask.qml │ ├── SaveFileTask.qml │ └── qmldir └── timelineview │ ├── TimelineListView.qml │ ├── TimelineTools.qml │ ├── TimelineViewDelegate.qml │ ├── TimelineViewFooter.qml │ ├── TimelineViewHighlightedItemAnimation.qml │ └── qmldir ├── scrite.pro ├── scrite_bengali_font.qrc ├── scrite_english_font.qrc ├── scrite_gujarati_font.qrc ├── scrite_hindi_font.qrc ├── scrite_icons.qrc ├── scrite_images.qrc ├── scrite_kannada_font.qrc ├── scrite_malayalam_font.qrc ├── scrite_marathi_font.qrc ├── scrite_misc.qrc ├── scrite_oriya_font.qrc ├── scrite_punjabi_font.qrc ├── scrite_rubik_font.qrc ├── scrite_sanskrit_font.qrc ├── scrite_tamil_font.qrc ├── scrite_telugu_font.qrc ├── scrite_ui.qrc ├── src ├── core │ ├── actionmanager.cpp │ ├── actionmanager.h │ ├── application.cpp │ ├── application.h │ ├── application_build_timestamp.cpp │ ├── appwindow.cpp │ ├── appwindow.h │ ├── autoupdate.cpp │ ├── autoupdate.h │ ├── enumerationmodel.cpp │ ├── enumerationmodel.h │ ├── filelocker.cpp │ ├── filelocker.h │ ├── filemodificationtracker.cpp │ ├── filemodificationtracker.h │ ├── languageengine.cpp │ ├── languageengine.h │ ├── localstorage.cpp │ ├── localstorage.h │ ├── pdfexportablegraphicsscene.cpp │ ├── pdfexportablegraphicsscene.h │ ├── peerapplookup.cpp │ ├── peerapplookup.h │ ├── platformtransliterator_linux.cpp │ ├── platformtransliterator_linux.h │ ├── platformtransliterator_macos.h │ ├── platformtransliterator_macos.mm │ ├── platformtransliterator_windows.cpp │ ├── platformtransliterator_windows.h │ ├── printerobject.h │ ├── qobjectlistmodel.cpp │ ├── qobjectlistmodel.h │ ├── qobjectproperty.cpp │ ├── qobjectproperty.h │ ├── scrite.cpp │ ├── scrite.h │ ├── systemrequirements.cpp │ ├── systemrequirements.h │ ├── utils.cpp │ ├── utils.h │ ├── valueindexlookup.cpp │ └── valueindexlookup.h ├── document │ ├── attachments.cpp │ ├── attachments.h │ ├── characterrelationshipgraph.cpp │ ├── characterrelationshipgraph.h │ ├── documentfilesystem.cpp │ ├── documentfilesystem.h │ ├── form.cpp │ ├── form.h │ ├── formatting.cpp │ ├── formatting.h │ ├── notebookmodel.cpp │ ├── notebookmodel.h │ ├── notes.cpp │ ├── notes.h │ ├── scene.cpp │ ├── scene.h │ ├── screenplay.cpp │ ├── screenplay.h │ ├── screenplayadapter.cpp │ ├── screenplayadapter.h │ ├── screenplaypaginator.cpp │ ├── screenplaypaginator.h │ ├── screenplaypaginatorworker.cpp │ ├── screenplaypaginatorworker.h │ ├── screenplaytextdocument.cpp │ ├── screenplaytextdocument.h │ ├── screenplaytextdocumentoffsets.cpp │ ├── screenplaytextdocumentoffsets.h │ ├── screenplaytreeadapter.cpp │ ├── screenplaytreeadapter.h │ ├── scritedocument.cpp │ ├── scritedocument.h │ ├── scritedocumentvault.cpp │ ├── scritedocumentvault.h │ ├── scritefileinfo.cpp │ ├── scritefileinfo.h │ ├── scritefilelistmodel.cpp │ ├── scritefilelistmodel.h │ ├── structure.cpp │ ├── structure.h │ ├── undoredo.cpp │ └── undoredo.h ├── exporters │ ├── characterrelationshipsgraphexporter.cpp │ ├── characterrelationshipsgraphexporter.h │ ├── characterrelationshipsgraphexporter_p.cpp │ ├── characterrelationshipsgraphexporter_p.h │ ├── finaldraftexporter.cpp │ ├── finaldraftexporter.h │ ├── fountainexporter.cpp │ ├── fountainexporter.h │ ├── htmlexporter.cpp │ ├── htmlexporter.h │ ├── odtexporter.cpp │ ├── odtexporter.h │ ├── pdfexporter.cpp │ ├── pdfexporter.h │ ├── structureexporter.cpp │ ├── structureexporter.h │ ├── structureexporter_p.cpp │ ├── structureexporter_p.h │ ├── textexporter.cpp │ └── textexporter.h ├── importers │ ├── finaldraftimporter.cpp │ ├── finaldraftimporter.h │ ├── fountainimporter.cpp │ ├── fountainimporter.h │ ├── htmlimporter.cpp │ ├── htmlimporter.h │ ├── openfromlibrary.cpp │ └── openfromlibrary.h ├── interfaces │ ├── abstractdeviceio.cpp │ ├── abstractdeviceio.h │ ├── abstractexporter.cpp │ ├── abstractexporter.h │ ├── abstractimporter.cpp │ ├── abstractimporter.h │ ├── abstractreportgenerator.cpp │ ├── abstractreportgenerator.h │ ├── abstractscreenplaysubsetreport.cpp │ ├── abstractscreenplaysubsetreport.h │ ├── abstracttextdocumentexporter.cpp │ └── abstracttextdocumentexporter.h ├── network │ ├── networkaccessmanager.cpp │ ├── networkaccessmanager.h │ ├── networkstatus.cpp │ ├── networkstatus.h │ ├── restapicall.cpp │ ├── restapicall.h │ ├── user.cpp │ └── user.h ├── printing │ ├── qtextdocumentpagedprinter.cpp │ └── qtextdocumentpagedprinter.h ├── quick │ ├── items │ │ ├── abstractshapeitem.cpp │ │ ├── abstractshapeitem.h │ │ ├── boundingboxevaluator.cpp │ │ ├── boundingboxevaluator.h │ │ ├── gridbackgrounditem.cpp │ │ ├── gridbackgrounditem.h │ │ ├── painterpathitem.cpp │ │ ├── painterpathitem.h │ │ ├── qimageitem.cpp │ │ ├── qimageitem.h │ │ ├── ruleritem.cpp │ │ ├── ruleritem.h │ │ ├── simpletabbaritem.cpp │ │ ├── simpletabbaritem.h │ │ ├── textdocumentitem.cpp │ │ ├── textdocumentitem.h │ │ ├── textshapeitem.cpp │ │ ├── textshapeitem.h │ │ ├── timelinecursoritem.cpp │ │ └── timelinecursoritem.h │ └── objects │ │ ├── aggregation.cpp │ │ ├── aggregation.h │ │ ├── announcement.cpp │ │ ├── announcement.h │ │ ├── basicfileiconprovider.cpp │ │ ├── basicfileiconprovider.h │ │ ├── basicfileinfo.cpp │ │ ├── basicfileinfo.h │ │ ├── batchchange.cpp │ │ ├── batchchange.h │ │ ├── colorimageprovider.cpp │ │ ├── colorimageprovider.h │ │ ├── completionmodel.cpp │ │ ├── completionmodel.h │ │ ├── contextmenuevent.cpp │ │ ├── contextmenuevent.h │ │ ├── delayedproperty.cpp │ │ ├── delayedproperty.h │ │ ├── deltadocument.cpp │ │ ├── deltadocument.h │ │ ├── errorreport.cpp │ │ ├── errorreport.h │ │ ├── eventfilter.cpp │ │ ├── eventfilter.h │ │ ├── filemanager.cpp │ │ ├── filemanager.h │ │ ├── flickscrollspeedcontrol.cpp │ │ ├── flickscrollspeedcontrol.h │ │ ├── focustracker.cpp │ │ ├── focustracker.h │ │ ├── itempositionmapper.cpp │ │ ├── itempositionmapper.h │ │ ├── modelaggregator.cpp │ │ ├── modelaggregator.h │ │ ├── notification.cpp │ │ ├── notification.h │ │ ├── notificationmanager.cpp │ │ ├── notificationmanager.h │ │ ├── polygontesselator.cpp │ │ ├── polygontesselator.h │ │ ├── propertyalias.cpp │ │ ├── propertyalias.h │ │ ├── resetonchange.cpp │ │ ├── resetonchange.h │ │ ├── searchengine.cpp │ │ ├── searchengine.h │ │ ├── standardpaths.cpp │ │ ├── standardpaths.h │ │ ├── syntaxhighlighter.cpp │ │ ├── syntaxhighlighter.h │ │ ├── tabsequencemanager.cpp │ │ ├── tabsequencemanager.h │ │ ├── textdocument.cpp │ │ ├── textdocument.h │ │ ├── textlimiter.cpp │ │ ├── textlimiter.h │ │ ├── trackobject.cpp │ │ └── trackobject.h ├── reports │ ├── characterreport.cpp │ ├── characterreport.h │ ├── characterscreenplayreport.cpp │ ├── characterscreenplayreport.h │ ├── locationreport.cpp │ ├── locationreport.h │ ├── locationscreenplayreport.cpp │ ├── locationscreenplayreport.h │ ├── notebookreport.cpp │ ├── notebookreport.h │ ├── progressreport.cpp │ ├── progressreport.h │ ├── scenecharactermatrixreport.cpp │ ├── scenecharactermatrixreport.h │ ├── screenplaysubsetreport.cpp │ ├── screenplaysubsetreport.h │ ├── statisticsreport.cpp │ ├── statisticsreport.h │ ├── statisticsreport_p.cpp │ ├── statisticsreport_p.h │ ├── twocolumnreport.cpp │ └── twocolumnreport.h ├── restapikey │ └── restapikey.h └── utils │ ├── booleanresult.h │ ├── callgraph.h │ ├── execlatertimer.cpp │ ├── execlatertimer.h │ ├── fountain.cpp │ ├── fountain.h │ ├── garbagecollector.cpp │ ├── garbagecollector.h │ ├── genericarraymodel.cpp │ ├── genericarraymodel.h │ ├── graphlayout.cpp │ ├── graphlayout.h │ ├── hourglass.h │ ├── modifiable.h │ ├── qobjectfactory.h │ ├── qobjectserializer.cpp │ ├── qobjectserializer.h │ ├── timeprofiler.h │ ├── urlattributes.cpp │ └── urlattributes.h └── tools ├── codingstyle ├── formatQProperties.js └── runClangFormat.bat ├── fillnsi ├── .gitignore ├── fillnsi.pro └── main.cpp └── urlattribs ├── OpenGraph.php └── urlattribs.php /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /3rdparty/crashpad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/crashpad/README.md -------------------------------------------------------------------------------- /3rdparty/crashpad/crashpad.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/crashpad/crashpad.pri -------------------------------------------------------------------------------- /3rdparty/crashpad/crashpadmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/crashpad/crashpadmodule.h -------------------------------------------------------------------------------- /3rdparty/dragonman225-curved-arrows/example/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /3rdparty/openssl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/openssl/README -------------------------------------------------------------------------------- /3rdparty/openssl/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/openssl/license.txt -------------------------------------------------------------------------------- /3rdparty/phtranslator/LanguageCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/phtranslator/LanguageCodes.h -------------------------------------------------------------------------------- /3rdparty/phtranslator/PhTranslateLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/phtranslator/PhTranslateLib.h -------------------------------------------------------------------------------- /3rdparty/phtranslator/PhTranslator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/phtranslator/PhTranslator.cpp -------------------------------------------------------------------------------- /3rdparty/phtranslator/PhTranslator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/phtranslator/PhTranslator.h -------------------------------------------------------------------------------- /3rdparty/phtranslator/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/phtranslator/stdafx.cpp -------------------------------------------------------------------------------- /3rdparty/phtranslator/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/phtranslator/stdafx.h -------------------------------------------------------------------------------- /3rdparty/phtranslator/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/phtranslator/targetver.h -------------------------------------------------------------------------------- /3rdparty/poly2tri/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/poly2tri/License.txt -------------------------------------------------------------------------------- /3rdparty/poly2tri/common/shapes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/poly2tri/common/shapes.cc -------------------------------------------------------------------------------- /3rdparty/poly2tri/common/shapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/poly2tri/common/shapes.h -------------------------------------------------------------------------------- /3rdparty/poly2tri/common/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/poly2tri/common/utils.h -------------------------------------------------------------------------------- /3rdparty/poly2tri/poly2tri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/poly2tri/poly2tri.h -------------------------------------------------------------------------------- /3rdparty/poly2tri/sweep/cdt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/poly2tri/sweep/cdt.cc -------------------------------------------------------------------------------- /3rdparty/poly2tri/sweep/cdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/poly2tri/sweep/cdt.h -------------------------------------------------------------------------------- /3rdparty/poly2tri/sweep/sweep.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/poly2tri/sweep/sweep.cc -------------------------------------------------------------------------------- /3rdparty/poly2tri/sweep/sweep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/poly2tri/sweep/sweep.h -------------------------------------------------------------------------------- /3rdparty/quazip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/quazip/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/CONTRIBUTING.md -------------------------------------------------------------------------------- /3rdparty/quazip/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/COPYING -------------------------------------------------------------------------------- /3rdparty/quazip/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/Doxyfile -------------------------------------------------------------------------------- /3rdparty/quazip/NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/NEWS.txt -------------------------------------------------------------------------------- /3rdparty/quazip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/README.md -------------------------------------------------------------------------------- /3rdparty/quazip/quazip.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip.pri -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/JlCompress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/JlCompress.cpp -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/JlCompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/JlCompress.h -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/doc/faq.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/doc/faq.dox -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/doc/index.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/doc/index.dox -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/doc/usage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/doc/usage.dox -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/ioapi.h -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/minizip_crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/minizip_crypt.h -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/qioapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/qioapi.cpp -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/quaadler32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/quaadler32.cpp -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/quaadler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/quaadler32.h -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/quachecksum32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/quachecksum32.h -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/quacrc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/quacrc32.cpp -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/quacrc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/quacrc32.h -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/quagzipfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/quagzipfile.cpp -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/quagzipfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/quagzipfile.h -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/quaziodevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/quaziodevice.h -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/quazip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/quazip.cpp -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/quazip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/quazip.h -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/quazip_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/quazip_global.h -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/quazipdir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/quazipdir.cpp -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/quazipdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/quazipdir.h -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/quazipfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/quazipfile.cpp -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/quazipfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/quazipfile.h -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/quazipnewinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/quazipnewinfo.h -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/unzip.c -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/unzip.h -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/zip.c -------------------------------------------------------------------------------- /3rdparty/quazip/quazip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/quazip/zip.h -------------------------------------------------------------------------------- /3rdparty/quazip/qztest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/qztest/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/quazip/qztest/qztest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/qztest/qztest.cpp -------------------------------------------------------------------------------- /3rdparty/quazip/qztest/qztest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/qztest/qztest.h -------------------------------------------------------------------------------- /3rdparty/quazip/qztest/qztest.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/qztest/qztest.qrc -------------------------------------------------------------------------------- /3rdparty/quazip/qztest/testquazip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/qztest/testquazip.cpp -------------------------------------------------------------------------------- /3rdparty/quazip/qztest/testquazip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/qztest/testquazip.h -------------------------------------------------------------------------------- /3rdparty/quazip/qztest/testquazipdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quazip/qztest/testquazipdir.h -------------------------------------------------------------------------------- /3rdparty/quill/examples/bubble.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quill/examples/bubble.html -------------------------------------------------------------------------------- /3rdparty/quill/examples/full.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quill/examples/full.html -------------------------------------------------------------------------------- /3rdparty/quill/examples/snow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quill/examples/snow.html -------------------------------------------------------------------------------- /3rdparty/quill/quill.bubble.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quill/quill.bubble.css -------------------------------------------------------------------------------- /3rdparty/quill/quill.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quill/quill.core.css -------------------------------------------------------------------------------- /3rdparty/quill/quill.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quill/quill.core.js -------------------------------------------------------------------------------- /3rdparty/quill/quill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quill/quill.js -------------------------------------------------------------------------------- /3rdparty/quill/quill.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quill/quill.min.js -------------------------------------------------------------------------------- /3rdparty/quill/quill.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quill/quill.min.js.map -------------------------------------------------------------------------------- /3rdparty/quill/quill.snow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/quill/quill.snow.css -------------------------------------------------------------------------------- /3rdparty/simplecrypt/simplecrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/simplecrypt/simplecrypt.cpp -------------------------------------------------------------------------------- /3rdparty/simplecrypt/simplecrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/simplecrypt/simplecrypt.h -------------------------------------------------------------------------------- /3rdparty/simplecrypt/simplecrypt.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/simplecrypt/simplecrypt.pri -------------------------------------------------------------------------------- /3rdparty/sonnet/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/sonnet/README -------------------------------------------------------------------------------- /3rdparty/sonnet/config-hunspell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/sonnet/config-hunspell.h -------------------------------------------------------------------------------- /3rdparty/sonnet/core_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/sonnet/core_debug.cpp -------------------------------------------------------------------------------- /3rdparty/sonnet/core_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/sonnet/core_debug.h -------------------------------------------------------------------------------- /3rdparty/sonnet/hunspelldebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/sonnet/hunspelldebug.cpp -------------------------------------------------------------------------------- /3rdparty/sonnet/hunspelldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/sonnet/hunspelldebug.h -------------------------------------------------------------------------------- /3rdparty/sonnet/nsspellcheckerdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/sonnet/nsspellcheckerdebug.h -------------------------------------------------------------------------------- /3rdparty/sonnet/sonnet.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/sonnet/sonnet.pri -------------------------------------------------------------------------------- /3rdparty/sonnet/sonnet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/sonnet/sonnet/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/sonnet/sonnet/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/sonnet/sonnet/COPYING.LIB -------------------------------------------------------------------------------- /3rdparty/sonnet/sonnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/sonnet/sonnet/README.md -------------------------------------------------------------------------------- /3rdparty/sonnet/sonnet/metainfo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/sonnet/sonnet/metainfo.yaml -------------------------------------------------------------------------------- /3rdparty/sonnet/sonnet/src/Messages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/sonnet/sonnet/src/Messages.sh -------------------------------------------------------------------------------- /3rdparty/sonnet/sonnet/src/plugins/hunspell/config-hunspell.h.cmake: -------------------------------------------------------------------------------- 1 | #cmakedefine01 USE_OLD_HUNSPELL_API 2 | -------------------------------------------------------------------------------- /3rdparty/sonnet/sonnet/src/ui/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/sonnet/sonnet/src/ui/dialog.h -------------------------------------------------------------------------------- /3rdparty/sonnet/sonnetcore_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/sonnet/sonnetcore_export.h -------------------------------------------------------------------------------- /3rdparty/sonnet/spellcheckservice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/sonnet/spellcheckservice.cpp -------------------------------------------------------------------------------- /3rdparty/sonnet/spellcheckservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/3rdparty/sonnet/spellcheckservice.h -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/Info.plist -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PhTranslateLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/PhTranslateLib -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/README -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/_config.yml -------------------------------------------------------------------------------- /appicon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/appicon.icns -------------------------------------------------------------------------------- /appicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/appicon.ico -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/advanced-editing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/advanced-editing.md -------------------------------------------------------------------------------- /docs/export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/export.md -------------------------------------------------------------------------------- /docs/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/import.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/notebook.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/quick-start.md -------------------------------------------------------------------------------- /docs/reports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/reports.md -------------------------------------------------------------------------------- /docs/screenshots/about_your_pc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/about_your_pc.jpg -------------------------------------------------------------------------------- /docs/screenshots/import/001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/import/001.jpg -------------------------------------------------------------------------------- /docs/screenshots/import/002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/import/002.jpg -------------------------------------------------------------------------------- /docs/screenshots/import/003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/import/003.jpg -------------------------------------------------------------------------------- /docs/screenshots/import/004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/import/004.jpg -------------------------------------------------------------------------------- /docs/screenshots/quick-start/001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/quick-start/001.jpg -------------------------------------------------------------------------------- /docs/screenshots/quick-start/002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/quick-start/002.jpg -------------------------------------------------------------------------------- /docs/screenshots/quick-start/003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/quick-start/003.jpg -------------------------------------------------------------------------------- /docs/screenshots/quick-start/004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/quick-start/004.jpg -------------------------------------------------------------------------------- /docs/screenshots/quick-start/005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/quick-start/005.jpg -------------------------------------------------------------------------------- /docs/screenshots/quick-start/006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/quick-start/006.jpg -------------------------------------------------------------------------------- /docs/screenshots/quick-start/007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/quick-start/007.jpg -------------------------------------------------------------------------------- /docs/screenshots/quick-start/008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/quick-start/008.jpg -------------------------------------------------------------------------------- /docs/screenshots/quick-start/009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/quick-start/009.jpg -------------------------------------------------------------------------------- /docs/screenshots/quick-start/010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/quick-start/010.jpg -------------------------------------------------------------------------------- /docs/screenshots/quick-start/011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/quick-start/011.jpg -------------------------------------------------------------------------------- /docs/screenshots/quick-start/012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/quick-start/012.jpg -------------------------------------------------------------------------------- /docs/screenshots/quick-start/013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/quick-start/013.jpg -------------------------------------------------------------------------------- /docs/screenshots/quick-start/014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/quick-start/014.jpg -------------------------------------------------------------------------------- /docs/screenshots/quick-start/015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/quick-start/015.jpg -------------------------------------------------------------------------------- /docs/screenshots/quick-start/016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/quick-start/016.jpg -------------------------------------------------------------------------------- /docs/screenshots/quick-start/017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/quick-start/017.jpg -------------------------------------------------------------------------------- /docs/screenshots/quick-start/018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/quick-start/018.jpg -------------------------------------------------------------------------------- /docs/screenshots/scriptalay/001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/scriptalay/001.jpg -------------------------------------------------------------------------------- /docs/screenshots/scriptalay/002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/scriptalay/002.jpg -------------------------------------------------------------------------------- /docs/screenshots/scriptalay/003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/scriptalay/003.jpg -------------------------------------------------------------------------------- /docs/screenshots/scriptalay/004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/scriptalay/004.jpg -------------------------------------------------------------------------------- /docs/screenshots/scriptalay/005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/scriptalay/005.jpg -------------------------------------------------------------------------------- /docs/screenshots/scriptalay/006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/scriptalay/006.jpg -------------------------------------------------------------------------------- /docs/screenshots/scrite-dmg-macos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/scrite-dmg-macos.jpg -------------------------------------------------------------------------------- /docs/screenshots/scrite-home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/scrite-home.jpg -------------------------------------------------------------------------------- /docs/screenshots/scrite-home.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/screenshots/scrite-home.qml -------------------------------------------------------------------------------- /docs/scriptalay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/scriptalay.md -------------------------------------------------------------------------------- /docs/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/docs/structure.md -------------------------------------------------------------------------------- /font/Bengali/HindSiliguri-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Bengali/HindSiliguri-Bold.ttf -------------------------------------------------------------------------------- /font/Bengali/HindSiliguri-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Bengali/HindSiliguri-Regular.ttf -------------------------------------------------------------------------------- /font/Bengali/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Bengali/source.txt -------------------------------------------------------------------------------- /font/English/CourierPrime-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/English/CourierPrime-Bold.ttf -------------------------------------------------------------------------------- /font/English/CourierPrime-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/English/CourierPrime-Italic.ttf -------------------------------------------------------------------------------- /font/English/CourierPrime-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/English/CourierPrime-Regular.ttf -------------------------------------------------------------------------------- /font/English/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/English/OFL.txt -------------------------------------------------------------------------------- /font/English/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/English/source.txt -------------------------------------------------------------------------------- /font/Gujarati/HindVadodara-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Gujarati/HindVadodara-Bold.ttf -------------------------------------------------------------------------------- /font/Gujarati/HindVadodara-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Gujarati/HindVadodara-Regular.ttf -------------------------------------------------------------------------------- /font/Gujarati/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Gujarati/source.txt -------------------------------------------------------------------------------- /font/Hindi/Mukta-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Hindi/Mukta-Bold.ttf -------------------------------------------------------------------------------- /font/Hindi/Mukta-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Hindi/Mukta-Regular.ttf -------------------------------------------------------------------------------- /font/Hindi/source.txt: -------------------------------------------------------------------------------- 1 | Free font downloaded from: https://fonts.googleapis.com/css?family=Mukta 2 | -------------------------------------------------------------------------------- /font/Kannada/BalooTamma2-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Kannada/BalooTamma2-Bold.ttf -------------------------------------------------------------------------------- /font/Kannada/BalooTamma2-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Kannada/BalooTamma2-Regular.ttf -------------------------------------------------------------------------------- /font/Kannada/source.txt: -------------------------------------------------------------------------------- 1 | Free font downloaded from: https://fonts.googleapis.com/css?family=Baloo+Tamma+2 2 | -------------------------------------------------------------------------------- /font/Malayalam/BalooChettan2-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Malayalam/BalooChettan2-Bold.ttf -------------------------------------------------------------------------------- /font/Malayalam/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Malayalam/source.txt -------------------------------------------------------------------------------- /font/Marathi/Shusha-Normal.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Marathi/Shusha-Normal.ttf -------------------------------------------------------------------------------- /font/Marathi/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Marathi/source.txt -------------------------------------------------------------------------------- /font/Oriya/BalooBhaina2-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Oriya/BalooBhaina2-Bold.ttf -------------------------------------------------------------------------------- /font/Oriya/BalooBhaina2-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Oriya/BalooBhaina2-Regular.ttf -------------------------------------------------------------------------------- /font/Oriya/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Oriya/source.txt -------------------------------------------------------------------------------- /font/Punjabi/BalooPaaji2-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Punjabi/BalooPaaji2-Bold.ttf -------------------------------------------------------------------------------- /font/Punjabi/BalooPaaji2-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Punjabi/BalooPaaji2-Regular.ttf -------------------------------------------------------------------------------- /font/Punjabi/source.txt: -------------------------------------------------------------------------------- 1 | Free font downloaded from: https://fonts.googleapis.com/css?family=Baloo+Paaji+2 2 | -------------------------------------------------------------------------------- /font/Rubik/Rubik-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Rubik/Rubik-Bold.ttf -------------------------------------------------------------------------------- /font/Rubik/Rubik-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Rubik/Rubik-BoldItalic.ttf -------------------------------------------------------------------------------- /font/Rubik/Rubik-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Rubik/Rubik-Italic.ttf -------------------------------------------------------------------------------- /font/Rubik/Rubik-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Rubik/Rubik-Regular.ttf -------------------------------------------------------------------------------- /font/Sanskrit/Mukta-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Sanskrit/Mukta-Bold.ttf -------------------------------------------------------------------------------- /font/Sanskrit/Mukta-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Sanskrit/Mukta-Regular.ttf -------------------------------------------------------------------------------- /font/Sanskrit/source.txt: -------------------------------------------------------------------------------- 1 | Free font downloaded from: https://fonts.googleapis.com/css?family=Mukta 2 | -------------------------------------------------------------------------------- /font/Tamil/HindMadurai-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Tamil/HindMadurai-Bold.ttf -------------------------------------------------------------------------------- /font/Tamil/HindMadurai-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Tamil/HindMadurai-Regular.ttf -------------------------------------------------------------------------------- /font/Tamil/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Tamil/source.txt -------------------------------------------------------------------------------- /font/Telugu/HindGuntur-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Telugu/HindGuntur-Bold.ttf -------------------------------------------------------------------------------- /font/Telugu/HindGuntur-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Telugu/HindGuntur-Regular.ttf -------------------------------------------------------------------------------- /font/Telugu/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/font/Telugu/source.txt -------------------------------------------------------------------------------- /icons/action/add_act.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/add_act.png -------------------------------------------------------------------------------- /icons/action/add_act_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/add_act_inverted.png -------------------------------------------------------------------------------- /icons/action/add_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/add_all.png -------------------------------------------------------------------------------- /icons/action/add_all_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/add_all_inverted.png -------------------------------------------------------------------------------- /icons/action/add_annotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/add_annotation.png -------------------------------------------------------------------------------- /icons/action/add_episide_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/add_episide_inverted.png -------------------------------------------------------------------------------- /icons/action/add_episode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/add_episode.png -------------------------------------------------------------------------------- /icons/action/add_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/add_one.png -------------------------------------------------------------------------------- /icons/action/add_one_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/add_one_inverted.png -------------------------------------------------------------------------------- /icons/action/add_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/add_scene.png -------------------------------------------------------------------------------- /icons/action/add_scene_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/add_scene_inverted.png -------------------------------------------------------------------------------- /icons/action/attach_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/attach_file.png -------------------------------------------------------------------------------- /icons/action/attach_file_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/attach_file_inverted.png -------------------------------------------------------------------------------- /icons/action/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/close.png -------------------------------------------------------------------------------- /icons/action/close_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/close_inverted.png -------------------------------------------------------------------------------- /icons/action/command_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/command_center.png -------------------------------------------------------------------------------- /icons/action/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/delete.png -------------------------------------------------------------------------------- /icons/action/delete_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/delete_inverted.png -------------------------------------------------------------------------------- /icons/action/description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/description.png -------------------------------------------------------------------------------- /icons/action/description_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/description_inverted.png -------------------------------------------------------------------------------- /icons/action/dialog_close_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/dialog_close_button.png -------------------------------------------------------------------------------- /icons/action/done_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/done_all.png -------------------------------------------------------------------------------- /icons/action/done_all_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/done_all_inverted.png -------------------------------------------------------------------------------- /icons/action/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/edit.png -------------------------------------------------------------------------------- /icons/action/edit_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/edit_inverted.png -------------------------------------------------------------------------------- /icons/action/edit_title_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/edit_title_page.png -------------------------------------------------------------------------------- /icons/action/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/filter.png -------------------------------------------------------------------------------- /icons/action/filter_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/filter_inverted.png -------------------------------------------------------------------------------- /icons/action/find_replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/find_replace.png -------------------------------------------------------------------------------- /icons/action/find_replace_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/find_replace_inverted.png -------------------------------------------------------------------------------- /icons/action/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/flag.png -------------------------------------------------------------------------------- /icons/action/flag_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/flag_inverted.png -------------------------------------------------------------------------------- /icons/action/forum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/forum.png -------------------------------------------------------------------------------- /icons/action/forum_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/forum_inverted.png -------------------------------------------------------------------------------- /icons/action/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/help.png -------------------------------------------------------------------------------- /icons/action/help_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/help_inverted.png -------------------------------------------------------------------------------- /icons/action/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/home.png -------------------------------------------------------------------------------- /icons/action/home_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/home_inverted.png -------------------------------------------------------------------------------- /icons/action/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/info.png -------------------------------------------------------------------------------- /icons/action/info_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/info_inverted.png -------------------------------------------------------------------------------- /icons/action/keyboard_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/keyboard_arrow_down.png -------------------------------------------------------------------------------- /icons/action/keyboard_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/keyboard_arrow_up.png -------------------------------------------------------------------------------- /icons/action/keyboard_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/keyboard_tab.png -------------------------------------------------------------------------------- /icons/action/keyboard_tab_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/keyboard_tab_inverted.png -------------------------------------------------------------------------------- /icons/action/keyword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/keyword.png -------------------------------------------------------------------------------- /icons/action/keyword_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/keyword_inverted.png -------------------------------------------------------------------------------- /icons/action/layout_beat_sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/layout_beat_sheet.png -------------------------------------------------------------------------------- /icons/action/layout_grouping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/layout_grouping.png -------------------------------------------------------------------------------- /icons/action/layout_horizontally.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/layout_horizontally.png -------------------------------------------------------------------------------- /icons/action/layout_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/layout_options.png -------------------------------------------------------------------------------- /icons/action/layout_vertically.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/layout_vertically.png -------------------------------------------------------------------------------- /icons/action/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/library.png -------------------------------------------------------------------------------- /icons/action/library_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/library_inverted.png -------------------------------------------------------------------------------- /icons/action/lock_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/lock_open.png -------------------------------------------------------------------------------- /icons/action/lock_open_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/lock_open_inverted.png -------------------------------------------------------------------------------- /icons/action/lock_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/lock_outline.png -------------------------------------------------------------------------------- /icons/action/lock_outline_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/lock_outline_inverted.png -------------------------------------------------------------------------------- /icons/action/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/logout.png -------------------------------------------------------------------------------- /icons/action/logout_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/logout_inverted.png -------------------------------------------------------------------------------- /icons/action/merge_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/merge_scene.png -------------------------------------------------------------------------------- /icons/action/merge_scene_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/merge_scene_inverted.png -------------------------------------------------------------------------------- /icons/action/note_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/note_add.png -------------------------------------------------------------------------------- /icons/action/note_add_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/note_add_inverted.png -------------------------------------------------------------------------------- /icons/action/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/pin.png -------------------------------------------------------------------------------- /icons/action/pin_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/pin_inverted.png -------------------------------------------------------------------------------- /icons/action/remove_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/remove_all.png -------------------------------------------------------------------------------- /icons/action/remove_all_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/remove_all_inverted.png -------------------------------------------------------------------------------- /icons/action/remove_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/remove_one.png -------------------------------------------------------------------------------- /icons/action/remove_one_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/remove_one_inverted.png -------------------------------------------------------------------------------- /icons/action/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/reset.png -------------------------------------------------------------------------------- /icons/action/reset_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/reset_inverted.png -------------------------------------------------------------------------------- /icons/action/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/search.png -------------------------------------------------------------------------------- /icons/action/search_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/search_inverted.png -------------------------------------------------------------------------------- /icons/action/selection_drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/selection_drag.png -------------------------------------------------------------------------------- /icons/action/settings_applications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/settings_applications.png -------------------------------------------------------------------------------- /icons/action/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/share.png -------------------------------------------------------------------------------- /icons/action/share_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/share_inverted.png -------------------------------------------------------------------------------- /icons/action/share_on_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/share_on_email.png -------------------------------------------------------------------------------- /icons/action/share_on_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/share_on_facebook.png -------------------------------------------------------------------------------- /icons/action/share_on_linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/share_on_linkedin.png -------------------------------------------------------------------------------- /icons/action/share_on_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/share_on_twitter.png -------------------------------------------------------------------------------- /icons/action/split_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/split_scene.png -------------------------------------------------------------------------------- /icons/action/split_scene_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/split_scene_inverted.png -------------------------------------------------------------------------------- /icons/action/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/tag.png -------------------------------------------------------------------------------- /icons/action/tag_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/tag_inverted.png -------------------------------------------------------------------------------- /icons/action/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/thumbnail.png -------------------------------------------------------------------------------- /icons/action/thumbnail_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/thumbnail_inverted.png -------------------------------------------------------------------------------- /icons/action/view_array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/view_array.png -------------------------------------------------------------------------------- /icons/action/view_array_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/action/view_array_inverted.png -------------------------------------------------------------------------------- /icons/content/act.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/act.png -------------------------------------------------------------------------------- /icons/content/act_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/act_inverted.png -------------------------------------------------------------------------------- /icons/content/add_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/add_box.png -------------------------------------------------------------------------------- /icons/content/add_box_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/add_box_inverted.png -------------------------------------------------------------------------------- /icons/content/add_circle_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/add_circle_outline.png -------------------------------------------------------------------------------- /icons/content/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/blank.png -------------------------------------------------------------------------------- /icons/content/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/bookmark.png -------------------------------------------------------------------------------- /icons/content/bookmark_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/bookmark_outline.png -------------------------------------------------------------------------------- /icons/content/camera_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/camera_alt.png -------------------------------------------------------------------------------- /icons/content/camera_alt_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/camera_alt_inverted.png -------------------------------------------------------------------------------- /icons/content/character_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/character_icon.png -------------------------------------------------------------------------------- /icons/content/checklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/checklist.png -------------------------------------------------------------------------------- /icons/content/checklist_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/checklist_inverted.png -------------------------------------------------------------------------------- /icons/content/clear_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/clear_all.png -------------------------------------------------------------------------------- /icons/content/clear_all_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/clear_all_inverted.png -------------------------------------------------------------------------------- /icons/content/comments_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/comments_panel.png -------------------------------------------------------------------------------- /icons/content/content_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/content_copy.png -------------------------------------------------------------------------------- /icons/content/content_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/content_paste.png -------------------------------------------------------------------------------- /icons/content/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/create.png -------------------------------------------------------------------------------- /icons/content/create_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/create_inverted.png -------------------------------------------------------------------------------- /icons/content/empty_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/empty_scene.png -------------------------------------------------------------------------------- /icons/content/empty_scene_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/empty_scene_inverted.png -------------------------------------------------------------------------------- /icons/content/episode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/episode.png -------------------------------------------------------------------------------- /icons/content/episode_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/episode_inverted.png -------------------------------------------------------------------------------- /icons/content/fight_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/fight_scene.png -------------------------------------------------------------------------------- /icons/content/fight_scene_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/fight_scene_inverted.png -------------------------------------------------------------------------------- /icons/content/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/form.png -------------------------------------------------------------------------------- /icons/content/form_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/form_inverted.png -------------------------------------------------------------------------------- /icons/content/language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/language.png -------------------------------------------------------------------------------- /icons/content/language_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/language_inverted.png -------------------------------------------------------------------------------- /icons/content/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/note.png -------------------------------------------------------------------------------- /icons/content/note_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/note_inverted.png -------------------------------------------------------------------------------- /icons/content/omitted_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/omitted_scene.png -------------------------------------------------------------------------------- /icons/content/page_count.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/page_count.png -------------------------------------------------------------------------------- /icons/content/page_count_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/page_count_inverted.png -------------------------------------------------------------------------------- /icons/content/person_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/person_add.png -------------------------------------------------------------------------------- /icons/content/person_add_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/person_add_inverted.png -------------------------------------------------------------------------------- /icons/content/person_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/person_outline.png -------------------------------------------------------------------------------- /icons/content/persons_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/persons_add.png -------------------------------------------------------------------------------- /icons/content/persons_add_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/persons_add_inverted.png -------------------------------------------------------------------------------- /icons/content/queue_mus24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/queue_mus24px.png -------------------------------------------------------------------------------- /icons/content/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/redo.png -------------------------------------------------------------------------------- /icons/content/redo_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/redo_inverted.png -------------------------------------------------------------------------------- /icons/content/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/save.png -------------------------------------------------------------------------------- /icons/content/save_as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/save_as.png -------------------------------------------------------------------------------- /icons/content/save_as_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/save_as_inverted.png -------------------------------------------------------------------------------- /icons/content/save_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/save_inverted.png -------------------------------------------------------------------------------- /icons/content/scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/scene.png -------------------------------------------------------------------------------- /icons/content/scene_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/scene_inverted.png -------------------------------------------------------------------------------- /icons/content/select_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/select_all.png -------------------------------------------------------------------------------- /icons/content/select_all_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/select_all_inverted.png -------------------------------------------------------------------------------- /icons/content/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/shadow.png -------------------------------------------------------------------------------- /icons/content/standard_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/standard_scene.png -------------------------------------------------------------------------------- /icons/content/story.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/story.png -------------------------------------------------------------------------------- /icons/content/story_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/story_inverted.png -------------------------------------------------------------------------------- /icons/content/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/time.png -------------------------------------------------------------------------------- /icons/content/time_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/time_inverted.png -------------------------------------------------------------------------------- /icons/content/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/undo.png -------------------------------------------------------------------------------- /icons/content/undo_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/undo_inverted.png -------------------------------------------------------------------------------- /icons/content/view_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/view_options.png -------------------------------------------------------------------------------- /icons/content/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/warning.png -------------------------------------------------------------------------------- /icons/content/warning_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/content/warning_inverted.png -------------------------------------------------------------------------------- /icons/editor/change_case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/editor/change_case.png -------------------------------------------------------------------------------- /icons/editor/change_case_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/editor/change_case_inverted.png -------------------------------------------------------------------------------- /icons/editor/format_align_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/editor/format_align_center.png -------------------------------------------------------------------------------- /icons/editor/format_align_justify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/editor/format_align_justify.png -------------------------------------------------------------------------------- /icons/editor/format_align_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/editor/format_align_left.png -------------------------------------------------------------------------------- /icons/editor/format_align_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/editor/format_align_right.png -------------------------------------------------------------------------------- /icons/editor/format_bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/editor/format_bold.png -------------------------------------------------------------------------------- /icons/editor/format_bold_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/editor/format_bold_inverted.png -------------------------------------------------------------------------------- /icons/editor/format_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/editor/format_clear.png -------------------------------------------------------------------------------- /icons/editor/format_clear_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/editor/format_clear_inverted.png -------------------------------------------------------------------------------- /icons/editor/format_italics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/editor/format_italics.png -------------------------------------------------------------------------------- /icons/editor/format_line_spacing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/editor/format_line_spacing.png -------------------------------------------------------------------------------- /icons/editor/format_strikethrough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/editor/format_strikethrough.png -------------------------------------------------------------------------------- /icons/editor/format_underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/editor/format_underline.png -------------------------------------------------------------------------------- /icons/editor/lowercase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/editor/lowercase.png -------------------------------------------------------------------------------- /icons/editor/lowercase_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/editor/lowercase_inverted.png -------------------------------------------------------------------------------- /icons/editor/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/editor/palette.png -------------------------------------------------------------------------------- /icons/editor/palette_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/editor/palette_inverted.png -------------------------------------------------------------------------------- /icons/editor/uppercase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/editor/uppercase.png -------------------------------------------------------------------------------- /icons/editor/uppercase_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/editor/uppercase_inverted.png -------------------------------------------------------------------------------- /icons/exporter/exporters_menu_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/exporter/exporters_menu_item.png -------------------------------------------------------------------------------- /icons/exporter/final_draft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/exporter/final_draft.png -------------------------------------------------------------------------------- /icons/exporter/fountain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/exporter/fountain.png -------------------------------------------------------------------------------- /icons/exporter/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/exporter/html.png -------------------------------------------------------------------------------- /icons/exporter/odt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/exporter/odt.png -------------------------------------------------------------------------------- /icons/exporter/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/exporter/pdf.png -------------------------------------------------------------------------------- /icons/exporter/scrite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/exporter/scrite.png -------------------------------------------------------------------------------- /icons/exporter/structure_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/exporter/structure_pdf.png -------------------------------------------------------------------------------- /icons/exporter/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/exporter/text.png -------------------------------------------------------------------------------- /icons/file/backup_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/file/backup_open.png -------------------------------------------------------------------------------- /icons/file/backup_open_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/file/backup_open_inverted.png -------------------------------------------------------------------------------- /icons/file/file_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/file/file_download.png -------------------------------------------------------------------------------- /icons/file/file_download_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/file/file_download_inverted.png -------------------------------------------------------------------------------- /icons/file/file_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/file/file_pdf.png -------------------------------------------------------------------------------- /icons/file/file_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/file/file_upload.png -------------------------------------------------------------------------------- /icons/file/file_upload_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/file/file_upload_inverted.png -------------------------------------------------------------------------------- /icons/file/folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/file/folder_open.png -------------------------------------------------------------------------------- /icons/file/folder_open_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/file/folder_open_inverted.png -------------------------------------------------------------------------------- /icons/file/generate_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/file/generate_pdf.png -------------------------------------------------------------------------------- /icons/file/import_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/file/import_export.png -------------------------------------------------------------------------------- /icons/file/import_export_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/file/import_export_inverted.png -------------------------------------------------------------------------------- /icons/file/protected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/file/protected.png -------------------------------------------------------------------------------- /icons/file/protected_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/file/protected_inverted.png -------------------------------------------------------------------------------- /icons/file/unprotected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/file/unprotected.png -------------------------------------------------------------------------------- /icons/file/unprotected_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/file/unprotected_inverted.png -------------------------------------------------------------------------------- /icons/filetype/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/filetype/audio.png -------------------------------------------------------------------------------- /icons/filetype/audio_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/filetype/audio_inverted.png -------------------------------------------------------------------------------- /icons/filetype/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/filetype/document.png -------------------------------------------------------------------------------- /icons/filetype/document_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/filetype/document_inverted.png -------------------------------------------------------------------------------- /icons/filetype/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/filetype/photo.png -------------------------------------------------------------------------------- /icons/filetype/photo_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/filetype/photo_inverted.png -------------------------------------------------------------------------------- /icons/filetype/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/filetype/video.png -------------------------------------------------------------------------------- /icons/filetype/video_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/filetype/video_inverted.png -------------------------------------------------------------------------------- /icons/hardware/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/hardware/keyboard.png -------------------------------------------------------------------------------- /icons/hardware/keyboard_hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/hardware/keyboard_hide.png -------------------------------------------------------------------------------- /icons/hardware/keyboard_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/hardware/keyboard_inverted.png -------------------------------------------------------------------------------- /icons/hardware/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/hardware/mouse.png -------------------------------------------------------------------------------- /icons/hardware/mouse_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/hardware/mouse_inverted.png -------------------------------------------------------------------------------- /icons/mediaplayer/fast_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/mediaplayer/fast_forward.png -------------------------------------------------------------------------------- /icons/mediaplayer/fast_rewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/mediaplayer/fast_rewind.png -------------------------------------------------------------------------------- /icons/mediaplayer/forward_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/mediaplayer/forward_10.png -------------------------------------------------------------------------------- /icons/mediaplayer/movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/mediaplayer/movie.png -------------------------------------------------------------------------------- /icons/mediaplayer/movie_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/mediaplayer/movie_inverted.png -------------------------------------------------------------------------------- /icons/mediaplayer/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/mediaplayer/pause.png -------------------------------------------------------------------------------- /icons/mediaplayer/pause_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/mediaplayer/pause_inverted.png -------------------------------------------------------------------------------- /icons/mediaplayer/play_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/mediaplayer/play_arrow.png -------------------------------------------------------------------------------- /icons/mediaplayer/rewind_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/mediaplayer/rewind_10.png -------------------------------------------------------------------------------- /icons/mediaplayer/time_column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/mediaplayer/time_column.png -------------------------------------------------------------------------------- /icons/navigation/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/arrow_down.png -------------------------------------------------------------------------------- /icons/navigation/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/arrow_left.png -------------------------------------------------------------------------------- /icons/navigation/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/arrow_right.png -------------------------------------------------------------------------------- /icons/navigation/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/arrow_up.png -------------------------------------------------------------------------------- /icons/navigation/arrow_up_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/arrow_up_inverted.png -------------------------------------------------------------------------------- /icons/navigation/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/check.png -------------------------------------------------------------------------------- /icons/navigation/check_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/check_inverted.png -------------------------------------------------------------------------------- /icons/navigation/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/close.png -------------------------------------------------------------------------------- /icons/navigation/close_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/close_inverted.png -------------------------------------------------------------------------------- /icons/navigation/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/fullscreen.png -------------------------------------------------------------------------------- /icons/navigation/fullscreen_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/fullscreen_exit.png -------------------------------------------------------------------------------- /icons/navigation/keyboard_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/keyboard_arrow_up.png -------------------------------------------------------------------------------- /icons/navigation/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/menu.png -------------------------------------------------------------------------------- /icons/navigation/menu_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/menu_inverted.png -------------------------------------------------------------------------------- /icons/navigation/notebook_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/notebook_tab.png -------------------------------------------------------------------------------- /icons/navigation/property_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/property_editor.png -------------------------------------------------------------------------------- /icons/navigation/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/refresh.png -------------------------------------------------------------------------------- /icons/navigation/refresh_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/refresh_inverted.png -------------------------------------------------------------------------------- /icons/navigation/screenplay_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/screenplay_tab.png -------------------------------------------------------------------------------- /icons/navigation/scrited_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/scrited_tab.png -------------------------------------------------------------------------------- /icons/navigation/shortcuts_linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/shortcuts_linux.png -------------------------------------------------------------------------------- /icons/navigation/shortcuts_macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/shortcuts_macos.png -------------------------------------------------------------------------------- /icons/navigation/shortcuts_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/shortcuts_windows.png -------------------------------------------------------------------------------- /icons/navigation/structure_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/structure_tab.png -------------------------------------------------------------------------------- /icons/navigation/sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/sync.png -------------------------------------------------------------------------------- /icons/navigation/sync_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/sync_inverted.png -------------------------------------------------------------------------------- /icons/navigation/zoom_fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/zoom_fit.png -------------------------------------------------------------------------------- /icons/navigation/zoom_fit_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/zoom_fit_inverted.png -------------------------------------------------------------------------------- /icons/navigation/zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/zoom_in.png -------------------------------------------------------------------------------- /icons/navigation/zoom_in_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/zoom_in_inverted.png -------------------------------------------------------------------------------- /icons/navigation/zoom_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/zoom_one.png -------------------------------------------------------------------------------- /icons/navigation/zoom_one_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/zoom_one_inverted.png -------------------------------------------------------------------------------- /icons/navigation/zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/zoom_out.png -------------------------------------------------------------------------------- /icons/navigation/zoom_out_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/navigation/zoom_out_inverted.png -------------------------------------------------------------------------------- /icons/reports/character_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/reports/character_report.png -------------------------------------------------------------------------------- /icons/reports/character_screenplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/reports/character_screenplay.png -------------------------------------------------------------------------------- /icons/reports/location_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/reports/location_report.png -------------------------------------------------------------------------------- /icons/reports/notebook_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/reports/notebook_report.png -------------------------------------------------------------------------------- /icons/reports/reports_menu_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/reports/reports_menu_item.png -------------------------------------------------------------------------------- /icons/reports/statistics_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/reports/statistics_report.png -------------------------------------------------------------------------------- /icons/reports/twocolumn-av-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/reports/twocolumn-av-layout.png -------------------------------------------------------------------------------- /icons/reports/twocolumn_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/reports/twocolumn_report.png -------------------------------------------------------------------------------- /icons/screenplay/action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/screenplay/action.png -------------------------------------------------------------------------------- /icons/screenplay/action_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/screenplay/action_inverted.png -------------------------------------------------------------------------------- /icons/screenplay/character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/screenplay/character.png -------------------------------------------------------------------------------- /icons/screenplay/dialogue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/screenplay/dialogue.png -------------------------------------------------------------------------------- /icons/screenplay/dialogue_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/screenplay/dialogue_inverted.png -------------------------------------------------------------------------------- /icons/screenplay/heading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/screenplay/heading.png -------------------------------------------------------------------------------- /icons/screenplay/heading_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/screenplay/heading_inverted.png -------------------------------------------------------------------------------- /icons/screenplay/parenthetical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/screenplay/parenthetical.png -------------------------------------------------------------------------------- /icons/screenplay/shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/screenplay/shot.png -------------------------------------------------------------------------------- /icons/screenplay/shot_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/screenplay/shot_inverted.png -------------------------------------------------------------------------------- /icons/screenplay/transition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/icons/screenplay/transition.png -------------------------------------------------------------------------------- /images/aboutbox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/images/aboutbox.jpg -------------------------------------------------------------------------------- /images/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/images/appicon.png -------------------------------------------------------------------------------- /images/banner_logo_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/images/banner_logo_overlay.png -------------------------------------------------------------------------------- /images/dmgbackdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/images/dmgbackdrop.png -------------------------------------------------------------------------------- /images/exclprodicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/images/exclprodicon.png -------------------------------------------------------------------------------- /images/feature_locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/images/feature_locked.png -------------------------------------------------------------------------------- /images/homescreen_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/images/homescreen_banner.png -------------------------------------------------------------------------------- /images/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/images/library.png -------------------------------------------------------------------------------- /images/library_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/images/library_inverted.png -------------------------------------------------------------------------------- /images/library_woicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/images/library_woicon.png -------------------------------------------------------------------------------- /images/library_woicon_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/images/library_woicon_inverted.png -------------------------------------------------------------------------------- /images/prodicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/images/prodicon.png -------------------------------------------------------------------------------- /images/sample_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/images/sample_scene.png -------------------------------------------------------------------------------- /images/scrite_discord_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/images/scrite_discord_button.png -------------------------------------------------------------------------------- /images/scrited_closing_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/images/scrited_closing_frame.png -------------------------------------------------------------------------------- /images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/images/splash.png -------------------------------------------------------------------------------- /images/useraccountdialogbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/images/useraccountdialogbg.png -------------------------------------------------------------------------------- /images/white-paper-texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/images/white-paper-texture.jpg -------------------------------------------------------------------------------- /js/getBoxToBoxArrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/js/getBoxToBoxArrow.js -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/main.cpp -------------------------------------------------------------------------------- /main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/main.qml -------------------------------------------------------------------------------- /misc/annotations_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/misc/annotations_metadata.json -------------------------------------------------------------------------------- /misc/fetchogattribs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/misc/fetchogattribs.js -------------------------------------------------------------------------------- /misc/homescreen_info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/misc/homescreen_info.md -------------------------------------------------------------------------------- /misc/qwebchannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/misc/qwebchannel.js -------------------------------------------------------------------------------- /misc/richtexteditor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/misc/richtexteditor.html -------------------------------------------------------------------------------- /misc/richtexttransform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/misc/richtexttransform.html -------------------------------------------------------------------------------- /misc/scriptalay_info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/misc/scriptalay_info.md -------------------------------------------------------------------------------- /misc/scrited_closing_frame_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/misc/scrited_closing_frame_video.mp4 -------------------------------------------------------------------------------- /misc/structure_groups.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/misc/structure_groups.lst -------------------------------------------------------------------------------- /packaging/linux/Scrite.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/packaging/linux/Scrite.desktop -------------------------------------------------------------------------------- /packaging/linux/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/packaging/linux/package.sh -------------------------------------------------------------------------------- /packaging/mac/dmgbackdrop.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/packaging/mac/dmgbackdrop.qml -------------------------------------------------------------------------------- /packaging/mac/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/packaging/mac/package.sh -------------------------------------------------------------------------------- /packaging/mac/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/packaging/mac/prepare.sh -------------------------------------------------------------------------------- /packaging/windows/FileAssociation.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/packaging/windows/FileAssociation.nsh -------------------------------------------------------------------------------- /packaging/windows/installer-x64.nsi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/packaging/windows/installer-x64.nsi.in -------------------------------------------------------------------------------- /packaging/windows/installer-x86.nsi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/packaging/windows/installer-x86.nsi.in -------------------------------------------------------------------------------- /packaging/windows/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/packaging/windows/license.txt -------------------------------------------------------------------------------- /packaging/windows/package-x64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/packaging/windows/package-x64.bat -------------------------------------------------------------------------------- /packaging/windows/package-x86.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/packaging/windows/package-x86.bat -------------------------------------------------------------------------------- /packaging/windows/qt.conf: -------------------------------------------------------------------------------- 1 | [Platforms] 2 | WindowsArguments = fontengine=freetype -------------------------------------------------------------------------------- /packaging/windows/vcredist_x64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/packaging/windows/vcredist_x64 -------------------------------------------------------------------------------- /packaging/windows/vcredist_x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/packaging/windows/vcredist_x86 -------------------------------------------------------------------------------- /qml/NotebookView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/NotebookView.qml -------------------------------------------------------------------------------- /qml/ScreenplayEditor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/ScreenplayEditor.qml -------------------------------------------------------------------------------- /qml/ScriteMainWindow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/ScriteMainWindow.qml -------------------------------------------------------------------------------- /qml/ScritedView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/ScritedView.qml -------------------------------------------------------------------------------- /qml/StructureView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/StructureView.qml -------------------------------------------------------------------------------- /qml/TimelineView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/TimelineView.qml -------------------------------------------------------------------------------- /qml/commandcenter/CommandCenter.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/commandcenter/CommandCenter.qml -------------------------------------------------------------------------------- /qml/commandcenter/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/commandcenter/qmldir -------------------------------------------------------------------------------- /qml/controls/VclButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/controls/VclButton.qml -------------------------------------------------------------------------------- /qml/controls/VclCheckBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/controls/VclCheckBox.qml -------------------------------------------------------------------------------- /qml/controls/VclComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/controls/VclComboBox.qml -------------------------------------------------------------------------------- /qml/controls/VclDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/controls/VclDialog.qml -------------------------------------------------------------------------------- /qml/controls/VclFileDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/controls/VclFileDialog.qml -------------------------------------------------------------------------------- /qml/controls/VclGroupBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/controls/VclGroupBox.qml -------------------------------------------------------------------------------- /qml/controls/VclLabel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/controls/VclLabel.qml -------------------------------------------------------------------------------- /qml/controls/VclMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/controls/VclMenu.qml -------------------------------------------------------------------------------- /qml/controls/VclMenuItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/controls/VclMenuItem.qml -------------------------------------------------------------------------------- /qml/controls/VclRadioButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/controls/VclRadioButton.qml -------------------------------------------------------------------------------- /qml/controls/VclScrollBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/controls/VclScrollBar.qml -------------------------------------------------------------------------------- /qml/controls/VclText.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/controls/VclText.qml -------------------------------------------------------------------------------- /qml/controls/VclTextField.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/controls/VclTextField.qml -------------------------------------------------------------------------------- /qml/controls/VclToolButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/controls/VclToolButton.qml -------------------------------------------------------------------------------- /qml/controls/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/controls/qmldir -------------------------------------------------------------------------------- /qml/dialogs/AboutDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/dialogs/AboutDialog.qml -------------------------------------------------------------------------------- /qml/dialogs/BackupsDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/dialogs/BackupsDialog.qml -------------------------------------------------------------------------------- /qml/dialogs/CollaboratorsDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/dialogs/CollaboratorsDialog.qml -------------------------------------------------------------------------------- /qml/dialogs/FontSelectionDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/dialogs/FontSelectionDialog.qml -------------------------------------------------------------------------------- /qml/dialogs/HomeScreen.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/dialogs/HomeScreen.qml -------------------------------------------------------------------------------- /qml/dialogs/JoinDiscordCommunity.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/dialogs/JoinDiscordCommunity.qml -------------------------------------------------------------------------------- /qml/dialogs/LanguageOptionsDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/dialogs/LanguageOptionsDialog.qml -------------------------------------------------------------------------------- /qml/dialogs/MessageBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/dialogs/MessageBox.qml -------------------------------------------------------------------------------- /qml/dialogs/PdfDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/dialogs/PdfDialog.qml -------------------------------------------------------------------------------- /qml/dialogs/RenameCharacterDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/dialogs/RenameCharacterDialog.qml -------------------------------------------------------------------------------- /qml/dialogs/ScreenplayTracksDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/dialogs/ScreenplayTracksDialog.qml -------------------------------------------------------------------------------- /qml/dialogs/SettingsDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/dialogs/SettingsDialog.qml -------------------------------------------------------------------------------- /qml/dialogs/ShortcutEditorDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/dialogs/ShortcutEditorDialog.qml -------------------------------------------------------------------------------- /qml/dialogs/ShortcutInputDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/dialogs/ShortcutInputDialog.qml -------------------------------------------------------------------------------- /qml/dialogs/SplashScreen.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/dialogs/SplashScreen.qml -------------------------------------------------------------------------------- /qml/dialogs/TitlePageDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/dialogs/TitlePageDialog.qml -------------------------------------------------------------------------------- /qml/dialogs/UserAccountDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/dialogs/UserAccountDialog.qml -------------------------------------------------------------------------------- /qml/dialogs/WaitDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/dialogs/WaitDialog.qml -------------------------------------------------------------------------------- /qml/dialogs/homescreen/Poster.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/dialogs/homescreen/Poster.qml -------------------------------------------------------------------------------- /qml/dialogs/homescreen/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/dialogs/homescreen/qmldir -------------------------------------------------------------------------------- /qml/dialogs/pdfdialog/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/dialogs/pdfdialog/qmldir -------------------------------------------------------------------------------- /qml/dialogs/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/dialogs/qmldir -------------------------------------------------------------------------------- /qml/dialogs/settingsdialog/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/dialogs/settingsdialog/qmldir -------------------------------------------------------------------------------- /qml/dialogs/useraccountdialog/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/dialogs/useraccountdialog/qmldir -------------------------------------------------------------------------------- /qml/floatingdockpanels/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/floatingdockpanels/qmldir -------------------------------------------------------------------------------- /qml/globals/ActionHub.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/globals/ActionHub.qml -------------------------------------------------------------------------------- /qml/globals/Runtime.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/globals/Runtime.qml -------------------------------------------------------------------------------- /qml/globals/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/globals/qmldir -------------------------------------------------------------------------------- /qml/helpers/ActionManagerMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/ActionManagerMenu.qml -------------------------------------------------------------------------------- /qml/helpers/ActionManagerToolBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/ActionManagerToolBar.qml -------------------------------------------------------------------------------- /qml/helpers/ActionToolButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/ActionToolButton.qml -------------------------------------------------------------------------------- /qml/helpers/AlphabetMappingsView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/AlphabetMappingsView.qml -------------------------------------------------------------------------------- /qml/helpers/AttachmentsDropArea.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/AttachmentsDropArea.qml -------------------------------------------------------------------------------- /qml/helpers/AttachmentsView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/AttachmentsView.qml -------------------------------------------------------------------------------- /qml/helpers/BoxShadow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/BoxShadow.qml -------------------------------------------------------------------------------- /qml/helpers/BusyIcon.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/BusyIcon.qml -------------------------------------------------------------------------------- /qml/helpers/BusyMessage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/BusyMessage.qml -------------------------------------------------------------------------------- /qml/helpers/ColorMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/ColorMenu.qml -------------------------------------------------------------------------------- /qml/helpers/ColorPalette.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/ColorPalette.qml -------------------------------------------------------------------------------- /qml/helpers/ColorToolButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/ColorToolButton.qml -------------------------------------------------------------------------------- /qml/helpers/DialogLauncher.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/DialogLauncher.qml -------------------------------------------------------------------------------- /qml/helpers/DisabledFeatureNotice.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/DisabledFeatureNotice.qml -------------------------------------------------------------------------------- /qml/helpers/FileSelector.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/FileSelector.qml -------------------------------------------------------------------------------- /qml/helpers/FlatToolButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/FlatToolButton.qml -------------------------------------------------------------------------------- /qml/helpers/FlickableTextArea.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/FlickableTextArea.qml -------------------------------------------------------------------------------- /qml/helpers/Link.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/Link.qml -------------------------------------------------------------------------------- /qml/helpers/LodLoader.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/LodLoader.qml -------------------------------------------------------------------------------- /qml/helpers/MarkSceneAsMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/MarkSceneAsMenu.qml -------------------------------------------------------------------------------- /qml/helpers/MenuLoader.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/MenuLoader.qml -------------------------------------------------------------------------------- /qml/helpers/PageView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/PageView.qml -------------------------------------------------------------------------------- /qml/helpers/PdfView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/PdfView.qml -------------------------------------------------------------------------------- /qml/helpers/RectangleTabView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/RectangleTabView.qml -------------------------------------------------------------------------------- /qml/helpers/RichTextEdit.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/RichTextEdit.qml -------------------------------------------------------------------------------- /qml/helpers/RubberBand.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/RubberBand.qml -------------------------------------------------------------------------------- /qml/helpers/SceneFeaturedImage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/SceneFeaturedImage.qml -------------------------------------------------------------------------------- /qml/helpers/SceneHeadingTextField.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/SceneHeadingTextField.qml -------------------------------------------------------------------------------- /qml/helpers/SceneTypeImage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/SceneTypeImage.qml -------------------------------------------------------------------------------- /qml/helpers/ScreenplayTracksView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/ScreenplayTracksView.qml -------------------------------------------------------------------------------- /qml/helpers/ScrollArea.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/ScrollArea.qml -------------------------------------------------------------------------------- /qml/helpers/SearchBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/SearchBar.qml -------------------------------------------------------------------------------- /qml/helpers/ShortcutField.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/ShortcutField.qml -------------------------------------------------------------------------------- /qml/helpers/SidePanel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/SidePanel.qml -------------------------------------------------------------------------------- /qml/helpers/SimpleToolButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/SimpleToolButton.qml -------------------------------------------------------------------------------- /qml/helpers/SpecialSymbolsSupport.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/SpecialSymbolsSupport.qml -------------------------------------------------------------------------------- /qml/helpers/TagText.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/TagText.qml -------------------------------------------------------------------------------- /qml/helpers/TextAreaInput.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/TextAreaInput.qml -------------------------------------------------------------------------------- /qml/helpers/TextEditCursorDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/TextEditCursorDelegate.qml -------------------------------------------------------------------------------- /qml/helpers/TextListInput.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/TextListInput.qml -------------------------------------------------------------------------------- /qml/helpers/TextTabBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/TextTabBar.qml -------------------------------------------------------------------------------- /qml/helpers/TextViewEdit.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/TextViewEdit.qml -------------------------------------------------------------------------------- /qml/helpers/ToolTipPopup.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/ToolTipPopup.qml -------------------------------------------------------------------------------- /qml/helpers/TrapeziumTabView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/TrapeziumTabView.qml -------------------------------------------------------------------------------- /qml/helpers/UiElementHighlight.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/UiElementHighlight.qml -------------------------------------------------------------------------------- /qml/helpers/UserAccountToolButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/UserAccountToolButton.qml -------------------------------------------------------------------------------- /qml/helpers/ZoomSlider.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/ZoomSlider.qml -------------------------------------------------------------------------------- /qml/helpers/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/helpers/qmldir -------------------------------------------------------------------------------- /qml/mainwindow/Header.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/mainwindow/Header.qml -------------------------------------------------------------------------------- /qml/mainwindow/NotebookTab.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/mainwindow/NotebookTab.qml -------------------------------------------------------------------------------- /qml/mainwindow/ReloadPromptDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/mainwindow/ReloadPromptDialog.qml -------------------------------------------------------------------------------- /qml/mainwindow/ScreenplayTab.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/mainwindow/ScreenplayTab.qml -------------------------------------------------------------------------------- /qml/mainwindow/ScritedTab.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/mainwindow/ScritedTab.qml -------------------------------------------------------------------------------- /qml/mainwindow/StructureTab.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/mainwindow/StructureTab.qml -------------------------------------------------------------------------------- /qml/mainwindow/VerticalToolBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/mainwindow/VerticalToolBar.qml -------------------------------------------------------------------------------- /qml/mainwindow/Workspace.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/mainwindow/Workspace.qml -------------------------------------------------------------------------------- /qml/mainwindow/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/mainwindow/qmldir -------------------------------------------------------------------------------- /qml/notebookview/NotesTreeView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/notebookview/NotesTreeView.qml -------------------------------------------------------------------------------- /qml/notebookview/dialogs/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/notebookview/dialogs/qmldir -------------------------------------------------------------------------------- /qml/notebookview/helpers/FormField.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/notebookview/helpers/FormField.qml -------------------------------------------------------------------------------- /qml/notebookview/helpers/FormView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/notebookview/helpers/FormView.qml -------------------------------------------------------------------------------- /qml/notebookview/helpers/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/notebookview/helpers/qmldir -------------------------------------------------------------------------------- /qml/notebookview/menus/FormMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/notebookview/menus/FormMenu.qml -------------------------------------------------------------------------------- /qml/notebookview/menus/NewNoteMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/notebookview/menus/NewNoteMenu.qml -------------------------------------------------------------------------------- /qml/notebookview/menus/NoteMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/notebookview/menus/NoteMenu.qml -------------------------------------------------------------------------------- /qml/notebookview/menus/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/notebookview/menus/qmldir -------------------------------------------------------------------------------- /qml/notebookview/pages/NotesPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/notebookview/pages/NotesPage.qml -------------------------------------------------------------------------------- /qml/notebookview/pages/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/notebookview/pages/qmldir -------------------------------------------------------------------------------- /qml/notebookview/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/notebookview/qmldir -------------------------------------------------------------------------------- /qml/notebookview/tabs/NotesTab.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/notebookview/tabs/NotesTab.qml -------------------------------------------------------------------------------- /qml/notebookview/tabs/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/notebookview/tabs/qmldir -------------------------------------------------------------------------------- /qml/notifications/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/notifications/qmldir -------------------------------------------------------------------------------- /qml/overlays/AnimatedTextOverlay.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/overlays/AnimatedTextOverlay.qml -------------------------------------------------------------------------------- /qml/overlays/BusyOverlay.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/overlays/BusyOverlay.qml -------------------------------------------------------------------------------- /qml/overlays/OverlaysLayer.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/overlays/OverlaysLayer.qml -------------------------------------------------------------------------------- /qml/overlays/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/overlays/qmldir -------------------------------------------------------------------------------- /qml/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/qmldir -------------------------------------------------------------------------------- /qml/qmldirgen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/qmldirgen.js -------------------------------------------------------------------------------- /qml/screenplayeditor/PageBreakItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/screenplayeditor/PageBreakItem.qml -------------------------------------------------------------------------------- /qml/screenplayeditor/delegates/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/screenplayeditor/delegates/qmldir -------------------------------------------------------------------------------- /qml/screenplayeditor/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/screenplayeditor/qmldir -------------------------------------------------------------------------------- /qml/structureview/AnnotationLayer.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/structureview/AnnotationLayer.qml -------------------------------------------------------------------------------- /qml/structureview/IndexCardFields.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/structureview/IndexCardFields.qml -------------------------------------------------------------------------------- /qml/structureview/StructureCanvas.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/structureview/StructureCanvas.qml -------------------------------------------------------------------------------- /qml/structureview/annotations/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/structureview/annotations/qmldir -------------------------------------------------------------------------------- /qml/structureview/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/structureview/qmldir -------------------------------------------------------------------------------- /qml/tasks/OpenFileTask.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/tasks/OpenFileTask.qml -------------------------------------------------------------------------------- /qml/tasks/OpenFromLibraryTask.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/tasks/OpenFromLibraryTask.qml -------------------------------------------------------------------------------- /qml/tasks/SaveFileTask.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/tasks/SaveFileTask.qml -------------------------------------------------------------------------------- /qml/tasks/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/tasks/qmldir -------------------------------------------------------------------------------- /qml/timelineview/TimelineListView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/timelineview/TimelineListView.qml -------------------------------------------------------------------------------- /qml/timelineview/TimelineTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/timelineview/TimelineTools.qml -------------------------------------------------------------------------------- /qml/timelineview/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/qml/timelineview/qmldir -------------------------------------------------------------------------------- /scrite.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/scrite.pro -------------------------------------------------------------------------------- /scrite_bengali_font.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/scrite_bengali_font.qrc -------------------------------------------------------------------------------- /scrite_english_font.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/scrite_english_font.qrc -------------------------------------------------------------------------------- /scrite_gujarati_font.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/scrite_gujarati_font.qrc -------------------------------------------------------------------------------- /scrite_hindi_font.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/scrite_hindi_font.qrc -------------------------------------------------------------------------------- /scrite_icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/scrite_icons.qrc -------------------------------------------------------------------------------- /scrite_images.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/scrite_images.qrc -------------------------------------------------------------------------------- /scrite_kannada_font.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/scrite_kannada_font.qrc -------------------------------------------------------------------------------- /scrite_malayalam_font.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/scrite_malayalam_font.qrc -------------------------------------------------------------------------------- /scrite_marathi_font.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/scrite_marathi_font.qrc -------------------------------------------------------------------------------- /scrite_misc.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/scrite_misc.qrc -------------------------------------------------------------------------------- /scrite_oriya_font.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/scrite_oriya_font.qrc -------------------------------------------------------------------------------- /scrite_punjabi_font.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/scrite_punjabi_font.qrc -------------------------------------------------------------------------------- /scrite_rubik_font.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/scrite_rubik_font.qrc -------------------------------------------------------------------------------- /scrite_sanskrit_font.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/scrite_sanskrit_font.qrc -------------------------------------------------------------------------------- /scrite_tamil_font.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/scrite_tamil_font.qrc -------------------------------------------------------------------------------- /scrite_telugu_font.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/scrite_telugu_font.qrc -------------------------------------------------------------------------------- /scrite_ui.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/scrite_ui.qrc -------------------------------------------------------------------------------- /src/core/actionmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/actionmanager.cpp -------------------------------------------------------------------------------- /src/core/actionmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/actionmanager.h -------------------------------------------------------------------------------- /src/core/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/application.cpp -------------------------------------------------------------------------------- /src/core/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/application.h -------------------------------------------------------------------------------- /src/core/appwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/appwindow.cpp -------------------------------------------------------------------------------- /src/core/appwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/appwindow.h -------------------------------------------------------------------------------- /src/core/autoupdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/autoupdate.cpp -------------------------------------------------------------------------------- /src/core/autoupdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/autoupdate.h -------------------------------------------------------------------------------- /src/core/enumerationmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/enumerationmodel.cpp -------------------------------------------------------------------------------- /src/core/enumerationmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/enumerationmodel.h -------------------------------------------------------------------------------- /src/core/filelocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/filelocker.cpp -------------------------------------------------------------------------------- /src/core/filelocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/filelocker.h -------------------------------------------------------------------------------- /src/core/filemodificationtracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/filemodificationtracker.cpp -------------------------------------------------------------------------------- /src/core/filemodificationtracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/filemodificationtracker.h -------------------------------------------------------------------------------- /src/core/languageengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/languageengine.cpp -------------------------------------------------------------------------------- /src/core/languageengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/languageengine.h -------------------------------------------------------------------------------- /src/core/localstorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/localstorage.cpp -------------------------------------------------------------------------------- /src/core/localstorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/localstorage.h -------------------------------------------------------------------------------- /src/core/pdfexportablegraphicsscene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/pdfexportablegraphicsscene.h -------------------------------------------------------------------------------- /src/core/peerapplookup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/peerapplookup.cpp -------------------------------------------------------------------------------- /src/core/peerapplookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/peerapplookup.h -------------------------------------------------------------------------------- /src/core/printerobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/printerobject.h -------------------------------------------------------------------------------- /src/core/qobjectlistmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/qobjectlistmodel.cpp -------------------------------------------------------------------------------- /src/core/qobjectlistmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/qobjectlistmodel.h -------------------------------------------------------------------------------- /src/core/qobjectproperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/qobjectproperty.cpp -------------------------------------------------------------------------------- /src/core/qobjectproperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/qobjectproperty.h -------------------------------------------------------------------------------- /src/core/scrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/scrite.cpp -------------------------------------------------------------------------------- /src/core/scrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/scrite.h -------------------------------------------------------------------------------- /src/core/systemrequirements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/systemrequirements.cpp -------------------------------------------------------------------------------- /src/core/systemrequirements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/systemrequirements.h -------------------------------------------------------------------------------- /src/core/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/utils.cpp -------------------------------------------------------------------------------- /src/core/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/utils.h -------------------------------------------------------------------------------- /src/core/valueindexlookup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/valueindexlookup.cpp -------------------------------------------------------------------------------- /src/core/valueindexlookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/core/valueindexlookup.h -------------------------------------------------------------------------------- /src/document/attachments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/attachments.cpp -------------------------------------------------------------------------------- /src/document/attachments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/attachments.h -------------------------------------------------------------------------------- /src/document/documentfilesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/documentfilesystem.cpp -------------------------------------------------------------------------------- /src/document/documentfilesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/documentfilesystem.h -------------------------------------------------------------------------------- /src/document/form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/form.cpp -------------------------------------------------------------------------------- /src/document/form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/form.h -------------------------------------------------------------------------------- /src/document/formatting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/formatting.cpp -------------------------------------------------------------------------------- /src/document/formatting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/formatting.h -------------------------------------------------------------------------------- /src/document/notebookmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/notebookmodel.cpp -------------------------------------------------------------------------------- /src/document/notebookmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/notebookmodel.h -------------------------------------------------------------------------------- /src/document/notes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/notes.cpp -------------------------------------------------------------------------------- /src/document/notes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/notes.h -------------------------------------------------------------------------------- /src/document/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/scene.cpp -------------------------------------------------------------------------------- /src/document/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/scene.h -------------------------------------------------------------------------------- /src/document/screenplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/screenplay.cpp -------------------------------------------------------------------------------- /src/document/screenplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/screenplay.h -------------------------------------------------------------------------------- /src/document/screenplayadapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/screenplayadapter.cpp -------------------------------------------------------------------------------- /src/document/screenplayadapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/screenplayadapter.h -------------------------------------------------------------------------------- /src/document/screenplaypaginator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/screenplaypaginator.cpp -------------------------------------------------------------------------------- /src/document/screenplaypaginator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/screenplaypaginator.h -------------------------------------------------------------------------------- /src/document/screenplaytextdocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/screenplaytextdocument.h -------------------------------------------------------------------------------- /src/document/screenplaytreeadapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/screenplaytreeadapter.cpp -------------------------------------------------------------------------------- /src/document/screenplaytreeadapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/screenplaytreeadapter.h -------------------------------------------------------------------------------- /src/document/scritedocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/scritedocument.cpp -------------------------------------------------------------------------------- /src/document/scritedocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/scritedocument.h -------------------------------------------------------------------------------- /src/document/scritedocumentvault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/scritedocumentvault.cpp -------------------------------------------------------------------------------- /src/document/scritedocumentvault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/scritedocumentvault.h -------------------------------------------------------------------------------- /src/document/scritefileinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/scritefileinfo.cpp -------------------------------------------------------------------------------- /src/document/scritefileinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/scritefileinfo.h -------------------------------------------------------------------------------- /src/document/scritefilelistmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/scritefilelistmodel.cpp -------------------------------------------------------------------------------- /src/document/scritefilelistmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/scritefilelistmodel.h -------------------------------------------------------------------------------- /src/document/structure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/structure.cpp -------------------------------------------------------------------------------- /src/document/structure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/structure.h -------------------------------------------------------------------------------- /src/document/undoredo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/undoredo.cpp -------------------------------------------------------------------------------- /src/document/undoredo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/document/undoredo.h -------------------------------------------------------------------------------- /src/exporters/finaldraftexporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/exporters/finaldraftexporter.cpp -------------------------------------------------------------------------------- /src/exporters/finaldraftexporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/exporters/finaldraftexporter.h -------------------------------------------------------------------------------- /src/exporters/fountainexporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/exporters/fountainexporter.cpp -------------------------------------------------------------------------------- /src/exporters/fountainexporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/exporters/fountainexporter.h -------------------------------------------------------------------------------- /src/exporters/htmlexporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/exporters/htmlexporter.cpp -------------------------------------------------------------------------------- /src/exporters/htmlexporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/exporters/htmlexporter.h -------------------------------------------------------------------------------- /src/exporters/odtexporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/exporters/odtexporter.cpp -------------------------------------------------------------------------------- /src/exporters/odtexporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/exporters/odtexporter.h -------------------------------------------------------------------------------- /src/exporters/pdfexporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/exporters/pdfexporter.cpp -------------------------------------------------------------------------------- /src/exporters/pdfexporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/exporters/pdfexporter.h -------------------------------------------------------------------------------- /src/exporters/structureexporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/exporters/structureexporter.cpp -------------------------------------------------------------------------------- /src/exporters/structureexporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/exporters/structureexporter.h -------------------------------------------------------------------------------- /src/exporters/structureexporter_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/exporters/structureexporter_p.cpp -------------------------------------------------------------------------------- /src/exporters/structureexporter_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/exporters/structureexporter_p.h -------------------------------------------------------------------------------- /src/exporters/textexporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/exporters/textexporter.cpp -------------------------------------------------------------------------------- /src/exporters/textexporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/exporters/textexporter.h -------------------------------------------------------------------------------- /src/importers/finaldraftimporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/importers/finaldraftimporter.cpp -------------------------------------------------------------------------------- /src/importers/finaldraftimporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/importers/finaldraftimporter.h -------------------------------------------------------------------------------- /src/importers/fountainimporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/importers/fountainimporter.cpp -------------------------------------------------------------------------------- /src/importers/fountainimporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/importers/fountainimporter.h -------------------------------------------------------------------------------- /src/importers/htmlimporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/importers/htmlimporter.cpp -------------------------------------------------------------------------------- /src/importers/htmlimporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/importers/htmlimporter.h -------------------------------------------------------------------------------- /src/importers/openfromlibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/importers/openfromlibrary.cpp -------------------------------------------------------------------------------- /src/importers/openfromlibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/importers/openfromlibrary.h -------------------------------------------------------------------------------- /src/interfaces/abstractdeviceio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/interfaces/abstractdeviceio.cpp -------------------------------------------------------------------------------- /src/interfaces/abstractdeviceio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/interfaces/abstractdeviceio.h -------------------------------------------------------------------------------- /src/interfaces/abstractexporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/interfaces/abstractexporter.cpp -------------------------------------------------------------------------------- /src/interfaces/abstractexporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/interfaces/abstractexporter.h -------------------------------------------------------------------------------- /src/interfaces/abstractimporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/interfaces/abstractimporter.cpp -------------------------------------------------------------------------------- /src/interfaces/abstractimporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/interfaces/abstractimporter.h -------------------------------------------------------------------------------- /src/network/networkaccessmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/network/networkaccessmanager.cpp -------------------------------------------------------------------------------- /src/network/networkaccessmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/network/networkaccessmanager.h -------------------------------------------------------------------------------- /src/network/networkstatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/network/networkstatus.cpp -------------------------------------------------------------------------------- /src/network/networkstatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/network/networkstatus.h -------------------------------------------------------------------------------- /src/network/restapicall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/network/restapicall.cpp -------------------------------------------------------------------------------- /src/network/restapicall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/network/restapicall.h -------------------------------------------------------------------------------- /src/network/user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/network/user.cpp -------------------------------------------------------------------------------- /src/network/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/network/user.h -------------------------------------------------------------------------------- /src/quick/items/abstractshapeitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/items/abstractshapeitem.cpp -------------------------------------------------------------------------------- /src/quick/items/abstractshapeitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/items/abstractshapeitem.h -------------------------------------------------------------------------------- /src/quick/items/boundingboxevaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/items/boundingboxevaluator.h -------------------------------------------------------------------------------- /src/quick/items/gridbackgrounditem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/items/gridbackgrounditem.cpp -------------------------------------------------------------------------------- /src/quick/items/gridbackgrounditem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/items/gridbackgrounditem.h -------------------------------------------------------------------------------- /src/quick/items/painterpathitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/items/painterpathitem.cpp -------------------------------------------------------------------------------- /src/quick/items/painterpathitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/items/painterpathitem.h -------------------------------------------------------------------------------- /src/quick/items/qimageitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/items/qimageitem.cpp -------------------------------------------------------------------------------- /src/quick/items/qimageitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/items/qimageitem.h -------------------------------------------------------------------------------- /src/quick/items/ruleritem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/items/ruleritem.cpp -------------------------------------------------------------------------------- /src/quick/items/ruleritem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/items/ruleritem.h -------------------------------------------------------------------------------- /src/quick/items/simpletabbaritem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/items/simpletabbaritem.cpp -------------------------------------------------------------------------------- /src/quick/items/simpletabbaritem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/items/simpletabbaritem.h -------------------------------------------------------------------------------- /src/quick/items/textdocumentitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/items/textdocumentitem.cpp -------------------------------------------------------------------------------- /src/quick/items/textdocumentitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/items/textdocumentitem.h -------------------------------------------------------------------------------- /src/quick/items/textshapeitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/items/textshapeitem.cpp -------------------------------------------------------------------------------- /src/quick/items/textshapeitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/items/textshapeitem.h -------------------------------------------------------------------------------- /src/quick/items/timelinecursoritem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/items/timelinecursoritem.cpp -------------------------------------------------------------------------------- /src/quick/items/timelinecursoritem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/items/timelinecursoritem.h -------------------------------------------------------------------------------- /src/quick/objects/aggregation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/aggregation.cpp -------------------------------------------------------------------------------- /src/quick/objects/aggregation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/aggregation.h -------------------------------------------------------------------------------- /src/quick/objects/announcement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/announcement.cpp -------------------------------------------------------------------------------- /src/quick/objects/announcement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/announcement.h -------------------------------------------------------------------------------- /src/quick/objects/basicfileinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/basicfileinfo.cpp -------------------------------------------------------------------------------- /src/quick/objects/basicfileinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/basicfileinfo.h -------------------------------------------------------------------------------- /src/quick/objects/batchchange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/batchchange.cpp -------------------------------------------------------------------------------- /src/quick/objects/batchchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/batchchange.h -------------------------------------------------------------------------------- /src/quick/objects/colorimageprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/colorimageprovider.h -------------------------------------------------------------------------------- /src/quick/objects/completionmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/completionmodel.cpp -------------------------------------------------------------------------------- /src/quick/objects/completionmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/completionmodel.h -------------------------------------------------------------------------------- /src/quick/objects/contextmenuevent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/contextmenuevent.cpp -------------------------------------------------------------------------------- /src/quick/objects/contextmenuevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/contextmenuevent.h -------------------------------------------------------------------------------- /src/quick/objects/delayedproperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/delayedproperty.cpp -------------------------------------------------------------------------------- /src/quick/objects/delayedproperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/delayedproperty.h -------------------------------------------------------------------------------- /src/quick/objects/deltadocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/deltadocument.cpp -------------------------------------------------------------------------------- /src/quick/objects/deltadocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/deltadocument.h -------------------------------------------------------------------------------- /src/quick/objects/errorreport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/errorreport.cpp -------------------------------------------------------------------------------- /src/quick/objects/errorreport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/errorreport.h -------------------------------------------------------------------------------- /src/quick/objects/eventfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/eventfilter.cpp -------------------------------------------------------------------------------- /src/quick/objects/eventfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/eventfilter.h -------------------------------------------------------------------------------- /src/quick/objects/filemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/filemanager.cpp -------------------------------------------------------------------------------- /src/quick/objects/filemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/filemanager.h -------------------------------------------------------------------------------- /src/quick/objects/focustracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/focustracker.cpp -------------------------------------------------------------------------------- /src/quick/objects/focustracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/focustracker.h -------------------------------------------------------------------------------- /src/quick/objects/itempositionmapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/itempositionmapper.h -------------------------------------------------------------------------------- /src/quick/objects/modelaggregator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/modelaggregator.cpp -------------------------------------------------------------------------------- /src/quick/objects/modelaggregator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/modelaggregator.h -------------------------------------------------------------------------------- /src/quick/objects/notification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/notification.cpp -------------------------------------------------------------------------------- /src/quick/objects/notification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/notification.h -------------------------------------------------------------------------------- /src/quick/objects/propertyalias.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/propertyalias.cpp -------------------------------------------------------------------------------- /src/quick/objects/propertyalias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/propertyalias.h -------------------------------------------------------------------------------- /src/quick/objects/resetonchange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/resetonchange.cpp -------------------------------------------------------------------------------- /src/quick/objects/resetonchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/resetonchange.h -------------------------------------------------------------------------------- /src/quick/objects/searchengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/searchengine.cpp -------------------------------------------------------------------------------- /src/quick/objects/searchengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/searchengine.h -------------------------------------------------------------------------------- /src/quick/objects/standardpaths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/standardpaths.cpp -------------------------------------------------------------------------------- /src/quick/objects/standardpaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/standardpaths.h -------------------------------------------------------------------------------- /src/quick/objects/textdocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/textdocument.cpp -------------------------------------------------------------------------------- /src/quick/objects/textdocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/textdocument.h -------------------------------------------------------------------------------- /src/quick/objects/textlimiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/textlimiter.cpp -------------------------------------------------------------------------------- /src/quick/objects/textlimiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/textlimiter.h -------------------------------------------------------------------------------- /src/quick/objects/trackobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/trackobject.cpp -------------------------------------------------------------------------------- /src/quick/objects/trackobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/quick/objects/trackobject.h -------------------------------------------------------------------------------- /src/reports/characterreport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/reports/characterreport.cpp -------------------------------------------------------------------------------- /src/reports/characterreport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/reports/characterreport.h -------------------------------------------------------------------------------- /src/reports/locationreport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/reports/locationreport.cpp -------------------------------------------------------------------------------- /src/reports/locationreport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/reports/locationreport.h -------------------------------------------------------------------------------- /src/reports/notebookreport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/reports/notebookreport.cpp -------------------------------------------------------------------------------- /src/reports/notebookreport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/reports/notebookreport.h -------------------------------------------------------------------------------- /src/reports/progressreport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/reports/progressreport.cpp -------------------------------------------------------------------------------- /src/reports/progressreport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/reports/progressreport.h -------------------------------------------------------------------------------- /src/reports/screenplaysubsetreport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/reports/screenplaysubsetreport.h -------------------------------------------------------------------------------- /src/reports/statisticsreport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/reports/statisticsreport.cpp -------------------------------------------------------------------------------- /src/reports/statisticsreport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/reports/statisticsreport.h -------------------------------------------------------------------------------- /src/reports/statisticsreport_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/reports/statisticsreport_p.cpp -------------------------------------------------------------------------------- /src/reports/statisticsreport_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/reports/statisticsreport_p.h -------------------------------------------------------------------------------- /src/reports/twocolumnreport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/reports/twocolumnreport.cpp -------------------------------------------------------------------------------- /src/reports/twocolumnreport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/reports/twocolumnreport.h -------------------------------------------------------------------------------- /src/restapikey/restapikey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/restapikey/restapikey.h -------------------------------------------------------------------------------- /src/utils/booleanresult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/utils/booleanresult.h -------------------------------------------------------------------------------- /src/utils/callgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/utils/callgraph.h -------------------------------------------------------------------------------- /src/utils/execlatertimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/utils/execlatertimer.cpp -------------------------------------------------------------------------------- /src/utils/execlatertimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/utils/execlatertimer.h -------------------------------------------------------------------------------- /src/utils/fountain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/utils/fountain.cpp -------------------------------------------------------------------------------- /src/utils/fountain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/utils/fountain.h -------------------------------------------------------------------------------- /src/utils/garbagecollector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/utils/garbagecollector.cpp -------------------------------------------------------------------------------- /src/utils/garbagecollector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/utils/garbagecollector.h -------------------------------------------------------------------------------- /src/utils/genericarraymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/utils/genericarraymodel.cpp -------------------------------------------------------------------------------- /src/utils/genericarraymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/utils/genericarraymodel.h -------------------------------------------------------------------------------- /src/utils/graphlayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/utils/graphlayout.cpp -------------------------------------------------------------------------------- /src/utils/graphlayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/utils/graphlayout.h -------------------------------------------------------------------------------- /src/utils/hourglass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/utils/hourglass.h -------------------------------------------------------------------------------- /src/utils/modifiable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/utils/modifiable.h -------------------------------------------------------------------------------- /src/utils/qobjectfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/utils/qobjectfactory.h -------------------------------------------------------------------------------- /src/utils/qobjectserializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/utils/qobjectserializer.cpp -------------------------------------------------------------------------------- /src/utils/qobjectserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/utils/qobjectserializer.h -------------------------------------------------------------------------------- /src/utils/timeprofiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/utils/timeprofiler.h -------------------------------------------------------------------------------- /src/utils/urlattributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/utils/urlattributes.cpp -------------------------------------------------------------------------------- /src/utils/urlattributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/src/utils/urlattributes.h -------------------------------------------------------------------------------- /tools/codingstyle/runClangFormat.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/tools/codingstyle/runClangFormat.bat -------------------------------------------------------------------------------- /tools/fillnsi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/tools/fillnsi/.gitignore -------------------------------------------------------------------------------- /tools/fillnsi/fillnsi.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/tools/fillnsi/fillnsi.pro -------------------------------------------------------------------------------- /tools/fillnsi/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/tools/fillnsi/main.cpp -------------------------------------------------------------------------------- /tools/urlattribs/OpenGraph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/tools/urlattribs/OpenGraph.php -------------------------------------------------------------------------------- /tools/urlattribs/urlattribs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teriflix/scrite/HEAD/tools/urlattribs/urlattribs.php --------------------------------------------------------------------------------