An open API service indexing awesome lists of open source software.

https://github.com/mavroprovato/qt-scintilla-editor

An editor based on the scintilla editor component, using the Qt framework.
https://github.com/mavroprovato/qt-scintilla-editor

c-plus-plus qt-framework scintilla

Last synced: 8 months ago
JSON representation

An editor based on the scintilla editor component, using the Qt framework.

Awesome Lists containing this project

README

          

Overview
========

An editor based on the Scintilla editor component, using the Qt framework.

Building
========

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:

```shell script
hg clone http://hg.code.sf.net/p/scintilla/code scintilla-code
```

Then build it with:

```shell script
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

```shell script
mkdir build-release
cd build-release
cmake ..
make
```

Now you can run the editor like this:

```shell script
./qt-scintilla-editor
```

License
=======

```
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 .
```