├── .clang-format ├── .gitignore ├── Doxyfile ├── Info.plist ├── LICENSE ├── MrWriter.desktop ├── MrWriter.pro ├── MrWriter_artwork ├── CreateICNS.src ├── Icon1024.png ├── MrWriterIcon.pdf ├── MrWriterIcons.pdf ├── MyIcon.icns ├── blackIcon.ai ├── blueIcon.ai ├── circleIcon.ai ├── copyIcon.ai ├── cutIcon.ai ├── dashDotPatternIcon.ai ├── dashPatternIcon.ai ├── dotPatternIcon.ai ├── eraserIcon.ai ├── finePenWidthIcon.ai ├── fullscreenIcon.ai ├── grayIcon.ai ├── greenIcon.ai ├── handIcon.ai ├── lightblueIcon.ai ├── lightgreenIcon.ai ├── magentaIcon.ai ├── mediumPenWidthIcon.ai ├── newIcon.ai ├── newIcon.pdf ├── openIcon.ai ├── openIcon.pdf ├── orangeIcon.ai ├── pageDownIcon.ai ├── pageDownPlusIcon.ai ├── pageFirstIcon.ai ├── pageLastIcon.ai ├── pageUpIcon.ai ├── pasteIcon.ai ├── penIcon.ai ├── redIcon.ai ├── redoIcon.ai ├── rulerIcon.ai ├── saveIcon.ai ├── savePDFIcon.ai ├── selectIcon.ai ├── solidPatternIcon.ai ├── thickPenWidthIcon.ai ├── undoIcon.ai ├── veryFinePenWidthIcon.ai ├── veryThickPenWidthIcon.ai ├── whiteIcon.ai ├── yellowIcon.ai ├── zoomFitHeightIcon.ai ├── zoomFitWidthIcon.ai ├── zoomInIcon.ai └── zoomOutIcon.ai ├── MrWriter_artwork_Inkscape ├── CreateICNS.src ├── Icon1024.png ├── Icons │ ├── ai2svg.sh │ ├── blackIcon.svg │ ├── blueIcon.svg │ ├── circleIcon.svg │ ├── copyIcon.svg │ ├── cutIcon.svg │ ├── dashDotPatternIcon.svg │ ├── dashPatternIcon.svg │ ├── dotPatternIcon.svg │ ├── eraserIcon.svg │ ├── finePenWidthIcon.svg │ ├── fullscreenIcon.svg │ ├── grayIcon.svg │ ├── greenIcon.svg │ ├── handIcon.svg │ ├── lightblueIcon.svg │ ├── lightgreenIcon.svg │ ├── magentaIcon.svg │ ├── mediumPenWidthIcon.svg │ ├── newIcon.svg │ ├── openIcon.svg │ ├── orangeIcon.svg │ ├── pageDownIcon.svg │ ├── pageDownPlusIcon.svg │ ├── pageFirstIcon.svg │ ├── pageLastIcon.svg │ ├── pageUpIcon.svg │ ├── pasteIcon.svg │ ├── penIcon.svg │ ├── png │ │ ├── .png │ │ ├── blackIcon_24.png │ │ ├── blackIcon_32.png │ │ ├── blackIcon_48.png │ │ ├── blueIcon_24.png │ │ ├── blueIcon_32.png │ │ ├── blueIcon_48.png │ │ ├── circleIcon_24.png │ │ ├── circleIcon_32.png │ │ ├── circleIcon_48.png │ │ ├── copyIcon_24.png │ │ ├── copyIcon_32.png │ │ ├── copyIcon_48.png │ │ ├── cutIcon_24.png │ │ ├── cutIcon_32.png │ │ ├── cutIcon_48.png │ │ ├── dashDotPatternIcon_24.png │ │ ├── dashDotPatternIcon_32.png │ │ ├── dashDotPatternIcon_48.png │ │ ├── dashPatternIcon_24.png │ │ ├── dashPatternIcon_32.png │ │ ├── dashPatternIcon_48.png │ │ ├── dotPatternIcon_24.png │ │ ├── dotPatternIcon_32.png │ │ ├── dotPatternIcon_48.png │ │ ├── eraserIcon_24.png │ │ ├── eraserIcon_32.png │ │ ├── eraserIcon_48.png │ │ ├── finePenWidthIcon_24.png │ │ ├── finePenWidthIcon_32.png │ │ ├── finePenWidthIcon_48.png │ │ ├── fullscreenIcon_24.png │ │ ├── fullscreenIcon_32.png │ │ ├── fullscreenIcon_48.png │ │ ├── grayIcon_24.png │ │ ├── grayIcon_32.png │ │ ├── grayIcon_48.png │ │ ├── greenIcon_24.png │ │ ├── greenIcon_32.png │ │ ├── greenIcon_48.png │ │ ├── handIcon_24.png │ │ ├── handIcon_32.png │ │ ├── handIcon_48.png │ │ ├── lightblueIcon_24.png │ │ ├── lightblueIcon_32.png │ │ ├── lightblueIcon_48.png │ │ ├── lightgreenIcon_24.png │ │ ├── lightgreenIcon_32.png │ │ ├── lightgreenIcon_48.png │ │ ├── magentaIcon_24.png │ │ ├── magentaIcon_32.png │ │ ├── magentaIcon_48.png │ │ ├── mediumPenWidthIcon_24.png │ │ ├── mediumPenWidthIcon_32.png │ │ ├── mediumPenWidthIcon_48.png │ │ ├── newIcon_24.png │ │ ├── newIcon_32.png │ │ ├── newIcon_48.png │ │ ├── openIcon_24.png │ │ ├── openIcon_32.png │ │ ├── openIcon_48.png │ │ ├── orangeIcon_24.png │ │ ├── orangeIcon_32.png │ │ ├── orangeIcon_48.png │ │ ├── pageDownIcon_24.png │ │ ├── pageDownIcon_32.png │ │ ├── pageDownIcon_48.png │ │ ├── pageDownPlusIcon_24.png │ │ ├── pageDownPlusIcon_32.png │ │ ├── pageDownPlusIcon_48.png │ │ ├── pageFirstIcon_24.png │ │ ├── pageFirstIcon_32.png │ │ ├── pageFirstIcon_48.png │ │ ├── pageLastIcon_24.png │ │ ├── pageLastIcon_32.png │ │ ├── pageLastIcon_48.png │ │ ├── pageUpIcon_24.png │ │ ├── pageUpIcon_32.png │ │ ├── pageUpIcon_48.png │ │ ├── pasteIcon_24.png │ │ ├── pasteIcon_32.png │ │ ├── pasteIcon_48.png │ │ ├── penIcon_24.png │ │ ├── penIcon_32.png │ │ ├── penIcon_48.png │ │ ├── redIcon_24.png │ │ ├── redIcon_32.png │ │ ├── redIcon_48.png │ │ ├── redoIcon_24.png │ │ ├── redoIcon_32.png │ │ ├── redoIcon_48.png │ │ ├── rulerIcon_24.png │ │ ├── rulerIcon_32.png │ │ ├── rulerIcon_48.png │ │ ├── saveIcon_24.png │ │ ├── saveIcon_32.png │ │ ├── saveIcon_48.png │ │ ├── savePDFIcon_24.png │ │ ├── savePDFIcon_32.png │ │ ├── savePDFIcon_48.png │ │ ├── selectIcon_24.png │ │ ├── selectIcon_32.png │ │ ├── selectIcon_48.png │ │ ├── solidPatternIcon_24.png │ │ ├── solidPatternIcon_32.png │ │ ├── solidPatternIcon_48.png │ │ ├── thickPenWidthIcon_24.png │ │ ├── thickPenWidthIcon_32.png │ │ ├── thickPenWidthIcon_48.png │ │ ├── undoIcon_24.png │ │ ├── undoIcon_32.png │ │ ├── undoIcon_48.png │ │ ├── veryFinePenWidthIcon_24.png │ │ ├── veryFinePenWidthIcon_32.png │ │ ├── veryFinePenWidthIcon_48.png │ │ ├── veryThickPenWidthIcon_24.png │ │ ├── veryThickPenWidthIcon_32.png │ │ ├── veryThickPenWidthIcon_48.png │ │ ├── whiteIcon_24.png │ │ ├── whiteIcon_32.png │ │ ├── whiteIcon_48.png │ │ ├── yellowIcon_24.png │ │ ├── yellowIcon_32.png │ │ ├── yellowIcon_48.png │ │ ├── zoomFitHeightIcon_24.png │ │ ├── zoomFitHeightIcon_32.png │ │ ├── zoomFitHeightIcon_48.png │ │ ├── zoomFitWidthIcon_24.png │ │ ├── zoomFitWidthIcon_32.png │ │ ├── zoomFitWidthIcon_48.png │ │ ├── zoomInIcon_24.png │ │ ├── zoomInIcon_32.png │ │ ├── zoomInIcon_48.png │ │ ├── zoomOutIcon_24.png │ │ ├── zoomOutIcon_32.png │ │ └── zoomOutIcon_48.png │ ├── redIcon.svg │ ├── redoIcon.svg │ ├── rulerIcon.svg │ ├── saveIcon.svg │ ├── savePDFIcon.svg │ ├── selectIcon.svg │ ├── solidPatternIcon.svg │ ├── svg2png.sh │ ├── thickPenWidthIcon.svg │ ├── undoIcon.svg │ ├── veryFinePenWidthIcon.svg │ ├── veryThickPenWidthIcon.svg │ ├── whiteIcon.svg │ ├── yellowIcon.svg │ ├── zoomFitHeightIcon.svg │ ├── zoomFitWidthIcon.svg │ ├── zoomInIcon.svg │ └── zoomOutIcon.svg ├── MrWriterIcon.pdf ├── MrWriterIcons.pdf └── MyIcon.icns ├── MyIcon.icns ├── MyIcon.ico ├── MyIcon.png ├── MyIcon128.png ├── README.adoc ├── Readme ├── MrWriter.moj ├── MrWriterLin.png ├── MrWriterMac.png └── MrWriterWin.png ├── abstracttextbox.cpp ├── abstracttextbox.h ├── check_releases.sh ├── colorbutton.cpp ├── colorbutton.h ├── commands.cpp ├── commands.h ├── deploy.sh ├── document.clang.cpp ├── document.cpp ├── document.h ├── documentation ├── MrWriterDoc.adoc ├── MrWriterDoc.html ├── MrWriterDoc.qch ├── MrWriterDoc.qhq ├── Release_Howto.adoc ├── collection.qhc ├── collection.qhcp ├── line-based-file-format.adoc ├── makeHelp.sh └── pen_button_menu.moj ├── images ├── .DS_Store ├── Icon1024.png ├── blackIcon.png ├── blueIcon.png ├── circleCursor.png ├── circleCursorMask.png ├── circleIcon.png ├── copyIcon.png ├── cutIcon.png ├── dashDotPatternIcon.png ├── dashPatternIcon.png ├── dotPatternIcon.png ├── eraserCursor.png ├── eraserCursorMask.png ├── eraserIcon.png ├── finePenWidthIcon.png ├── fullscreenIcon.png ├── grayIcon.png ├── greenIcon.png ├── handIcon.png ├── lightblueIcon.png ├── lightgreenIcon.png ├── magentaIcon.png ├── mediumPenWidthIcon.png ├── new.png ├── newGray.png ├── newIcon.png ├── open.png ├── openIcon.png ├── orangeIcon.png ├── pageDownIcon.png ├── pageDownPlusIcon.png ├── pageFirstIcon.png ├── pageLastIcon.png ├── pageUpIcon.png ├── pasteIcon.png ├── penCursor.png ├── penCursor2.png ├── penCursor2Mask.png ├── penCursor3.png ├── penCursor3Mask.png ├── penCursorMask.png ├── penIcon.png ├── redIcon.png ├── redoIcon.png ├── rulerCursor.png ├── rulerCursorMask.png ├── rulerIcon.png ├── saveIcon.png ├── savePDFIcon.png ├── selectIcon.png ├── solidPatternIcon.png ├── thickPenWidthIcon.png ├── undoIcon.png ├── veryFinePenWidthIcon.png ├── veryThickPenWidthIcon.png ├── whiteIcon.png ├── yellowIcon.png ├── zoomFitHeightIcon.png ├── zoomFitWidthIcon.png ├── zoomInIcon.png ├── zoomOutIcon.png ├── zoom_fit.png ├── zoom_in.png └── zoom_out.png ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── make_doc.sh ├── markdownbox.cpp ├── markdownbox.h ├── markdownselection.cpp ├── markdownselection.h ├── mrdoc.h ├── myresource.qrc ├── page.cpp ├── page.h ├── pagesettingsdialog.cpp ├── pagesettingsdialog.h ├── qcompressor.cpp ├── qcompressor.h ├── searchbar.cpp ├── searchbar.h ├── searchbar.ui ├── selection.cpp ├── selection.h ├── stroke.cpp ├── stroke.h ├── tabletapplication.cpp ├── tabletapplication.h ├── test_document ├── generate_test_document.sh └── parts │ ├── footer.part.moj │ ├── header.part.moj │ └── page.part.moj ├── textbox.cpp ├── textbox.h ├── tictoc.h ├── version.h ├── website ├── .gitignore ├── MrWriterDoc.adoc ├── _config.yml ├── _includes │ ├── footer.html │ ├── head.html │ ├── header.html │ ├── icon-github.html │ ├── icon-github.svg │ ├── icon-twitter.html │ └── icon-twitter.svg ├── _layouts │ ├── default.html │ ├── page.html │ └── post.html ├── _posts │ └── 2016-01-24-welcome-to-jekyll.markdown ├── _sass │ ├── _base.scss │ ├── _layout.scss │ └── _syntax-highlighting.scss ├── about.adoc ├── css │ └── main.scss ├── downloads.adoc ├── feed.xml ├── images │ ├── Icon1024.png │ ├── MrWriterIcon.pdf │ ├── MrWriterIcon.svg │ ├── MrWriterLin.png │ ├── MrWriterMac.png │ ├── MrWriterWin.png │ ├── blackIcon.png │ ├── blueIcon.png │ ├── circleIcon.png │ ├── copyIcon.png │ ├── cutIcon.png │ ├── dashDotPatternIcon.png │ ├── dashPatternIcon.png │ ├── dotPatternIcon.png │ ├── eraserIcon.png │ ├── finePenWidthIcon.png │ ├── fullscreenIcon.png │ ├── grayIcon.png │ ├── greenIcon.png │ ├── handIcon.png │ ├── lightblueIcon.png │ ├── lightgreenIcon.png │ ├── magentaIcon.png │ ├── mediumPenWidthIcon.png │ ├── newIcon.png │ ├── openIcon.png │ ├── orangeIcon.png │ ├── pageDownIcon.png │ ├── pageDownPlusIcon.png │ ├── pageFirstIcon.png │ ├── pageLastIcon.png │ ├── pageUpIcon.png │ ├── pasteIcon.png │ ├── penIcon.png │ ├── redIcon.png │ ├── redoIcon.png │ ├── rulerIcon.png │ ├── saveIcon.png │ ├── savePDFIcon.png │ ├── selectIcon.png │ ├── solidPatternIcon.png │ ├── thickPenWidthIcon.png │ ├── undoIcon.png │ ├── veryFinePenWidthIcon.png │ ├── veryThickPenWidthIcon.png │ ├── whiteIcon.png │ ├── yellowIcon.png │ ├── zoomFitHeightIcon.png │ ├── zoomFitWidthIcon.png │ ├── zoomInIcon.png │ └── zoomOutIcon.png ├── index.adoc ├── other │ └── MrWriterDoc.html └── screenshots.md ├── widget.cpp └── widget.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | MrWriter.pro.user* 2 | .DS_Store 3 | *nogit* 4 | *.autosave 5 | -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/Doxyfile -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/LICENSE -------------------------------------------------------------------------------- /MrWriter.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter.desktop -------------------------------------------------------------------------------- /MrWriter.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter.pro -------------------------------------------------------------------------------- /MrWriter_artwork/CreateICNS.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/CreateICNS.src -------------------------------------------------------------------------------- /MrWriter_artwork/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/Icon1024.png -------------------------------------------------------------------------------- /MrWriter_artwork/MrWriterIcon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/MrWriterIcon.pdf -------------------------------------------------------------------------------- /MrWriter_artwork/MrWriterIcons.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/MrWriterIcons.pdf -------------------------------------------------------------------------------- /MrWriter_artwork/MyIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/MyIcon.icns -------------------------------------------------------------------------------- /MrWriter_artwork/blackIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/blackIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/blueIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/blueIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/circleIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/circleIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/copyIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/copyIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/cutIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/cutIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/dashDotPatternIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/dashDotPatternIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/dashPatternIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/dashPatternIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/dotPatternIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/dotPatternIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/eraserIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/eraserIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/finePenWidthIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/finePenWidthIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/fullscreenIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/fullscreenIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/grayIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/grayIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/greenIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/greenIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/handIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/handIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/lightblueIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/lightblueIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/lightgreenIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/lightgreenIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/magentaIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/magentaIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/mediumPenWidthIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/mediumPenWidthIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/newIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/newIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/newIcon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/newIcon.pdf -------------------------------------------------------------------------------- /MrWriter_artwork/openIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/openIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/openIcon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/openIcon.pdf -------------------------------------------------------------------------------- /MrWriter_artwork/orangeIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/orangeIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/pageDownIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/pageDownIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/pageDownPlusIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/pageDownPlusIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/pageFirstIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/pageFirstIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/pageLastIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/pageLastIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/pageUpIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/pageUpIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/pasteIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/pasteIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/penIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/penIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/redIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/redIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/redoIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/redoIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/rulerIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/rulerIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/saveIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/saveIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/savePDFIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/savePDFIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/selectIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/selectIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/solidPatternIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/solidPatternIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/thickPenWidthIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/thickPenWidthIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/undoIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/undoIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/veryFinePenWidthIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/veryFinePenWidthIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/veryThickPenWidthIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/veryThickPenWidthIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/whiteIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/whiteIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/yellowIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/yellowIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/zoomFitHeightIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/zoomFitHeightIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/zoomFitWidthIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/zoomFitWidthIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/zoomInIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/zoomInIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork/zoomOutIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork/zoomOutIcon.ai -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/CreateICNS.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/CreateICNS.src -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icon1024.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/ai2svg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/ai2svg.sh -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/blackIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/blackIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/blueIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/blueIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/circleIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/circleIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/copyIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/copyIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/cutIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/cutIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/dashDotPatternIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/dashDotPatternIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/dashPatternIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/dashPatternIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/dotPatternIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/dotPatternIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/eraserIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/eraserIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/finePenWidthIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/finePenWidthIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/fullscreenIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/fullscreenIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/grayIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/grayIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/greenIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/greenIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/handIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/handIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/lightblueIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/lightblueIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/lightgreenIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/lightgreenIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/magentaIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/magentaIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/mediumPenWidthIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/mediumPenWidthIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/newIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/newIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/openIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/openIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/orangeIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/orangeIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/pageDownIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/pageDownIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/pageDownPlusIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/pageDownPlusIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/pageFirstIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/pageFirstIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/pageLastIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/pageLastIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/pageUpIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/pageUpIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/pasteIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/pasteIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/penIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/penIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/blackIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/blackIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/blackIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/blackIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/blackIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/blackIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/blueIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/blueIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/blueIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/blueIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/blueIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/blueIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/circleIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/circleIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/circleIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/circleIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/circleIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/circleIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/copyIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/copyIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/copyIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/copyIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/copyIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/copyIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/cutIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/cutIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/cutIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/cutIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/cutIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/cutIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/dashDotPatternIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/dashDotPatternIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/dashDotPatternIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/dashDotPatternIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/dashDotPatternIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/dashDotPatternIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/dashPatternIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/dashPatternIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/dashPatternIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/dashPatternIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/dashPatternIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/dashPatternIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/dotPatternIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/dotPatternIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/dotPatternIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/dotPatternIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/dotPatternIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/dotPatternIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/eraserIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/eraserIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/eraserIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/eraserIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/eraserIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/eraserIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/finePenWidthIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/finePenWidthIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/finePenWidthIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/finePenWidthIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/finePenWidthIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/finePenWidthIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/fullscreenIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/fullscreenIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/fullscreenIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/fullscreenIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/fullscreenIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/fullscreenIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/grayIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/grayIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/grayIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/grayIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/grayIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/grayIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/greenIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/greenIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/greenIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/greenIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/greenIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/greenIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/handIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/handIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/handIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/handIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/handIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/handIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/lightblueIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/lightblueIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/lightblueIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/lightblueIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/lightblueIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/lightblueIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/lightgreenIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/lightgreenIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/lightgreenIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/lightgreenIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/lightgreenIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/lightgreenIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/magentaIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/magentaIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/magentaIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/magentaIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/magentaIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/magentaIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/mediumPenWidthIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/mediumPenWidthIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/mediumPenWidthIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/mediumPenWidthIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/mediumPenWidthIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/mediumPenWidthIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/newIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/newIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/newIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/newIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/newIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/newIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/openIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/openIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/openIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/openIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/openIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/openIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/orangeIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/orangeIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/orangeIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/orangeIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/orangeIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/orangeIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/pageDownIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/pageDownIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/pageDownIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/pageDownIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/pageDownIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/pageDownIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/pageDownPlusIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/pageDownPlusIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/pageDownPlusIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/pageDownPlusIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/pageDownPlusIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/pageDownPlusIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/pageFirstIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/pageFirstIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/pageFirstIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/pageFirstIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/pageFirstIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/pageFirstIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/pageLastIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/pageLastIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/pageLastIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/pageLastIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/pageLastIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/pageLastIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/pageUpIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/pageUpIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/pageUpIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/pageUpIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/pageUpIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/pageUpIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/pasteIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/pasteIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/pasteIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/pasteIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/pasteIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/pasteIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/penIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/penIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/penIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/penIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/penIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/penIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/redIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/redIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/redIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/redIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/redIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/redIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/redoIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/redoIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/redoIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/redoIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/redoIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/redoIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/rulerIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/rulerIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/rulerIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/rulerIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/rulerIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/rulerIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/saveIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/saveIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/saveIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/saveIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/saveIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/saveIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/savePDFIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/savePDFIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/savePDFIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/savePDFIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/savePDFIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/savePDFIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/selectIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/selectIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/selectIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/selectIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/selectIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/selectIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/solidPatternIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/solidPatternIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/solidPatternIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/solidPatternIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/solidPatternIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/solidPatternIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/thickPenWidthIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/thickPenWidthIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/thickPenWidthIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/thickPenWidthIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/thickPenWidthIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/thickPenWidthIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/undoIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/undoIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/undoIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/undoIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/undoIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/undoIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/veryFinePenWidthIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/veryFinePenWidthIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/veryFinePenWidthIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/veryFinePenWidthIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/veryFinePenWidthIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/veryFinePenWidthIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/veryThickPenWidthIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/veryThickPenWidthIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/veryThickPenWidthIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/veryThickPenWidthIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/veryThickPenWidthIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/veryThickPenWidthIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/whiteIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/whiteIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/whiteIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/whiteIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/whiteIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/whiteIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/yellowIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/yellowIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/yellowIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/yellowIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/yellowIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/yellowIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/zoomFitHeightIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/zoomFitHeightIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/zoomFitHeightIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/zoomFitHeightIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/zoomFitHeightIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/zoomFitHeightIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/zoomFitWidthIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/zoomFitWidthIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/zoomFitWidthIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/zoomFitWidthIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/zoomFitWidthIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/zoomFitWidthIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/zoomInIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/zoomInIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/zoomInIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/zoomInIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/zoomInIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/zoomInIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/zoomOutIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/zoomOutIcon_24.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/zoomOutIcon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/zoomOutIcon_32.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/png/zoomOutIcon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/png/zoomOutIcon_48.png -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/redIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/redIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/redoIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/redoIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/rulerIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/rulerIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/saveIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/saveIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/savePDFIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/savePDFIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/selectIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/selectIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/solidPatternIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/solidPatternIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/svg2png.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/svg2png.sh -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/thickPenWidthIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/thickPenWidthIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/undoIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/undoIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/veryFinePenWidthIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/veryFinePenWidthIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/veryThickPenWidthIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/veryThickPenWidthIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/whiteIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/whiteIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/yellowIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/yellowIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/zoomFitHeightIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/zoomFitHeightIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/zoomFitWidthIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/zoomFitWidthIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/zoomInIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/zoomInIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/Icons/zoomOutIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/Icons/zoomOutIcon.svg -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/MrWriterIcon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/MrWriterIcon.pdf -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/MrWriterIcons.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/MrWriterIcons.pdf -------------------------------------------------------------------------------- /MrWriter_artwork_Inkscape/MyIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MrWriter_artwork_Inkscape/MyIcon.icns -------------------------------------------------------------------------------- /MyIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MyIcon.icns -------------------------------------------------------------------------------- /MyIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MyIcon.ico -------------------------------------------------------------------------------- /MyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MyIcon.png -------------------------------------------------------------------------------- /MyIcon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/MyIcon128.png -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/README.adoc -------------------------------------------------------------------------------- /Readme/MrWriter.moj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/Readme/MrWriter.moj -------------------------------------------------------------------------------- /Readme/MrWriterLin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/Readme/MrWriterLin.png -------------------------------------------------------------------------------- /Readme/MrWriterMac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/Readme/MrWriterMac.png -------------------------------------------------------------------------------- /Readme/MrWriterWin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/Readme/MrWriterWin.png -------------------------------------------------------------------------------- /abstracttextbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/abstracttextbox.cpp -------------------------------------------------------------------------------- /abstracttextbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/abstracttextbox.h -------------------------------------------------------------------------------- /check_releases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/check_releases.sh -------------------------------------------------------------------------------- /colorbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/colorbutton.cpp -------------------------------------------------------------------------------- /colorbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/colorbutton.h -------------------------------------------------------------------------------- /commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/commands.cpp -------------------------------------------------------------------------------- /commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/commands.h -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/deploy.sh -------------------------------------------------------------------------------- /document.clang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/document.clang.cpp -------------------------------------------------------------------------------- /document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/document.cpp -------------------------------------------------------------------------------- /document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/document.h -------------------------------------------------------------------------------- /documentation/MrWriterDoc.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/documentation/MrWriterDoc.adoc -------------------------------------------------------------------------------- /documentation/MrWriterDoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/documentation/MrWriterDoc.html -------------------------------------------------------------------------------- /documentation/MrWriterDoc.qch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/documentation/MrWriterDoc.qch -------------------------------------------------------------------------------- /documentation/MrWriterDoc.qhq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/documentation/MrWriterDoc.qhq -------------------------------------------------------------------------------- /documentation/Release_Howto.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/documentation/Release_Howto.adoc -------------------------------------------------------------------------------- /documentation/collection.qhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/documentation/collection.qhc -------------------------------------------------------------------------------- /documentation/collection.qhcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/documentation/collection.qhcp -------------------------------------------------------------------------------- /documentation/line-based-file-format.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/documentation/line-based-file-format.adoc -------------------------------------------------------------------------------- /documentation/makeHelp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/documentation/makeHelp.sh -------------------------------------------------------------------------------- /documentation/pen_button_menu.moj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/documentation/pen_button_menu.moj -------------------------------------------------------------------------------- /images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/.DS_Store -------------------------------------------------------------------------------- /images/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/Icon1024.png -------------------------------------------------------------------------------- /images/blackIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/blackIcon.png -------------------------------------------------------------------------------- /images/blueIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/blueIcon.png -------------------------------------------------------------------------------- /images/circleCursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/circleCursor.png -------------------------------------------------------------------------------- /images/circleCursorMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/circleCursorMask.png -------------------------------------------------------------------------------- /images/circleIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/circleIcon.png -------------------------------------------------------------------------------- /images/copyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/copyIcon.png -------------------------------------------------------------------------------- /images/cutIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/cutIcon.png -------------------------------------------------------------------------------- /images/dashDotPatternIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/dashDotPatternIcon.png -------------------------------------------------------------------------------- /images/dashPatternIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/dashPatternIcon.png -------------------------------------------------------------------------------- /images/dotPatternIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/dotPatternIcon.png -------------------------------------------------------------------------------- /images/eraserCursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/eraserCursor.png -------------------------------------------------------------------------------- /images/eraserCursorMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/eraserCursorMask.png -------------------------------------------------------------------------------- /images/eraserIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/eraserIcon.png -------------------------------------------------------------------------------- /images/finePenWidthIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/finePenWidthIcon.png -------------------------------------------------------------------------------- /images/fullscreenIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/fullscreenIcon.png -------------------------------------------------------------------------------- /images/grayIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/grayIcon.png -------------------------------------------------------------------------------- /images/greenIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/greenIcon.png -------------------------------------------------------------------------------- /images/handIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/handIcon.png -------------------------------------------------------------------------------- /images/lightblueIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/lightblueIcon.png -------------------------------------------------------------------------------- /images/lightgreenIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/lightgreenIcon.png -------------------------------------------------------------------------------- /images/magentaIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/magentaIcon.png -------------------------------------------------------------------------------- /images/mediumPenWidthIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/mediumPenWidthIcon.png -------------------------------------------------------------------------------- /images/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/new.png -------------------------------------------------------------------------------- /images/newGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/newGray.png -------------------------------------------------------------------------------- /images/newIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/newIcon.png -------------------------------------------------------------------------------- /images/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/open.png -------------------------------------------------------------------------------- /images/openIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/openIcon.png -------------------------------------------------------------------------------- /images/orangeIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/orangeIcon.png -------------------------------------------------------------------------------- /images/pageDownIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/pageDownIcon.png -------------------------------------------------------------------------------- /images/pageDownPlusIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/pageDownPlusIcon.png -------------------------------------------------------------------------------- /images/pageFirstIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/pageFirstIcon.png -------------------------------------------------------------------------------- /images/pageLastIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/pageLastIcon.png -------------------------------------------------------------------------------- /images/pageUpIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/pageUpIcon.png -------------------------------------------------------------------------------- /images/pasteIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/pasteIcon.png -------------------------------------------------------------------------------- /images/penCursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/penCursor.png -------------------------------------------------------------------------------- /images/penCursor2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/penCursor2.png -------------------------------------------------------------------------------- /images/penCursor2Mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/penCursor2Mask.png -------------------------------------------------------------------------------- /images/penCursor3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/penCursor3.png -------------------------------------------------------------------------------- /images/penCursor3Mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/penCursor3Mask.png -------------------------------------------------------------------------------- /images/penCursorMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/penCursorMask.png -------------------------------------------------------------------------------- /images/penIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/penIcon.png -------------------------------------------------------------------------------- /images/redIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/redIcon.png -------------------------------------------------------------------------------- /images/redoIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/redoIcon.png -------------------------------------------------------------------------------- /images/rulerCursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/rulerCursor.png -------------------------------------------------------------------------------- /images/rulerCursorMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/rulerCursorMask.png -------------------------------------------------------------------------------- /images/rulerIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/rulerIcon.png -------------------------------------------------------------------------------- /images/saveIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/saveIcon.png -------------------------------------------------------------------------------- /images/savePDFIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/savePDFIcon.png -------------------------------------------------------------------------------- /images/selectIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/selectIcon.png -------------------------------------------------------------------------------- /images/solidPatternIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/solidPatternIcon.png -------------------------------------------------------------------------------- /images/thickPenWidthIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/thickPenWidthIcon.png -------------------------------------------------------------------------------- /images/undoIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/undoIcon.png -------------------------------------------------------------------------------- /images/veryFinePenWidthIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/veryFinePenWidthIcon.png -------------------------------------------------------------------------------- /images/veryThickPenWidthIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/veryThickPenWidthIcon.png -------------------------------------------------------------------------------- /images/whiteIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/whiteIcon.png -------------------------------------------------------------------------------- /images/yellowIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/yellowIcon.png -------------------------------------------------------------------------------- /images/zoomFitHeightIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/zoomFitHeightIcon.png -------------------------------------------------------------------------------- /images/zoomFitWidthIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/zoomFitWidthIcon.png -------------------------------------------------------------------------------- /images/zoomInIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/zoomInIcon.png -------------------------------------------------------------------------------- /images/zoomOutIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/zoomOutIcon.png -------------------------------------------------------------------------------- /images/zoom_fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/zoom_fit.png -------------------------------------------------------------------------------- /images/zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/zoom_in.png -------------------------------------------------------------------------------- /images/zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/images/zoom_out.png -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/mainwindow.h -------------------------------------------------------------------------------- /make_doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/make_doc.sh -------------------------------------------------------------------------------- /markdownbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/markdownbox.cpp -------------------------------------------------------------------------------- /markdownbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/markdownbox.h -------------------------------------------------------------------------------- /markdownselection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/markdownselection.cpp -------------------------------------------------------------------------------- /markdownselection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/markdownselection.h -------------------------------------------------------------------------------- /mrdoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/mrdoc.h -------------------------------------------------------------------------------- /myresource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/myresource.qrc -------------------------------------------------------------------------------- /page.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/page.cpp -------------------------------------------------------------------------------- /page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/page.h -------------------------------------------------------------------------------- /pagesettingsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/pagesettingsdialog.cpp -------------------------------------------------------------------------------- /pagesettingsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/pagesettingsdialog.h -------------------------------------------------------------------------------- /qcompressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/qcompressor.cpp -------------------------------------------------------------------------------- /qcompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/qcompressor.h -------------------------------------------------------------------------------- /searchbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/searchbar.cpp -------------------------------------------------------------------------------- /searchbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/searchbar.h -------------------------------------------------------------------------------- /searchbar.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/searchbar.ui -------------------------------------------------------------------------------- /selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/selection.cpp -------------------------------------------------------------------------------- /selection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/selection.h -------------------------------------------------------------------------------- /stroke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/stroke.cpp -------------------------------------------------------------------------------- /stroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/stroke.h -------------------------------------------------------------------------------- /tabletapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/tabletapplication.cpp -------------------------------------------------------------------------------- /tabletapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/tabletapplication.h -------------------------------------------------------------------------------- /test_document/generate_test_document.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/test_document/generate_test_document.sh -------------------------------------------------------------------------------- /test_document/parts/footer.part.moj: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test_document/parts/header.part.moj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/test_document/parts/header.part.moj -------------------------------------------------------------------------------- /test_document/parts/page.part.moj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/test_document/parts/page.part.moj -------------------------------------------------------------------------------- /textbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/textbox.cpp -------------------------------------------------------------------------------- /textbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/textbox.h -------------------------------------------------------------------------------- /tictoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/tictoc.h -------------------------------------------------------------------------------- /version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/version.h -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | -------------------------------------------------------------------------------- /website/MrWriterDoc.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/MrWriterDoc.adoc -------------------------------------------------------------------------------- /website/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/_config.yml -------------------------------------------------------------------------------- /website/_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/_includes/footer.html -------------------------------------------------------------------------------- /website/_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/_includes/head.html -------------------------------------------------------------------------------- /website/_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/_includes/header.html -------------------------------------------------------------------------------- /website/_includes/icon-github.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/_includes/icon-github.html -------------------------------------------------------------------------------- /website/_includes/icon-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/_includes/icon-github.svg -------------------------------------------------------------------------------- /website/_includes/icon-twitter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/_includes/icon-twitter.html -------------------------------------------------------------------------------- /website/_includes/icon-twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/_includes/icon-twitter.svg -------------------------------------------------------------------------------- /website/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/_layouts/default.html -------------------------------------------------------------------------------- /website/_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/_layouts/page.html -------------------------------------------------------------------------------- /website/_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/_layouts/post.html -------------------------------------------------------------------------------- /website/_posts/2016-01-24-welcome-to-jekyll.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/_posts/2016-01-24-welcome-to-jekyll.markdown -------------------------------------------------------------------------------- /website/_sass/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/_sass/_base.scss -------------------------------------------------------------------------------- /website/_sass/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/_sass/_layout.scss -------------------------------------------------------------------------------- /website/_sass/_syntax-highlighting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/_sass/_syntax-highlighting.scss -------------------------------------------------------------------------------- /website/about.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/about.adoc -------------------------------------------------------------------------------- /website/css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/css/main.scss -------------------------------------------------------------------------------- /website/downloads.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/downloads.adoc -------------------------------------------------------------------------------- /website/feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/feed.xml -------------------------------------------------------------------------------- /website/images/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/Icon1024.png -------------------------------------------------------------------------------- /website/images/MrWriterIcon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/MrWriterIcon.pdf -------------------------------------------------------------------------------- /website/images/MrWriterIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/MrWriterIcon.svg -------------------------------------------------------------------------------- /website/images/MrWriterLin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/MrWriterLin.png -------------------------------------------------------------------------------- /website/images/MrWriterMac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/MrWriterMac.png -------------------------------------------------------------------------------- /website/images/MrWriterWin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/MrWriterWin.png -------------------------------------------------------------------------------- /website/images/blackIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/blackIcon.png -------------------------------------------------------------------------------- /website/images/blueIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/blueIcon.png -------------------------------------------------------------------------------- /website/images/circleIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/circleIcon.png -------------------------------------------------------------------------------- /website/images/copyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/copyIcon.png -------------------------------------------------------------------------------- /website/images/cutIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/cutIcon.png -------------------------------------------------------------------------------- /website/images/dashDotPatternIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/dashDotPatternIcon.png -------------------------------------------------------------------------------- /website/images/dashPatternIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/dashPatternIcon.png -------------------------------------------------------------------------------- /website/images/dotPatternIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/dotPatternIcon.png -------------------------------------------------------------------------------- /website/images/eraserIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/eraserIcon.png -------------------------------------------------------------------------------- /website/images/finePenWidthIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/finePenWidthIcon.png -------------------------------------------------------------------------------- /website/images/fullscreenIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/fullscreenIcon.png -------------------------------------------------------------------------------- /website/images/grayIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/grayIcon.png -------------------------------------------------------------------------------- /website/images/greenIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/greenIcon.png -------------------------------------------------------------------------------- /website/images/handIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/handIcon.png -------------------------------------------------------------------------------- /website/images/lightblueIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/lightblueIcon.png -------------------------------------------------------------------------------- /website/images/lightgreenIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/lightgreenIcon.png -------------------------------------------------------------------------------- /website/images/magentaIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/magentaIcon.png -------------------------------------------------------------------------------- /website/images/mediumPenWidthIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/mediumPenWidthIcon.png -------------------------------------------------------------------------------- /website/images/newIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/newIcon.png -------------------------------------------------------------------------------- /website/images/openIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/openIcon.png -------------------------------------------------------------------------------- /website/images/orangeIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/orangeIcon.png -------------------------------------------------------------------------------- /website/images/pageDownIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/pageDownIcon.png -------------------------------------------------------------------------------- /website/images/pageDownPlusIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/pageDownPlusIcon.png -------------------------------------------------------------------------------- /website/images/pageFirstIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/pageFirstIcon.png -------------------------------------------------------------------------------- /website/images/pageLastIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/pageLastIcon.png -------------------------------------------------------------------------------- /website/images/pageUpIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/pageUpIcon.png -------------------------------------------------------------------------------- /website/images/pasteIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/pasteIcon.png -------------------------------------------------------------------------------- /website/images/penIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/penIcon.png -------------------------------------------------------------------------------- /website/images/redIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/redIcon.png -------------------------------------------------------------------------------- /website/images/redoIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/redoIcon.png -------------------------------------------------------------------------------- /website/images/rulerIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/rulerIcon.png -------------------------------------------------------------------------------- /website/images/saveIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/saveIcon.png -------------------------------------------------------------------------------- /website/images/savePDFIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/savePDFIcon.png -------------------------------------------------------------------------------- /website/images/selectIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/selectIcon.png -------------------------------------------------------------------------------- /website/images/solidPatternIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/solidPatternIcon.png -------------------------------------------------------------------------------- /website/images/thickPenWidthIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/thickPenWidthIcon.png -------------------------------------------------------------------------------- /website/images/undoIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/undoIcon.png -------------------------------------------------------------------------------- /website/images/veryFinePenWidthIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/veryFinePenWidthIcon.png -------------------------------------------------------------------------------- /website/images/veryThickPenWidthIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/veryThickPenWidthIcon.png -------------------------------------------------------------------------------- /website/images/whiteIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/whiteIcon.png -------------------------------------------------------------------------------- /website/images/yellowIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/yellowIcon.png -------------------------------------------------------------------------------- /website/images/zoomFitHeightIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/zoomFitHeightIcon.png -------------------------------------------------------------------------------- /website/images/zoomFitWidthIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/zoomFitWidthIcon.png -------------------------------------------------------------------------------- /website/images/zoomInIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/zoomInIcon.png -------------------------------------------------------------------------------- /website/images/zoomOutIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/images/zoomOutIcon.png -------------------------------------------------------------------------------- /website/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/index.adoc -------------------------------------------------------------------------------- /website/other/MrWriterDoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/other/MrWriterDoc.html -------------------------------------------------------------------------------- /website/screenshots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/website/screenshots.md -------------------------------------------------------------------------------- /widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/widget.cpp -------------------------------------------------------------------------------- /widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexD97/MrWriter/HEAD/widget.h --------------------------------------------------------------------------------