├── LICENSE ├── README.md ├── docs ├── Benchmark Results ├── COPYING ├── README ├── changelog └── install ├── memo └── README ├── resources ├── 1std1bit.bmp ├── 1std2bit.bmp ├── 1std8bit.bmp ├── 2std8bit.bmp ├── 3hi8bit.bmp ├── backspace.bmp ├── backspace_hi.bmp ├── down.bmp ├── down_hi.bmp ├── down_scroll.bmp ├── down_scroll_hi.bmp ├── down_scroll_pressed.bmp ├── down_scroll_pressed_hi.bmp ├── drag_arrow.bmp ├── drag_arrow_hi.bmp ├── folder_blue.bmp ├── fonts │ ├── narrowboldfont.bin │ ├── narrowfixedfont.bin │ ├── narrowfont.bin │ ├── smallboldfont_palm.bin │ ├── smallfont_palm.bin │ ├── stdfixedfont_palm.bin │ ├── stdfixedfont_sony.bin │ └── tinyfont_palm.bin ├── form.rcp ├── form.rcp.~1.3.~ ├── icon.bmp ├── icon2.bmp ├── icon8.bmp ├── iconsmall.bmp ├── left.bmp ├── left_hi.bmp ├── macro.bmp ├── macro_hi.bmp ├── padlock.bmp ├── padlock_bw.bmp ├── padlock_hi.bmp ├── ret_small.bmp ├── ret_small_hi.bmp ├── return.bmp ├── return_hi.bmp ├── return_smaller.bmp ├── return_smaller_hi.bmp ├── right.bmp ├── right_hi.bmp ├── sdcard.bmp ├── sdcard2.bmp ├── sdcard2_hi.bmp ├── sied.def ├── sied_icon8_hi.bmp ├── sied_icon_hi.bmp ├── tab.bmp ├── tab_hi.bmp ├── up.bmp ├── up_hi.bmp ├── up_scroll.bmp ├── up_scroll_hi.bmp ├── up_scroll_pressed.bmp ├── up_scroll_pressed_hi.bmp ├── uparrow.bmp └── uparrow_hi.bmp ├── scripts ├── Doxyfile ├── do_release.sh ├── log └── text_64k_palmos3 ├── src ├── AESLib │ └── AESLib.h ├── Makefile ├── cache_file_plugin.cc ├── cache_file_plugin.h ├── dirnode.cc ├── dirnode.h ├── div_dirnode.cc ├── div_dirnode.h ├── doc_dirnode.cc ├── doc_dirnode.h ├── doc_file_interface.cc ├── doc_file_interface.h ├── edit_interface.cc ├── edit_interface.h ├── editor.cc ├── editor.h ├── encrypt_file_plugin.cc ├── encrypt_file_plugin.h ├── error.cc ├── error.h ├── file_interface.cc ├── file_interface.h ├── file_plugin.cc ├── file_plugin.h ├── filedialog.cc ├── filedialog.h ├── filehandler.cc ├── filehandler.h ├── final_form.rcp ├── form_pos.h ├── main.cc ├── main.h ├── memchunk.cc ├── memchunk.h ├── memhandler.cc ├── memhandler.h ├── minibuffer.cc ├── minibuffer.h ├── pdb_dirnode.cc ├── pdb_dirnode.h ├── pdb_file_interface.cc ├── pdb_file_interface.h ├── preferences.cc ├── preferences.h ├── resources.cc ├── resources.h ├── root_dirnode.cc ├── root_dirnode.h ├── save_data.cc ├── sections.h ├── sha1.cc ├── sha1.h ├── sidocument.cc ├── sidocument.h ├── sied-sections.ld ├── sied-sections.o ├── sied-sections.s ├── sied_install ├── sikeyboard.cc ├── sikeyboard.h ├── simacrorecorder.cc ├── simacrorecorder.h ├── siscrollbar.cc ├── siscrollbar.h ├── test.cc ├── test.h ├── text_ca.h ├── text_resource.h ├── texthandler.cc ├── texthandler.h ├── textview.cc ├── textview.h ├── types.cc ├── types.h ├── updir_dirnode.cc ├── updir_dirnode.h ├── utility.cc ├── utility.h ├── vfs_dirnode.cc ├── vfs_dirnode.h ├── vfs_file_interface.cc ├── vfs_file_interface.h ├── vfsdir_dirnode.cc ├── vfsdir_dirnode.h ├── vfsfile_dirnode.cc ├── vfsfile_dirnode.h ├── vfsvol_dirnode.cc └── vfsvol_dirnode.h └── test_docs └── README /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/README.md -------------------------------------------------------------------------------- /docs/Benchmark Results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/docs/Benchmark Results -------------------------------------------------------------------------------- /docs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/docs/COPYING -------------------------------------------------------------------------------- /docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/docs/README -------------------------------------------------------------------------------- /docs/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/docs/changelog -------------------------------------------------------------------------------- /docs/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/docs/install -------------------------------------------------------------------------------- /memo/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/1std1bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/1std1bit.bmp -------------------------------------------------------------------------------- /resources/1std2bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/1std2bit.bmp -------------------------------------------------------------------------------- /resources/1std8bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/1std8bit.bmp -------------------------------------------------------------------------------- /resources/2std8bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/2std8bit.bmp -------------------------------------------------------------------------------- /resources/3hi8bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/3hi8bit.bmp -------------------------------------------------------------------------------- /resources/backspace.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/backspace.bmp -------------------------------------------------------------------------------- /resources/backspace_hi.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/backspace_hi.bmp -------------------------------------------------------------------------------- /resources/down.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/down.bmp -------------------------------------------------------------------------------- /resources/down_hi.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/down_hi.bmp -------------------------------------------------------------------------------- /resources/down_scroll.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/down_scroll.bmp -------------------------------------------------------------------------------- /resources/down_scroll_hi.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/down_scroll_hi.bmp -------------------------------------------------------------------------------- /resources/down_scroll_pressed.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/down_scroll_pressed.bmp -------------------------------------------------------------------------------- /resources/down_scroll_pressed_hi.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/down_scroll_pressed_hi.bmp -------------------------------------------------------------------------------- /resources/drag_arrow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/drag_arrow.bmp -------------------------------------------------------------------------------- /resources/drag_arrow_hi.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/drag_arrow_hi.bmp -------------------------------------------------------------------------------- /resources/folder_blue.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/folder_blue.bmp -------------------------------------------------------------------------------- /resources/fonts/narrowboldfont.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/fonts/narrowboldfont.bin -------------------------------------------------------------------------------- /resources/fonts/narrowfixedfont.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/fonts/narrowfixedfont.bin -------------------------------------------------------------------------------- /resources/fonts/narrowfont.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/fonts/narrowfont.bin -------------------------------------------------------------------------------- /resources/fonts/smallboldfont_palm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/fonts/smallboldfont_palm.bin -------------------------------------------------------------------------------- /resources/fonts/smallfont_palm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/fonts/smallfont_palm.bin -------------------------------------------------------------------------------- /resources/fonts/stdfixedfont_palm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/fonts/stdfixedfont_palm.bin -------------------------------------------------------------------------------- /resources/fonts/stdfixedfont_sony.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/fonts/stdfixedfont_sony.bin -------------------------------------------------------------------------------- /resources/fonts/tinyfont_palm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/fonts/tinyfont_palm.bin -------------------------------------------------------------------------------- /resources/form.rcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/form.rcp -------------------------------------------------------------------------------- /resources/form.rcp.~1.3.~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/form.rcp.~1.3.~ -------------------------------------------------------------------------------- /resources/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/icon.bmp -------------------------------------------------------------------------------- /resources/icon2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/icon2.bmp -------------------------------------------------------------------------------- /resources/icon8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/icon8.bmp -------------------------------------------------------------------------------- /resources/iconsmall.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/iconsmall.bmp -------------------------------------------------------------------------------- /resources/left.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/left.bmp -------------------------------------------------------------------------------- /resources/left_hi.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/left_hi.bmp -------------------------------------------------------------------------------- /resources/macro.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/macro.bmp -------------------------------------------------------------------------------- /resources/macro_hi.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/macro_hi.bmp -------------------------------------------------------------------------------- /resources/padlock.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/padlock.bmp -------------------------------------------------------------------------------- /resources/padlock_bw.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/padlock_bw.bmp -------------------------------------------------------------------------------- /resources/padlock_hi.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/padlock_hi.bmp -------------------------------------------------------------------------------- /resources/ret_small.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/ret_small.bmp -------------------------------------------------------------------------------- /resources/ret_small_hi.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/ret_small_hi.bmp -------------------------------------------------------------------------------- /resources/return.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/return.bmp -------------------------------------------------------------------------------- /resources/return_hi.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/return_hi.bmp -------------------------------------------------------------------------------- /resources/return_smaller.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/return_smaller.bmp -------------------------------------------------------------------------------- /resources/return_smaller_hi.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/return_smaller_hi.bmp -------------------------------------------------------------------------------- /resources/right.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/right.bmp -------------------------------------------------------------------------------- /resources/right_hi.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/right_hi.bmp -------------------------------------------------------------------------------- /resources/sdcard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/sdcard.bmp -------------------------------------------------------------------------------- /resources/sdcard2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/sdcard2.bmp -------------------------------------------------------------------------------- /resources/sdcard2_hi.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/sdcard2_hi.bmp -------------------------------------------------------------------------------- /resources/sied.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/sied.def -------------------------------------------------------------------------------- /resources/sied_icon8_hi.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/sied_icon8_hi.bmp -------------------------------------------------------------------------------- /resources/sied_icon_hi.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/sied_icon_hi.bmp -------------------------------------------------------------------------------- /resources/tab.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/tab.bmp -------------------------------------------------------------------------------- /resources/tab_hi.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/tab_hi.bmp -------------------------------------------------------------------------------- /resources/up.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/up.bmp -------------------------------------------------------------------------------- /resources/up_hi.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/up_hi.bmp -------------------------------------------------------------------------------- /resources/up_scroll.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/up_scroll.bmp -------------------------------------------------------------------------------- /resources/up_scroll_hi.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/up_scroll_hi.bmp -------------------------------------------------------------------------------- /resources/up_scroll_pressed.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/up_scroll_pressed.bmp -------------------------------------------------------------------------------- /resources/up_scroll_pressed_hi.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/up_scroll_pressed_hi.bmp -------------------------------------------------------------------------------- /resources/uparrow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/uparrow.bmp -------------------------------------------------------------------------------- /resources/uparrow_hi.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/resources/uparrow_hi.bmp -------------------------------------------------------------------------------- /scripts/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/scripts/Doxyfile -------------------------------------------------------------------------------- /scripts/do_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/scripts/do_release.sh -------------------------------------------------------------------------------- /scripts/log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/scripts/log -------------------------------------------------------------------------------- /scripts/text_64k_palmos3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/scripts/text_64k_palmos3 -------------------------------------------------------------------------------- /src/AESLib/AESLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/AESLib/AESLib.h -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/cache_file_plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/cache_file_plugin.cc -------------------------------------------------------------------------------- /src/cache_file_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/cache_file_plugin.h -------------------------------------------------------------------------------- /src/dirnode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/dirnode.cc -------------------------------------------------------------------------------- /src/dirnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/dirnode.h -------------------------------------------------------------------------------- /src/div_dirnode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/div_dirnode.cc -------------------------------------------------------------------------------- /src/div_dirnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/div_dirnode.h -------------------------------------------------------------------------------- /src/doc_dirnode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/doc_dirnode.cc -------------------------------------------------------------------------------- /src/doc_dirnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/doc_dirnode.h -------------------------------------------------------------------------------- /src/doc_file_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/doc_file_interface.cc -------------------------------------------------------------------------------- /src/doc_file_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/doc_file_interface.h -------------------------------------------------------------------------------- /src/edit_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/edit_interface.cc -------------------------------------------------------------------------------- /src/edit_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/edit_interface.h -------------------------------------------------------------------------------- /src/editor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/editor.cc -------------------------------------------------------------------------------- /src/editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/editor.h -------------------------------------------------------------------------------- /src/encrypt_file_plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/encrypt_file_plugin.cc -------------------------------------------------------------------------------- /src/encrypt_file_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/encrypt_file_plugin.h -------------------------------------------------------------------------------- /src/error.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/error.cc -------------------------------------------------------------------------------- /src/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/error.h -------------------------------------------------------------------------------- /src/file_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/file_interface.cc -------------------------------------------------------------------------------- /src/file_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/file_interface.h -------------------------------------------------------------------------------- /src/file_plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/file_plugin.cc -------------------------------------------------------------------------------- /src/file_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/file_plugin.h -------------------------------------------------------------------------------- /src/filedialog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/filedialog.cc -------------------------------------------------------------------------------- /src/filedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/filedialog.h -------------------------------------------------------------------------------- /src/filehandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/filehandler.cc -------------------------------------------------------------------------------- /src/filehandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/filehandler.h -------------------------------------------------------------------------------- /src/final_form.rcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/final_form.rcp -------------------------------------------------------------------------------- /src/form_pos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/form_pos.h -------------------------------------------------------------------------------- /src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/main.cc -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/main.h -------------------------------------------------------------------------------- /src/memchunk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/memchunk.cc -------------------------------------------------------------------------------- /src/memchunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/memchunk.h -------------------------------------------------------------------------------- /src/memhandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/memhandler.cc -------------------------------------------------------------------------------- /src/memhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/memhandler.h -------------------------------------------------------------------------------- /src/minibuffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/minibuffer.cc -------------------------------------------------------------------------------- /src/minibuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/minibuffer.h -------------------------------------------------------------------------------- /src/pdb_dirnode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/pdb_dirnode.cc -------------------------------------------------------------------------------- /src/pdb_dirnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/pdb_dirnode.h -------------------------------------------------------------------------------- /src/pdb_file_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/pdb_file_interface.cc -------------------------------------------------------------------------------- /src/pdb_file_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/pdb_file_interface.h -------------------------------------------------------------------------------- /src/preferences.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/preferences.cc -------------------------------------------------------------------------------- /src/preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/preferences.h -------------------------------------------------------------------------------- /src/resources.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/resources.cc -------------------------------------------------------------------------------- /src/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/resources.h -------------------------------------------------------------------------------- /src/root_dirnode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/root_dirnode.cc -------------------------------------------------------------------------------- /src/root_dirnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/root_dirnode.h -------------------------------------------------------------------------------- /src/save_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/save_data.cc -------------------------------------------------------------------------------- /src/sections.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sha1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/sha1.cc -------------------------------------------------------------------------------- /src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/sha1.h -------------------------------------------------------------------------------- /src/sidocument.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/sidocument.cc -------------------------------------------------------------------------------- /src/sidocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/sidocument.h -------------------------------------------------------------------------------- /src/sied-sections.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/sied-sections.ld -------------------------------------------------------------------------------- /src/sied-sections.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/sied-sections.o -------------------------------------------------------------------------------- /src/sied-sections.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/sied-sections.s -------------------------------------------------------------------------------- /src/sied_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/sied_install -------------------------------------------------------------------------------- /src/sikeyboard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/sikeyboard.cc -------------------------------------------------------------------------------- /src/sikeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/sikeyboard.h -------------------------------------------------------------------------------- /src/simacrorecorder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/simacrorecorder.cc -------------------------------------------------------------------------------- /src/simacrorecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/simacrorecorder.h -------------------------------------------------------------------------------- /src/siscrollbar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/siscrollbar.cc -------------------------------------------------------------------------------- /src/siscrollbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/siscrollbar.h -------------------------------------------------------------------------------- /src/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/test.cc -------------------------------------------------------------------------------- /src/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/test.h -------------------------------------------------------------------------------- /src/text_ca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/text_ca.h -------------------------------------------------------------------------------- /src/text_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/text_resource.h -------------------------------------------------------------------------------- /src/texthandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/texthandler.cc -------------------------------------------------------------------------------- /src/texthandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/texthandler.h -------------------------------------------------------------------------------- /src/textview.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/textview.cc -------------------------------------------------------------------------------- /src/textview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/textview.h -------------------------------------------------------------------------------- /src/types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/types.cc -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/types.h -------------------------------------------------------------------------------- /src/updir_dirnode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/updir_dirnode.cc -------------------------------------------------------------------------------- /src/updir_dirnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/updir_dirnode.h -------------------------------------------------------------------------------- /src/utility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/utility.cc -------------------------------------------------------------------------------- /src/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/utility.h -------------------------------------------------------------------------------- /src/vfs_dirnode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/vfs_dirnode.cc -------------------------------------------------------------------------------- /src/vfs_dirnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/vfs_dirnode.h -------------------------------------------------------------------------------- /src/vfs_file_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/vfs_file_interface.cc -------------------------------------------------------------------------------- /src/vfs_file_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/vfs_file_interface.h -------------------------------------------------------------------------------- /src/vfsdir_dirnode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/vfsdir_dirnode.cc -------------------------------------------------------------------------------- /src/vfsdir_dirnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/vfsdir_dirnode.h -------------------------------------------------------------------------------- /src/vfsfile_dirnode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/vfsfile_dirnode.cc -------------------------------------------------------------------------------- /src/vfsfile_dirnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/vfsfile_dirnode.h -------------------------------------------------------------------------------- /src/vfsvol_dirnode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/vfsvol_dirnode.cc -------------------------------------------------------------------------------- /src/vfsvol_dirnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtiangha/SiEd/HEAD/src/vfsvol_dirnode.h -------------------------------------------------------------------------------- /test_docs/README: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------