143 lines
3.4 KiB
C++
143 lines
3.4 KiB
C++
/*
|
|
4coder_default_framework_variables.cpp - Declares the global variables used by the framework for
|
|
the default 4coder behavior.
|
|
*/
|
|
|
|
// TOP
|
|
|
|
CUSTOM_ID(attachment, view_rewrite_loc);
|
|
CUSTOM_ID(attachment, view_next_rewrite_loc);
|
|
CUSTOM_ID(attachment, view_paste_index_loc);
|
|
CUSTOM_ID(attachment, view_is_passive_loc);
|
|
CUSTOM_ID(attachment, view_snap_mark_to_cursor);
|
|
CUSTOM_ID(attachment, view_ui_data);
|
|
CUSTOM_ID(attachment, view_highlight_range);
|
|
CUSTOM_ID(attachment, view_highlight_buffer);
|
|
CUSTOM_ID(attachment, view_render_hook);
|
|
CUSTOM_ID(attachment, view_word_complete_menu);
|
|
CUSTOM_ID(attachment, view_lister_loc);
|
|
CUSTOM_ID(attachment, view_previous_buffer);
|
|
|
|
CUSTOM_ID(attachment, buffer_map_id);
|
|
CUSTOM_ID(attachment, buffer_eol_setting);
|
|
CUSTOM_ID(attachment, buffer_lex_task);
|
|
CUSTOM_ID(attachment, buffer_wrap_lines);
|
|
|
|
CUSTOM_ID(attachment, sticky_jump_marker_handle);
|
|
CUSTOM_ID(attachment, attachment_tokens);
|
|
|
|
////////////////////////////////
|
|
|
|
#if 0
|
|
CUSTOM_ID(command_map, mapid_global);
|
|
CUSTOM_ID(command_map, mapid_file);
|
|
CUSTOM_ID(command_map, mapid_code);
|
|
#endif
|
|
|
|
////////////////////////////////
|
|
|
|
global b32 allow_immediate_close_without_checking_for_changes = false;
|
|
|
|
global char *default_extensions[] = {
|
|
"cpp",
|
|
"hpp",
|
|
"c",
|
|
"h",
|
|
"cc",
|
|
"cs",
|
|
"java",
|
|
"rs",
|
|
"glsl",
|
|
"m",
|
|
};
|
|
|
|
#if !defined(AUTO_CENTER_AFTER_JUMPS)
|
|
#define AUTO_CENTER_AFTER_JUMPS true
|
|
#endif
|
|
global b32 auto_center_after_jumps = AUTO_CENTER_AFTER_JUMPS;
|
|
global u8 locked_buffer_space[256];
|
|
global String_Const_u8 locked_buffer = {};
|
|
|
|
global View_ID global_compilation_view = 0;
|
|
global b32 global_compilation_view_expanded = 0;
|
|
global View_ID build_footer_panel_view_id = 0;
|
|
|
|
global u8 out_buffer_space[1024];
|
|
global u8 command_space[1024];
|
|
global char hot_directory_space[1024];
|
|
|
|
global b32 suppressing_mouse = false;
|
|
|
|
global b32 show_fps_hud = false;
|
|
|
|
// TODO(allen): REMOVE THIS!
|
|
global Heap global_heap;
|
|
|
|
enum{
|
|
FCoderMode_Original = 0,
|
|
FCoderMode_NotepadLike = 1,
|
|
};
|
|
global i32 fcoder_mode = FCoderMode_Original;
|
|
|
|
global ID_Pos_Jump_Location prev_location = {};
|
|
|
|
global Arena global_permanent_arena = {};
|
|
|
|
global Arena global_config_arena = {};
|
|
|
|
global char previous_isearch_query[256] = {};
|
|
|
|
global Mapping framework_mapping = {};
|
|
|
|
global Buffer_Modified_Set global_buffer_modified_set = {};
|
|
|
|
global b32 def_enable_virtual_whitespace = false;
|
|
|
|
////////////////////////////////
|
|
|
|
global b32 global_keyboard_macro_is_recording = false;
|
|
global Range_i64 global_keyboard_macro_range = {};
|
|
|
|
////////////////////////////////
|
|
|
|
global Fade_Range_List buffer_fade_ranges = {};
|
|
global Arena fade_range_arena = {};
|
|
global Fade_Range *free_fade_ranges = 0;
|
|
|
|
////////////////////////////////
|
|
|
|
global Point_Stack point_stack = {};
|
|
|
|
////////////////////////////////
|
|
|
|
global Clipboard clipboard0 = {};
|
|
|
|
////////////////////////////////
|
|
|
|
// Modal System Maps
|
|
global String_ID modal_map_id_global;
|
|
global String_ID modal_map_id_file;
|
|
global String_ID modal_map_id_code;
|
|
|
|
// Modal system modes
|
|
global Modal_Mode* modal_modes;
|
|
global u32 modal_modes_cap;
|
|
|
|
// State Tracking
|
|
global u32 modal_last_mode;
|
|
global u32 modal_curr_mode;
|
|
|
|
// Mode Ids
|
|
global u32 modal_mode_input = 0;
|
|
global u32 modal_mode_cmd = 1;
|
|
global u32 modal_mode_debug = 2;
|
|
|
|
////////////////////////////////
|
|
|
|
static String_Const_u8 go_to_definition_last_lexeme = {};
|
|
static u64 go_to_definition_last_lexeme_index = 0;
|
|
|
|
|
|
// BOTTOM
|
|
|