4coder/custom/4coder_default_framework_va...

116 lines
2.7 KiB
C++
Raw Normal View History

2018-05-12 00:53:02 +00:00
/*
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
2019-12-03 19:35:41 +00:00
CUSTOM_ID(command_map, mapid_global);
CUSTOM_ID(command_map, mapid_file);
CUSTOM_ID(command_map, mapid_code);
#endif
2019-12-03 19:35:41 +00:00
////////////////////////////////
global b32 allow_immediate_close_without_checking_for_changes = false;
2018-08-05 07:09:18 +00:00
global char *default_extensions[] = {
2018-05-12 00:53:02 +00:00
"cpp",
"hpp",
"c",
"h",
"cc",
"cs",
2018-09-25 08:41:49 +00:00
"java",
"rs",
"glsl",
"m",
2018-05-12 00:53:02 +00:00
};
#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 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;
2019-02-25 23:42:13 +00:00
2019-09-04 05:31:35 +00:00
// TODO(allen): REMOVE THIS!
global Heap global_heap;
enum{
2018-09-30 12:14:47 +00:00
FCoderMode_Original = 0,
FCoderMode_NotepadLike = 1,
};
global i32 fcoder_mode = FCoderMode_Original;
global ID_Pos_Jump_Location prev_location = {};
2020-11-24 06:27:33 +00:00
global Arena global_permanent_arena = {};
2020-03-11 23:22:37 +00:00
global Arena global_config_arena = {};
global char previous_isearch_query[256] = {};
2018-06-16 20:57:32 +00:00
2019-10-10 22:57:02 +00:00
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 = {};
2018-08-05 07:09:18 +00:00
// BOTTOM