Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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+

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?