222 lines
4.6 KiB
C
222 lines
4.6 KiB
C
/*
|
|
* Mr. 4th Dimention - Allen Webster
|
|
*
|
|
* 06.05.2016 (dd.mm.yyyy)
|
|
*
|
|
* Global app level settings definition
|
|
*
|
|
*/
|
|
|
|
// TOP
|
|
|
|
#if !defined(FRED_APP_MODELS_H)
|
|
#define FRED_APP_MODELS_H
|
|
|
|
struct App_Settings{
|
|
char *init_files[8];
|
|
i32 init_files_count;
|
|
i32 init_files_max;
|
|
|
|
char **custom_flags;
|
|
i32 custom_flags_count;
|
|
|
|
i32 initial_line;
|
|
b32 lctrl_lalt_is_altgr;
|
|
|
|
i32 font_size;
|
|
b32 use_hinting;
|
|
};
|
|
|
|
struct Models{
|
|
Mem_Options mem;
|
|
|
|
App_Settings settings;
|
|
|
|
Face_ID global_font_id;
|
|
|
|
Mapping mapping;
|
|
Command_Binding prev_command;
|
|
|
|
Coroutine_Head *command_coroutine;
|
|
u32 command_coroutine_flags[2];
|
|
|
|
Child_Process_Container child_processes;
|
|
Custom_API config_api;
|
|
|
|
Application_Links app_links;
|
|
|
|
Hook_Function *hooks[hook_type_count];
|
|
Start_Hook_Function *hook_start;
|
|
Open_File_Hook_Function *hook_open_file;
|
|
Open_File_Hook_Function *hook_new_file;
|
|
Open_File_Hook_Function *hook_save_file;
|
|
Open_File_Hook_Function *hook_end_file;
|
|
File_Edit_Range_Function *hook_file_edit_range;
|
|
File_Edit_Finished_Function *hook_file_edit_finished;
|
|
Command_Caller_Hook_Function *command_caller;
|
|
Render_Caller_Function *render_caller;
|
|
Input_Filter_Function *input_filter;
|
|
Scroll_Rule_Function *scroll_rule;
|
|
Buffer_Name_Resolver_Function *buffer_name_resolver;
|
|
Modify_Color_Table_Function *modify_color_table;
|
|
Clipboard_Change_Hook_Function *clipboard_change;
|
|
Get_View_Buffer_Region_Function *get_view_buffer_region;
|
|
|
|
Color_Table fallback_color_table;
|
|
Color_Table color_table;
|
|
|
|
Layout layout;
|
|
Working_Set working_set;
|
|
Live_Views live_set;
|
|
Parse_Context_Memory parse_context_memory;
|
|
Global_History global_history;
|
|
|
|
Dynamic_Variable_Layout variable_layout;
|
|
Dynamic_Workspace dynamic_workspace;
|
|
Lifetime_Allocator lifetime_allocator;
|
|
|
|
Editing_File *message_buffer;
|
|
Editing_File *scratch_buffer;
|
|
|
|
Hot_Directory hot_directory;
|
|
|
|
b32 keep_playing;
|
|
|
|
// TODO(allen): do(eliminate user_*_key* nonsense from the core)
|
|
Key_Code user_up_key;
|
|
Key_Code user_down_key;
|
|
Key_Modifier user_up_key_modifier;
|
|
Key_Modifier user_down_key_modifier;
|
|
|
|
b32 has_new_title;
|
|
char *title_space;
|
|
i32 title_capacity;
|
|
|
|
Panel *resizing_intermediate_panel;
|
|
|
|
u32 edit_finished_hook_repeat_speed;
|
|
|
|
Plat_Handle period_wakeup_timer;
|
|
i32 frame_counter;
|
|
u32 next_animate_delay;
|
|
b32 animate_next_frame;
|
|
|
|
Arena custom_layer_arena;
|
|
|
|
// Last frame state
|
|
Vec2_i32 prev_p;
|
|
Panel *prev_mouse_panel;
|
|
b32 animated_last_frame;
|
|
u64 last_render_usecond_stamp;
|
|
|
|
// System Context
|
|
System_Functions *system;
|
|
struct App_Vars *vars;
|
|
|
|
// Event Context
|
|
Application_Step_Input *input;
|
|
Key_Event_Data key;
|
|
|
|
Render_Target *target;
|
|
b32 in_render_mode;
|
|
// TODO(allen): endless stack?
|
|
Vec2 coordinate_center_stack[32];
|
|
i32 coordinate_center_stack_top;
|
|
|
|
#if 0
|
|
View *render_view;
|
|
i32_Rect render_view_rect;
|
|
i32_Rect render_buffer_rect;
|
|
Full_Cursor render_cursor;
|
|
Range render_range;
|
|
Buffer_Render_Item *render_items;
|
|
i32 render_item_count;
|
|
#endif
|
|
};
|
|
|
|
////////////////////////////////
|
|
|
|
typedef i32 Dynamic_Workspace_Type;
|
|
enum{
|
|
DynamicWorkspace_Global = 0,
|
|
DynamicWorkspace_Unassociated = 1,
|
|
DynamicWorkspace_Buffer = 2,
|
|
DynamicWorkspace_View = 3,
|
|
DynamicWorkspace_Intersected = 4,
|
|
};
|
|
|
|
enum App_State{
|
|
APP_STATE_EDIT,
|
|
APP_STATE_RESIZING,
|
|
// never below this
|
|
APP_STATE_COUNT
|
|
};
|
|
|
|
enum Input_Types{
|
|
Input_AnyKey,
|
|
Input_Esc,
|
|
Input_MouseMove,
|
|
Input_MouseLeftButton,
|
|
Input_MouseRightButton,
|
|
Input_MouseWheel,
|
|
Input_Count
|
|
};
|
|
|
|
struct Consumption_Record{
|
|
b32 consumed;
|
|
char consumer[32];
|
|
};
|
|
|
|
struct App_Vars{
|
|
Models models;
|
|
App_State state;
|
|
};
|
|
|
|
enum Coroutine_Type{
|
|
Co_View,
|
|
Co_Command
|
|
};
|
|
struct App_Coroutine_State{
|
|
void *co;
|
|
i32 type;
|
|
};
|
|
|
|
struct Command_In{
|
|
Models *models;
|
|
Command_Binding bind;
|
|
};
|
|
|
|
struct File_Init{
|
|
String name;
|
|
Editing_File **ptr;
|
|
b32 read_only;
|
|
};
|
|
|
|
enum Command_Line_Action{
|
|
CLAct_Nothing,
|
|
CLAct_Ignore,
|
|
CLAct_UserFile,
|
|
CLAct_CustomDLL,
|
|
CLAct_InitialFilePosition,
|
|
CLAct_WindowSize,
|
|
CLAct_WindowMaximize,
|
|
CLAct_WindowPosition,
|
|
CLAct_WindowFullscreen,
|
|
CLAct_FontSize,
|
|
CLAct_FontUseHinting,
|
|
CLAct_LogStdout,
|
|
CLAct_LogFile,
|
|
//
|
|
CLAct_COUNT,
|
|
};
|
|
|
|
enum Command_Line_Mode{
|
|
CLMode_App,
|
|
CLMode_Custom
|
|
};
|
|
|
|
#endif
|
|
|
|
// BOTTOM
|
|
|