gtfuhr / AllegroTextEditor

Text editor created using the Graphical Library allegro.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Allegro Text Editor

A text editor created using Allegro that has the following functionalities.

  • Add text
  • Remove text
  • Break lines
  • Concatenate rows
  • Scroll the screen along the text (Downwards and upwards)
  • Save the text on the file saida.txt

How to compile the editor:

First things first! You will need the allegro 5 library installed in your system, it is quite lightweigth:

sudo apt-get update
sudo apt-get install liballegro5-dev

After that, go to the AllegroTextEditor directory and do the following instructions:

make clean
make
./principal

Controls:

  • CTRL+q EXIT
  • CTRL+s Save and stop editing
  • CTRL+e Start editing
  • CTRL+b Split line on the cursor
  • CTRL+g Concatenate lines
  • ARROW-KEYS Cursor movement

About

Text editor created using the Graphical Library allegro.


Languages

Language:C++ 98.9%Language:Makefile 1.1%