4coder/custom/4coder_default_framework_va...

92 lines
2.0 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
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;
2019-09-04 05:31:35 +00:00
global Managed_ID view_rewrite_loc = 0;
global Managed_ID view_next_rewrite_loc = 0;
global Managed_ID view_paste_index_loc = 0;
global Managed_ID view_is_passive_loc = 0;
global Managed_ID view_snap_mark_to_cursor = 0;
global Managed_ID view_ui_data = 0;
global Managed_ID view_highlight_range = 0;
global Managed_ID view_highlight_buffer = 0;
global Managed_ID view_render_hook = 0;
2019-10-28 04:20:30 +00:00
global Managed_ID view_word_complete_menu = 0;
2019-09-04 05:31:35 +00:00
2019-10-10 22:57:02 +00:00
global Managed_ID buffer_map_id = 0;
2019-10-17 04:22:06 +00:00
global Managed_ID buffer_eol_setting = 0;
2019-10-21 02:02:58 +00:00
global Managed_ID buffer_lex_task = 0;
2019-11-11 02:51:37 +00:00
global Managed_ID buffer_wrap_lines = 0;
2019-10-10 22:57:02 +00:00
2019-09-04 05:31:35 +00:00
global Managed_ID sticky_jump_marker_handle = 0;
global Managed_ID attachment_tokens = 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 = {};
global Arena *global_config_arena = {};
global Config_Data global_config = {};
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 = {};
enum{
mapid_global = 1,
mapid_file,
default_code_map,
default_maps_count,
};
global Buffer_Modified_Set global_buffer_modified_set = {};
2018-08-05 07:09:18 +00:00
// BOTTOM