├── .gitignore ├── CMakeLists.txt ├── COPYING ├── CREDITS ├── ChangeLog ├── INSTALL ├── README ├── cmake ├── AddVersionCompileDefinition.cmake ├── BundleResources.cmake └── TranslateMetainfo.cmake ├── mac_deploy.sh ├── resources ├── images │ ├── icons │ │ ├── hicolor │ │ │ ├── 1024x1024 │ │ │ │ └── apps │ │ │ │ │ └── focuswriter.png │ │ │ ├── 128x128 │ │ │ │ └── apps │ │ │ │ │ └── focuswriter.png │ │ │ ├── 16x16 │ │ │ │ └── apps │ │ │ │ │ └── focuswriter.png │ │ │ ├── 22x22 │ │ │ │ └── apps │ │ │ │ │ └── focuswriter.png │ │ │ ├── 24x24 │ │ │ │ └── apps │ │ │ │ │ └── focuswriter.png │ │ │ ├── 256x256 │ │ │ │ └── apps │ │ │ │ │ └── focuswriter.png │ │ │ ├── 32x32 │ │ │ │ └── apps │ │ │ │ │ └── focuswriter.png │ │ │ ├── 48x48 │ │ │ │ └── apps │ │ │ │ │ └── focuswriter.png │ │ │ ├── 512x512 │ │ │ │ └── apps │ │ │ │ │ └── focuswriter.png │ │ │ ├── 64x64 │ │ │ │ └── apps │ │ │ │ │ └── focuswriter.png │ │ │ └── scalable │ │ │ │ └── apps │ │ │ │ └── focuswriter.svg │ │ ├── icons.qrc │ │ └── oxygen │ │ │ ├── COPYING │ │ │ ├── hicolor │ │ │ ├── 16 │ │ │ │ ├── accessories-dictionary.png │ │ │ │ ├── application-exit.png │ │ │ │ ├── arrow-down.png │ │ │ │ ├── character-set.png │ │ │ │ ├── chronometer.png │ │ │ │ ├── configure.png │ │ │ │ ├── dialog-close.png │ │ │ │ ├── document-close.png │ │ │ │ ├── document-new.png │ │ │ │ ├── document-open.png │ │ │ │ ├── document-print.png │ │ │ │ ├── document-save-all.png │ │ │ │ ├── document-save-as.png │ │ │ │ ├── document-save.png │ │ │ │ ├── edit-copy.png │ │ │ │ ├── edit-cut.png │ │ │ │ ├── edit-find-replace.png │ │ │ │ ├── edit-find.png │ │ │ │ ├── edit-paste.png │ │ │ │ ├── edit-redo.png │ │ │ │ ├── edit-rename.png │ │ │ │ ├── edit-select-all.png │ │ │ │ ├── edit-undo.png │ │ │ │ ├── folder-open.png │ │ │ │ ├── folder.png │ │ │ │ ├── format-indent-less.png │ │ │ │ ├── format-indent-more.png │ │ │ │ ├── format-justify-center.png │ │ │ │ ├── format-justify-fill.png │ │ │ │ ├── format-justify-left.png │ │ │ │ ├── format-justify-right.png │ │ │ │ ├── format-text-bold.png │ │ │ │ ├── format-text-direction-ltr.png │ │ │ │ ├── format-text-direction-rtl.png │ │ │ │ ├── format-text-italic.png │ │ │ │ ├── format-text-strikethrough.png │ │ │ │ ├── format-text-subscript.png │ │ │ │ ├── format-text-superscript.png │ │ │ │ ├── format-text-underline.png │ │ │ │ ├── go-down.png │ │ │ │ ├── go-up.png │ │ │ │ ├── help-about.png │ │ │ │ ├── preferences-desktop-color.png │ │ │ │ ├── preferences-desktop-locale.png │ │ │ │ ├── tools-check-spelling.png │ │ │ │ ├── view-calendar.png │ │ │ │ ├── view-choose.png │ │ │ │ ├── view-fullscreen.png │ │ │ │ ├── view-refresh.png │ │ │ │ └── window-new.png │ │ │ ├── 22 │ │ │ │ ├── accessories-dictionary.png │ │ │ │ ├── application-exit.png │ │ │ │ ├── arrow-down.png │ │ │ │ ├── character-set.png │ │ │ │ ├── chronometer.png │ │ │ │ ├── configure.png │ │ │ │ ├── dialog-close.png │ │ │ │ ├── document-close.png │ │ │ │ ├── document-new.png │ │ │ │ ├── document-open.png │ │ │ │ ├── document-print.png │ │ │ │ ├── document-save-all.png │ │ │ │ ├── document-save-as.png │ │ │ │ ├── document-save.png │ │ │ │ ├── edit-copy.png │ │ │ │ ├── edit-cut.png │ │ │ │ ├── edit-find-replace.png │ │ │ │ ├── edit-find.png │ │ │ │ ├── edit-paste.png │ │ │ │ ├── edit-redo.png │ │ │ │ ├── edit-rename.png │ │ │ │ ├── edit-select-all.png │ │ │ │ ├── edit-undo.png │ │ │ │ ├── folder-open.png │ │ │ │ ├── folder.png │ │ │ │ ├── format-indent-less.png │ │ │ │ ├── format-indent-more.png │ │ │ │ ├── format-justify-center.png │ │ │ │ ├── format-justify-fill.png │ │ │ │ ├── format-justify-left.png │ │ │ │ ├── format-justify-right.png │ │ │ │ ├── format-text-bold.png │ │ │ │ ├── format-text-direction-ltr.png │ │ │ │ ├── format-text-direction-rtl.png │ │ │ │ ├── format-text-italic.png │ │ │ │ ├── format-text-strikethrough.png │ │ │ │ ├── format-text-subscript.png │ │ │ │ ├── format-text-superscript.png │ │ │ │ ├── format-text-underline.png │ │ │ │ ├── go-down.png │ │ │ │ ├── go-up.png │ │ │ │ ├── help-about.png │ │ │ │ ├── preferences-desktop-color.png │ │ │ │ ├── preferences-desktop-locale.png │ │ │ │ ├── tools-check-spelling.png │ │ │ │ ├── view-calendar.png │ │ │ │ ├── view-choose.png │ │ │ │ ├── view-fullscreen.png │ │ │ │ ├── view-refresh.png │ │ │ │ └── window-new.png │ │ │ ├── 32 │ │ │ │ ├── accessories-dictionary.png │ │ │ │ ├── application-exit.png │ │ │ │ ├── arrow-down.png │ │ │ │ ├── character-set.png │ │ │ │ ├── chronometer.png │ │ │ │ ├── configure.png │ │ │ │ ├── dialog-close.png │ │ │ │ ├── document-close.png │ │ │ │ ├── document-new.png │ │ │ │ ├── document-open.png │ │ │ │ ├── document-print.png │ │ │ │ ├── document-save-all.png │ │ │ │ ├── document-save-as.png │ │ │ │ ├── document-save.png │ │ │ │ ├── edit-copy.png │ │ │ │ ├── edit-cut.png │ │ │ │ ├── edit-find-replace.png │ │ │ │ ├── edit-find.png │ │ │ │ ├── edit-paste.png │ │ │ │ ├── edit-redo.png │ │ │ │ ├── edit-rename.png │ │ │ │ ├── edit-select-all.png │ │ │ │ ├── edit-undo.png │ │ │ │ ├── folder-open.png │ │ │ │ ├── folder.png │ │ │ │ ├── format-indent-less.png │ │ │ │ ├── format-indent-more.png │ │ │ │ ├── format-justify-center.png │ │ │ │ ├── format-justify-fill.png │ │ │ │ ├── format-justify-left.png │ │ │ │ ├── format-justify-right.png │ │ │ │ ├── format-text-bold.png │ │ │ │ ├── format-text-direction-ltr.png │ │ │ │ ├── format-text-direction-rtl.png │ │ │ │ ├── format-text-italic.png │ │ │ │ ├── format-text-strikethrough.png │ │ │ │ ├── format-text-subscript.png │ │ │ │ ├── format-text-superscript.png │ │ │ │ ├── format-text-underline.png │ │ │ │ ├── go-down.png │ │ │ │ ├── go-up.png │ │ │ │ ├── help-about.png │ │ │ │ ├── preferences-desktop-color.png │ │ │ │ ├── preferences-desktop-locale.png │ │ │ │ ├── tools-check-spelling.png │ │ │ │ ├── view-calendar.png │ │ │ │ ├── view-choose.png │ │ │ │ ├── view-fullscreen.png │ │ │ │ ├── view-refresh.png │ │ │ │ └── window-new.png │ │ │ ├── 48 │ │ │ │ ├── accessories-dictionary.png │ │ │ │ ├── application-exit.png │ │ │ │ ├── arrow-down.png │ │ │ │ ├── character-set.png │ │ │ │ ├── chronometer.png │ │ │ │ ├── configure.png │ │ │ │ ├── dialog-close.png │ │ │ │ ├── document-close.png │ │ │ │ ├── document-new.png │ │ │ │ ├── document-open.png │ │ │ │ ├── document-print.png │ │ │ │ ├── document-save-all.png │ │ │ │ ├── document-save-as.png │ │ │ │ ├── document-save.png │ │ │ │ ├── edit-copy.png │ │ │ │ ├── edit-cut.png │ │ │ │ ├── edit-find-replace.png │ │ │ │ ├── edit-find.png │ │ │ │ ├── edit-paste.png │ │ │ │ ├── edit-redo.png │ │ │ │ ├── edit-rename.png │ │ │ │ ├── edit-select-all.png │ │ │ │ ├── edit-undo.png │ │ │ │ ├── folder-open.png │ │ │ │ ├── folder.png │ │ │ │ ├── format-indent-less.png │ │ │ │ ├── format-indent-more.png │ │ │ │ ├── format-justify-center.png │ │ │ │ ├── format-justify-fill.png │ │ │ │ ├── format-justify-left.png │ │ │ │ ├── format-justify-right.png │ │ │ │ ├── format-text-bold.png │ │ │ │ ├── format-text-direction-ltr.png │ │ │ │ ├── format-text-direction-rtl.png │ │ │ │ ├── format-text-italic.png │ │ │ │ ├── format-text-strikethrough.png │ │ │ │ ├── format-text-subscript.png │ │ │ │ ├── format-text-superscript.png │ │ │ │ ├── format-text-underline.png │ │ │ │ ├── go-down.png │ │ │ │ ├── go-up.png │ │ │ │ ├── help-about.png │ │ │ │ ├── preferences-desktop-color.png │ │ │ │ ├── preferences-desktop-locale.png │ │ │ │ ├── tools-check-spelling.png │ │ │ │ ├── view-calendar.png │ │ │ │ ├── view-choose.png │ │ │ │ ├── view-fullscreen.png │ │ │ │ ├── view-refresh.png │ │ │ │ └── window-new.png │ │ │ ├── 64 │ │ │ │ ├── accessories-dictionary.png │ │ │ │ ├── application-exit.png │ │ │ │ ├── arrow-down.png │ │ │ │ ├── character-set.png │ │ │ │ ├── chronometer.png │ │ │ │ ├── configure.png │ │ │ │ ├── dialog-close.png │ │ │ │ ├── document-close.png │ │ │ │ ├── document-new.png │ │ │ │ ├── document-open.png │ │ │ │ ├── document-print.png │ │ │ │ ├── document-save-all.png │ │ │ │ ├── document-save-as.png │ │ │ │ ├── document-save.png │ │ │ │ ├── edit-copy.png │ │ │ │ ├── edit-cut.png │ │ │ │ ├── edit-find-replace.png │ │ │ │ ├── edit-find.png │ │ │ │ ├── edit-paste.png │ │ │ │ ├── edit-redo.png │ │ │ │ ├── edit-rename.png │ │ │ │ ├── edit-select-all.png │ │ │ │ ├── edit-undo.png │ │ │ │ ├── folder-open.png │ │ │ │ ├── folder.png │ │ │ │ ├── format-indent-less.png │ │ │ │ ├── format-justify-center.png │ │ │ │ ├── format-justify-fill.png │ │ │ │ ├── format-justify-left.png │ │ │ │ ├── format-justify-more.png │ │ │ │ ├── format-justify-right.png │ │ │ │ ├── format-text-bold.png │ │ │ │ ├── format-text-direction-ltr.png │ │ │ │ ├── format-text-direction-rtl.png │ │ │ │ ├── format-text-italic.png │ │ │ │ ├── format-text-strikethrough.png │ │ │ │ ├── format-text-subscript.png │ │ │ │ ├── format-text-superscript.png │ │ │ │ ├── format-text-underline.png │ │ │ │ ├── go-down.png │ │ │ │ ├── go-up.png │ │ │ │ ├── help-about.png │ │ │ │ ├── preferences-desktop-color.png │ │ │ │ ├── preferences-desktop-locale.png │ │ │ │ ├── tools-check-spelling.png │ │ │ │ ├── view-calendar.png │ │ │ │ ├── view-choose.png │ │ │ │ ├── view-fullscreen.png │ │ │ │ ├── view-refresh.png │ │ │ │ └── window-new.png │ │ │ └── index.theme │ │ │ └── scalable │ │ │ ├── 16 │ │ │ ├── accessories-dictionary.svgz │ │ │ ├── application-exit.svgz │ │ │ ├── arrow-down.svgz │ │ │ ├── character-set.svgz │ │ │ ├── configure.svgz │ │ │ ├── document-new.svgz │ │ │ ├── document-open.svgz │ │ │ ├── document-print.svgz │ │ │ ├── document-save-all.svgz │ │ │ ├── document-save-as.svgz │ │ │ ├── document-save.svgz │ │ │ ├── edit-copy.svgz │ │ │ ├── edit-cut.svgz │ │ │ ├── edit-find-replace.svgz │ │ │ ├── edit-find.svgz │ │ │ ├── edit-paste.svgz │ │ │ ├── edit-redo.svgz │ │ │ ├── edit-rename.svgz │ │ │ ├── edit-select-all.svgz │ │ │ ├── edit-undo.svgz │ │ │ ├── folder-open.svgz │ │ │ ├── folder.svgz │ │ │ ├── go-down.svgz │ │ │ ├── go-up.svgz │ │ │ ├── help-about.svgz │ │ │ ├── tools-check-spelling.svgz │ │ │ ├── view-calendar.svgz │ │ │ ├── view-choose.svgz │ │ │ ├── view-fullscreen.svgz │ │ │ ├── view-refresh.svgz │ │ │ └── window-new.svgz │ │ │ ├── 22 │ │ │ ├── accessories-dictionary.svgz │ │ │ ├── application-exit.svgz │ │ │ ├── character-set.svgz │ │ │ ├── configure.svgz │ │ │ ├── document-new.svgz │ │ │ ├── document-open.svgz │ │ │ ├── document-print.svgz │ │ │ ├── document-save-all.svgz │ │ │ ├── document-save-as.svgz │ │ │ ├── document-save.svgz │ │ │ ├── edit-copy.svgz │ │ │ ├── edit-cut.svgz │ │ │ ├── edit-paste.svgz │ │ │ ├── edit-redo.svgz │ │ │ ├── edit-rename.svgz │ │ │ ├── edit-select-all.svgz │ │ │ ├── edit-undo.svgz │ │ │ ├── folder-open.svgz │ │ │ ├── folder.svgz │ │ │ ├── go-down.svgz │ │ │ ├── go-up.svgz │ │ │ ├── help-about.svgz │ │ │ ├── tools-check-spelling.svgz │ │ │ ├── view-calendar.svgz │ │ │ ├── view-choose.svgz │ │ │ ├── view-fullscreen.svgz │ │ │ ├── view-refresh.svgz │ │ │ └── window-new.svgz │ │ │ ├── 32 │ │ │ ├── document-open.svgz │ │ │ ├── edit-find-replace.svgz │ │ │ ├── edit-find.svgz │ │ │ ├── edit-paste.svgz │ │ │ ├── edit-select-all.svgz │ │ │ ├── folder-open.svgz │ │ │ ├── folder.svgz │ │ │ ├── help-about.svgz │ │ │ └── tools-check-spelling.svgz │ │ │ ├── 48 │ │ │ ├── document-new.svgz │ │ │ ├── document-open.svgz │ │ │ ├── document-save-all.svgz │ │ │ ├── document-save-as.svgz │ │ │ ├── document-save.svgz │ │ │ ├── edit-copy.svgz │ │ │ ├── edit-paste.svgz │ │ │ ├── edit-select-all.svgz │ │ │ ├── folder-open.svgz │ │ │ ├── folder.svgz │ │ │ ├── help-about.svgz │ │ │ ├── tools-check-spelling.svgz │ │ │ ├── view-calendar.svgz │ │ │ ├── view-choose.svgz │ │ │ ├── view-fullscreen.svgz │ │ │ └── window-new.svgz │ │ │ ├── 64 │ │ │ └── folder.svgz │ │ │ ├── accessories-dictionary.svgz │ │ │ ├── application-exit.svgz │ │ │ ├── arrow-down.svgz │ │ │ ├── character-set.svgz │ │ │ ├── chronometer.svgz │ │ │ ├── configure.svgz │ │ │ ├── dialog-close.svgz │ │ │ ├── document-close.svgz │ │ │ ├── document-new.svgz │ │ │ ├── document-print.svgz │ │ │ ├── document-save-all.svgz │ │ │ ├── document-save-as.svgz │ │ │ ├── document-save.svgz │ │ │ ├── edit-copy.svgz │ │ │ ├── edit-cut.svgz │ │ │ ├── edit-find.svgz │ │ │ ├── edit-paste.svgz │ │ │ ├── edit-redo.svgz │ │ │ ├── edit-rename.svgz │ │ │ ├── edit-undo.svgz │ │ │ ├── folder-open.svgz │ │ │ ├── folder.svgz │ │ │ ├── go-down.svgz │ │ │ ├── go-up.svgz │ │ │ ├── preferences-desktop-color.svgz │ │ │ ├── preferences-desktop-locale.svgz │ │ │ ├── text-formatting.svg │ │ │ ├── view-calendar.svgz │ │ │ ├── view-choose.svgz │ │ │ ├── view-fullscreen.svgz │ │ │ ├── view-refresh.svgz │ │ │ └── window-new.svgz │ ├── images.qrc │ ├── load.png │ ├── load@2x.png │ ├── load@3x.png │ └── lorem.txt ├── mac │ ├── Info.plist.in │ ├── background.tiff │ └── focuswriter.icns ├── sounds │ ├── keyany.wav │ └── keyenter.wav ├── symbols │ ├── CMakeLists.txt │ ├── main.cpp │ └── symbols1600.dat ├── themes │ ├── bitterskies.theme │ ├── enchantment.theme │ ├── gentleblues.theme │ ├── images │ │ ├── bitterskies.jpg │ │ ├── enchantment.jpg │ │ ├── spacedreams.jpg │ │ ├── spygames.jpg │ │ ├── tranquility.jpg │ │ └── writingdesk.jpg │ ├── oldschool.theme │ ├── spacedreams.theme │ ├── spygames.theme │ ├── tranquility.theme │ └── writingdesk.theme ├── unix │ ├── focuswriter.1 │ ├── focuswriter.appdata.xml.in │ ├── focuswriter.desktop.in │ └── po │ │ ├── LINGUAS │ │ ├── af_ZA.po │ │ ├── bs.po │ │ ├── ca.po │ │ ├── cs.po │ │ ├── da.po │ │ ├── de.po │ │ ├── description.pot │ │ ├── el.po │ │ ├── en_GB.po │ │ ├── eo.po │ │ ├── es.po │ │ ├── es_MX.po │ │ ├── et.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── fur.po │ │ ├── gl.po │ │ ├── he.po │ │ ├── hu.po │ │ ├── hy.po │ │ ├── id.po │ │ ├── ig.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── ko.po │ │ ├── lt.po │ │ ├── mr.po │ │ ├── nb.po │ │ ├── nb_NO.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── pt.po │ │ ├── pt_BR.po │ │ ├── ro.po │ │ ├── ru.po │ │ ├── sk.po │ │ ├── sl.po │ │ ├── sr.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po └── windows │ ├── dictionaries.sh │ ├── focuswriter.ico │ ├── installer.nsi │ └── removeprevious.nsh ├── src ├── 3rdparty │ ├── hunspell │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── affentry.cxx │ │ ├── affentry.hxx │ │ ├── affixmgr.cxx │ │ ├── affixmgr.hxx │ │ ├── atypes.hxx │ │ ├── baseaffix.hxx │ │ ├── csutil.cxx │ │ ├── csutil.hxx │ │ ├── filemgr.cxx │ │ ├── filemgr.hxx │ │ ├── hashmgr.cxx │ │ ├── hashmgr.hxx │ │ ├── htypes.hxx │ │ ├── hunspell.cxx │ │ ├── hunspell.h │ │ ├── hunspell.hxx │ │ ├── hunvisapi.h │ │ ├── hunvisapi.h.in │ │ ├── hunzip.cxx │ │ ├── hunzip.hxx │ │ ├── langnum.hxx │ │ ├── license.hunspell │ │ ├── license.myspell │ │ ├── phonet.cxx │ │ ├── phonet.hxx │ │ ├── replist.cxx │ │ ├── replist.hxx │ │ ├── suggestmgr.cxx │ │ ├── suggestmgr.hxx │ │ ├── utf_info.hxx │ │ └── w_char.hxx │ ├── qtsingleapplication │ │ ├── QtSingleApplication │ │ ├── qtlocalpeer.cpp │ │ ├── qtlocalpeer.h │ │ ├── qtsingleapplication.cpp │ │ └── qtsingleapplication.h │ └── qtzip │ │ ├── LICENSES │ │ ├── GPL-2.0-only.txt │ │ ├── GPL-3.0-only.txt │ │ ├── LGPL-3.0-only.txt │ │ └── LicenseRef-Qt-Commercial.txt │ │ ├── QtZipReader │ │ ├── QtZipWriter │ │ ├── qtzip.cpp │ │ ├── qtzipreader.h │ │ └── qtzipwriter.h ├── action_manager.cpp ├── action_manager.h ├── alert.cpp ├── alert.h ├── alert_layer.cpp ├── alert_layer.h ├── application.cpp ├── application.h ├── block_stats.cpp ├── block_stats.h ├── color_button.cpp ├── color_button.h ├── daily_progress.cpp ├── daily_progress.h ├── daily_progress_dialog.cpp ├── daily_progress_dialog.h ├── daily_progress_label.cpp ├── daily_progress_label.h ├── deltas.cpp ├── deltas.h ├── document.cpp ├── document.h ├── document_cache.cpp ├── document_cache.h ├── document_watcher.cpp ├── document_watcher.h ├── document_writer.cpp ├── document_writer.h ├── fileformats │ ├── clipboard_windows.cpp │ ├── clipboard_windows.h │ ├── docx_reader.cpp │ ├── docx_reader.h │ ├── docx_writer.cpp │ ├── docx_writer.h │ ├── format_manager.cpp │ ├── format_manager.h │ ├── format_reader.h │ ├── html_writer.cpp │ ├── html_writer.h │ ├── odt_reader.cpp │ ├── odt_reader.h │ ├── odt_writer.cpp │ ├── odt_writer.h │ ├── rtf_reader.cpp │ ├── rtf_reader.h │ ├── rtf_tokenizer.cpp │ ├── rtf_tokenizer.h │ ├── rtf_writer.cpp │ ├── rtf_writer.h │ ├── txt_reader.cpp │ └── txt_reader.h ├── find_dialog.cpp ├── find_dialog.h ├── gzip.cpp ├── gzip.h ├── image_button.cpp ├── image_button.h ├── load_screen.cpp ├── load_screen.h ├── locale_dialog.cpp ├── locale_dialog.h ├── main.cpp ├── paths.cpp ├── paths.h ├── preferences.cpp ├── preferences.h ├── preferences_dialog.cpp ├── preferences_dialog.h ├── ranged_int.h ├── ranged_string.h ├── scene_list.cpp ├── scene_list.h ├── scene_model.cpp ├── scene_model.h ├── session.cpp ├── session.h ├── session_manager.cpp ├── session_manager.h ├── settings_file.h ├── shortcut_edit.cpp ├── shortcut_edit.h ├── smart_quotes.cpp ├── smart_quotes.h ├── sound.cpp ├── sound.h ├── spelling │ ├── abstract_dictionary.h │ ├── abstract_dictionary_provider.h │ ├── dictionary_dialog.cpp │ ├── dictionary_dialog.h │ ├── dictionary_manager.cpp │ ├── dictionary_manager.h │ ├── dictionary_provider_hunspell.cpp │ ├── dictionary_provider_hunspell.h │ ├── dictionary_provider_nsspellchecker.h │ ├── dictionary_provider_nsspellchecker.mm │ ├── dictionary_provider_voikko.cpp │ ├── dictionary_provider_voikko.h │ ├── dictionary_ref.h │ ├── highlighter.cpp │ ├── highlighter.h │ ├── spell_checker.cpp │ └── spell_checker.h ├── stack.cpp ├── stack.h ├── stats.cpp ├── stats.h ├── symbols_dialog.cpp ├── symbols_dialog.h ├── symbols_model.cpp ├── symbols_model.h ├── text_codec.cpp ├── text_codec.h ├── theme.cpp ├── theme.h ├── theme_dialog.cpp ├── theme_dialog.h ├── theme_manager.cpp ├── theme_manager.h ├── theme_renderer.cpp ├── theme_renderer.h ├── timer.cpp ├── timer.h ├── timer_display.cpp ├── timer_display.h ├── timer_manager.cpp ├── timer_manager.h ├── utils.cpp ├── utils.h ├── window.cpp ├── window.h └── word_ref.h ├── translations ├── focuswriter_af_ZA.ts ├── focuswriter_ar.ts ├── focuswriter_bs.ts ├── focuswriter_ca.ts ├── focuswriter_cs.ts ├── focuswriter_da.ts ├── focuswriter_de.ts ├── focuswriter_el.ts ├── focuswriter_en.ts ├── focuswriter_en_GB.ts ├── focuswriter_eo.ts ├── focuswriter_es.ts ├── focuswriter_es_MX.ts ├── focuswriter_et.ts ├── focuswriter_fi.ts ├── focuswriter_fr.ts ├── focuswriter_fur.ts ├── focuswriter_gl.ts ├── focuswriter_he.ts ├── focuswriter_hu.ts ├── focuswriter_hy.ts ├── focuswriter_id.ts ├── focuswriter_ig.ts ├── focuswriter_it.ts ├── focuswriter_ja.ts ├── focuswriter_ka.ts ├── focuswriter_ko.ts ├── focuswriter_lt.ts ├── focuswriter_mr.ts ├── focuswriter_nb.ts ├── focuswriter_nb_NO.ts ├── focuswriter_nl.ts ├── focuswriter_pl.ts ├── focuswriter_pt.ts ├── focuswriter_pt_BR.ts ├── focuswriter_ro.ts ├── focuswriter_ru.ts ├── focuswriter_sk.ts ├── focuswriter_sl.ts ├── focuswriter_sr.ts ├── focuswriter_sv.ts ├── focuswriter_tr.ts ├── focuswriter_uk.ts ├── focuswriter_vi.ts ├── focuswriter_zh_CN.ts └── focuswriter_zh_TW.ts └── windows_deploy.bat /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | *~ 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/COPYING -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/CREDITS -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/INSTALL -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/README -------------------------------------------------------------------------------- /cmake/AddVersionCompileDefinition.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/cmake/AddVersionCompileDefinition.cmake -------------------------------------------------------------------------------- /cmake/BundleResources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/cmake/BundleResources.cmake -------------------------------------------------------------------------------- /cmake/TranslateMetainfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/cmake/TranslateMetainfo.cmake -------------------------------------------------------------------------------- /mac_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/mac_deploy.sh -------------------------------------------------------------------------------- /resources/images/icons/hicolor/1024x1024/apps/focuswriter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/hicolor/1024x1024/apps/focuswriter.png -------------------------------------------------------------------------------- /resources/images/icons/hicolor/128x128/apps/focuswriter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/hicolor/128x128/apps/focuswriter.png -------------------------------------------------------------------------------- /resources/images/icons/hicolor/16x16/apps/focuswriter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/hicolor/16x16/apps/focuswriter.png -------------------------------------------------------------------------------- /resources/images/icons/hicolor/22x22/apps/focuswriter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/hicolor/22x22/apps/focuswriter.png -------------------------------------------------------------------------------- /resources/images/icons/hicolor/24x24/apps/focuswriter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/hicolor/24x24/apps/focuswriter.png -------------------------------------------------------------------------------- /resources/images/icons/hicolor/256x256/apps/focuswriter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/hicolor/256x256/apps/focuswriter.png -------------------------------------------------------------------------------- /resources/images/icons/hicolor/32x32/apps/focuswriter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/hicolor/32x32/apps/focuswriter.png -------------------------------------------------------------------------------- /resources/images/icons/hicolor/48x48/apps/focuswriter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/hicolor/48x48/apps/focuswriter.png -------------------------------------------------------------------------------- /resources/images/icons/hicolor/512x512/apps/focuswriter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/hicolor/512x512/apps/focuswriter.png -------------------------------------------------------------------------------- /resources/images/icons/hicolor/64x64/apps/focuswriter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/hicolor/64x64/apps/focuswriter.png -------------------------------------------------------------------------------- /resources/images/icons/hicolor/scalable/apps/focuswriter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/hicolor/scalable/apps/focuswriter.svg -------------------------------------------------------------------------------- /resources/images/icons/icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/icons.qrc -------------------------------------------------------------------------------- /resources/images/icons/oxygen/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/COPYING -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/accessories-dictionary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/accessories-dictionary.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/application-exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/application-exit.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/arrow-down.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/character-set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/character-set.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/chronometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/chronometer.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/configure.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/dialog-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/dialog-close.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/document-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/document-close.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/document-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/document-new.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/document-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/document-open.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/document-print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/document-print.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/document-save-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/document-save-all.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/document-save-as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/document-save-as.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/document-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/document-save.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/edit-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/edit-copy.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/edit-cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/edit-cut.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/edit-find-replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/edit-find-replace.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/edit-find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/edit-find.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/edit-paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/edit-paste.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/edit-redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/edit-redo.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/edit-rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/edit-rename.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/edit-select-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/edit-select-all.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/edit-undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/edit-undo.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/folder-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/folder-open.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/folder.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/format-indent-less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/format-indent-less.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/format-indent-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/format-indent-more.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/format-justify-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/format-justify-center.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/format-justify-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/format-justify-fill.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/format-justify-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/format-justify-left.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/format-justify-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/format-justify-right.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/format-text-bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/format-text-bold.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/format-text-direction-ltr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/format-text-direction-ltr.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/format-text-direction-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/format-text-direction-rtl.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/format-text-italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/format-text-italic.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/format-text-strikethrough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/format-text-strikethrough.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/format-text-subscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/format-text-subscript.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/format-text-superscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/format-text-superscript.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/format-text-underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/format-text-underline.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/go-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/go-down.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/go-up.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/help-about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/help-about.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/preferences-desktop-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/preferences-desktop-color.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/preferences-desktop-locale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/preferences-desktop-locale.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/tools-check-spelling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/tools-check-spelling.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/view-calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/view-calendar.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/view-choose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/view-choose.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/view-fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/view-fullscreen.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/view-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/view-refresh.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/16/window-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/16/window-new.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/accessories-dictionary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/accessories-dictionary.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/application-exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/application-exit.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/arrow-down.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/character-set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/character-set.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/chronometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/chronometer.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/configure.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/dialog-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/dialog-close.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/document-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/document-close.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/document-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/document-new.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/document-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/document-open.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/document-print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/document-print.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/document-save-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/document-save-all.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/document-save-as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/document-save-as.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/document-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/document-save.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/edit-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/edit-copy.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/edit-cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/edit-cut.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/edit-find-replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/edit-find-replace.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/edit-find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/edit-find.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/edit-paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/edit-paste.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/edit-redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/edit-redo.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/edit-rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/edit-rename.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/edit-select-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/edit-select-all.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/edit-undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/edit-undo.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/folder-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/folder-open.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/folder.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/format-indent-less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/format-indent-less.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/format-indent-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/format-indent-more.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/format-justify-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/format-justify-center.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/format-justify-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/format-justify-fill.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/format-justify-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/format-justify-left.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/format-justify-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/format-justify-right.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/format-text-bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/format-text-bold.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/format-text-direction-ltr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/format-text-direction-ltr.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/format-text-direction-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/format-text-direction-rtl.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/format-text-italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/format-text-italic.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/format-text-strikethrough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/format-text-strikethrough.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/format-text-subscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/format-text-subscript.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/format-text-superscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/format-text-superscript.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/format-text-underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/format-text-underline.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/go-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/go-down.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/go-up.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/help-about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/help-about.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/preferences-desktop-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/preferences-desktop-color.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/preferences-desktop-locale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/preferences-desktop-locale.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/tools-check-spelling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/tools-check-spelling.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/view-calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/view-calendar.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/view-choose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/view-choose.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/view-fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/view-fullscreen.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/view-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/view-refresh.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/22/window-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/22/window-new.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/accessories-dictionary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/accessories-dictionary.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/application-exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/application-exit.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/arrow-down.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/character-set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/character-set.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/chronometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/chronometer.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/configure.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/dialog-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/dialog-close.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/document-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/document-close.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/document-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/document-new.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/document-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/document-open.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/document-print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/document-print.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/document-save-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/document-save-all.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/document-save-as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/document-save-as.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/document-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/document-save.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/edit-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/edit-copy.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/edit-cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/edit-cut.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/edit-find-replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/edit-find-replace.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/edit-find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/edit-find.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/edit-paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/edit-paste.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/edit-redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/edit-redo.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/edit-rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/edit-rename.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/edit-select-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/edit-select-all.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/edit-undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/edit-undo.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/folder-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/folder-open.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/folder.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/format-indent-less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/format-indent-less.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/format-indent-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/format-indent-more.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/format-justify-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/format-justify-center.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/format-justify-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/format-justify-fill.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/format-justify-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/format-justify-left.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/format-justify-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/format-justify-right.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/format-text-bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/format-text-bold.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/format-text-direction-ltr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/format-text-direction-ltr.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/format-text-direction-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/format-text-direction-rtl.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/format-text-italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/format-text-italic.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/format-text-strikethrough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/format-text-strikethrough.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/format-text-subscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/format-text-subscript.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/format-text-superscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/format-text-superscript.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/format-text-underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/format-text-underline.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/go-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/go-down.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/go-up.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/help-about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/help-about.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/preferences-desktop-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/preferences-desktop-color.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/preferences-desktop-locale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/preferences-desktop-locale.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/tools-check-spelling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/tools-check-spelling.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/view-calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/view-calendar.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/view-choose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/view-choose.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/view-fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/view-fullscreen.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/view-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/view-refresh.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/32/window-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/32/window-new.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/accessories-dictionary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/accessories-dictionary.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/application-exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/application-exit.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/arrow-down.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/character-set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/character-set.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/chronometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/chronometer.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/configure.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/dialog-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/dialog-close.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/document-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/document-close.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/document-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/document-new.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/document-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/document-open.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/document-print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/document-print.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/document-save-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/document-save-all.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/document-save-as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/document-save-as.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/document-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/document-save.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/edit-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/edit-copy.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/edit-cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/edit-cut.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/edit-find-replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/edit-find-replace.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/edit-find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/edit-find.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/edit-paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/edit-paste.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/edit-redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/edit-redo.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/edit-rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/edit-rename.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/edit-select-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/edit-select-all.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/edit-undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/edit-undo.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/folder-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/folder-open.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/folder.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/format-indent-less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/format-indent-less.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/format-indent-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/format-indent-more.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/format-justify-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/format-justify-center.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/format-justify-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/format-justify-fill.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/format-justify-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/format-justify-left.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/format-justify-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/format-justify-right.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/format-text-bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/format-text-bold.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/format-text-direction-ltr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/format-text-direction-ltr.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/format-text-direction-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/format-text-direction-rtl.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/format-text-italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/format-text-italic.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/format-text-strikethrough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/format-text-strikethrough.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/format-text-subscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/format-text-subscript.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/format-text-superscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/format-text-superscript.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/format-text-underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/format-text-underline.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/go-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/go-down.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/go-up.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/help-about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/help-about.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/preferences-desktop-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/preferences-desktop-color.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/preferences-desktop-locale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/preferences-desktop-locale.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/tools-check-spelling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/tools-check-spelling.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/view-calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/view-calendar.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/view-choose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/view-choose.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/view-fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/view-fullscreen.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/view-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/view-refresh.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/48/window-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/48/window-new.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/accessories-dictionary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/accessories-dictionary.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/application-exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/application-exit.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/arrow-down.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/character-set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/character-set.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/chronometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/chronometer.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/configure.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/dialog-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/dialog-close.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/document-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/document-close.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/document-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/document-new.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/document-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/document-open.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/document-print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/document-print.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/document-save-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/document-save-all.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/document-save-as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/document-save-as.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/document-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/document-save.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/edit-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/edit-copy.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/edit-cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/edit-cut.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/edit-find-replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/edit-find-replace.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/edit-find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/edit-find.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/edit-paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/edit-paste.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/edit-redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/edit-redo.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/edit-rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/edit-rename.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/edit-select-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/edit-select-all.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/edit-undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/edit-undo.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/folder-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/folder-open.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/folder.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/format-indent-less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/format-indent-less.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/format-justify-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/format-justify-center.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/format-justify-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/format-justify-fill.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/format-justify-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/format-justify-left.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/format-justify-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/format-justify-more.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/format-justify-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/format-justify-right.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/format-text-bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/format-text-bold.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/format-text-direction-ltr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/format-text-direction-ltr.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/format-text-direction-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/format-text-direction-rtl.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/format-text-italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/format-text-italic.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/format-text-strikethrough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/format-text-strikethrough.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/format-text-subscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/format-text-subscript.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/format-text-superscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/format-text-superscript.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/format-text-underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/format-text-underline.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/go-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/go-down.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/go-up.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/help-about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/help-about.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/preferences-desktop-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/preferences-desktop-color.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/preferences-desktop-locale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/preferences-desktop-locale.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/tools-check-spelling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/tools-check-spelling.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/view-calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/view-calendar.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/view-choose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/view-choose.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/view-fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/view-fullscreen.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/view-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/view-refresh.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/64/window-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/64/window-new.png -------------------------------------------------------------------------------- /resources/images/icons/oxygen/hicolor/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/hicolor/index.theme -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/accessories-dictionary.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/accessories-dictionary.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/application-exit.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/application-exit.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/arrow-down.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/arrow-down.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/character-set.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/character-set.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/configure.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/configure.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/document-new.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/document-new.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/document-open.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/document-open.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/document-print.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/document-print.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/document-save-all.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/document-save-all.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/document-save-as.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/document-save-as.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/document-save.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/document-save.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/edit-copy.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/edit-copy.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/edit-cut.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/edit-cut.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/edit-find-replace.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/edit-find-replace.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/edit-find.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/edit-find.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/edit-paste.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/edit-paste.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/edit-redo.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/edit-redo.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/edit-rename.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/edit-rename.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/edit-select-all.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/edit-select-all.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/edit-undo.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/edit-undo.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/folder-open.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/folder-open.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/folder.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/folder.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/go-down.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/go-down.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/go-up.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/go-up.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/help-about.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/help-about.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/tools-check-spelling.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/tools-check-spelling.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/view-calendar.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/view-calendar.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/view-choose.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/view-choose.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/view-fullscreen.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/view-fullscreen.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/view-refresh.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/view-refresh.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/16/window-new.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/16/window-new.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/accessories-dictionary.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/accessories-dictionary.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/application-exit.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/application-exit.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/character-set.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/character-set.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/configure.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/configure.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/document-new.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/document-new.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/document-open.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/document-open.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/document-print.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/document-print.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/document-save-all.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/document-save-all.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/document-save-as.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/document-save-as.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/document-save.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/document-save.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/edit-copy.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/edit-copy.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/edit-cut.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/edit-cut.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/edit-paste.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/edit-paste.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/edit-redo.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/edit-redo.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/edit-rename.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/edit-rename.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/edit-select-all.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/edit-select-all.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/edit-undo.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/edit-undo.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/folder-open.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/folder-open.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/folder.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/folder.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/go-down.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/go-down.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/go-up.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/go-up.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/help-about.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/help-about.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/tools-check-spelling.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/tools-check-spelling.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/view-calendar.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/view-calendar.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/view-choose.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/view-choose.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/view-fullscreen.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/view-fullscreen.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/view-refresh.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/view-refresh.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/22/window-new.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/22/window-new.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/32/document-open.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/32/document-open.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/32/edit-find-replace.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/32/edit-find-replace.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/32/edit-find.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/32/edit-find.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/32/edit-paste.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/32/edit-paste.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/32/edit-select-all.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/32/edit-select-all.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/32/folder-open.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/32/folder-open.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/32/folder.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/32/folder.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/32/help-about.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/32/help-about.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/32/tools-check-spelling.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/32/tools-check-spelling.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/48/document-new.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/48/document-new.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/48/document-open.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/48/document-open.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/48/document-save-all.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/48/document-save-all.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/48/document-save-as.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/48/document-save-as.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/48/document-save.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/48/document-save.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/48/edit-copy.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/48/edit-copy.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/48/edit-paste.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/48/edit-paste.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/48/edit-select-all.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/48/edit-select-all.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/48/folder-open.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/48/folder-open.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/48/folder.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/48/folder.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/48/help-about.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/48/help-about.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/48/tools-check-spelling.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/48/tools-check-spelling.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/48/view-calendar.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/48/view-calendar.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/48/view-choose.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/48/view-choose.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/48/view-fullscreen.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/48/view-fullscreen.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/48/window-new.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/48/window-new.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/64/folder.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/64/folder.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/accessories-dictionary.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/accessories-dictionary.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/application-exit.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/application-exit.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/arrow-down.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/arrow-down.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/character-set.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/character-set.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/chronometer.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/chronometer.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/configure.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/configure.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/dialog-close.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/dialog-close.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/document-close.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/document-close.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/document-new.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/document-new.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/document-print.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/document-print.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/document-save-all.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/document-save-all.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/document-save-as.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/document-save-as.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/document-save.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/document-save.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/edit-copy.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/edit-copy.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/edit-cut.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/edit-cut.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/edit-find.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/edit-find.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/edit-paste.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/edit-paste.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/edit-redo.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/edit-redo.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/edit-rename.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/edit-rename.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/edit-undo.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/edit-undo.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/folder-open.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/folder-open.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/folder.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/folder.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/go-down.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/go-down.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/go-up.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/go-up.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/preferences-desktop-color.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/preferences-desktop-color.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/preferences-desktop-locale.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/preferences-desktop-locale.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/text-formatting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/text-formatting.svg -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/view-calendar.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/view-calendar.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/view-choose.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/view-choose.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/view-fullscreen.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/view-fullscreen.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/view-refresh.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/view-refresh.svgz -------------------------------------------------------------------------------- /resources/images/icons/oxygen/scalable/window-new.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/icons/oxygen/scalable/window-new.svgz -------------------------------------------------------------------------------- /resources/images/images.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/images.qrc -------------------------------------------------------------------------------- /resources/images/load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/load.png -------------------------------------------------------------------------------- /resources/images/load@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/load@2x.png -------------------------------------------------------------------------------- /resources/images/load@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/load@3x.png -------------------------------------------------------------------------------- /resources/images/lorem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/images/lorem.txt -------------------------------------------------------------------------------- /resources/mac/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/mac/Info.plist.in -------------------------------------------------------------------------------- /resources/mac/background.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/mac/background.tiff -------------------------------------------------------------------------------- /resources/mac/focuswriter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/mac/focuswriter.icns -------------------------------------------------------------------------------- /resources/sounds/keyany.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/sounds/keyany.wav -------------------------------------------------------------------------------- /resources/sounds/keyenter.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/sounds/keyenter.wav -------------------------------------------------------------------------------- /resources/symbols/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/symbols/CMakeLists.txt -------------------------------------------------------------------------------- /resources/symbols/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/symbols/main.cpp -------------------------------------------------------------------------------- /resources/symbols/symbols1600.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/symbols/symbols1600.dat -------------------------------------------------------------------------------- /resources/themes/bitterskies.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/themes/bitterskies.theme -------------------------------------------------------------------------------- /resources/themes/enchantment.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/themes/enchantment.theme -------------------------------------------------------------------------------- /resources/themes/gentleblues.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/themes/gentleblues.theme -------------------------------------------------------------------------------- /resources/themes/images/bitterskies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/themes/images/bitterskies.jpg -------------------------------------------------------------------------------- /resources/themes/images/enchantment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/themes/images/enchantment.jpg -------------------------------------------------------------------------------- /resources/themes/images/spacedreams.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/themes/images/spacedreams.jpg -------------------------------------------------------------------------------- /resources/themes/images/spygames.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/themes/images/spygames.jpg -------------------------------------------------------------------------------- /resources/themes/images/tranquility.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/themes/images/tranquility.jpg -------------------------------------------------------------------------------- /resources/themes/images/writingdesk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/themes/images/writingdesk.jpg -------------------------------------------------------------------------------- /resources/themes/oldschool.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/themes/oldschool.theme -------------------------------------------------------------------------------- /resources/themes/spacedreams.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/themes/spacedreams.theme -------------------------------------------------------------------------------- /resources/themes/spygames.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/themes/spygames.theme -------------------------------------------------------------------------------- /resources/themes/tranquility.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/themes/tranquility.theme -------------------------------------------------------------------------------- /resources/themes/writingdesk.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/themes/writingdesk.theme -------------------------------------------------------------------------------- /resources/unix/focuswriter.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/focuswriter.1 -------------------------------------------------------------------------------- /resources/unix/focuswriter.appdata.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/focuswriter.appdata.xml.in -------------------------------------------------------------------------------- /resources/unix/focuswriter.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/focuswriter.desktop.in -------------------------------------------------------------------------------- /resources/unix/po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/LINGUAS -------------------------------------------------------------------------------- /resources/unix/po/af_ZA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/af_ZA.po -------------------------------------------------------------------------------- /resources/unix/po/bs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/bs.po -------------------------------------------------------------------------------- /resources/unix/po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/ca.po -------------------------------------------------------------------------------- /resources/unix/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/cs.po -------------------------------------------------------------------------------- /resources/unix/po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/da.po -------------------------------------------------------------------------------- /resources/unix/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/de.po -------------------------------------------------------------------------------- /resources/unix/po/description.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/description.pot -------------------------------------------------------------------------------- /resources/unix/po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/el.po -------------------------------------------------------------------------------- /resources/unix/po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/en_GB.po -------------------------------------------------------------------------------- /resources/unix/po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/eo.po -------------------------------------------------------------------------------- /resources/unix/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/es.po -------------------------------------------------------------------------------- /resources/unix/po/es_MX.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/es_MX.po -------------------------------------------------------------------------------- /resources/unix/po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/et.po -------------------------------------------------------------------------------- /resources/unix/po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/fi.po -------------------------------------------------------------------------------- /resources/unix/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/fr.po -------------------------------------------------------------------------------- /resources/unix/po/fur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/fur.po -------------------------------------------------------------------------------- /resources/unix/po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/gl.po -------------------------------------------------------------------------------- /resources/unix/po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/he.po -------------------------------------------------------------------------------- /resources/unix/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/hu.po -------------------------------------------------------------------------------- /resources/unix/po/hy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/hy.po -------------------------------------------------------------------------------- /resources/unix/po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/id.po -------------------------------------------------------------------------------- /resources/unix/po/ig.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/ig.po -------------------------------------------------------------------------------- /resources/unix/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/it.po -------------------------------------------------------------------------------- /resources/unix/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/ja.po -------------------------------------------------------------------------------- /resources/unix/po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/ko.po -------------------------------------------------------------------------------- /resources/unix/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/lt.po -------------------------------------------------------------------------------- /resources/unix/po/mr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/mr.po -------------------------------------------------------------------------------- /resources/unix/po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/nb.po -------------------------------------------------------------------------------- /resources/unix/po/nb_NO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/nb_NO.po -------------------------------------------------------------------------------- /resources/unix/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/nl.po -------------------------------------------------------------------------------- /resources/unix/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/pl.po -------------------------------------------------------------------------------- /resources/unix/po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/pt.po -------------------------------------------------------------------------------- /resources/unix/po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/pt_BR.po -------------------------------------------------------------------------------- /resources/unix/po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/ro.po -------------------------------------------------------------------------------- /resources/unix/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/ru.po -------------------------------------------------------------------------------- /resources/unix/po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/sk.po -------------------------------------------------------------------------------- /resources/unix/po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/sl.po -------------------------------------------------------------------------------- /resources/unix/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/sr.po -------------------------------------------------------------------------------- /resources/unix/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/sv.po -------------------------------------------------------------------------------- /resources/unix/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/tr.po -------------------------------------------------------------------------------- /resources/unix/po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/uk.po -------------------------------------------------------------------------------- /resources/unix/po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/vi.po -------------------------------------------------------------------------------- /resources/unix/po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/zh_CN.po -------------------------------------------------------------------------------- /resources/unix/po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/unix/po/zh_TW.po -------------------------------------------------------------------------------- /resources/windows/dictionaries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/windows/dictionaries.sh -------------------------------------------------------------------------------- /resources/windows/focuswriter.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/windows/focuswriter.ico -------------------------------------------------------------------------------- /resources/windows/installer.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/windows/installer.nsi -------------------------------------------------------------------------------- /resources/windows/removeprevious.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/resources/windows/removeprevious.nsh -------------------------------------------------------------------------------- /src/3rdparty/hunspell/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/Makefile.am -------------------------------------------------------------------------------- /src/3rdparty/hunspell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/README.md -------------------------------------------------------------------------------- /src/3rdparty/hunspell/affentry.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/affentry.cxx -------------------------------------------------------------------------------- /src/3rdparty/hunspell/affentry.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/affentry.hxx -------------------------------------------------------------------------------- /src/3rdparty/hunspell/affixmgr.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/affixmgr.cxx -------------------------------------------------------------------------------- /src/3rdparty/hunspell/affixmgr.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/affixmgr.hxx -------------------------------------------------------------------------------- /src/3rdparty/hunspell/atypes.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/atypes.hxx -------------------------------------------------------------------------------- /src/3rdparty/hunspell/baseaffix.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/baseaffix.hxx -------------------------------------------------------------------------------- /src/3rdparty/hunspell/csutil.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/csutil.cxx -------------------------------------------------------------------------------- /src/3rdparty/hunspell/csutil.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/csutil.hxx -------------------------------------------------------------------------------- /src/3rdparty/hunspell/filemgr.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/filemgr.cxx -------------------------------------------------------------------------------- /src/3rdparty/hunspell/filemgr.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/filemgr.hxx -------------------------------------------------------------------------------- /src/3rdparty/hunspell/hashmgr.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/hashmgr.cxx -------------------------------------------------------------------------------- /src/3rdparty/hunspell/hashmgr.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/hashmgr.hxx -------------------------------------------------------------------------------- /src/3rdparty/hunspell/htypes.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/htypes.hxx -------------------------------------------------------------------------------- /src/3rdparty/hunspell/hunspell.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/hunspell.cxx -------------------------------------------------------------------------------- /src/3rdparty/hunspell/hunspell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/hunspell.h -------------------------------------------------------------------------------- /src/3rdparty/hunspell/hunspell.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/hunspell.hxx -------------------------------------------------------------------------------- /src/3rdparty/hunspell/hunvisapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/hunvisapi.h -------------------------------------------------------------------------------- /src/3rdparty/hunspell/hunvisapi.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/hunvisapi.h.in -------------------------------------------------------------------------------- /src/3rdparty/hunspell/hunzip.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/hunzip.cxx -------------------------------------------------------------------------------- /src/3rdparty/hunspell/hunzip.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/hunzip.hxx -------------------------------------------------------------------------------- /src/3rdparty/hunspell/langnum.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/langnum.hxx -------------------------------------------------------------------------------- /src/3rdparty/hunspell/license.hunspell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/license.hunspell -------------------------------------------------------------------------------- /src/3rdparty/hunspell/license.myspell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/license.myspell -------------------------------------------------------------------------------- /src/3rdparty/hunspell/phonet.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/phonet.cxx -------------------------------------------------------------------------------- /src/3rdparty/hunspell/phonet.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/phonet.hxx -------------------------------------------------------------------------------- /src/3rdparty/hunspell/replist.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/replist.cxx -------------------------------------------------------------------------------- /src/3rdparty/hunspell/replist.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/replist.hxx -------------------------------------------------------------------------------- /src/3rdparty/hunspell/suggestmgr.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/suggestmgr.cxx -------------------------------------------------------------------------------- /src/3rdparty/hunspell/suggestmgr.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/suggestmgr.hxx -------------------------------------------------------------------------------- /src/3rdparty/hunspell/utf_info.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/utf_info.hxx -------------------------------------------------------------------------------- /src/3rdparty/hunspell/w_char.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/hunspell/w_char.hxx -------------------------------------------------------------------------------- /src/3rdparty/qtsingleapplication/QtSingleApplication: -------------------------------------------------------------------------------- 1 | #include "qtsingleapplication.h" 2 | -------------------------------------------------------------------------------- /src/3rdparty/qtsingleapplication/qtlocalpeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/qtsingleapplication/qtlocalpeer.cpp -------------------------------------------------------------------------------- /src/3rdparty/qtsingleapplication/qtlocalpeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/qtsingleapplication/qtlocalpeer.h -------------------------------------------------------------------------------- /src/3rdparty/qtsingleapplication/qtsingleapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/qtsingleapplication/qtsingleapplication.cpp -------------------------------------------------------------------------------- /src/3rdparty/qtsingleapplication/qtsingleapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/qtsingleapplication/qtsingleapplication.h -------------------------------------------------------------------------------- /src/3rdparty/qtzip/LICENSES/GPL-2.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/qtzip/LICENSES/GPL-2.0-only.txt -------------------------------------------------------------------------------- /src/3rdparty/qtzip/LICENSES/GPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/qtzip/LICENSES/GPL-3.0-only.txt -------------------------------------------------------------------------------- /src/3rdparty/qtzip/LICENSES/LGPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/qtzip/LICENSES/LGPL-3.0-only.txt -------------------------------------------------------------------------------- /src/3rdparty/qtzip/LICENSES/LicenseRef-Qt-Commercial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/qtzip/LICENSES/LicenseRef-Qt-Commercial.txt -------------------------------------------------------------------------------- /src/3rdparty/qtzip/QtZipReader: -------------------------------------------------------------------------------- 1 | #include "qtzipreader.h" 2 | -------------------------------------------------------------------------------- /src/3rdparty/qtzip/QtZipWriter: -------------------------------------------------------------------------------- 1 | #include "qtzipwriter.h" 2 | -------------------------------------------------------------------------------- /src/3rdparty/qtzip/qtzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/qtzip/qtzip.cpp -------------------------------------------------------------------------------- /src/3rdparty/qtzip/qtzipreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/qtzip/qtzipreader.h -------------------------------------------------------------------------------- /src/3rdparty/qtzip/qtzipwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/3rdparty/qtzip/qtzipwriter.h -------------------------------------------------------------------------------- /src/action_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/action_manager.cpp -------------------------------------------------------------------------------- /src/action_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/action_manager.h -------------------------------------------------------------------------------- /src/alert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/alert.cpp -------------------------------------------------------------------------------- /src/alert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/alert.h -------------------------------------------------------------------------------- /src/alert_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/alert_layer.cpp -------------------------------------------------------------------------------- /src/alert_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/alert_layer.h -------------------------------------------------------------------------------- /src/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/application.cpp -------------------------------------------------------------------------------- /src/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/application.h -------------------------------------------------------------------------------- /src/block_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/block_stats.cpp -------------------------------------------------------------------------------- /src/block_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/block_stats.h -------------------------------------------------------------------------------- /src/color_button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/color_button.cpp -------------------------------------------------------------------------------- /src/color_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/color_button.h -------------------------------------------------------------------------------- /src/daily_progress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/daily_progress.cpp -------------------------------------------------------------------------------- /src/daily_progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/daily_progress.h -------------------------------------------------------------------------------- /src/daily_progress_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/daily_progress_dialog.cpp -------------------------------------------------------------------------------- /src/daily_progress_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/daily_progress_dialog.h -------------------------------------------------------------------------------- /src/daily_progress_label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/daily_progress_label.cpp -------------------------------------------------------------------------------- /src/daily_progress_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/daily_progress_label.h -------------------------------------------------------------------------------- /src/deltas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/deltas.cpp -------------------------------------------------------------------------------- /src/deltas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/deltas.h -------------------------------------------------------------------------------- /src/document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/document.cpp -------------------------------------------------------------------------------- /src/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/document.h -------------------------------------------------------------------------------- /src/document_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/document_cache.cpp -------------------------------------------------------------------------------- /src/document_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/document_cache.h -------------------------------------------------------------------------------- /src/document_watcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/document_watcher.cpp -------------------------------------------------------------------------------- /src/document_watcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/document_watcher.h -------------------------------------------------------------------------------- /src/document_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/document_writer.cpp -------------------------------------------------------------------------------- /src/document_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/document_writer.h -------------------------------------------------------------------------------- /src/fileformats/clipboard_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/fileformats/clipboard_windows.cpp -------------------------------------------------------------------------------- /src/fileformats/clipboard_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/fileformats/clipboard_windows.h -------------------------------------------------------------------------------- /src/fileformats/docx_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/fileformats/docx_reader.cpp -------------------------------------------------------------------------------- /src/fileformats/docx_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/fileformats/docx_reader.h -------------------------------------------------------------------------------- /src/fileformats/docx_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/fileformats/docx_writer.cpp -------------------------------------------------------------------------------- /src/fileformats/docx_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/fileformats/docx_writer.h -------------------------------------------------------------------------------- /src/fileformats/format_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/fileformats/format_manager.cpp -------------------------------------------------------------------------------- /src/fileformats/format_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/fileformats/format_manager.h -------------------------------------------------------------------------------- /src/fileformats/format_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/fileformats/format_reader.h -------------------------------------------------------------------------------- /src/fileformats/html_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/fileformats/html_writer.cpp -------------------------------------------------------------------------------- /src/fileformats/html_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/fileformats/html_writer.h -------------------------------------------------------------------------------- /src/fileformats/odt_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/fileformats/odt_reader.cpp -------------------------------------------------------------------------------- /src/fileformats/odt_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/fileformats/odt_reader.h -------------------------------------------------------------------------------- /src/fileformats/odt_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/fileformats/odt_writer.cpp -------------------------------------------------------------------------------- /src/fileformats/odt_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/fileformats/odt_writer.h -------------------------------------------------------------------------------- /src/fileformats/rtf_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/fileformats/rtf_reader.cpp -------------------------------------------------------------------------------- /src/fileformats/rtf_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/fileformats/rtf_reader.h -------------------------------------------------------------------------------- /src/fileformats/rtf_tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/fileformats/rtf_tokenizer.cpp -------------------------------------------------------------------------------- /src/fileformats/rtf_tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/fileformats/rtf_tokenizer.h -------------------------------------------------------------------------------- /src/fileformats/rtf_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/fileformats/rtf_writer.cpp -------------------------------------------------------------------------------- /src/fileformats/rtf_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/fileformats/rtf_writer.h -------------------------------------------------------------------------------- /src/fileformats/txt_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/fileformats/txt_reader.cpp -------------------------------------------------------------------------------- /src/fileformats/txt_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/fileformats/txt_reader.h -------------------------------------------------------------------------------- /src/find_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/find_dialog.cpp -------------------------------------------------------------------------------- /src/find_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/find_dialog.h -------------------------------------------------------------------------------- /src/gzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/gzip.cpp -------------------------------------------------------------------------------- /src/gzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/gzip.h -------------------------------------------------------------------------------- /src/image_button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/image_button.cpp -------------------------------------------------------------------------------- /src/image_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/image_button.h -------------------------------------------------------------------------------- /src/load_screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/load_screen.cpp -------------------------------------------------------------------------------- /src/load_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/load_screen.h -------------------------------------------------------------------------------- /src/locale_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/locale_dialog.cpp -------------------------------------------------------------------------------- /src/locale_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/locale_dialog.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/paths.cpp -------------------------------------------------------------------------------- /src/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/paths.h -------------------------------------------------------------------------------- /src/preferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/preferences.cpp -------------------------------------------------------------------------------- /src/preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/preferences.h -------------------------------------------------------------------------------- /src/preferences_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/preferences_dialog.cpp -------------------------------------------------------------------------------- /src/preferences_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/preferences_dialog.h -------------------------------------------------------------------------------- /src/ranged_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/ranged_int.h -------------------------------------------------------------------------------- /src/ranged_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/ranged_string.h -------------------------------------------------------------------------------- /src/scene_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/scene_list.cpp -------------------------------------------------------------------------------- /src/scene_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/scene_list.h -------------------------------------------------------------------------------- /src/scene_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/scene_model.cpp -------------------------------------------------------------------------------- /src/scene_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/scene_model.h -------------------------------------------------------------------------------- /src/session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/session.cpp -------------------------------------------------------------------------------- /src/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/session.h -------------------------------------------------------------------------------- /src/session_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/session_manager.cpp -------------------------------------------------------------------------------- /src/session_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/session_manager.h -------------------------------------------------------------------------------- /src/settings_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/settings_file.h -------------------------------------------------------------------------------- /src/shortcut_edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/shortcut_edit.cpp -------------------------------------------------------------------------------- /src/shortcut_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/shortcut_edit.h -------------------------------------------------------------------------------- /src/smart_quotes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/smart_quotes.cpp -------------------------------------------------------------------------------- /src/smart_quotes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/smart_quotes.h -------------------------------------------------------------------------------- /src/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/sound.cpp -------------------------------------------------------------------------------- /src/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/sound.h -------------------------------------------------------------------------------- /src/spelling/abstract_dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/spelling/abstract_dictionary.h -------------------------------------------------------------------------------- /src/spelling/abstract_dictionary_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/spelling/abstract_dictionary_provider.h -------------------------------------------------------------------------------- /src/spelling/dictionary_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/spelling/dictionary_dialog.cpp -------------------------------------------------------------------------------- /src/spelling/dictionary_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/spelling/dictionary_dialog.h -------------------------------------------------------------------------------- /src/spelling/dictionary_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/spelling/dictionary_manager.cpp -------------------------------------------------------------------------------- /src/spelling/dictionary_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/spelling/dictionary_manager.h -------------------------------------------------------------------------------- /src/spelling/dictionary_provider_hunspell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/spelling/dictionary_provider_hunspell.cpp -------------------------------------------------------------------------------- /src/spelling/dictionary_provider_hunspell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/spelling/dictionary_provider_hunspell.h -------------------------------------------------------------------------------- /src/spelling/dictionary_provider_nsspellchecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/spelling/dictionary_provider_nsspellchecker.h -------------------------------------------------------------------------------- /src/spelling/dictionary_provider_nsspellchecker.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/spelling/dictionary_provider_nsspellchecker.mm -------------------------------------------------------------------------------- /src/spelling/dictionary_provider_voikko.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/spelling/dictionary_provider_voikko.cpp -------------------------------------------------------------------------------- /src/spelling/dictionary_provider_voikko.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/spelling/dictionary_provider_voikko.h -------------------------------------------------------------------------------- /src/spelling/dictionary_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/spelling/dictionary_ref.h -------------------------------------------------------------------------------- /src/spelling/highlighter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/spelling/highlighter.cpp -------------------------------------------------------------------------------- /src/spelling/highlighter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/spelling/highlighter.h -------------------------------------------------------------------------------- /src/spelling/spell_checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/spelling/spell_checker.cpp -------------------------------------------------------------------------------- /src/spelling/spell_checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/spelling/spell_checker.h -------------------------------------------------------------------------------- /src/stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/stack.cpp -------------------------------------------------------------------------------- /src/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/stack.h -------------------------------------------------------------------------------- /src/stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/stats.cpp -------------------------------------------------------------------------------- /src/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/stats.h -------------------------------------------------------------------------------- /src/symbols_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/symbols_dialog.cpp -------------------------------------------------------------------------------- /src/symbols_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/symbols_dialog.h -------------------------------------------------------------------------------- /src/symbols_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/symbols_model.cpp -------------------------------------------------------------------------------- /src/symbols_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/symbols_model.h -------------------------------------------------------------------------------- /src/text_codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/text_codec.cpp -------------------------------------------------------------------------------- /src/text_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/text_codec.h -------------------------------------------------------------------------------- /src/theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/theme.cpp -------------------------------------------------------------------------------- /src/theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/theme.h -------------------------------------------------------------------------------- /src/theme_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/theme_dialog.cpp -------------------------------------------------------------------------------- /src/theme_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/theme_dialog.h -------------------------------------------------------------------------------- /src/theme_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/theme_manager.cpp -------------------------------------------------------------------------------- /src/theme_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/theme_manager.h -------------------------------------------------------------------------------- /src/theme_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/theme_renderer.cpp -------------------------------------------------------------------------------- /src/theme_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/theme_renderer.h -------------------------------------------------------------------------------- /src/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/timer.cpp -------------------------------------------------------------------------------- /src/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/timer.h -------------------------------------------------------------------------------- /src/timer_display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/timer_display.cpp -------------------------------------------------------------------------------- /src/timer_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/timer_display.h -------------------------------------------------------------------------------- /src/timer_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/timer_manager.cpp -------------------------------------------------------------------------------- /src/timer_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/timer_manager.h -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/utils.h -------------------------------------------------------------------------------- /src/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/window.cpp -------------------------------------------------------------------------------- /src/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/window.h -------------------------------------------------------------------------------- /src/word_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/src/word_ref.h -------------------------------------------------------------------------------- /translations/focuswriter_af_ZA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_af_ZA.ts -------------------------------------------------------------------------------- /translations/focuswriter_ar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_ar.ts -------------------------------------------------------------------------------- /translations/focuswriter_bs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_bs.ts -------------------------------------------------------------------------------- /translations/focuswriter_ca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_ca.ts -------------------------------------------------------------------------------- /translations/focuswriter_cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_cs.ts -------------------------------------------------------------------------------- /translations/focuswriter_da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_da.ts -------------------------------------------------------------------------------- /translations/focuswriter_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_de.ts -------------------------------------------------------------------------------- /translations/focuswriter_el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_el.ts -------------------------------------------------------------------------------- /translations/focuswriter_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_en.ts -------------------------------------------------------------------------------- /translations/focuswriter_en_GB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_en_GB.ts -------------------------------------------------------------------------------- /translations/focuswriter_eo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_eo.ts -------------------------------------------------------------------------------- /translations/focuswriter_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_es.ts -------------------------------------------------------------------------------- /translations/focuswriter_es_MX.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_es_MX.ts -------------------------------------------------------------------------------- /translations/focuswriter_et.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_et.ts -------------------------------------------------------------------------------- /translations/focuswriter_fi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_fi.ts -------------------------------------------------------------------------------- /translations/focuswriter_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_fr.ts -------------------------------------------------------------------------------- /translations/focuswriter_fur.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_fur.ts -------------------------------------------------------------------------------- /translations/focuswriter_gl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_gl.ts -------------------------------------------------------------------------------- /translations/focuswriter_he.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_he.ts -------------------------------------------------------------------------------- /translations/focuswriter_hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_hu.ts -------------------------------------------------------------------------------- /translations/focuswriter_hy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_hy.ts -------------------------------------------------------------------------------- /translations/focuswriter_id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_id.ts -------------------------------------------------------------------------------- /translations/focuswriter_ig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_ig.ts -------------------------------------------------------------------------------- /translations/focuswriter_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_it.ts -------------------------------------------------------------------------------- /translations/focuswriter_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_ja.ts -------------------------------------------------------------------------------- /translations/focuswriter_ka.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_ka.ts -------------------------------------------------------------------------------- /translations/focuswriter_ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_ko.ts -------------------------------------------------------------------------------- /translations/focuswriter_lt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_lt.ts -------------------------------------------------------------------------------- /translations/focuswriter_mr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_mr.ts -------------------------------------------------------------------------------- /translations/focuswriter_nb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_nb.ts -------------------------------------------------------------------------------- /translations/focuswriter_nb_NO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_nb_NO.ts -------------------------------------------------------------------------------- /translations/focuswriter_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_nl.ts -------------------------------------------------------------------------------- /translations/focuswriter_pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_pl.ts -------------------------------------------------------------------------------- /translations/focuswriter_pt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_pt.ts -------------------------------------------------------------------------------- /translations/focuswriter_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_pt_BR.ts -------------------------------------------------------------------------------- /translations/focuswriter_ro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_ro.ts -------------------------------------------------------------------------------- /translations/focuswriter_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_ru.ts -------------------------------------------------------------------------------- /translations/focuswriter_sk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_sk.ts -------------------------------------------------------------------------------- /translations/focuswriter_sl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_sl.ts -------------------------------------------------------------------------------- /translations/focuswriter_sr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_sr.ts -------------------------------------------------------------------------------- /translations/focuswriter_sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_sv.ts -------------------------------------------------------------------------------- /translations/focuswriter_tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_tr.ts -------------------------------------------------------------------------------- /translations/focuswriter_uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_uk.ts -------------------------------------------------------------------------------- /translations/focuswriter_vi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_vi.ts -------------------------------------------------------------------------------- /translations/focuswriter_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_zh_CN.ts -------------------------------------------------------------------------------- /translations/focuswriter_zh_TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/translations/focuswriter_zh_TW.ts -------------------------------------------------------------------------------- /windows_deploy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottcode/focuswriter/HEAD/windows_deploy.bat --------------------------------------------------------------------------------