2018-03-24 21:43:57 +00:00
|
|
|
/*
|
|
|
|
* Mr. 4th Dimention - Allen Webster
|
|
|
|
*
|
|
|
|
* 24.03.2018
|
|
|
|
*
|
|
|
|
* Working_Set data structure
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
// TOP
|
|
|
|
|
|
|
|
#if !defined(FRED_WORKING_SET_H)
|
|
|
|
#define FRED_WORKING_SET_H
|
|
|
|
|
|
|
|
struct Non_File_Table_Entry{
|
|
|
|
String name;
|
|
|
|
Buffer_Slot_ID id;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct File_Array{
|
|
|
|
Editing_File *files;
|
|
|
|
i32 size;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Working_Set{
|
|
|
|
File_Array *file_arrays;
|
|
|
|
i32 file_count, file_max;
|
|
|
|
i16 array_count, array_max;
|
|
|
|
|
2019-01-31 12:38:24 +00:00
|
|
|
Node free_sentinel;
|
|
|
|
Node used_sentinel;
|
|
|
|
|
|
|
|
Node edit_finished_list;
|
2018-03-24 21:43:57 +00:00
|
|
|
|
|
|
|
Table canon_table;
|
|
|
|
Table name_table;
|
|
|
|
|
|
|
|
// TODO(allen): WTF?
|
|
|
|
String clipboards[64];
|
2019-01-31 12:38:24 +00:00
|
|
|
i32 clipboard_size;
|
|
|
|
i32 clipboard_max_size;
|
|
|
|
i32 clipboard_current;
|
|
|
|
i32 clipboard_rolling;
|
2018-03-24 21:43:57 +00:00
|
|
|
|
2019-01-31 12:38:24 +00:00
|
|
|
Node *sync_check_iter;
|
2018-03-24 21:43:57 +00:00
|
|
|
|
|
|
|
i32 default_display_width;
|
|
|
|
i32 default_minimum_base_display_width;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct File_Name_Entry{
|
|
|
|
String name;
|
|
|
|
Buffer_Slot_ID id;
|
|
|
|
};
|
|
|
|
|
2019-01-31 12:38:24 +00:00
|
|
|
internal void
|
|
|
|
file_mark_edit_finished(Working_Set *working_set, Editing_File *file);
|
|
|
|
|
2018-03-24 21:43:57 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// BOTTOM
|
|
|
|
|