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.
- Host: GitHub
- URL: https://github.com/mavroprovato/qt-scintilla-editor
- Owner: mavroprovato
- License: gpl-3.0
- Created: 2014-10-28T22:59:34.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2020-06-16T00:46:41.000Z (over 5 years ago)
- Last Synced: 2025-02-02T01:51:18.629Z (8 months ago)
- Topics: c-plus-plus, qt-framework, scintilla
- Language: C++
- Homepage: https://www.mavroprovato.net
- Size: 654 KB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 KokkorosThis 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 .
```