├── .gitignore ├── Editor.cpp ├── LICENSE ├── Makefile ├── README.md ├── fonts ├── DejaVuSansMono.ttf └── FreeMono.ttf ├── img ├── but_why.gif ├── moving_lines.gif └── super_example.gif ├── run.sh ├── src ├── Cursor.cpp ├── Cursor.h ├── EditorContent.cpp ├── EditorContent.h ├── EditorView.cpp ├── EditorView.h ├── ImplementationUtils.cpp ├── ImplementationUtils.h ├── InputController.cpp ├── InputController.h ├── SelectionData.cpp ├── SelectionData.h ├── SpecialChars.cpp ├── SpecialChars.h ├── TextDocument.cpp └── TextDocument.h └── txt └── textoDePruebaGuardado.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /Editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/Editor.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/README.md -------------------------------------------------------------------------------- /fonts/DejaVuSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/fonts/DejaVuSansMono.ttf -------------------------------------------------------------------------------- /fonts/FreeMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/fonts/FreeMono.ttf -------------------------------------------------------------------------------- /img/but_why.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/img/but_why.gif -------------------------------------------------------------------------------- /img/moving_lines.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/img/moving_lines.gif -------------------------------------------------------------------------------- /img/super_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/img/super_example.gif -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/run.sh -------------------------------------------------------------------------------- /src/Cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/src/Cursor.cpp -------------------------------------------------------------------------------- /src/Cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/src/Cursor.h -------------------------------------------------------------------------------- /src/EditorContent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/src/EditorContent.cpp -------------------------------------------------------------------------------- /src/EditorContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/src/EditorContent.h -------------------------------------------------------------------------------- /src/EditorView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/src/EditorView.cpp -------------------------------------------------------------------------------- /src/EditorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/src/EditorView.h -------------------------------------------------------------------------------- /src/ImplementationUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/src/ImplementationUtils.cpp -------------------------------------------------------------------------------- /src/ImplementationUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/src/ImplementationUtils.h -------------------------------------------------------------------------------- /src/InputController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/src/InputController.cpp -------------------------------------------------------------------------------- /src/InputController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/src/InputController.h -------------------------------------------------------------------------------- /src/SelectionData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/src/SelectionData.cpp -------------------------------------------------------------------------------- /src/SelectionData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/src/SelectionData.h -------------------------------------------------------------------------------- /src/SpecialChars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/src/SpecialChars.cpp -------------------------------------------------------------------------------- /src/SpecialChars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/src/SpecialChars.h -------------------------------------------------------------------------------- /src/TextDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/src/TextDocument.cpp -------------------------------------------------------------------------------- /src/TextDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonSeijo/text-editor/HEAD/src/TextDocument.h -------------------------------------------------------------------------------- /txt/textoDePruebaGuardado.txt: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------