Simple Text Editor built using SDL and C++ for a College Project. Main planned functionalities are:
- Basic Text Insertion/Deletion
- File Handling (text can be saved/imported)
- Special Keyboard Mappings (Ctrl-Z, etc.)
- Render Editor using software like SFML/SDL
- Implement a Cursor
- Enable Rich text functions (Bold, Italics, etc.)
├─ editor
│ ├─ Content.cpp
│ ├─ Content.h
│ ├─ Cursor.cpp
│ ├─ Cursor.h
│ ├─ Document.cpp
│ ├─ Document.h
│ └─ Utility.h
├─ fonts
│ ├─ JetBrainsMono-Light.ttf
│ ├─ JetBrainsMono-Regular.ttf
│ ├─ RobotoMono-Medium.ttf
│ └─ RobotoMono-Regular.ttf
├─ Makefile
├─ README.md
├─ input.txt
├─ main.cpp
└─ output.txt
Extract the files into a directory then run make && create
Omkar Prabhune: Junior in CSE Department at VIT, Pune