Subversion Repositories Kolibri OS

Rev

Rev 6612 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6612 Rev 8581
Line 96... Line 96...
96
	uint32_t type;  // unused
96
	uint32_t type;  // unused
97
	uint32_t x_w;  // 10, 400
97
	uint32_t x_w;  // 10, 400
98
	uint32_t y_h; // 45, 550
98
	uint32_t y_h; // 45, 550
99
	uint32_t icon_size_xy;  // x_y (16, 16)
99
	uint32_t icon_size_xy;  // x_y (16, 16)
100
	uint16_t line_size_x;  // not used
100
	uint16_t line_size_x;  // not used
101
	uint16_t line_size_y;  // 18 or 17  - âûñîòà ëèíèè - ñòðîêè ñ ôàéëîì
101
	uint16_t line_size_y;  // 18 or 17  - ������ ����� - ������ � ������
102
	uint16_t type_size_x;  // not used
102
	uint16_t type_size_x;  // not used
103
	uint16_t size_size_x;  // not used
103
	uint16_t size_size_x;  // not used
104
	uint16_t date_size_x;  // not used
104
	uint16_t date_size_x;  // not used
105
	uint16_t attributes_size_x; // not used
105
	uint16_t attributes_size_x; // not used
106
	uint32_t icon_assoc_area;  // not used
106
	uint32_t icon_assoc_area;  // not used
Line 114... Line 114...
114
	color_t select_color; // self explained, 0xbbddff
114
	color_t select_color; // self explained, 0xbbddff
115
    color_t select_text_color; // self explained - have a bug - never really used
115
    color_t select_text_color; // self explained - have a bug - never really used
116
    color_t text_color; // self explained
116
    color_t text_color; // self explained
117
    color_t reduct_text_color; // 0xff0000  - spec color for cutted filenames
117
    color_t reduct_text_color; // 0xff0000  - spec color for cutted filenames
118
    color_t marked_text_color; // not used
118
    color_t marked_text_color; // not used
119
    uint32_t max_panel_line;    // moved to scrollbar->cur_area, - ìàêñèìàëüíîå ÷èñëî ñòðîê â îêíå, àâòîðàñ÷èòûâàåòñÿ
119
    uint32_t max_panel_line;    // moved to scrollbar->cur_area, - ������������ ����� ����� � ����, �����������������
120
	uint32_t select_panel_counter;  // !=0 if want to draw multiselection ???
120
	uint32_t select_panel_counter;  // !=0 if want to draw multiselection ???
121
	uint32_t folder_block;   // auto formed, êîëè÷åñòâî áëîêîâ äàííûõ âõîäà êàòàëîãà (ÁÄÂÊ) ????? format BDVK == bdfe,, // moved to scrollbar->max_area
121
	uint32_t folder_block;   // auto formed, ���������� ������ ������ ����� �������� (����) ????? format BDVK == bdfe,, // moved to scrollbar->max_area
122
	uint32_t start_draw_line;    // internal - top showed file n. moved to scrollbar->position and back
122
	uint32_t start_draw_line;    // internal - top showed file n. moved to scrollbar->position and back
123
	uint16_t start_draw_cursor_line;  //internal
123
	uint16_t start_draw_cursor_line;  //internal
124
    void* folder_data;      // 32 byte - dir_header, +4 = number, +32 - bdvk[], size of rec(bdvk cp866) = 304byte
124
    void* folder_data;      // 32 byte - dir_header, +4 = number, +32 - bdvk[], size of rec(bdvk cp866) = 304byte
125
    uint32_t temp_counter; //internal
125
    uint32_t temp_counter; //internal
126
    uint32_t file_name_length; //internal
126
    uint32_t file_name_length; //internal
Line 215... Line 215...
215
                                         ini_file_start, ini_file_end,
215
                                         ini_file_start, ini_file_end,
216
                                         0x000000, 0xbbddff, kolibri_color_table.color_work_text, kolibri_color_table.color_work_area, 0xff0000);
216
                                         0x000000, 0xbbddff, kolibri_color_table.color_work_text, kolibri_color_table.color_work_area, 0xff0000);
217
}
217
}
218
*/
218
*/
Line 219... Line 219...
219
 
219
 
220
inline void gui_add_filebrowser(kolibri_window *wnd, filebrowser* f)
220
static inline void gui_add_filebrowser(kolibri_window *wnd, filebrowser* f)
221
{
221
{
222
    kolibri_window_add_element(wnd, KOLIBRI_FILEBROWSE, f);
222
    kolibri_window_add_element(wnd, KOLIBRI_FILEBROWSE, f);
Line 223... Line 223...
223
}
223
}