Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xuchunyang/text-editor-with-webkitgtk
A simple Rich Text Editor base on WebKitGTK+
https://github.com/xuchunyang/text-editor-with-webkitgtk
Last synced: about 1 month ago
JSON representation
A simple Rich Text Editor base on WebKitGTK+
- Host: GitHub
- URL: https://github.com/xuchunyang/text-editor-with-webkitgtk
- Owner: xuchunyang
- Created: 2014-04-25T02:49:15.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-05-03T03:31:36.000Z (over 10 years ago)
- Last Synced: 2024-10-16T01:45:56.366Z (3 months ago)
- Language: C
- Size: 230 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## About
A simple rich text editor using Gtk+/WebKit## Build && Run
```shell
$ cd src/
$ gcc main.c `pkg-config --cflags --libs gtk+-3.0 webkit2gtk-3.0`
$ ./a.out
```## TODO
- [x] Use GtkApplication class
- [x] Create window UI (menubar, toolbar and gmenu) with XML and GtkBuilder
- [x] Renderer html using WebKit1 API
- [x] Set html editable and change text style with js (Rich text editor)
- [x] Port to WebKit2 API
- [ ] Use CSS to customize background## Possible Questions
* How to debugg Gtk+ app?* What is the main difference between WebKitGTK+ API and WebKit2Gtk+ API?
* What are the advantages and disadvantages of using WebKit to create text editor?