#ifndef KOLIBRI_FILEBROWSE_H #define KOLIBRI_FILEBROWSE_H struct __attribute__ ((__packed__)) fs_dirinfo { uint32_t subfn; // 1 read dir uint32_t start; uint32_t flags; uint32_t size; uint32_t retval; union { struct __attribute__ ((__packed__)) { uint8_t zero; // 0 char* ppath; }; char path[5]; // up to 4096 } ; }; static inline uint32_t sf_file(int subfn, struct fs_dirinfo* dinfo) // retval 0 if ok { uint32_t retval; dinfo->subfn = subfn; __asm__ __volatile__( "int $0x40 " :"=a"(retval) :"a"(70),"b"(dinfo) :); return retval; }; struct fs_dirheader { uint32_t version; // 1 uint32_t curn_blocks; // number of read dir items (BDFE) uint32_t totl_blocks; // directory full size char other[20]; // reserved 0 }; enum filetype { fs_readonly = 1, fs_hidden = 2, fs_system = 4, fs_volumelabel = 8, fs_folder = 0x10, fs_nonarchived = 0x20 }; struct __attribute__ ((__packed__)) fs_filetime { uint8_t sec; uint8_t mm; uint8_t hour; uint8_t zero; }; struct __attribute__ ((__packed__)) fs_filedate { uint8_t day; uint8_t month; uint16_t year; }; /// directory entry cp866 struct fsBDFE { uint32_t filetype; uint32_t encoding; // 0 - cp866, 1 - utf16le struct fs_filetime tm_created; struct fs_filedate dt_created; struct fs_filetime tm_accessed; struct fs_filedate dt_accessed; struct fs_filetime tm_modified; struct fs_filedate dt_modified; uint64_t size; char fname[264]; }; // must be sized 304 /// directory entry UTF16LE struct fsBDFE_16 { uint32_t filetype; uint32_t encoding; // 0 - cp866, 1 - utf16le struct fs_filetime tm_created; struct fs_filedate dt_created; struct fs_filetime tm_accessed; struct fs_filedate dt_accessed; struct fs_filetime tm_modified; struct fs_filedate dt_modified; uint64_t size; wchar_t fname[260]; }; // must be sized 560 typedef struct __attribute__ ((__packed__)) { uint32_t type; // unused uint32_t x_w; // 10, 400 uint32_t y_h; // 45, 550 uint32_t icon_size_xy; // x_y (16, 16) uint16_t line_size_x; // not used uint16_t line_size_y; // 18 or 17 - высота линии - строки с файлом uint16_t type_size_x; // not used uint16_t size_size_x; // not used uint16_t date_size_x; // not used uint16_t attributes_size_x; // not used uint32_t icon_assoc_area; // not used void* icon_raw_area; // z_icons.png uint32_t icon_resolution_raw; // ... void* icon_palette_raw; // ... uint32_t directory_path_area; // not used uint32_t file_name_area; // not used uint32_t select_flag; // widget have focus, set auto on mouseclick, but need to reset before mouse() color_t background_color; // self explained, 0xffffff color_t select_color; // self explained, 0xbbddff color_t select_text_color; // self explained - have a bug - never really used color_t text_color; // self explained color_t reduct_text_color; // 0xff0000 - spec color for cutted filenames color_t marked_text_color; // not used uint32_t max_panel_line; // moved to scrollbar->cur_area, - максимальное число строк в окне, авторасчитывается uint32_t select_panel_counter; // !=0 if want to draw multiselection ??? uint32_t folder_block; // auto formed, количество блоков данных входа каталога (БДВК) ????? format BDVK == bdfe,, // moved to scrollbar->max_area uint32_t start_draw_line; // internal - top showed file n. moved to scrollbar->position and back uint16_t start_draw_cursor_line; //internal void* folder_data; // 32 byte - dir_header, +4 = number, +32 - bdvk[], size of rec(bdvk cp866) = 304byte uint32_t temp_counter; //internal uint32_t file_name_length; //internal uint32_t marked_file; // have a mark 0/1 ? uint32_t extension_size; //internal uint32_t extension_start; //internal void* type_table; // type buffer char* ini_file_start; // icons.ini contens - file<>icon association char* ini_file_end; // start + filesize uint32_t draw_scroll_bar; // 1 = need redraw sb after key(), user - resetted uint32_t font_size_xy; // x_y (6, 9) uint32_t mouse_keys; // saved internal uint32_t mouse_keys_old; // saved internal uint32_t mouse_pos; // saved internal uint32_t mouse_keys_delta; // saved internal uint32_t mouse_key_delay; // 50 uint32_t mouse_keys_tick; // internal timer uint16_t start_draw_cursor_line_2; // internal cursor line uint32_t all_redraw; // 0 - skip draw contens, 1 - force draw, 2 - no draw selection (but draw icons), used when scroll struct fsBDFE* selected_BDVK_adress; // pointer to selected uint16_t key_action; // fill before key(), 1..12, wiki uint16_t key_action_num; // fill before key() fn2 >> 8 char* name_temp_area; // temporary string format buffer uint32_t max_name_temp_size; // sizeof ^ uint32_t display_name_max_length; // autocounted uint32_t draw_panel_selection_flag; // flag internal showing selected item uint32_t mouse_pos_old; // saved internal uint32_t marked_counter; // number of marked files char* keymap_pointer; // keyboard layout map } filebrowser; static inline filebrowser* kolibri_filebrowser(filebrowser* fb, uint32_t x_w, uint32_t y_h, uint32_t font_size_xy, uint32_t icon_size_xy, void* icon_raw_area, void* icon_palette_raw, uint32_t icon_res, char* ini_file_start, char* ini_file_end, color_t font_select, color_t bk_select, color_t font_color, color_t bgcolor, color_t reduct_color) { static char name_temp_area[256]; static char keymap_area[128]; static char type_table[128] = "