2018-05-09 07:10:07 +00:00
|
|
|
/*
|
2018-05-12 00:53:02 +00:00
|
|
|
4coder_default_framework.cpp - Sets up the basics of the framework that is used for default
|
|
|
|
4coder behaviour.
|
2018-05-09 07:10:07 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
// TOP
|
|
|
|
|
|
|
|
static void
|
|
|
|
unlock_jump_buffer(void){
|
|
|
|
locked_buffer.size = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-04-05 02:03:36 +00:00
|
|
|
lock_jump_buffer(String name){
|
|
|
|
if (name.size < locked_buffer.memory_size){
|
|
|
|
copy(&locked_buffer, name);
|
2018-05-09 07:10:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-04-05 02:03:36 +00:00
|
|
|
lock_jump_buffer(char *name, i32 size){
|
|
|
|
lock_jump_buffer(make_string(name, size));
|
2018-05-09 07:10:07 +00:00
|
|
|
}
|
|
|
|
|
2019-02-22 12:43:12 +00:00
|
|
|
static void
|
|
|
|
lock_jump_buffer(Application_Links *app, Buffer_ID buffer_id){
|
2019-04-05 02:03:36 +00:00
|
|
|
Arena *scratch = context_get_arena(app);
|
|
|
|
Temp_Memory_Arena temp = begin_temp_memory(scratch);
|
|
|
|
String buffer_name = buffer_push_unique_buffer_name(app, buffer_id, scratch);
|
|
|
|
lock_jump_buffer(buffer_name);
|
|
|
|
end_temp_memory(temp);
|
2019-02-22 12:43:12 +00:00
|
|
|
}
|
|
|
|
|
2019-04-06 19:40:36 +00:00
|
|
|
static View_ID
|
2018-05-09 07:10:07 +00:00
|
|
|
get_view_for_locked_jump_buffer(Application_Links *app){
|
2019-04-06 19:40:36 +00:00
|
|
|
View_ID view = 0;
|
2018-05-09 07:10:07 +00:00
|
|
|
if (locked_buffer.size > 0){
|
2019-04-05 02:03:36 +00:00
|
|
|
Buffer_ID buffer = 0;
|
|
|
|
get_buffer_by_name(app, locked_buffer, AccessAll, &buffer);
|
|
|
|
if (buffer != 0){
|
|
|
|
view = get_first_view_with_buffer(app, buffer);
|
2018-05-09 07:10:07 +00:00
|
|
|
}
|
|
|
|
else{
|
|
|
|
unlock_jump_buffer();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return(view);
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////
|
|
|
|
|
|
|
|
static void
|
2019-04-07 17:36:24 +00:00
|
|
|
new_view_settings(Application_Links *app, View_ID view){
|
2018-05-28 05:30:31 +00:00
|
|
|
if (!global_config.use_scroll_bars){
|
2018-05-09 07:10:07 +00:00
|
|
|
view_set_setting(app, view, ViewSetting_ShowScrollbar, false);
|
|
|
|
}
|
2018-05-28 05:30:31 +00:00
|
|
|
if (!global_config.use_file_bars){
|
2018-05-09 07:10:07 +00:00
|
|
|
view_set_setting(app, view, ViewSetting_ShowFileBar, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-23 03:03:58 +00:00
|
|
|
////////////////////////////////
|
|
|
|
|
|
|
|
static void
|
2019-03-22 05:06:30 +00:00
|
|
|
view_set_passive(Application_Links *app, View_ID view_id, b32 value){
|
|
|
|
Managed_Scope scope = view_get_managed_scope(app, view_id);
|
2019-02-27 05:49:35 +00:00
|
|
|
managed_variable_set(app, scope, view_is_passive_loc, (u64)value);
|
2018-06-23 03:03:58 +00:00
|
|
|
}
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static b32
|
2019-03-22 05:06:30 +00:00
|
|
|
view_get_is_passive(Application_Links *app, View_ID view_id){
|
|
|
|
Managed_Scope scope = view_get_managed_scope(app, view_id);
|
2019-02-27 05:49:35 +00:00
|
|
|
u64 is_passive = 0;
|
2018-09-07 22:39:33 +00:00
|
|
|
managed_variable_get(app, scope, view_is_passive_loc, &is_passive);
|
2018-06-23 03:03:58 +00:00
|
|
|
return(is_passive != 0);
|
|
|
|
}
|
|
|
|
|
2019-04-07 17:36:24 +00:00
|
|
|
static View_ID
|
|
|
|
open_footer_panel(Application_Links *app, View_ID view){
|
|
|
|
View_ID special_view = open_view(app, view, ViewSplit_Bottom);
|
|
|
|
new_view_settings(app, special_view);
|
|
|
|
Buffer_ID buffer = 0;
|
|
|
|
view_get_buffer(app, special_view, AccessAll, &buffer);
|
|
|
|
Face_ID face_id = 0;
|
|
|
|
get_face_id(app, buffer, &face_id);
|
|
|
|
Face_Metrics metrics = {};
|
|
|
|
get_face_metrics(app, face_id, &metrics);
|
|
|
|
view_set_split_pixel_size(app, special_view, (i32)(metrics.line_height*20.f));
|
|
|
|
view_set_passive(app, special_view, true);
|
2018-06-23 03:03:58 +00:00
|
|
|
return(special_view);
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:10:07 +00:00
|
|
|
static void
|
2018-06-23 03:03:58 +00:00
|
|
|
close_build_footer_panel(Application_Links *app){
|
2019-04-07 17:36:24 +00:00
|
|
|
if (build_footer_panel_view_id != 0){
|
|
|
|
view_close(app, build_footer_panel_view_id);
|
|
|
|
build_footer_panel_view_id = 0;
|
2018-05-09 07:10:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-07 17:36:24 +00:00
|
|
|
static View_ID
|
|
|
|
open_build_footer_panel(Application_Links *app){
|
|
|
|
if (build_footer_panel_view_id == 0){
|
|
|
|
View_ID view = 0;
|
|
|
|
get_active_view(app, AccessAll, &view);
|
|
|
|
build_footer_panel_view_id = open_footer_panel(app, view);
|
|
|
|
view_set_active(app, view);
|
2018-05-09 07:10:07 +00:00
|
|
|
}
|
2019-04-07 17:36:24 +00:00
|
|
|
return(build_footer_panel_view_id);
|
2018-05-09 07:10:07 +00:00
|
|
|
}
|
|
|
|
|
2019-03-22 05:06:30 +00:00
|
|
|
static View_ID
|
|
|
|
get_next_view_looped_primary_panels(Application_Links *app, View_ID start_view_id, Access_Flag access){
|
|
|
|
View_ID view_id = start_view_id;
|
2018-05-09 07:10:07 +00:00
|
|
|
do{
|
2019-03-22 05:06:30 +00:00
|
|
|
view_id = get_next_view_looped_all_panels(app, view_id, access);
|
|
|
|
if (!view_get_is_passive(app, view_id)){
|
2018-05-09 07:10:07 +00:00
|
|
|
break;
|
|
|
|
}
|
2019-03-22 05:06:30 +00:00
|
|
|
}while(view_id != start_view_id);
|
|
|
|
return(view_id);
|
2018-05-09 07:10:07 +00:00
|
|
|
}
|
|
|
|
|
2019-03-22 05:06:30 +00:00
|
|
|
static View_ID
|
|
|
|
get_prev_view_looped_primary_panels(Application_Links *app, View_ID start_view_id, Access_Flag access){
|
|
|
|
View_ID view_id = start_view_id;
|
2018-05-09 07:10:07 +00:00
|
|
|
do{
|
2019-03-22 05:06:30 +00:00
|
|
|
view_id = get_prev_view_looped_all_panels(app, view_id, access);
|
|
|
|
if (!view_get_is_passive(app, view_id)){
|
2018-05-09 07:10:07 +00:00
|
|
|
break;
|
|
|
|
}
|
2019-03-22 05:06:30 +00:00
|
|
|
}while(view_id != start_view_id);
|
|
|
|
return(view_id);
|
|
|
|
}
|
|
|
|
|
2019-04-07 17:36:24 +00:00
|
|
|
static View_ID
|
|
|
|
get_next_view_after_active(Application_Links *app, Access_Flag access){
|
|
|
|
View_ID view = 0;
|
|
|
|
get_active_view(app, access, &view);
|
2019-03-22 05:06:30 +00:00
|
|
|
if (view != 0){
|
2019-04-07 17:36:24 +00:00
|
|
|
view = get_next_view_looped_primary_panels(app, view, access);
|
2018-09-08 01:36:42 +00:00
|
|
|
}
|
|
|
|
return(view);
|
|
|
|
}
|
|
|
|
|
2019-03-22 05:06:30 +00:00
|
|
|
////////////////////////////////
|
|
|
|
|
|
|
|
static void
|
|
|
|
view_buffer_set(Application_Links *app, Buffer_ID *buffers, i32 *positions, i32 count){
|
|
|
|
if (count > 0){
|
2019-03-29 21:21:50 +00:00
|
|
|
Arena *arena = context_get_arena(app);
|
|
|
|
Temp_Memory_Arena temp = begin_temp_memory(arena);
|
2019-03-22 05:06:30 +00:00
|
|
|
|
|
|
|
struct View_Node{
|
|
|
|
View_Node *next;
|
|
|
|
View_ID view_id;
|
|
|
|
};
|
|
|
|
|
|
|
|
View_ID active_view_id = 0;
|
|
|
|
get_active_view(app, AccessAll, &active_view_id);
|
|
|
|
View_ID first_view_id = active_view_id;
|
|
|
|
if (view_get_is_passive(app, active_view_id)){
|
|
|
|
first_view_id = get_next_view_looped_primary_panels(app, active_view_id, AccessAll);
|
|
|
|
}
|
|
|
|
|
|
|
|
View_ID view_id = first_view_id;
|
|
|
|
|
|
|
|
View_Node *primary_view_first = 0;
|
|
|
|
View_Node *primary_view_last = 0;
|
|
|
|
i32 available_view_count = 0;
|
|
|
|
|
2019-03-29 21:21:50 +00:00
|
|
|
primary_view_first = primary_view_last = push_array(arena, View_Node, 1);
|
2019-03-22 05:06:30 +00:00
|
|
|
primary_view_last->next = 0;
|
|
|
|
primary_view_last->view_id = view_id;
|
|
|
|
available_view_count += 1;
|
|
|
|
for (;;){
|
|
|
|
view_id = get_next_view_looped_primary_panels(app, view_id, AccessAll);
|
|
|
|
if (view_id == first_view_id){
|
|
|
|
break;
|
|
|
|
}
|
2019-03-29 21:21:50 +00:00
|
|
|
View_Node *node = push_array(arena, View_Node, 1);
|
2019-03-22 05:06:30 +00:00
|
|
|
primary_view_last->next = node;
|
|
|
|
node->next = 0;
|
|
|
|
node->view_id = view_id;
|
|
|
|
primary_view_last = node;
|
|
|
|
available_view_count += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
i32 buffer_set_count = clamp_top(count, available_view_count);
|
|
|
|
View_Node *node = primary_view_first;
|
|
|
|
for (i32 i = 0; i < buffer_set_count; i += 1, node = node->next){
|
|
|
|
if (view_set_buffer(app, node->view_id, buffers[i], 0)){
|
|
|
|
view_set_cursor(app, node->view_id, seek_pos(positions[i]), true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-29 21:21:50 +00:00
|
|
|
end_temp_memory(temp);
|
2019-03-22 05:06:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////
|
|
|
|
|
2018-05-11 20:46:26 +00:00
|
|
|
CUSTOM_COMMAND_SIG(change_active_panel)
|
|
|
|
CUSTOM_DOC("Change the currently active panel, moving to the panel with the next highest view_id.")
|
|
|
|
{
|
2019-04-07 17:36:24 +00:00
|
|
|
View_ID view = 0;
|
|
|
|
get_active_view(app, AccessAll, &view);
|
|
|
|
view = get_next_view_looped_primary_panels(app, view, AccessAll);
|
|
|
|
if (view != 0){
|
|
|
|
view_set_active(app, view);
|
2018-05-11 20:46:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CUSTOM_COMMAND_SIG(change_active_panel_backwards)
|
|
|
|
CUSTOM_DOC("Change the currently active panel, moving to the panel with the next lowest view_id.")
|
|
|
|
{
|
2019-04-07 17:36:24 +00:00
|
|
|
View_ID view = 0;
|
|
|
|
get_active_view(app, AccessAll, &view);
|
|
|
|
view = get_prev_view_looped_primary_panels(app, view, AccessAll);
|
|
|
|
if (view != 0){
|
|
|
|
view_set_active(app, view);
|
2018-05-09 07:10:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CUSTOM_COMMAND_SIG(open_panel_vsplit)
|
|
|
|
CUSTOM_DOC("Create a new panel by vertically splitting the active panel.")
|
|
|
|
{
|
2019-04-07 17:36:24 +00:00
|
|
|
View_ID view = 0;
|
|
|
|
get_active_view(app, AccessAll, &view);
|
|
|
|
View_ID new_view = open_view(app, view, ViewSplit_Right);
|
|
|
|
new_view_settings(app, new_view);
|
|
|
|
Buffer_ID buffer = 0;
|
|
|
|
view_get_buffer(app, view, AccessAll, &buffer);
|
|
|
|
view_set_buffer(app, new_view, buffer, 0);
|
2018-05-09 07:10:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CUSTOM_COMMAND_SIG(open_panel_hsplit)
|
|
|
|
CUSTOM_DOC("Create a new panel by horizontally splitting the active panel.")
|
|
|
|
{
|
2019-04-07 17:36:24 +00:00
|
|
|
View_ID view = 0;
|
|
|
|
get_active_view(app, AccessAll, &view);
|
|
|
|
View_ID new_view = open_view(app, view, ViewSplit_Bottom);
|
|
|
|
new_view_settings(app, new_view);
|
|
|
|
Buffer_ID buffer = 0;
|
|
|
|
view_get_buffer(app, view, AccessAll, &buffer);
|
|
|
|
view_set_buffer(app, new_view, buffer, 0);
|
2018-05-09 07:10:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////
|
|
|
|
|
2018-09-08 01:36:42 +00:00
|
|
|
// NOTE(allen): Credits to nj/FlyingSolomon for authoring the original version of this helper.
|
|
|
|
|
|
|
|
static Buffer_ID
|
2019-04-07 17:36:24 +00:00
|
|
|
create_or_switch_to_buffer_by_name(Application_Links *app, String name_string, View_ID default_target_view){
|
2019-04-05 02:03:36 +00:00
|
|
|
Buffer_ID search_buffer = 0;
|
|
|
|
get_buffer_by_name(app, name_string, AccessAll, &search_buffer);
|
|
|
|
if (search_buffer != 0){
|
|
|
|
buffer_set_setting(app, search_buffer, BufferSetting_ReadOnly, true);
|
2019-02-12 02:33:11 +00:00
|
|
|
|
2019-04-07 17:36:24 +00:00
|
|
|
View_ID target_view = default_target_view;
|
2018-09-08 01:36:42 +00:00
|
|
|
|
2019-04-06 19:40:36 +00:00
|
|
|
View_ID view_with_buffer_already_open = get_first_view_with_buffer(app, search_buffer);
|
|
|
|
if (view_with_buffer_already_open != 0){
|
2018-09-08 01:36:42 +00:00
|
|
|
target_view = view_with_buffer_already_open;
|
2019-04-06 19:40:36 +00:00
|
|
|
view_end_ui_mode(app, target_view);
|
2018-09-08 01:36:42 +00:00
|
|
|
}
|
|
|
|
else{
|
2019-04-06 19:40:36 +00:00
|
|
|
view_set_buffer(app, target_view, search_buffer, 0);
|
2018-09-08 01:36:42 +00:00
|
|
|
}
|
2019-04-06 19:40:36 +00:00
|
|
|
view_set_active(app, target_view);
|
2018-09-08 01:36:42 +00:00
|
|
|
|
2019-04-05 02:03:36 +00:00
|
|
|
i32 buffer_size = 0;
|
|
|
|
buffer_get_size(app, search_buffer, &buffer_size);
|
|
|
|
|
|
|
|
buffer_send_end_signal(app, search_buffer);
|
2019-04-05 23:30:24 +00:00
|
|
|
buffer_replace_range(app, search_buffer, make_range(0, buffer_size), make_lit_string(""));
|
2018-09-08 01:36:42 +00:00
|
|
|
}
|
|
|
|
else{
|
2019-04-05 02:03:36 +00:00
|
|
|
create_buffer(app, name_string, BufferCreate_AlwaysNew, &search_buffer);
|
|
|
|
buffer_set_setting(app, search_buffer, BufferSetting_Unimportant, true);
|
|
|
|
buffer_set_setting(app, search_buffer, BufferSetting_ReadOnly, true);
|
|
|
|
buffer_set_setting(app, search_buffer, BufferSetting_WrapLine, false);
|
2019-04-07 17:36:24 +00:00
|
|
|
view_set_buffer(app, default_target_view, search_buffer, 0);
|
|
|
|
view_set_active(app, default_target_view);
|
2018-09-08 01:36:42 +00:00
|
|
|
}
|
|
|
|
|
2019-04-05 02:03:36 +00:00
|
|
|
return(search_buffer);
|
2018-09-08 01:36:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////
|
|
|
|
|
2018-05-09 07:10:07 +00:00
|
|
|
static void
|
2019-02-26 23:08:42 +00:00
|
|
|
set_mouse_suppression(Application_Links *app, b32 suppress){
|
2018-05-09 07:10:07 +00:00
|
|
|
if (suppress){
|
2018-09-25 08:41:49 +00:00
|
|
|
suppressing_mouse = true;
|
2018-05-09 07:10:07 +00:00
|
|
|
show_mouse_cursor(app, MouseCursorShow_Never);
|
|
|
|
}
|
|
|
|
else{
|
2018-09-25 08:41:49 +00:00
|
|
|
suppressing_mouse = false;
|
2018-05-09 07:10:07 +00:00
|
|
|
show_mouse_cursor(app, MouseCursorShow_Always);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CUSTOM_COMMAND_SIG(suppress_mouse)
|
|
|
|
CUSTOM_DOC("Hides the mouse and causes all mosue input (clicks, position, wheel) to be ignored.")
|
|
|
|
{
|
|
|
|
set_mouse_suppression(app, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
CUSTOM_COMMAND_SIG(allow_mouse)
|
|
|
|
CUSTOM_DOC("Shows the mouse and causes all mouse input to be processed normally.")
|
|
|
|
{
|
|
|
|
set_mouse_suppression(app, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
CUSTOM_COMMAND_SIG(toggle_mouse)
|
|
|
|
CUSTOM_DOC("Toggles the mouse suppression mode, see suppress_mouse and allow_mouse.")
|
|
|
|
{
|
|
|
|
set_mouse_suppression(app, !suppressing_mouse);
|
|
|
|
}
|
|
|
|
|
2018-09-30 12:14:47 +00:00
|
|
|
CUSTOM_COMMAND_SIG(set_mode_to_original)
|
|
|
|
CUSTOM_DOC("Sets the edit mode to 4coder original.")
|
2018-09-25 08:41:49 +00:00
|
|
|
{
|
2018-09-30 12:14:47 +00:00
|
|
|
fcoder_mode = FCoderMode_Original;
|
2018-09-25 08:41:49 +00:00
|
|
|
}
|
|
|
|
|
2018-09-30 12:14:47 +00:00
|
|
|
CUSTOM_COMMAND_SIG(set_mode_to_notepad_like)
|
|
|
|
CUSTOM_DOC("Sets the edit mode to Notepad like.")
|
2018-09-25 08:41:49 +00:00
|
|
|
{
|
2018-09-30 12:14:47 +00:00
|
|
|
begin_notepad_mode(app);
|
2018-09-25 08:41:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CUSTOM_COMMAND_SIG(toggle_highlight_line_at_cursor)
|
|
|
|
CUSTOM_DOC("Toggles the line highlight at the cursor.")
|
|
|
|
{
|
|
|
|
highlight_line_at_cursor = !highlight_line_at_cursor;
|
|
|
|
}
|
|
|
|
|
2018-09-30 12:14:47 +00:00
|
|
|
CUSTOM_COMMAND_SIG(toggle_highlight_enclosing_scopes)
|
|
|
|
CUSTOM_DOC("In code files scopes surrounding the cursor are highlighted with distinguishing colors.")
|
|
|
|
{
|
|
|
|
do_matching_enclosure_highlight = !do_matching_enclosure_highlight;
|
|
|
|
}
|
|
|
|
|
|
|
|
CUSTOM_COMMAND_SIG(toggle_paren_matching_helper)
|
|
|
|
CUSTOM_DOC("In code files matching parentheses pairs are colored with distinguishing colors.")
|
|
|
|
{
|
|
|
|
do_matching_paren_highlight = !do_matching_paren_highlight;
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:10:07 +00:00
|
|
|
CUSTOM_COMMAND_SIG(toggle_fullscreen)
|
|
|
|
CUSTOM_DOC("Toggle fullscreen mode on or off. The change(s) do not take effect until the next frame.")
|
|
|
|
{
|
|
|
|
set_fullscreen(app, !is_fullscreen(app));
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////
|
|
|
|
|
|
|
|
CUSTOM_COMMAND_SIG(remap_interactive)
|
|
|
|
CUSTOM_DOC("Switch to a named key binding map.")
|
|
|
|
{
|
2018-11-20 08:18:54 +00:00
|
|
|
Query_Bar bar = {};
|
2018-05-09 07:10:07 +00:00
|
|
|
char space[1024];
|
|
|
|
bar.prompt = make_lit_string("Map Name: ");
|
|
|
|
bar.string = make_fixed_width_string(space);
|
|
|
|
if (!query_user_string(app, &bar)) return;
|
|
|
|
change_mapping(app, bar.string);
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////
|
|
|
|
|
|
|
|
static void
|
2019-02-27 05:49:35 +00:00
|
|
|
default_4coder_initialize(Application_Links *app, char **command_line_files, i32 file_count, i32 override_font_size, b32 override_hinting){
|
2019-02-26 21:05:02 +00:00
|
|
|
i32 part_size = (32 << 20);
|
2018-05-09 07:10:07 +00:00
|
|
|
void *part_mem = memory_allocate(app, part_size);
|
|
|
|
global_part = make_part(part_mem, part_size);
|
|
|
|
|
2019-02-26 19:59:57 +00:00
|
|
|
i32 heap_size = (4 << 20);
|
2018-08-18 08:16:52 +00:00
|
|
|
void *heap_mem = memory_allocate(app, heap_size);
|
|
|
|
heap_init(&global_heap);
|
|
|
|
heap_extend(&global_heap, heap_mem, heap_size);
|
2018-05-28 01:00:13 +00:00
|
|
|
|
2019-02-26 19:59:57 +00:00
|
|
|
static char message[] =
|
2018-05-28 01:00:13 +00:00
|
|
|
"Welcome to " VERSION "\n"
|
|
|
|
"If you're new to 4coder there are some tutorials at http://4coder.net/tutorials.html\n"
|
2019-02-27 05:49:35 +00:00
|
|
|
"Direct bug reports and feature requests to https://github.com/4coder-editor/4coder/issues\n"
|
|
|
|
"Other questions and discussion can be directed to editor@4coder.net or 4coder.handmade.network\n"
|
2018-05-28 05:30:31 +00:00
|
|
|
"The change log can be found in CHANGES.txt\n"
|
2018-05-28 01:00:13 +00:00
|
|
|
"\n";
|
2019-02-26 19:59:57 +00:00
|
|
|
print_message(app, message, sizeof(message) - 1);
|
2018-05-28 01:00:13 +00:00
|
|
|
|
2019-02-25 23:42:13 +00:00
|
|
|
#if 0
|
2018-05-12 00:53:02 +00:00
|
|
|
load_folder_of_themes_into_live_set(app, &global_part, "themes");
|
2019-02-25 23:42:13 +00:00
|
|
|
#endif
|
2018-05-30 04:46:32 +00:00
|
|
|
load_config_and_apply(app, &global_part, &global_config, override_font_size, override_hinting);
|
2018-06-23 03:03:58 +00:00
|
|
|
|
2018-09-30 12:14:47 +00:00
|
|
|
view_rewrite_loc = managed_variable_create_or_get_id(app, "DEFAULT.rewrite" , 0);
|
|
|
|
view_next_rewrite_loc = managed_variable_create_or_get_id(app, "DEFAULT.next_rewrite" , 0);
|
|
|
|
view_paste_index_loc = managed_variable_create_or_get_id(app, "DEFAULT.paste_index" , 0);
|
|
|
|
view_is_passive_loc = managed_variable_create_or_get_id(app, "DEFAULT.is_passive" , 0);
|
|
|
|
view_snap_mark_to_cursor = managed_variable_create_or_get_id(app, "DEFAULT.mark_to_cursor", 0);
|
2019-02-26 19:59:57 +00:00
|
|
|
view_ui_data = managed_variable_create_or_get_id(app, "DEFAULT.ui_data" , 0);
|
2019-02-27 05:49:35 +00:00
|
|
|
|
|
|
|
// open command line files
|
|
|
|
Temp_Memory temp = begin_temp_memory(&global_part);
|
|
|
|
char *space = push_array(&global_part, char, (32 << 10));
|
|
|
|
String file_name = make_string_cap(space, 0, (32 << 10));
|
|
|
|
i32 hot_directory_length = 0;
|
|
|
|
if (get_hot_directory(app, &file_name, &hot_directory_length)){
|
|
|
|
for (i32 i = 0; i < file_count; i += 1){
|
|
|
|
String input_name = make_string_slowly(command_line_files[i]);
|
|
|
|
file_name.size = hot_directory_length;
|
|
|
|
append(&file_name, input_name);
|
|
|
|
Buffer_ID ignore = 0;
|
|
|
|
if (!create_buffer(app, file_name, BufferCreate_NeverNew|BufferCreate_MustAttachToFile, &ignore)){
|
|
|
|
create_buffer(app, input_name, 0, &ignore);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
end_temp_memory(temp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
default_4coder_initialize(Application_Links *app, i32 override_font_size, b32 override_hinting){
|
|
|
|
default_4coder_initialize(app, 0, 0, override_font_size, override_hinting);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
default_4coder_initialize(Application_Links *app, char **command_line_files, i32 file_count){
|
|
|
|
Face_Description command_line_description = get_face_description(app, 0);
|
|
|
|
default_4coder_initialize(app, command_line_files, file_count, command_line_description.pt_size, command_line_description.hinting);
|
2018-05-09 07:10:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-06-08 22:51:36 +00:00
|
|
|
default_4coder_initialize(Application_Links *app){
|
|
|
|
Face_Description command_line_description = get_face_description(app, 0);
|
2019-02-27 05:49:35 +00:00
|
|
|
default_4coder_initialize(app, 0, 0, command_line_description.pt_size, command_line_description.hinting);
|
2018-05-09 07:10:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
default_4coder_side_by_side_panels(Application_Links *app, Buffer_Identifier left_buffer, Buffer_Identifier right_buffer){
|
|
|
|
Buffer_ID left_id = buffer_identifier_to_id(app, left_buffer);
|
|
|
|
Buffer_ID right_id = buffer_identifier_to_id(app, right_buffer);
|
|
|
|
|
|
|
|
// Left Panel
|
2019-04-07 17:36:24 +00:00
|
|
|
View_ID view = 0;
|
|
|
|
get_active_view(app, AccessAll, &view);
|
|
|
|
new_view_settings(app, view);
|
|
|
|
view_set_buffer(app, view, left_id, 0);
|
2018-05-09 07:10:07 +00:00
|
|
|
|
|
|
|
// Right Panel
|
|
|
|
open_panel_vsplit(app);
|
2019-04-07 17:36:24 +00:00
|
|
|
View_ID right_view = 0;
|
|
|
|
get_active_view(app, AccessAll, &right_view);
|
|
|
|
view_set_buffer(app, right_view, right_id, 0);
|
2018-05-09 07:10:07 +00:00
|
|
|
|
|
|
|
// Restore Active to Left
|
2019-04-07 17:36:24 +00:00
|
|
|
view_set_active(app, view);
|
2018-05-09 07:10:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-02-26 23:17:53 +00:00
|
|
|
default_4coder_side_by_side_panels(Application_Links *app, char **command_line_files, i32 file_count){
|
2018-05-09 07:10:07 +00:00
|
|
|
Buffer_Identifier left = buffer_identifier(literal("*scratch*"));
|
|
|
|
Buffer_Identifier right = buffer_identifier(literal("*messages*"));
|
|
|
|
|
|
|
|
if (file_count > 0){
|
|
|
|
char *left_name = command_line_files[0];
|
2019-02-26 23:17:53 +00:00
|
|
|
i32 left_len = str_size(left_name);
|
2018-05-09 07:10:07 +00:00
|
|
|
left = buffer_identifier(left_name, left_len);
|
|
|
|
|
|
|
|
if (file_count > 1){
|
|
|
|
char *right_name = command_line_files[1];
|
2019-02-26 23:17:53 +00:00
|
|
|
i32 right_len = str_size(right_name);
|
2018-05-09 07:10:07 +00:00
|
|
|
right = buffer_identifier(right_name, right_len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
default_4coder_side_by_side_panels(app, left, right);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
default_4coder_side_by_side_panels(Application_Links *app){
|
|
|
|
default_4coder_side_by_side_panels(app, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
default_4coder_one_panel(Application_Links *app, Buffer_Identifier buffer){
|
|
|
|
Buffer_ID id = buffer_identifier_to_id(app, buffer);
|
2019-04-07 17:36:24 +00:00
|
|
|
View_ID view = 0;
|
|
|
|
get_active_view(app, AccessAll, &view);
|
|
|
|
new_view_settings(app, view);
|
|
|
|
view_set_buffer(app, view, id, 0);
|
2018-05-09 07:10:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-02-26 23:17:53 +00:00
|
|
|
default_4coder_one_panel(Application_Links *app, char **command_line_files, i32 file_count){
|
2018-05-09 07:10:07 +00:00
|
|
|
Buffer_Identifier buffer = buffer_identifier(literal("*messages*"));
|
|
|
|
|
|
|
|
if (file_count > 0){
|
|
|
|
char *name = command_line_files[0];
|
2019-02-26 23:17:53 +00:00
|
|
|
i32 len = str_size(name);
|
2018-05-09 07:10:07 +00:00
|
|
|
buffer = buffer_identifier(name, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
default_4coder_one_panel(app, buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
default_4coder_one_panel(Application_Links *app){
|
|
|
|
default_4coder_one_panel(app, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// BOTTOM
|
|
|
|
|