├── .gitignore ├── README.md ├── icon.png ├── makefile ├── setup.txt └── src ├── .DS_Store ├── gfx ├── .DS_Store ├── about_icon.c ├── about_icon.h ├── about_icon.png ├── convimg.yaml ├── default_colors.png ├── exit_icon.c ├── exit_icon.h ├── exit_icon.png ├── gfx.h ├── help.c ├── help.h ├── help.png ├── hide.c ├── hide.h ├── hide.png ├── hide3.png ├── left_arrow.c ├── left_arrow.h ├── left_arrow.png ├── lock_off.c ├── lock_off.h ├── lock_off.png ├── lock_on.c ├── lock_on.h ├── lock_on.png ├── more.c ├── more.h ├── more.png ├── new_icon.c ├── new_icon.h ├── new_icon.png ├── open.c ├── open.h ├── open.png ├── palette.c ├── palette.h ├── quit.c ├── quit.h ├── quit.png ├── refresh_icon.c ├── refresh_icon.h ├── refresh_icon.png ├── rename.c ├── rename.h ├── rename.png ├── right_arrow.c ├── right_arrow.h ├── right_arrow.png ├── settings.c ├── settings.h ├── settings3.png ├── settings_gear.c ├── settings_gear.h ├── settings_gear.png ├── sprites │ └── settings.png ├── title_sprite.c ├── title_sprite.h ├── title_sprite.png ├── trash.c ├── trash.h └── trash.png ├── includes ├── buffer.h ├── characters.h ├── clipboard.h ├── colors.h ├── editor.h ├── file.h ├── homescreen.h ├── key.h ├── menues.h ├── text.h └── ui.h ├── includesCode ├── .DS_Store ├── buffer.c ├── clipboard.c ├── editor.c ├── file.c ├── homescreen.c ├── key.c ├── menues.c ├── text.c └── ui.c ├── main.c └── main.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/README.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/icon.png -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/makefile -------------------------------------------------------------------------------- /setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/setup.txt -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/gfx/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/.DS_Store -------------------------------------------------------------------------------- /src/gfx/about_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/about_icon.c -------------------------------------------------------------------------------- /src/gfx/about_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/about_icon.h -------------------------------------------------------------------------------- /src/gfx/about_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/about_icon.png -------------------------------------------------------------------------------- /src/gfx/convimg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/convimg.yaml -------------------------------------------------------------------------------- /src/gfx/default_colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/default_colors.png -------------------------------------------------------------------------------- /src/gfx/exit_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/exit_icon.c -------------------------------------------------------------------------------- /src/gfx/exit_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/exit_icon.h -------------------------------------------------------------------------------- /src/gfx/exit_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/exit_icon.png -------------------------------------------------------------------------------- /src/gfx/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/gfx.h -------------------------------------------------------------------------------- /src/gfx/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/help.c -------------------------------------------------------------------------------- /src/gfx/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/help.h -------------------------------------------------------------------------------- /src/gfx/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/help.png -------------------------------------------------------------------------------- /src/gfx/hide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/hide.c -------------------------------------------------------------------------------- /src/gfx/hide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/hide.h -------------------------------------------------------------------------------- /src/gfx/hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/hide.png -------------------------------------------------------------------------------- /src/gfx/hide3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/hide3.png -------------------------------------------------------------------------------- /src/gfx/left_arrow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/left_arrow.c -------------------------------------------------------------------------------- /src/gfx/left_arrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/left_arrow.h -------------------------------------------------------------------------------- /src/gfx/left_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/left_arrow.png -------------------------------------------------------------------------------- /src/gfx/lock_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/lock_off.c -------------------------------------------------------------------------------- /src/gfx/lock_off.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/lock_off.h -------------------------------------------------------------------------------- /src/gfx/lock_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/lock_off.png -------------------------------------------------------------------------------- /src/gfx/lock_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/lock_on.c -------------------------------------------------------------------------------- /src/gfx/lock_on.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/lock_on.h -------------------------------------------------------------------------------- /src/gfx/lock_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/lock_on.png -------------------------------------------------------------------------------- /src/gfx/more.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/more.c -------------------------------------------------------------------------------- /src/gfx/more.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/more.h -------------------------------------------------------------------------------- /src/gfx/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/more.png -------------------------------------------------------------------------------- /src/gfx/new_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/new_icon.c -------------------------------------------------------------------------------- /src/gfx/new_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/new_icon.h -------------------------------------------------------------------------------- /src/gfx/new_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/new_icon.png -------------------------------------------------------------------------------- /src/gfx/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/open.c -------------------------------------------------------------------------------- /src/gfx/open.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/open.h -------------------------------------------------------------------------------- /src/gfx/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/open.png -------------------------------------------------------------------------------- /src/gfx/palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/palette.c -------------------------------------------------------------------------------- /src/gfx/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/palette.h -------------------------------------------------------------------------------- /src/gfx/quit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/quit.c -------------------------------------------------------------------------------- /src/gfx/quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/quit.h -------------------------------------------------------------------------------- /src/gfx/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/quit.png -------------------------------------------------------------------------------- /src/gfx/refresh_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/refresh_icon.c -------------------------------------------------------------------------------- /src/gfx/refresh_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/refresh_icon.h -------------------------------------------------------------------------------- /src/gfx/refresh_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/refresh_icon.png -------------------------------------------------------------------------------- /src/gfx/rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/rename.c -------------------------------------------------------------------------------- /src/gfx/rename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/rename.h -------------------------------------------------------------------------------- /src/gfx/rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/rename.png -------------------------------------------------------------------------------- /src/gfx/right_arrow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/right_arrow.c -------------------------------------------------------------------------------- /src/gfx/right_arrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/right_arrow.h -------------------------------------------------------------------------------- /src/gfx/right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/right_arrow.png -------------------------------------------------------------------------------- /src/gfx/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/settings.c -------------------------------------------------------------------------------- /src/gfx/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/settings.h -------------------------------------------------------------------------------- /src/gfx/settings3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/settings3.png -------------------------------------------------------------------------------- /src/gfx/settings_gear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/settings_gear.c -------------------------------------------------------------------------------- /src/gfx/settings_gear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/settings_gear.h -------------------------------------------------------------------------------- /src/gfx/settings_gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/settings_gear.png -------------------------------------------------------------------------------- /src/gfx/sprites/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/sprites/settings.png -------------------------------------------------------------------------------- /src/gfx/title_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/title_sprite.c -------------------------------------------------------------------------------- /src/gfx/title_sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/title_sprite.h -------------------------------------------------------------------------------- /src/gfx/title_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/title_sprite.png -------------------------------------------------------------------------------- /src/gfx/trash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/trash.c -------------------------------------------------------------------------------- /src/gfx/trash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/trash.h -------------------------------------------------------------------------------- /src/gfx/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/gfx/trash.png -------------------------------------------------------------------------------- /src/includes/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/includes/buffer.h -------------------------------------------------------------------------------- /src/includes/characters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/includes/characters.h -------------------------------------------------------------------------------- /src/includes/clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/includes/clipboard.h -------------------------------------------------------------------------------- /src/includes/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/includes/colors.h -------------------------------------------------------------------------------- /src/includes/editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/includes/editor.h -------------------------------------------------------------------------------- /src/includes/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/includes/file.h -------------------------------------------------------------------------------- /src/includes/homescreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/includes/homescreen.h -------------------------------------------------------------------------------- /src/includes/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/includes/key.h -------------------------------------------------------------------------------- /src/includes/menues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/includes/menues.h -------------------------------------------------------------------------------- /src/includes/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/includes/text.h -------------------------------------------------------------------------------- /src/includes/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/includes/ui.h -------------------------------------------------------------------------------- /src/includesCode/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/includesCode/.DS_Store -------------------------------------------------------------------------------- /src/includesCode/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/includesCode/buffer.c -------------------------------------------------------------------------------- /src/includesCode/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/includesCode/clipboard.c -------------------------------------------------------------------------------- /src/includesCode/editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/includesCode/editor.c -------------------------------------------------------------------------------- /src/includesCode/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/includesCode/file.c -------------------------------------------------------------------------------- /src/includesCode/homescreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/includesCode/homescreen.c -------------------------------------------------------------------------------- /src/includesCode/key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/includesCode/key.c -------------------------------------------------------------------------------- /src/includesCode/menues.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/includesCode/menues.c -------------------------------------------------------------------------------- /src/includesCode/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/includesCode/text.c -------------------------------------------------------------------------------- /src/includesCode/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/includesCode/ui.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randomguy70/SmartNotesCE/HEAD/src/main.h --------------------------------------------------------------------------------