├── .gitignore ├── ForBeginnersRU.txt ├── LICENSE ├── README.md ├── archive ├── 1_icons │ ├── 108x108 │ │ └── harbour-editor.png │ ├── 128x128 │ │ └── harbour-editor.png │ ├── 256x256 │ │ └── harbour-editor.png │ └── 86x86 │ │ └── harbour-editor.png ├── 2_icons │ ├── 108x108 │ │ └── harbour-editor.png │ ├── 128x128 │ │ └── harbour-editor.png │ ├── 256x256 │ │ └── harbour-editor.png │ └── 86x86 │ │ └── harbour-editor.png └── presentations │ ├── Editor..pdf │ ├── Editor..pptx │ └── Editor.v1.pptx ├── harbour-editor.desktop ├── harbour-editor.pro ├── icons ├── 108x108 │ └── harbour-editor.png ├── 128x128 │ └── harbour-editor.png ├── 172x172 │ └── harbour-editor.png ├── 256x256 │ └── harbour-editor.png └── 86x86 │ └── harbour-editor.png ├── qml ├── components │ ├── AuthorRow.qml │ ├── MenuButton.qml │ └── pullMenus │ │ └── rows │ │ ├── EditRow.qml │ │ ├── MainRow.qml │ │ └── SearchRow.qml ├── cover │ └── CoverPage.qml ├── editFile.py ├── harbour-editor.qml ├── img │ ├── icon-m-code.svg │ ├── icon-m-history.svg │ ├── icon-m-open.svg │ ├── icon-m-qnote.svg │ ├── icon-m-save.svg │ └── icon-m-tab.svg ├── pages │ ├── AboutPage.qml │ ├── FileChooserPage.qml │ ├── FirstPage.qml │ ├── HistoryPage.qml │ ├── QuickNotePage.qml │ ├── SaveAsPage.qml │ └── SettingsPage.qml └── scripts │ └── RecalcLines.js ├── rpm ├── harbour-editor.changes.ex ├── harbour-editor.changes.in ├── harbour-editor.spec └── harbour-editor.yaml ├── src ├── dictionaries │ ├── javascript.txt │ ├── keywords.txt │ ├── properties.txt │ ├── python.txt │ ├── qml.txt │ └── sh.txt ├── dictionarys.qrc ├── documenthandler.cpp ├── documenthandler.h ├── generallogic.cpp ├── generallogic.h ├── harbour-editor.cpp ├── realhighlighter.cpp └── realhighlighter.h └── translations ├── harbour-editor-de.ts ├── harbour-editor-es.ts ├── harbour-editor-fr.ts ├── harbour-editor-nl.ts ├── harbour-editor-pl.ts ├── harbour-editor-ru.ts ├── harbour-editor-sv.ts ├── harbour-editor-zh_CN.ts └── harbour-editor.ts /.gitignore: -------------------------------------------------------------------------------- 1 | *.user 2 | -------------------------------------------------------------------------------- /ForBeginnersRU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/ForBeginnersRU.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/README.md -------------------------------------------------------------------------------- /archive/1_icons/108x108/harbour-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/archive/1_icons/108x108/harbour-editor.png -------------------------------------------------------------------------------- /archive/1_icons/128x128/harbour-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/archive/1_icons/128x128/harbour-editor.png -------------------------------------------------------------------------------- /archive/1_icons/256x256/harbour-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/archive/1_icons/256x256/harbour-editor.png -------------------------------------------------------------------------------- /archive/1_icons/86x86/harbour-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/archive/1_icons/86x86/harbour-editor.png -------------------------------------------------------------------------------- /archive/2_icons/108x108/harbour-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/archive/2_icons/108x108/harbour-editor.png -------------------------------------------------------------------------------- /archive/2_icons/128x128/harbour-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/archive/2_icons/128x128/harbour-editor.png -------------------------------------------------------------------------------- /archive/2_icons/256x256/harbour-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/archive/2_icons/256x256/harbour-editor.png -------------------------------------------------------------------------------- /archive/2_icons/86x86/harbour-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/archive/2_icons/86x86/harbour-editor.png -------------------------------------------------------------------------------- /archive/presentations/Editor..pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/archive/presentations/Editor..pdf -------------------------------------------------------------------------------- /archive/presentations/Editor..pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/archive/presentations/Editor..pptx -------------------------------------------------------------------------------- /archive/presentations/Editor.v1.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/archive/presentations/Editor.v1.pptx -------------------------------------------------------------------------------- /harbour-editor.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/harbour-editor.desktop -------------------------------------------------------------------------------- /harbour-editor.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/harbour-editor.pro -------------------------------------------------------------------------------- /icons/108x108/harbour-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/icons/108x108/harbour-editor.png -------------------------------------------------------------------------------- /icons/128x128/harbour-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/icons/128x128/harbour-editor.png -------------------------------------------------------------------------------- /icons/172x172/harbour-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/icons/172x172/harbour-editor.png -------------------------------------------------------------------------------- /icons/256x256/harbour-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/icons/256x256/harbour-editor.png -------------------------------------------------------------------------------- /icons/86x86/harbour-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/icons/86x86/harbour-editor.png -------------------------------------------------------------------------------- /qml/components/AuthorRow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/qml/components/AuthorRow.qml -------------------------------------------------------------------------------- /qml/components/MenuButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/qml/components/MenuButton.qml -------------------------------------------------------------------------------- /qml/components/pullMenus/rows/EditRow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/qml/components/pullMenus/rows/EditRow.qml -------------------------------------------------------------------------------- /qml/components/pullMenus/rows/MainRow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/qml/components/pullMenus/rows/MainRow.qml -------------------------------------------------------------------------------- /qml/components/pullMenus/rows/SearchRow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/qml/components/pullMenus/rows/SearchRow.qml -------------------------------------------------------------------------------- /qml/cover/CoverPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/qml/cover/CoverPage.qml -------------------------------------------------------------------------------- /qml/editFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/qml/editFile.py -------------------------------------------------------------------------------- /qml/harbour-editor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/qml/harbour-editor.qml -------------------------------------------------------------------------------- /qml/img/icon-m-code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/qml/img/icon-m-code.svg -------------------------------------------------------------------------------- /qml/img/icon-m-history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/qml/img/icon-m-history.svg -------------------------------------------------------------------------------- /qml/img/icon-m-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/qml/img/icon-m-open.svg -------------------------------------------------------------------------------- /qml/img/icon-m-qnote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/qml/img/icon-m-qnote.svg -------------------------------------------------------------------------------- /qml/img/icon-m-save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/qml/img/icon-m-save.svg -------------------------------------------------------------------------------- /qml/img/icon-m-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/qml/img/icon-m-tab.svg -------------------------------------------------------------------------------- /qml/pages/AboutPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/qml/pages/AboutPage.qml -------------------------------------------------------------------------------- /qml/pages/FileChooserPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/qml/pages/FileChooserPage.qml -------------------------------------------------------------------------------- /qml/pages/FirstPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/qml/pages/FirstPage.qml -------------------------------------------------------------------------------- /qml/pages/HistoryPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/qml/pages/HistoryPage.qml -------------------------------------------------------------------------------- /qml/pages/QuickNotePage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/qml/pages/QuickNotePage.qml -------------------------------------------------------------------------------- /qml/pages/SaveAsPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/qml/pages/SaveAsPage.qml -------------------------------------------------------------------------------- /qml/pages/SettingsPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/qml/pages/SettingsPage.qml -------------------------------------------------------------------------------- /qml/scripts/RecalcLines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/qml/scripts/RecalcLines.js -------------------------------------------------------------------------------- /rpm/harbour-editor.changes.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/rpm/harbour-editor.changes.ex -------------------------------------------------------------------------------- /rpm/harbour-editor.changes.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/rpm/harbour-editor.changes.in -------------------------------------------------------------------------------- /rpm/harbour-editor.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/rpm/harbour-editor.spec -------------------------------------------------------------------------------- /rpm/harbour-editor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/rpm/harbour-editor.yaml -------------------------------------------------------------------------------- /src/dictionaries/javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/src/dictionaries/javascript.txt -------------------------------------------------------------------------------- /src/dictionaries/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/src/dictionaries/keywords.txt -------------------------------------------------------------------------------- /src/dictionaries/properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/src/dictionaries/properties.txt -------------------------------------------------------------------------------- /src/dictionaries/python.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/src/dictionaries/python.txt -------------------------------------------------------------------------------- /src/dictionaries/qml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/src/dictionaries/qml.txt -------------------------------------------------------------------------------- /src/dictionaries/sh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/src/dictionaries/sh.txt -------------------------------------------------------------------------------- /src/dictionarys.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/src/dictionarys.qrc -------------------------------------------------------------------------------- /src/documenthandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/src/documenthandler.cpp -------------------------------------------------------------------------------- /src/documenthandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/src/documenthandler.h -------------------------------------------------------------------------------- /src/generallogic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/src/generallogic.cpp -------------------------------------------------------------------------------- /src/generallogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/src/generallogic.h -------------------------------------------------------------------------------- /src/harbour-editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/src/harbour-editor.cpp -------------------------------------------------------------------------------- /src/realhighlighter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/src/realhighlighter.cpp -------------------------------------------------------------------------------- /src/realhighlighter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/src/realhighlighter.h -------------------------------------------------------------------------------- /translations/harbour-editor-de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/translations/harbour-editor-de.ts -------------------------------------------------------------------------------- /translations/harbour-editor-es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/translations/harbour-editor-es.ts -------------------------------------------------------------------------------- /translations/harbour-editor-fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/translations/harbour-editor-fr.ts -------------------------------------------------------------------------------- /translations/harbour-editor-nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/translations/harbour-editor-nl.ts -------------------------------------------------------------------------------- /translations/harbour-editor-pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/translations/harbour-editor-pl.ts -------------------------------------------------------------------------------- /translations/harbour-editor-ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/translations/harbour-editor-ru.ts -------------------------------------------------------------------------------- /translations/harbour-editor-sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/translations/harbour-editor-sv.ts -------------------------------------------------------------------------------- /translations/harbour-editor-zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/translations/harbour-editor-zh_CN.ts -------------------------------------------------------------------------------- /translations/harbour-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAlexander/harbour-editor/HEAD/translations/harbour-editor.ts --------------------------------------------------------------------------------