An editor based on the Scintilla editor component, using the Qt framework.
In order to build the project, Scintilla and the QT component need to be built first. Clone the Scintilla repository in a directory that is at the same level with the project directory by running the following:
hg clone http://hg.code.sf.net/p/scintilla/code scintilla-code
Then build it with:
cd scintilla-code/qt/ScintillaEdit
python WidgetGen.py
qmake # use qmake CONFIG+=debug to build the debug version
make
Now you are ready to build the project. Change to the project directory and create a build directory with
mkdir build-release
cd build-release
cmake ..
make
Now you can run the editor like this:
./qt-scintilla-editor
Copyright (c) 2013-2020, Kostas Kokkoros
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.