├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── INSTALL ├── NEWS ├── README ├── autoconf ├── aclocal.m4 ├── configure ├── configure.ac └── makefile.in ├── debian ├── changelog ├── compat ├── control ├── copyright ├── postinst ├── postrm └── rules ├── intl ├── compile.sh ├── en_US.po ├── mo │ ├── en_US │ │ └── simple-fb2-reader.mo │ └── ru │ │ └── simple-fb2-reader.mo ├── prepare.sh ├── ru.po └── simple-fb2-reader.pot ├── res ├── application-x-fictionbook+xml.svg ├── application-x-zip-compressed-fb2.svg ├── simple-fb2-reader.css ├── simple-fb2-reader.desktop ├── simple-fb2-reader.glade ├── simple-fb2-reader.svg └── simple-fb2-reader.xml ├── slackbuild ├── doinst.sh ├── simple-fb2-reader.SlackBuild ├── simple-fb2-reader.info └── slack-desc └── src ├── callbacks ├── callbacks_chunk.h ├── context_menu_callbacks │ ├── about_callback.c │ ├── auto_scroll_callback.c │ ├── backward_callback.c │ ├── book_search_callback.c │ ├── close_book_callback.c │ ├── exit_callback.c │ ├── navigation_callback.c │ ├── navigation_section_callback.c │ └── open_file_callback.c ├── main_wnd_callbacks.c ├── search_wnd_callbacks.c └── text_view_callback │ ├── link_tag_enevt_callback.c │ ├── motion_event_callback.c │ ├── popup_menu_callback.c │ ├── scroll_event_callback.c │ └── tooltip_callback.c ├── chunks.h ├── formats ├── fb2 │ ├── FictionBook │ │ ├── FictionBook.c │ │ ├── FictionBook_chunks.h │ │ ├── attributes │ │ │ ├── attributes_chunks.h │ │ │ └── id.c │ │ ├── binary │ │ │ └── binary.c │ │ ├── body │ │ │ ├── body.c │ │ │ ├── body_chunks.h │ │ │ ├── epigraph.c │ │ │ ├── image.c │ │ │ ├── section │ │ │ │ ├── a.c │ │ │ │ ├── cite.c │ │ │ │ ├── date.c │ │ │ │ ├── empty_line.c │ │ │ │ ├── image_inline.c │ │ │ │ ├── p │ │ │ │ │ ├── p.c │ │ │ │ │ ├── p_chunks.h │ │ │ │ │ ├── p_length.c │ │ │ │ │ └── p_text.c │ │ │ │ ├── poem.c │ │ │ │ ├── poem │ │ │ │ │ ├── poem.h │ │ │ │ │ ├── stanza.c │ │ │ │ │ └── v.c │ │ │ │ ├── section.c │ │ │ │ ├── section_chunks.h │ │ │ │ ├── style.c │ │ │ │ ├── subtitle.c │ │ │ │ ├── table │ │ │ │ │ ├── table.c │ │ │ │ │ ├── table_chunks.h │ │ │ │ │ ├── table_put_line.c │ │ │ │ │ ├── table_size.c │ │ │ │ │ ├── table_tr_next.c │ │ │ │ │ └── tr.c │ │ │ │ └── text_autor.c │ │ │ └── title.c │ │ └── description │ │ │ ├── annotation.c │ │ │ ├── book_title.c │ │ │ ├── coverpage.c │ │ │ ├── description.c │ │ │ ├── description_chunks.h │ │ │ └── title-info.c │ ├── fb2_chunks.h │ └── fb2_parser.c ├── fb2_zip │ ├── fb2_zip_chunks.h │ └── fb2_zip_parser.c └── formats_chunks.h ├── main.c └── reader ├── reader_app ├── reader_app.h ├── reader_app_config.c ├── reader_app_gui.c ├── reader_close_app.c └── reader_search_wnd.c ├── reader_book ├── reader_add_book_to_start_screen.c ├── reader_book_chunks.h ├── reader_book_hash.c ├── reader_books_db.c ├── reader_close_book.c └── reader_open_book.c ├── reader_chunks.h ├── reader_color_theme.c ├── reader_scroll.c ├── reader_start_screen.c └── reader_text_tags.c /AUTHORS: -------------------------------------------------------------------------------- 1 | Created by Cactus 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/INSTALL -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/README -------------------------------------------------------------------------------- /autoconf/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/autoconf/aclocal.m4 -------------------------------------------------------------------------------- /autoconf/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/autoconf/configure -------------------------------------------------------------------------------- /autoconf/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/autoconf/configure.ac -------------------------------------------------------------------------------- /autoconf/makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/autoconf/makefile.in -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/debian/postinst -------------------------------------------------------------------------------- /debian/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/debian/postrm -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/debian/rules -------------------------------------------------------------------------------- /intl/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/intl/compile.sh -------------------------------------------------------------------------------- /intl/en_US.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/intl/en_US.po -------------------------------------------------------------------------------- /intl/mo/en_US/simple-fb2-reader.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/intl/mo/en_US/simple-fb2-reader.mo -------------------------------------------------------------------------------- /intl/mo/ru/simple-fb2-reader.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/intl/mo/ru/simple-fb2-reader.mo -------------------------------------------------------------------------------- /intl/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/intl/prepare.sh -------------------------------------------------------------------------------- /intl/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/intl/ru.po -------------------------------------------------------------------------------- /intl/simple-fb2-reader.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/intl/simple-fb2-reader.pot -------------------------------------------------------------------------------- /res/application-x-fictionbook+xml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/res/application-x-fictionbook+xml.svg -------------------------------------------------------------------------------- /res/application-x-zip-compressed-fb2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/res/application-x-zip-compressed-fb2.svg -------------------------------------------------------------------------------- /res/simple-fb2-reader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/res/simple-fb2-reader.css -------------------------------------------------------------------------------- /res/simple-fb2-reader.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/res/simple-fb2-reader.desktop -------------------------------------------------------------------------------- /res/simple-fb2-reader.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/res/simple-fb2-reader.glade -------------------------------------------------------------------------------- /res/simple-fb2-reader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/res/simple-fb2-reader.svg -------------------------------------------------------------------------------- /res/simple-fb2-reader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/res/simple-fb2-reader.xml -------------------------------------------------------------------------------- /slackbuild/doinst.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/slackbuild/doinst.sh -------------------------------------------------------------------------------- /slackbuild/simple-fb2-reader.SlackBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/slackbuild/simple-fb2-reader.SlackBuild -------------------------------------------------------------------------------- /slackbuild/simple-fb2-reader.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/slackbuild/simple-fb2-reader.info -------------------------------------------------------------------------------- /slackbuild/slack-desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/slackbuild/slack-desc -------------------------------------------------------------------------------- /src/callbacks/callbacks_chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/callbacks/callbacks_chunk.h -------------------------------------------------------------------------------- /src/callbacks/context_menu_callbacks/about_callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/callbacks/context_menu_callbacks/about_callback.c -------------------------------------------------------------------------------- /src/callbacks/context_menu_callbacks/auto_scroll_callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/callbacks/context_menu_callbacks/auto_scroll_callback.c -------------------------------------------------------------------------------- /src/callbacks/context_menu_callbacks/backward_callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/callbacks/context_menu_callbacks/backward_callback.c -------------------------------------------------------------------------------- /src/callbacks/context_menu_callbacks/book_search_callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/callbacks/context_menu_callbacks/book_search_callback.c -------------------------------------------------------------------------------- /src/callbacks/context_menu_callbacks/close_book_callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/callbacks/context_menu_callbacks/close_book_callback.c -------------------------------------------------------------------------------- /src/callbacks/context_menu_callbacks/exit_callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/callbacks/context_menu_callbacks/exit_callback.c -------------------------------------------------------------------------------- /src/callbacks/context_menu_callbacks/navigation_callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/callbacks/context_menu_callbacks/navigation_callback.c -------------------------------------------------------------------------------- /src/callbacks/context_menu_callbacks/navigation_section_callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/callbacks/context_menu_callbacks/navigation_section_callback.c -------------------------------------------------------------------------------- /src/callbacks/context_menu_callbacks/open_file_callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/callbacks/context_menu_callbacks/open_file_callback.c -------------------------------------------------------------------------------- /src/callbacks/main_wnd_callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/callbacks/main_wnd_callbacks.c -------------------------------------------------------------------------------- /src/callbacks/search_wnd_callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/callbacks/search_wnd_callbacks.c -------------------------------------------------------------------------------- /src/callbacks/text_view_callback/link_tag_enevt_callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/callbacks/text_view_callback/link_tag_enevt_callback.c -------------------------------------------------------------------------------- /src/callbacks/text_view_callback/motion_event_callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/callbacks/text_view_callback/motion_event_callback.c -------------------------------------------------------------------------------- /src/callbacks/text_view_callback/popup_menu_callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/callbacks/text_view_callback/popup_menu_callback.c -------------------------------------------------------------------------------- /src/callbacks/text_view_callback/scroll_event_callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/callbacks/text_view_callback/scroll_event_callback.c -------------------------------------------------------------------------------- /src/callbacks/text_view_callback/tooltip_callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/callbacks/text_view_callback/tooltip_callback.c -------------------------------------------------------------------------------- /src/chunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/chunks.h -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/FictionBook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/FictionBook.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/FictionBook_chunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/FictionBook_chunks.h -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/attributes/attributes_chunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/attributes/attributes_chunks.h -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/attributes/id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/attributes/id.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/binary/binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/binary/binary.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/body.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/body.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/body_chunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/body_chunks.h -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/epigraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/epigraph.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/image.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/section/a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/section/a.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/section/cite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/section/cite.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/section/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/section/date.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/section/empty_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/section/empty_line.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/section/image_inline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/section/image_inline.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/section/p/p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/section/p/p.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/section/p/p_chunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/section/p/p_chunks.h -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/section/p/p_length.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/section/p/p_length.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/section/p/p_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/section/p/p_text.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/section/poem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/section/poem.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/section/poem/poem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/section/poem/poem.h -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/section/poem/stanza.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/section/poem/stanza.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/section/poem/v.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/section/poem/v.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/section/section.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/section/section.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/section/section_chunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/section/section_chunks.h -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/section/style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/section/style.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/section/subtitle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/section/subtitle.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/section/table/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/section/table/table.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/section/table/table_chunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/section/table/table_chunks.h -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/section/table/table_put_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/section/table/table_put_line.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/section/table/table_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/section/table/table_size.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/section/table/table_tr_next.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/section/table/table_tr_next.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/section/table/tr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/section/table/tr.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/section/text_autor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/section/text_autor.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/body/title.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/body/title.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/description/annotation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/description/annotation.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/description/book_title.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/description/book_title.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/description/coverpage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/description/coverpage.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/description/description.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/description/description.c -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/description/description_chunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/description/description_chunks.h -------------------------------------------------------------------------------- /src/formats/fb2/FictionBook/description/title-info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/FictionBook/description/title-info.c -------------------------------------------------------------------------------- /src/formats/fb2/fb2_chunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/fb2_chunks.h -------------------------------------------------------------------------------- /src/formats/fb2/fb2_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2/fb2_parser.c -------------------------------------------------------------------------------- /src/formats/fb2_zip/fb2_zip_chunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2_zip/fb2_zip_chunks.h -------------------------------------------------------------------------------- /src/formats/fb2_zip/fb2_zip_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/fb2_zip/fb2_zip_parser.c -------------------------------------------------------------------------------- /src/formats/formats_chunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/formats/formats_chunks.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/main.c -------------------------------------------------------------------------------- /src/reader/reader_app/reader_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/reader/reader_app/reader_app.h -------------------------------------------------------------------------------- /src/reader/reader_app/reader_app_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/reader/reader_app/reader_app_config.c -------------------------------------------------------------------------------- /src/reader/reader_app/reader_app_gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/reader/reader_app/reader_app_gui.c -------------------------------------------------------------------------------- /src/reader/reader_app/reader_close_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/reader/reader_app/reader_close_app.c -------------------------------------------------------------------------------- /src/reader/reader_app/reader_search_wnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/reader/reader_app/reader_search_wnd.c -------------------------------------------------------------------------------- /src/reader/reader_book/reader_add_book_to_start_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/reader/reader_book/reader_add_book_to_start_screen.c -------------------------------------------------------------------------------- /src/reader/reader_book/reader_book_chunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/reader/reader_book/reader_book_chunks.h -------------------------------------------------------------------------------- /src/reader/reader_book/reader_book_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/reader/reader_book/reader_book_hash.c -------------------------------------------------------------------------------- /src/reader/reader_book/reader_books_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/reader/reader_book/reader_books_db.c -------------------------------------------------------------------------------- /src/reader/reader_book/reader_close_book.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/reader/reader_book/reader_close_book.c -------------------------------------------------------------------------------- /src/reader/reader_book/reader_open_book.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/reader/reader_book/reader_open_book.c -------------------------------------------------------------------------------- /src/reader/reader_chunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/reader/reader_chunks.h -------------------------------------------------------------------------------- /src/reader/reader_color_theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/reader/reader_color_theme.c -------------------------------------------------------------------------------- /src/reader/reader_scroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/reader/reader_scroll.c -------------------------------------------------------------------------------- /src/reader/reader_start_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/reader/reader_start_screen.c -------------------------------------------------------------------------------- /src/reader/reader_text_tags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cactus64k/simple-fb2-reader/HEAD/src/reader/reader_text_tags.c --------------------------------------------------------------------------------