2016-06-13 18:54:26 +00:00
|
|
|
/*
|
|
|
|
The implementation for the custom API
|
|
|
|
*/
|
|
|
|
|
|
|
|
// TOP
|
|
|
|
|
2016-06-20 20:34:48 +00:00
|
|
|
inline b32
|
|
|
|
access_test(u32 lock_flags, u32 access_flags){
|
|
|
|
b32 result = 0;
|
|
|
|
|
|
|
|
if ((lock_flags & ~access_flags) == 0){
|
|
|
|
result = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-06-13 18:54:26 +00:00
|
|
|
internal void
|
|
|
|
fill_buffer_summary(Buffer_Summary *buffer, Editing_File *file, Working_Set *working_set){
|
2016-09-01 19:40:25 +00:00
|
|
|
*buffer = null_buffer_summary;
|
2016-06-13 18:54:26 +00:00
|
|
|
if (!file->is_dummy){
|
|
|
|
buffer->exists = 1;
|
|
|
|
buffer->ready = file_is_ready(file);
|
|
|
|
|
|
|
|
buffer->buffer_id = file->id.id;
|
2016-09-18 15:24:43 +00:00
|
|
|
buffer->size = buffer_size(&file->state.buffer);
|
2016-07-08 21:47:37 +00:00
|
|
|
buffer->line_count = file->state.buffer.line_count;
|
2016-06-13 18:54:26 +00:00
|
|
|
|
|
|
|
buffer->file_name_len = file->name.source_path.size;
|
|
|
|
buffer->buffer_name_len = file->name.live_name.size;
|
|
|
|
buffer->file_name = file->name.source_path.str;
|
|
|
|
buffer->buffer_name = file->name.live_name.str;
|
|
|
|
|
2016-09-09 22:56:43 +00:00
|
|
|
buffer->dirty = file->state.dirty;
|
|
|
|
|
2016-07-04 20:40:57 +00:00
|
|
|
buffer->is_lexed = file->settings.tokens_exist;
|
2016-09-08 00:32:31 +00:00
|
|
|
|
|
|
|
if (file->state.token_array.tokens &&
|
|
|
|
file->state.tokens_complete &&
|
|
|
|
!file->state.still_lexing){
|
|
|
|
buffer->tokens_are_ready = 1;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
buffer->tokens_are_ready = 0;
|
|
|
|
}
|
|
|
|
|
2016-06-13 18:54:26 +00:00
|
|
|
buffer->map_id = file->settings.base_map_id;
|
2016-07-04 20:40:57 +00:00
|
|
|
buffer->unwrapped_lines = file->settings.unwrapped_lines;
|
2016-06-20 20:34:48 +00:00
|
|
|
|
|
|
|
buffer->lock_flags = 0;
|
|
|
|
if (file->settings.read_only){
|
|
|
|
buffer->lock_flags |= AccessProtected;
|
|
|
|
}
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-14 20:40:57 +00:00
|
|
|
internal void
|
|
|
|
fill_buffer_summary(Buffer_Summary *buffer, Editing_File *file, Command_Data *cmd){
|
|
|
|
Working_Set *working_set = &cmd->models->working_set;
|
|
|
|
fill_buffer_summary(buffer, file, working_set);
|
|
|
|
}
|
|
|
|
|
2016-06-13 18:54:26 +00:00
|
|
|
internal void
|
|
|
|
fill_view_summary(View_Summary *view, View *vptr, Live_Views *live_set, Working_Set *working_set){
|
2016-07-02 14:15:15 +00:00
|
|
|
Buffer_ID buffer_id = 0;
|
2016-06-20 20:34:48 +00:00
|
|
|
File_Viewing_Data *data = &vptr->file_data;
|
|
|
|
|
2016-09-01 19:40:25 +00:00
|
|
|
*view = null_view_summary;
|
2016-06-13 18:54:26 +00:00
|
|
|
|
|
|
|
if (vptr->in_use){
|
|
|
|
view->exists = 1;
|
2016-08-29 01:03:26 +00:00
|
|
|
view->view_id = (int32_t)(vptr - live_set->views) + 1;
|
2016-09-22 00:01:12 +00:00
|
|
|
view->line_height = (f32)(vptr->line_height);
|
|
|
|
view->unwrapped_lines = data->file->settings.unwrapped_lines;
|
|
|
|
view->show_whitespace = data->show_whitespace;
|
2016-06-20 20:34:48 +00:00
|
|
|
view->lock_flags = view_lock_flags(vptr);
|
2016-06-13 18:54:26 +00:00
|
|
|
|
2016-09-22 00:01:12 +00:00
|
|
|
Assert(data->file);
|
|
|
|
|
|
|
|
buffer_id = vptr->file_data.file->id.id;
|
|
|
|
|
|
|
|
view->buffer_id = buffer_id;
|
|
|
|
|
2016-09-29 01:07:14 +00:00
|
|
|
view->mark = view_compute_cursor(vptr, seek_pos(vptr->edit_pos->mark), 0);
|
2016-09-22 00:01:12 +00:00
|
|
|
view->cursor = vptr->edit_pos->cursor;
|
|
|
|
view->preferred_x = vptr->edit_pos->preferred_x;
|
|
|
|
|
|
|
|
view->file_region = vptr->file_region;
|
|
|
|
view->scroll_vars = vptr->edit_pos->scroll;
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-22 00:01:12 +00:00
|
|
|
|
2016-06-14 20:40:57 +00:00
|
|
|
inline void
|
|
|
|
fill_view_summary(View_Summary *view, View *vptr, Command_Data *cmd){
|
|
|
|
fill_view_summary(view, vptr, &cmd->vars->live_set, &cmd->models->working_set);
|
|
|
|
}
|
|
|
|
|
2016-06-13 18:54:26 +00:00
|
|
|
internal Editing_File*
|
|
|
|
get_file_from_identifier(System_Functions *system, Working_Set *working_set, Buffer_Identifier buffer){
|
|
|
|
Editing_File *file = 0;
|
|
|
|
|
2016-08-24 23:01:33 +00:00
|
|
|
if (buffer.id){
|
|
|
|
file = working_set_get_active_file(working_set, buffer.id);
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
2016-08-24 23:01:33 +00:00
|
|
|
else if (buffer.name){
|
|
|
|
String name = make_string(buffer.name, buffer.name_len);
|
|
|
|
file = working_set_name_contains(working_set, name);
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(file);
|
|
|
|
}
|
|
|
|
|
2016-06-14 20:40:57 +00:00
|
|
|
internal Editing_File*
|
|
|
|
imp_get_file(Command_Data *cmd, Buffer_Summary *buffer){
|
|
|
|
Editing_File *file = 0;
|
|
|
|
Working_Set *working_set = &cmd->models->working_set;;
|
|
|
|
|
|
|
|
if (buffer->exists){
|
|
|
|
file = working_set_get_active_file(working_set, buffer->buffer_id);
|
|
|
|
if (file != 0 && !file_is_ready(file)){
|
|
|
|
file = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(file);
|
|
|
|
}
|
|
|
|
|
2016-06-17 03:31:15 +00:00
|
|
|
internal View*
|
2016-07-02 14:15:15 +00:00
|
|
|
imp_get_view(Command_Data *cmd, View_ID view_id){
|
2016-06-17 03:31:15 +00:00
|
|
|
Live_Views *live_set = cmd->live_set;
|
|
|
|
View *vptr = 0;
|
|
|
|
|
|
|
|
view_id = view_id - 1;
|
|
|
|
if (view_id >= 0 && view_id < live_set->max){
|
|
|
|
vptr = live_set->views + view_id;
|
2016-07-03 00:37:24 +00:00
|
|
|
if (!vptr->in_use){
|
|
|
|
vptr = 0;
|
|
|
|
}
|
2016-06-17 03:31:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(vptr);
|
|
|
|
}
|
|
|
|
|
2016-06-14 20:40:57 +00:00
|
|
|
internal View*
|
|
|
|
imp_get_view(Command_Data *cmd, View_Summary *view){
|
|
|
|
View *vptr = 0;
|
|
|
|
|
|
|
|
if (view->exists){
|
2016-06-17 03:31:15 +00:00
|
|
|
vptr = imp_get_view(cmd, view->view_id);
|
2016-06-14 20:40:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(vptr);
|
|
|
|
}
|
|
|
|
|
2016-06-27 15:52:58 +00:00
|
|
|
#define API_EXPORT
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
API_EXPORT bool32
|
|
|
|
Exec_Command(Application_Links *app, Command_ID command_id)/*
|
|
|
|
DOC_PARAM(command_id, The command_id parameter specifies which internal command to execute.)
|
|
|
|
DOC_RETURN(This call returns non-zero if command_id named a valid internal command.)
|
|
|
|
DOC(A call to exec_command executes an internal command.
|
|
|
|
If command_id is invalid a warning is posted to *messages*.)
|
|
|
|
DOC_SEE(Command_ID)
|
2016-06-23 23:11:09 +00:00
|
|
|
*/{
|
2016-07-02 14:15:15 +00:00
|
|
|
bool32 result = false;
|
|
|
|
|
|
|
|
if (command_id < cmdid_count){
|
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
Command_Function function = command_table[command_id];
|
|
|
|
Command_Binding binding = {};
|
|
|
|
binding.function = function;
|
|
|
|
if (function) function(cmd->system, cmd, binding);
|
|
|
|
|
|
|
|
result = true;
|
|
|
|
}
|
|
|
|
else{
|
2016-09-17 00:03:09 +00:00
|
|
|
print_message(app, literal("WARNING: An invalid Command_ID was passed to exec_command."));
|
2016-07-02 14:15:15 +00:00
|
|
|
}
|
2016-06-13 18:54:26 +00:00
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
return(result);
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
|
2016-09-09 22:56:43 +00:00
|
|
|
// TODO(allen): This is a bit of a mess and needs to be fixed soon.
|
2016-07-02 14:15:15 +00:00
|
|
|
API_EXPORT bool32
|
2016-09-09 22:56:43 +00:00
|
|
|
Exec_System_Command(Application_Links *app, View_Summary *view, Buffer_Identifier buffer, char *path, int32_t path_len, char *command, int32_t command_len, Command_Line_Interface_Flag flags)/*
|
2016-07-02 14:15:15 +00:00
|
|
|
DOC_PARAM(view, If the view parameter is non-null it specifies a view to display the command's output buffer.)
|
|
|
|
DOC_PARAM(buffer, The buffer the command will output to is specified by the buffer parameter.
|
|
|
|
See Buffer_Identifier for information on how this type specifies a buffer.)
|
|
|
|
DOC_PARAM(path, The path parameter specifies the path in which the command shall be executed. The string need not be null terminated.)
|
|
|
|
DOC_PARAM(path_len, The parameter path_len specifies the length of the path string.)
|
|
|
|
DOC_PARAM(command, The command parameter specifies the command that shall be executed. The string need not be null terminated.)
|
|
|
|
DOC_PARAM(command_len, The parameter command_len specifies the length of the command string.)
|
|
|
|
DOC_PARAM(flags, Flags for the behavior of the call are specified in the flags parameter.)
|
|
|
|
DOC_RETURN(This call returns non-zero on success.)
|
2016-06-23 23:11:09 +00:00
|
|
|
DOC
|
|
|
|
(
|
2016-07-02 14:15:15 +00:00
|
|
|
A call to exec_system_command executes a command as if called from the command line, and sends the output to
|
|
|
|
a buffer. The buffer identifier can either name a new buffer that does not exist, name a buffer that does
|
|
|
|
exist, or provide the id of a buffer that does exist.
|
2016-06-23 23:11:09 +00:00
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
If the buffer is not already in an open view and the view parameter is not NULL,
|
|
|
|
then the provided view will display the output buffer.
|
2016-06-23 23:11:09 +00:00
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
If the view parameter is NULL, no view will switch to the output.
|
2016-06-23 23:11:09 +00:00
|
|
|
)
|
2016-07-02 14:15:15 +00:00
|
|
|
DOC_SEE(Buffer_Identifier)
|
|
|
|
DOC_SEE(Command_Line_Input_Flag)
|
2016-06-23 23:11:09 +00:00
|
|
|
*/{
|
2016-06-13 18:54:26 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
System_Functions *system = cmd->system;
|
|
|
|
App_Vars *vars = cmd->vars;
|
|
|
|
Models *models = cmd->models;
|
|
|
|
|
|
|
|
char feedback_space[256];
|
|
|
|
String feedback_str = make_fixed_width_string(feedback_space);
|
|
|
|
|
|
|
|
Working_Set *working_set = &models->working_set;
|
|
|
|
CLI_Process *procs = vars->cli_processes.procs, *proc = 0;
|
|
|
|
Editing_File *file = 0;
|
|
|
|
b32 bind_to_new_view = true;
|
|
|
|
General_Memory *general = &models->mem.general;
|
|
|
|
|
|
|
|
Partition *part = &models->mem.part;
|
|
|
|
Temp_Memory temp = begin_temp_memory(part);
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
bool32 result = true;
|
2016-06-13 18:54:26 +00:00
|
|
|
|
2016-06-23 23:11:09 +00:00
|
|
|
View *vptr = imp_get_view(cmd, view);
|
2016-06-13 18:54:26 +00:00
|
|
|
|
|
|
|
if (vars->cli_processes.count < vars->cli_processes.max){
|
|
|
|
file = get_file_from_identifier(system, working_set, buffer);
|
|
|
|
if (file){
|
|
|
|
if (file->settings.read_only == 0){
|
2016-08-28 04:31:06 +00:00
|
|
|
append_ss(&feedback_str, make_lit_string("ERROR: "));
|
|
|
|
append_ss(&feedback_str, file->name.live_name);
|
|
|
|
append_ss(&feedback_str, make_lit_string(" is not a read-only buffer\n"));
|
2016-06-13 18:54:26 +00:00
|
|
|
do_feedback_message(system, models, feedback_str);
|
|
|
|
result = false;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (file->settings.never_kill){
|
2016-08-28 04:31:06 +00:00
|
|
|
append_ss(&feedback_str, make_lit_string("The buffer "));
|
|
|
|
append_ss(&feedback_str, file->name.live_name);
|
|
|
|
append_ss(&feedback_str, make_lit_string(" is not killable"));
|
2016-06-13 18:54:26 +00:00
|
|
|
do_feedback_message(system, models, feedback_str);
|
|
|
|
result = false;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (buffer.name){
|
|
|
|
file = working_set_alloc_always(working_set, general);
|
|
|
|
if (file == 0){
|
2016-08-28 04:31:06 +00:00
|
|
|
append_ss(&feedback_str,
|
|
|
|
make_lit_string("ERROR: unable to allocate a new buffer\n"));
|
2016-06-13 18:54:26 +00:00
|
|
|
do_feedback_message(system, models, feedback_str);
|
|
|
|
result = false;
|
|
|
|
goto done;
|
|
|
|
}
|
2016-08-24 23:01:33 +00:00
|
|
|
|
|
|
|
String name = make_string_terminated(part, buffer.name, buffer.name_len);
|
2016-08-26 17:52:35 +00:00
|
|
|
buffer_bind_name(general, working_set, file, name);
|
2016-08-24 23:01:33 +00:00
|
|
|
init_read_only_file(system, models, file);
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (file){
|
|
|
|
i32 proc_count = vars->cli_processes.count;
|
2016-06-21 14:00:07 +00:00
|
|
|
for (i32 i = 0; i < proc_count; ++i){
|
2016-06-13 18:54:26 +00:00
|
|
|
if (procs[i].out_file == file){
|
|
|
|
if (flags & CLI_OverlapWithConflict){
|
|
|
|
procs[i].out_file = 0;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
file = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (file){
|
2016-07-06 22:04:31 +00:00
|
|
|
file_clear(system, models, file);
|
2016-06-13 18:54:26 +00:00
|
|
|
file->settings.unimportant = 1;
|
|
|
|
|
|
|
|
if (!(flags & CLI_AlwaysBindToView)){
|
2016-06-21 14:00:07 +00:00
|
|
|
View_Iter iter = file_view_iter_init(&models->layout, file, 0);
|
2016-06-13 18:54:26 +00:00
|
|
|
if (file_view_iter_good(iter)){
|
2016-06-23 23:11:09 +00:00
|
|
|
bind_to_new_view = false;
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
2016-08-28 04:31:06 +00:00
|
|
|
append_ss(&feedback_str,
|
|
|
|
make_lit_string("did not begin command-line command because the target buffer is already in use\n"));
|
2016-06-13 18:54:26 +00:00
|
|
|
do_feedback_message(system, models, feedback_str);
|
|
|
|
result = false;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
String path_string = {0};
|
|
|
|
if (!path){
|
|
|
|
terminate_with_null(&models->hot_directory.string);
|
|
|
|
path_string = models->hot_directory.string;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
path_string = make_string_terminated(part, path, path_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
String command_string = {0};
|
|
|
|
|
|
|
|
if (!command){
|
|
|
|
#define NO_SCRIPT " echo no script specified"
|
|
|
|
command_string.str = NO_SCRIPT;
|
|
|
|
command_string.size = sizeof(NO_SCRIPT)-1;
|
|
|
|
#undef NO_SCRIPT
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
command_string = make_string_terminated(part, command, command_len);
|
|
|
|
}
|
|
|
|
|
2016-06-23 23:11:09 +00:00
|
|
|
if (vptr && bind_to_new_view){
|
2016-06-13 18:54:26 +00:00
|
|
|
view_set_file(vptr, file, models);
|
|
|
|
view_show_file(vptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
proc = procs + vars->cli_processes.count++;
|
|
|
|
proc->out_file = file;
|
2016-06-21 17:43:25 +00:00
|
|
|
if (flags & CLI_CursorAtEnd){
|
|
|
|
proc->cursor_at_end = 1;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
proc->cursor_at_end = 0;
|
|
|
|
}
|
2016-06-13 18:54:26 +00:00
|
|
|
|
|
|
|
if (!system->cli_call(path_string.str, command_string.str, &proc->cli)){
|
|
|
|
--vars->cli_processes.count;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
2016-08-28 04:31:06 +00:00
|
|
|
append_ss(&feedback_str, make_lit_string("ERROR: no available process slot\n"));
|
2016-06-13 18:54:26 +00:00
|
|
|
do_feedback_message(system, models, feedback_str);
|
|
|
|
result = false;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
|
|
|
end_temp_memory(temp);
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-06-27 15:52:58 +00:00
|
|
|
API_EXPORT void
|
2016-07-02 14:15:15 +00:00
|
|
|
Clipboard_Post(Application_Links *app, int32_t clipboard_id, char *str, int32_t len)/*
|
|
|
|
DOC_PARAM(clipboard_id, This parameter is set up to prepare for future features, it should always be 0 for now.)
|
|
|
|
DOC_PARAM(str, The str parameter specifies the string to be posted to the clipboard, it need not be null terminated.)
|
|
|
|
DOC_PARAM(len, The len parameter specifies the length of the str string.)
|
2016-06-23 23:11:09 +00:00
|
|
|
DOC
|
|
|
|
(
|
|
|
|
Stores the string str in the clipboard initially with index 0.
|
|
|
|
Also reports the copy to the operating system, so that it may
|
|
|
|
be pasted into other applications.
|
|
|
|
)
|
2016-07-02 14:15:15 +00:00
|
|
|
DOC_SEE(The_4coder_Clipboard)
|
2016-06-23 23:11:09 +00:00
|
|
|
*/{
|
2016-06-14 14:20:15 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
System_Functions *system = cmd->system;
|
|
|
|
Models *models = cmd->models;
|
|
|
|
General_Memory *general = &models->mem.general;
|
|
|
|
Working_Set *working = &models->working_set;
|
|
|
|
|
|
|
|
String *dest = working_set_next_clipboard_string(general, working, len);
|
2016-08-28 04:31:06 +00:00
|
|
|
copy_ss(dest, make_string(str, len));
|
2016-06-14 14:20:15 +00:00
|
|
|
system->post_clipboard(*dest);
|
|
|
|
}
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
API_EXPORT int32_t
|
|
|
|
Clipboard_Count(Application_Links *app, int32_t clipboard_id)/*
|
|
|
|
DOC_PARAM(clipboard_id, This parameter is set up to prepare for future features, it should always be 0 for now.)
|
|
|
|
DOC(This call returns the number of items in the clipboard.)
|
|
|
|
DOC_SEE(The_4coder_Clipboard)
|
2016-06-23 23:11:09 +00:00
|
|
|
*/{
|
2016-06-14 14:20:15 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
Working_Set *working = &cmd->models->working_set;
|
2016-07-02 14:15:15 +00:00
|
|
|
int32_t count = working->clipboard_size;
|
2016-06-14 14:20:15 +00:00
|
|
|
return(count);
|
|
|
|
}
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
API_EXPORT int32_t
|
|
|
|
Clipboard_Index(Application_Links *app, int32_t clipboard_id, int32_t item_index, char *out, int32_t len)/*
|
|
|
|
DOC_PARAM(clipboard_id, This parameter is set up to prepare for future features, it should always be 0 for now.)
|
|
|
|
DOC_PARAM(item_index, This parameter specifies which item to read, 0 is the most recent copy, 1 is the second most recent copy, etc.)
|
2016-07-06 19:18:10 +00:00
|
|
|
DOC_PARAM(out, This parameter provides a buffer where the clipboard contents are written. This parameter may be NULL.)
|
|
|
|
DOC_PARAM(len, This parameter specifies the length of the out buffer.)
|
2016-07-02 14:15:15 +00:00
|
|
|
DOC_RETURN(This call returns the size of the item associated with item_index.)
|
2016-06-23 23:11:09 +00:00
|
|
|
DOC
|
|
|
|
(
|
2016-07-02 14:15:15 +00:00
|
|
|
This function always returns the size of the item even if the output buffer is NULL.
|
|
|
|
If the output buffer is too small to contain the whole string, it is filled with the
|
|
|
|
first len character of the clipboard contents. The output string is not null terminated.
|
2016-06-23 23:11:09 +00:00
|
|
|
)
|
2016-07-02 14:15:15 +00:00
|
|
|
DOC_SEE(The_4coder_Clipboard)
|
2016-06-23 23:11:09 +00:00
|
|
|
*/{
|
2016-06-14 14:20:15 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
Working_Set *working = &cmd->models->working_set;
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
int32_t size = 0;
|
|
|
|
String *str = working_set_clipboard_index(working, item_index);
|
2016-06-14 14:20:15 +00:00
|
|
|
if (str){
|
|
|
|
size = str->size;
|
|
|
|
if (out){
|
2016-08-28 04:31:06 +00:00
|
|
|
String out_str = make_string_cap(out, 0, len);
|
|
|
|
copy_ss(&out_str, *str);
|
2016-06-14 14:20:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(size);
|
|
|
|
}
|
|
|
|
|
2016-07-10 05:49:11 +00:00
|
|
|
API_EXPORT int32_t
|
|
|
|
Get_Buffer_Count(Application_Links *app)/*
|
|
|
|
DOC(TODO)
|
|
|
|
*/{
|
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
Working_Set *working_set = &cmd->models->working_set;
|
|
|
|
int32_t result = working_set->file_count;
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-06-20 20:34:48 +00:00
|
|
|
internal void
|
|
|
|
internal_get_buffer_first(Working_Set *working_set, Buffer_Summary *buffer){
|
2016-06-13 18:54:26 +00:00
|
|
|
if (working_set->file_count > 0){
|
2016-06-20 20:34:48 +00:00
|
|
|
fill_buffer_summary(buffer, (Editing_File*)working_set->used_sentinel.next, working_set);
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-20 20:34:48 +00:00
|
|
|
internal void
|
|
|
|
internal_get_buffer_next(Working_Set *working_set, Buffer_Summary *buffer){
|
2016-06-13 18:54:26 +00:00
|
|
|
Editing_File *file;
|
|
|
|
|
|
|
|
file = working_set_get_active_file(working_set, buffer->buffer_id);
|
|
|
|
if (file){
|
|
|
|
file = (Editing_File*)file->node.next;
|
|
|
|
fill_buffer_summary(buffer, file, working_set);
|
|
|
|
}
|
|
|
|
else{
|
2016-09-01 19:40:25 +00:00
|
|
|
*buffer = null_buffer_summary;
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-27 15:52:58 +00:00
|
|
|
API_EXPORT Buffer_Summary
|
2016-07-02 14:15:15 +00:00
|
|
|
Get_Buffer_First(Application_Links *app, Access_Flag access)/*
|
|
|
|
DOC_PARAM(access, The access parameter determines what levels of protection this call can access.)
|
|
|
|
DOC_RETURN(This call returns the summary of the first buffer in a buffer loop.)
|
2016-06-23 23:11:09 +00:00
|
|
|
DOC
|
|
|
|
(
|
2016-07-02 14:15:15 +00:00
|
|
|
This call begins a loop across all the buffers.
|
2016-06-23 23:11:09 +00:00
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
If the buffer returned does not exist, the loop is finished.
|
|
|
|
Buffers should not be killed durring a buffer loop.
|
2016-06-23 23:11:09 +00:00
|
|
|
)
|
2016-07-12 18:20:06 +00:00
|
|
|
DOC_SEE(Buffer_Summary)
|
2016-06-23 23:11:09 +00:00
|
|
|
DOC_SEE(Access_Flag)
|
|
|
|
DOC_SEE(get_buffer_next)
|
|
|
|
*/{
|
2016-06-20 20:34:48 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
Working_Set *working_set = &cmd->models->working_set;
|
|
|
|
Buffer_Summary result = {};
|
|
|
|
|
|
|
|
internal_get_buffer_first(working_set, &result);
|
|
|
|
while (result.exists && !access_test(result.lock_flags, access)){
|
|
|
|
internal_get_buffer_next(working_set, &result);
|
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-06-27 15:52:58 +00:00
|
|
|
API_EXPORT void
|
2016-07-02 14:15:15 +00:00
|
|
|
Get_Buffer_Next(Application_Links *app, Buffer_Summary *buffer, Access_Flag access)/*
|
2016-07-05 01:36:30 +00:00
|
|
|
DOC_PARAM(buffer, The Buffer_Summary pointed to by buffer is iterated to the next buffer or to a null summary if this is the last buffer.)
|
2016-07-02 14:15:15 +00:00
|
|
|
DOC_PARAM(access, The access parameter determines what levels of protection this call can access. The buffer outputted will be the next buffer that is accessible.)
|
2016-06-23 23:11:09 +00:00
|
|
|
DOC
|
|
|
|
(
|
2016-07-05 01:36:30 +00:00
|
|
|
This call steps a Buffer_Summary to the next buffer in the global buffer order.
|
2016-07-02 14:15:15 +00:00
|
|
|
The global buffer order is kept roughly in the order of most recently used to least recently used.
|
2016-06-23 23:11:09 +00:00
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
If the buffer outputted does not exist, the loop is finished.
|
|
|
|
Buffers should not be killed or created durring a buffer loop.
|
2016-06-23 23:11:09 +00:00
|
|
|
)
|
2016-07-12 18:20:06 +00:00
|
|
|
DOC_SEE(Buffer_Summary)
|
2016-06-23 23:11:09 +00:00
|
|
|
DOC_SEE(Access_Flag)
|
|
|
|
DOC_SEE(get_buffer_first)
|
|
|
|
*/{
|
2016-06-20 20:34:48 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
Working_Set *working_set = &cmd->models->working_set;
|
|
|
|
|
|
|
|
internal_get_buffer_next(working_set, buffer);
|
|
|
|
while (buffer->exists && !access_test(buffer->lock_flags, access)){
|
|
|
|
internal_get_buffer_next(working_set, buffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-27 15:52:58 +00:00
|
|
|
API_EXPORT Buffer_Summary
|
2016-07-02 14:15:15 +00:00
|
|
|
Get_Buffer(Application_Links *app, Buffer_ID buffer_id, Access_Flag access)/*
|
|
|
|
DOC_PARAM(buffer_id, The parameter buffer_id specifies which buffer to try to get.)
|
|
|
|
DOC_PARAM(access, The access parameter determines what levels of protection this call can access.)
|
|
|
|
DOC_RETURN(This call returns a summary that describes the indicated buffer if it exists and is accessible.)
|
2016-07-12 18:20:06 +00:00
|
|
|
DOC_SEE(Buffer_Summary)
|
2016-07-02 14:15:15 +00:00
|
|
|
DOC_SEE(Access_Flag)
|
|
|
|
DOC_SEE(Buffer_ID)
|
2016-06-23 23:11:09 +00:00
|
|
|
*/{
|
2016-06-13 18:54:26 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
Working_Set *working_set = &cmd->models->working_set;
|
|
|
|
Buffer_Summary buffer = {};
|
|
|
|
Editing_File *file;
|
|
|
|
|
2016-06-23 23:11:09 +00:00
|
|
|
file = working_set_get_active_file(working_set, buffer_id);
|
2016-06-13 18:54:26 +00:00
|
|
|
if (file){
|
|
|
|
fill_buffer_summary(&buffer, file, working_set);
|
2016-06-20 20:34:48 +00:00
|
|
|
if (!access_test(buffer.lock_flags, access)){
|
2016-09-01 19:40:25 +00:00
|
|
|
buffer = null_buffer_summary;
|
2016-06-20 20:34:48 +00:00
|
|
|
}
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(buffer);
|
|
|
|
}
|
|
|
|
|
2016-06-27 15:52:58 +00:00
|
|
|
API_EXPORT Buffer_Summary
|
2016-07-02 14:15:15 +00:00
|
|
|
Get_Buffer_By_Name(Application_Links *app, char *name, int32_t len, Access_Flag access)/*
|
|
|
|
DOC_PARAM(name, The name parameter specifies the buffer name to try to get. The string need not be null terminated.)
|
|
|
|
DOC_PARAM(len, The len parameter specifies the length of the name string.)
|
|
|
|
DOC_PARAM(access, The access parameter determines what levels of protection this call can access.)
|
|
|
|
DOC_RETURN(This call returns a summary that describes the indicated buffer if it exists and is accessible.)
|
2016-07-12 18:20:06 +00:00
|
|
|
DOC_SEE(Buffer_Summary)
|
2016-07-02 14:15:15 +00:00
|
|
|
DOC_SEE(Access_Flag)
|
2016-06-23 23:11:09 +00:00
|
|
|
*/{
|
2016-06-13 18:54:26 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
Buffer_Summary buffer = {};
|
|
|
|
Editing_File *file;
|
|
|
|
Working_Set *working_set = &cmd->models->working_set;
|
|
|
|
|
2016-08-24 23:01:33 +00:00
|
|
|
String str = make_string(name, len);
|
|
|
|
file = working_set_name_contains(working_set, str);
|
2016-06-13 18:54:26 +00:00
|
|
|
if (file && !file->is_dummy){
|
|
|
|
fill_buffer_summary(&buffer, file, working_set);
|
2016-06-20 20:34:48 +00:00
|
|
|
if (!access_test(buffer.lock_flags, access)){
|
2016-09-01 19:40:25 +00:00
|
|
|
buffer = null_buffer_summary;
|
2016-06-20 20:34:48 +00:00
|
|
|
}
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(buffer);
|
|
|
|
}
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
API_EXPORT bool32
|
|
|
|
Buffer_Read_Range(Application_Links *app, Buffer_Summary *buffer, int32_t start, int32_t end, char *out)/*
|
|
|
|
DOC_PARAM(buffer, This parameter specifies the buffer to read.)
|
|
|
|
DOC_PARAM(start, This parameter specifies absolute position of the first character in the read range.)
|
|
|
|
DOC_PARAM(end, This parameter specifies the absolute position of the the character one past the end of the read range.)
|
|
|
|
DOC_PARAM(out, This paramter provides the output character buffer to fill with the result of the read.)
|
|
|
|
DOC_RETURN(This call returns non-zero if the read succeeds.)
|
2016-06-23 23:11:09 +00:00
|
|
|
DOC
|
|
|
|
(
|
2016-06-28 22:58:50 +00:00
|
|
|
The output buffer must have a capacity of at least (end - start).
|
2016-06-23 23:11:09 +00:00
|
|
|
The output is not null terminated.
|
2016-06-27 14:25:17 +00:00
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
This call fails if the buffer does not exist,
|
|
|
|
or if the read range is not within the bounds of the buffer.
|
2016-06-23 23:11:09 +00:00
|
|
|
)
|
2016-07-02 14:15:15 +00:00
|
|
|
DOC_SEE(4coder_Buffer_Positioning_System)
|
2016-06-23 23:11:09 +00:00
|
|
|
*/{
|
2016-06-13 18:54:26 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
2016-06-14 20:40:57 +00:00
|
|
|
Editing_File *file = imp_get_file(cmd, buffer);
|
2016-07-02 14:15:15 +00:00
|
|
|
bool32 result = false;
|
|
|
|
int32_t size = 0;
|
2016-06-13 18:54:26 +00:00
|
|
|
|
2016-06-14 20:40:57 +00:00
|
|
|
if (file){
|
|
|
|
size = buffer_size(&file->state.buffer);
|
|
|
|
if (0 <= start && start <= end && end <= size){
|
|
|
|
result = true;
|
|
|
|
buffer_stringify(&file->state.buffer, start, end, out);
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
2016-06-14 20:40:57 +00:00
|
|
|
fill_buffer_summary(buffer, file, cmd);
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
API_EXPORT bool32
|
|
|
|
Buffer_Replace_Range(Application_Links *app, Buffer_Summary *buffer, int32_t start, int32_t end, char *str, int32_t len)/*
|
|
|
|
DOC_PARAM(buffer, This parameter specifies the buffer to edit.)
|
|
|
|
DOC_PARAM(start, This parameter specifies absolute position of the first character in the replace range.)
|
|
|
|
DOC_PARAM(end, This parameter specifies the absolute position of the the character one past the end of the replace range.)
|
|
|
|
DOC_PARAM(str, This parameter specifies the the string to write into the range; it need not be null terminated.)
|
|
|
|
DOC_PARAM(len, This parameter specifies the length of the str string.)
|
|
|
|
DOC_RETURN(This call returns non-zero if the replacement succeeds.)
|
2016-06-23 23:11:09 +00:00
|
|
|
DOC
|
|
|
|
(
|
2016-06-27 14:25:17 +00:00
|
|
|
If this call succeeds it deletes the range from start to end
|
|
|
|
and writes str in the same position. If end == start then
|
|
|
|
this call is equivalent to inserting the string at start.
|
|
|
|
If len == 0 this call is equivalent to deleteing the range
|
|
|
|
from start to end.
|
|
|
|
|
|
|
|
This call fails if the buffer does not exist, or if the replace
|
|
|
|
range is not within the bounds of the buffer.
|
2016-06-23 23:11:09 +00:00
|
|
|
)
|
2016-07-02 14:15:15 +00:00
|
|
|
DOC_SEE(4coder_Buffer_Positioning_System)
|
2016-06-23 23:11:09 +00:00
|
|
|
*/{
|
2016-06-13 18:54:26 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
2016-06-14 20:40:57 +00:00
|
|
|
Editing_File *file = imp_get_file(cmd, buffer);
|
2016-06-13 18:54:26 +00:00
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
bool32 result = false;
|
|
|
|
int32_t size = 0;
|
2016-06-13 18:54:26 +00:00
|
|
|
|
2016-06-14 20:40:57 +00:00
|
|
|
if (file){
|
|
|
|
size = buffer_size(&file->state.buffer);
|
|
|
|
if (0 <= start && start <= end && end <= size){
|
2016-06-23 23:11:09 +00:00
|
|
|
result = true;
|
2016-06-14 20:40:57 +00:00
|
|
|
|
|
|
|
file_replace_range(cmd->system, cmd->models,
|
2016-07-06 22:04:31 +00:00
|
|
|
file, start, end, str, len);
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
2016-06-14 20:40:57 +00:00
|
|
|
fill_buffer_summary(buffer, file, cmd);
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-07-12 18:20:06 +00:00
|
|
|
API_EXPORT bool32
|
|
|
|
Buffer_Compute_Cursor(Application_Links *app, Buffer_Summary *buffer, Buffer_Seek seek, Partial_Cursor *cursor_out)/*
|
|
|
|
DOC_PARAM(buffer, The buffer parameter specifies the buffer on which to run the cursor computation.)
|
|
|
|
DOC_PARAM(seek, The seek parameter specifies the target position for the seek.)
|
|
|
|
DOC_PARAM(cursor_out, On success this struct is filled with the result of the seek.)
|
2016-09-08 00:32:31 +00:00
|
|
|
DOC_RETURN(This call returns non-zero on success. This call can fail if the buffer summary provided
|
|
|
|
does not summarize an actual buffer in 4coder, or if the provided seek format is invalid. The valid
|
|
|
|
seek types are seek_pos and seek_line_char.)
|
2016-07-12 18:20:06 +00:00
|
|
|
DOC(Computes a Partial_Cursor for the given seek position with no side effects.
|
|
|
|
The seek position must be one of the types supported by Partial_Cursor. Those
|
|
|
|
types are absolute position and line,column position.)
|
|
|
|
DOC_SEE(Buffer_Seek)
|
|
|
|
DOC_SEE(Partial_Cursor)
|
|
|
|
*/{
|
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
Editing_File *file = imp_get_file(cmd, buffer);
|
|
|
|
bool32 result = false;
|
|
|
|
|
|
|
|
if (file){
|
2016-09-23 20:02:58 +00:00
|
|
|
if (file_compute_partial_cursor(file, seek, cursor_out)){
|
2016-07-12 18:20:06 +00:00
|
|
|
result = true;
|
|
|
|
fill_buffer_summary(buffer, file, cmd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
API_EXPORT bool32
|
2016-07-08 21:47:37 +00:00
|
|
|
Buffer_Batch_Edit(Application_Links *app, Buffer_Summary *buffer, char *str, int32_t str_len, Buffer_Edit *edits, int32_t edit_count, Buffer_Batch_Edit_Type type)/*
|
2016-09-19 02:49:25 +00:00
|
|
|
DOC_PARAM(buffer, The buffer on which to apply the batch of edits.)
|
2016-07-08 21:47:37 +00:00
|
|
|
DOC_PARAM(str, This parameter provides all of the source string for the edits in the batch.)
|
|
|
|
DOC_PARAM(str_len, This parameter specifies the length of the str string.)
|
|
|
|
DOC_PARAM(edits, This parameter provides about the source string and destination range of each edit as an array.)
|
|
|
|
DOC_PARAM(edit_count, This parameter specifies the number of Buffer_Edit structs in edits.)
|
|
|
|
DOC_PARAM(type, This prameter specifies what type of batch edit to execute.)
|
2016-09-08 00:32:31 +00:00
|
|
|
DOC_RETURN(This call returns non-zero if the batch edit succeeds. This call can fail if the provided
|
|
|
|
buffer summary does not refer to an actual buffer in 4coder.)
|
2016-07-10 05:49:11 +00:00
|
|
|
DOC(TODO)
|
2016-07-08 21:47:37 +00:00
|
|
|
DOC_SEE(Buffer_Edit)
|
|
|
|
DOC_SEE(Buffer_Batch_Edit_Type)
|
|
|
|
*/{
|
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
2016-07-09 04:39:14 +00:00
|
|
|
Models *models = cmd->models;
|
|
|
|
Mem_Options *mem = &models->mem;
|
|
|
|
Partition *part = &mem->part;
|
2016-07-08 21:47:37 +00:00
|
|
|
Editing_File *file = imp_get_file(cmd, buffer);
|
|
|
|
|
|
|
|
bool32 result = false;
|
|
|
|
|
|
|
|
if (file){
|
2016-07-15 15:45:02 +00:00
|
|
|
if (edit_count > 0){
|
|
|
|
Temp_Memory temp = begin_temp_memory(part);
|
|
|
|
Buffer_Edit *inverse_edits = push_array(part, Buffer_Edit, edit_count);
|
|
|
|
Assert(inverse_edits);
|
|
|
|
|
|
|
|
char *inv_str = (char*)part->base + part->pos;
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t inv_str_max = part->max - part->pos;
|
2016-07-15 15:45:02 +00:00
|
|
|
|
|
|
|
Edit_Spec spec =
|
|
|
|
file_compute_edit(mem, file,
|
|
|
|
edits, str, str_len,
|
|
|
|
inverse_edits, inv_str, inv_str_max,
|
|
|
|
edit_count, type);
|
|
|
|
|
|
|
|
file_do_batch_edit(cmd->system, models, file, spec, hist_normal, type);
|
|
|
|
|
|
|
|
end_temp_memory(temp);
|
|
|
|
}
|
2016-09-08 00:32:31 +00:00
|
|
|
|
|
|
|
result = true;
|
2016-07-08 21:47:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-09-22 00:01:12 +00:00
|
|
|
API_EXPORT int32_t
|
|
|
|
Buffer_Get_Setting(Application_Links *app, Buffer_Summary *buffer, Buffer_Setting_ID setting){
|
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
Editing_File *file = imp_get_file(cmd, buffer);
|
|
|
|
int32_t result = -1;
|
|
|
|
|
|
|
|
if (file){
|
|
|
|
switch (setting){
|
2016-10-05 06:08:23 +00:00
|
|
|
case BufferSetting_Lex: result = file->settings.tokens_exist; break;
|
|
|
|
case BufferSetting_WrapLine: result = !file->settings.unwrapped_lines; break;
|
|
|
|
case BufferSetting_WrapPosition: result = file->settings.display_width; break;
|
|
|
|
case BufferSetting_MapID: result = file->settings.base_map_id; break;
|
|
|
|
case BufferSetting_Eol: result = file->settings.dos_write_mode; break;
|
|
|
|
case BufferSetting_Unimportant: result = file->settings.unimportant; break;
|
|
|
|
case BufferSetting_ReadOnly: result = file->settings.read_only; break;
|
|
|
|
case BufferSetting_VirtualWhitespace: result = file->settings.virtual_white; break;
|
2016-09-22 00:01:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-07-08 21:47:37 +00:00
|
|
|
API_EXPORT bool32
|
2016-09-17 00:03:09 +00:00
|
|
|
Buffer_Set_Setting(Application_Links *app, Buffer_Summary *buffer, Buffer_Setting_ID setting, int32_t value)
|
|
|
|
/*
|
2016-07-02 14:15:15 +00:00
|
|
|
DOC_PARAM(buffer, The buffer parameter specifies the buffer on which to set a setting.)
|
|
|
|
DOC_PARAM(setting, The setting parameter identifies the setting that shall be changed.)
|
|
|
|
DOC_PARAM(value, The value parameter specifies the value to which the setting shall be changed.)
|
2016-06-24 02:21:11 +00:00
|
|
|
DOC_SEE(Buffer_Setting_ID)
|
|
|
|
*/{
|
2016-06-13 18:54:26 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
System_Functions *system = cmd->system;
|
|
|
|
Models *models = cmd->models;
|
2016-06-14 20:40:57 +00:00
|
|
|
Editing_File *file = imp_get_file(cmd, buffer);
|
2016-06-13 18:54:26 +00:00
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
bool32 result = false;
|
2016-06-13 18:54:26 +00:00
|
|
|
|
|
|
|
i32 new_mapid = 0;
|
|
|
|
|
2016-06-14 20:40:57 +00:00
|
|
|
if (file){
|
|
|
|
result = true;
|
|
|
|
switch (setting){
|
|
|
|
case BufferSetting_Lex:
|
|
|
|
{
|
|
|
|
if (file->settings.tokens_exist){
|
|
|
|
if (!value){
|
|
|
|
file_kill_tokens(system, &models->mem.general, file);
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
2016-06-14 20:40:57 +00:00
|
|
|
}
|
|
|
|
else{
|
|
|
|
if (value){
|
|
|
|
file_first_lex_parallel(system, &models->mem.general, file);
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
2016-06-14 20:40:57 +00:00
|
|
|
}
|
|
|
|
}break;
|
|
|
|
|
|
|
|
case BufferSetting_WrapLine:
|
|
|
|
{
|
|
|
|
file->settings.unwrapped_lines = !value;
|
|
|
|
}break;
|
|
|
|
|
2016-09-22 00:01:12 +00:00
|
|
|
case BufferSetting_WrapPosition:
|
|
|
|
{
|
|
|
|
i32 new_value = value;
|
|
|
|
if (new_value < 48){
|
|
|
|
new_value = 48;
|
|
|
|
}
|
|
|
|
if (new_value != file->settings.display_width){
|
|
|
|
i16 font_id = file->settings.font_id;
|
|
|
|
Render_Font *font = get_font_info(models->font_set, font_id)->font;
|
2016-10-01 00:33:13 +00:00
|
|
|
file_set_display_width_and_fix_cursor(models, file, new_value,
|
|
|
|
(f32)font->height, font->advance_data);
|
2016-09-22 00:01:12 +00:00
|
|
|
}
|
|
|
|
}break;
|
|
|
|
|
2016-06-14 20:40:57 +00:00
|
|
|
case BufferSetting_MapID:
|
|
|
|
{
|
|
|
|
if (value == mapid_global){
|
|
|
|
file->settings.base_map_id = mapid_global;
|
|
|
|
}
|
|
|
|
else if (value == mapid_file){
|
|
|
|
file->settings.base_map_id = mapid_file;
|
|
|
|
}
|
|
|
|
else if (value < mapid_global){
|
|
|
|
new_mapid = get_map_index(models, value);
|
|
|
|
if (new_mapid < models->user_map_count){
|
|
|
|
file->settings.base_map_id = value;
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
2016-06-14 20:40:57 +00:00
|
|
|
else{
|
2016-06-13 18:54:26 +00:00
|
|
|
file->settings.base_map_id = mapid_file;
|
|
|
|
}
|
2016-06-14 20:40:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (View_Iter iter = file_view_iter_init(&models->layout, file, 0);
|
|
|
|
file_view_iter_good(iter);
|
|
|
|
iter = file_view_iter_next(iter)){
|
|
|
|
iter.view->map = get_map(models, file->settings.base_map_id);
|
|
|
|
}
|
|
|
|
}break;
|
2016-07-04 20:40:57 +00:00
|
|
|
|
|
|
|
case BufferSetting_Eol:
|
|
|
|
{
|
|
|
|
file->settings.dos_write_mode = value;
|
|
|
|
}break;
|
2016-07-12 18:20:06 +00:00
|
|
|
|
|
|
|
case BufferSetting_Unimportant:
|
|
|
|
{
|
|
|
|
if (value){
|
2016-09-22 00:01:12 +00:00
|
|
|
file->settings.unimportant = 1;
|
2016-07-12 18:20:06 +00:00
|
|
|
}
|
|
|
|
else{
|
2016-09-22 00:01:12 +00:00
|
|
|
file->settings.unimportant = 0;
|
2016-07-12 18:20:06 +00:00
|
|
|
}
|
|
|
|
}break;
|
|
|
|
|
|
|
|
case BufferSetting_ReadOnly:
|
|
|
|
{
|
|
|
|
if (value){
|
2016-09-22 00:01:12 +00:00
|
|
|
file->settings.read_only = 1;
|
2016-07-12 18:20:06 +00:00
|
|
|
}
|
|
|
|
else{
|
2016-09-22 00:01:12 +00:00
|
|
|
file->settings.read_only = 0;
|
2016-07-12 18:20:06 +00:00
|
|
|
}
|
|
|
|
}break;
|
2016-10-05 06:08:23 +00:00
|
|
|
|
|
|
|
case BufferSetting_VirtualWhitespace:
|
|
|
|
{
|
|
|
|
b32 full_remeasure = 0;
|
|
|
|
if (value){
|
|
|
|
if (!file->settings.virtual_white){
|
|
|
|
file->settings.virtual_white = 1;
|
|
|
|
full_remeasure = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
if (file->settings.virtual_white){
|
|
|
|
file->settings.virtual_white = 0;
|
|
|
|
full_remeasure = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (full_remeasure){
|
|
|
|
i16 font_id = file->settings.font_id;
|
|
|
|
Render_Font *font = get_font_info(models->font_set, font_id)->font;
|
|
|
|
|
|
|
|
file_measure_character_starts(models, file);
|
|
|
|
file_measure_wraps_and_fix_cursor(models, file, (f32)font->height,
|
|
|
|
font->advance_data);
|
|
|
|
}
|
|
|
|
}break;
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
2016-06-14 20:40:57 +00:00
|
|
|
fill_buffer_summary(buffer, file, cmd);
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-09-08 00:32:31 +00:00
|
|
|
API_EXPORT int32_t
|
2016-09-17 00:03:09 +00:00
|
|
|
Buffer_Token_Count(Application_Links *app, Buffer_Summary *buffer)
|
|
|
|
/*
|
2016-09-08 22:57:37 +00:00
|
|
|
DOC_PARAM(buffer, Specifies the buffer from which to read the token count.)
|
|
|
|
DOC_RETURN(If tokens are available for the buffer, the number of tokens on the buffer is returned.
|
|
|
|
If the buffer does not exist or if it is not a lexed buffer, the return is zero.)
|
|
|
|
*/{
|
2016-06-24 02:53:33 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
2016-09-08 00:32:31 +00:00
|
|
|
Editing_File *file = imp_get_file(cmd, buffer);
|
2016-06-24 02:53:33 +00:00
|
|
|
|
2016-09-08 00:32:31 +00:00
|
|
|
int32_t count = 0;
|
2016-06-24 02:53:33 +00:00
|
|
|
|
2016-09-08 00:32:31 +00:00
|
|
|
if (file && file->state.token_array.tokens && file->state.tokens_complete){
|
|
|
|
count = file->state.token_array.count;
|
|
|
|
}
|
|
|
|
|
|
|
|
return(count);
|
|
|
|
}
|
|
|
|
|
|
|
|
API_EXPORT bool32
|
2016-09-17 00:03:09 +00:00
|
|
|
Buffer_Read_Tokens(Application_Links *app, Buffer_Summary *buffer, int32_t start_token, int32_t end_token, Cpp_Token *tokens_out)
|
|
|
|
/*
|
2016-09-08 22:57:37 +00:00
|
|
|
DOC_PARAM(buffer, Specifies the buffer from which to read tokens.)
|
|
|
|
DOC_PARAM(first_token, Specifies the index of the first token to read.)
|
|
|
|
DOC_PARAM(end_token, Specifies the token to stop reading at.)
|
|
|
|
DOC_PARAM(tokens_out, The memory that will store the tokens read from the buffer.)
|
|
|
|
DOC_RETURN(Returns non-zero on success. This call can fail if the buffer doesn't
|
|
|
|
exist or doesn't have tokens ready, or if either the first or last index is out of bounds.)
|
|
|
|
DOC(Puts the data for the tokens with the indices [first_token,last_token) into the tokens_out array.
|
|
|
|
The number of output tokens will be end_token - start_token.)
|
|
|
|
*/{
|
2016-09-08 00:32:31 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
2016-06-24 02:53:33 +00:00
|
|
|
Editing_File *file = imp_get_file(cmd, buffer);
|
2016-09-08 22:57:37 +00:00
|
|
|
Cpp_Token_Array token_array = file->state.token_array;
|
2016-09-08 00:32:31 +00:00
|
|
|
|
|
|
|
bool32 result = 0;
|
2016-09-08 22:57:37 +00:00
|
|
|
if (file && token_array.tokens && file->state.tokens_complete){
|
|
|
|
if (0 <= start_token && start_token <= end_token && end_token <= token_array.count){
|
|
|
|
result = 1;
|
|
|
|
memcpy(tokens_out, token_array.tokens + start_token, sizeof(Cpp_Token)*(end_token - start_token));
|
|
|
|
}
|
2016-06-24 02:53:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-09-15 15:01:52 +00:00
|
|
|
API_EXPORT bool32
|
2016-09-17 00:03:09 +00:00
|
|
|
Buffer_Get_Token_Index(Application_Links *app, Buffer_Summary *buffer, int32_t pos, Cpp_Get_Token_Result *get_result)
|
|
|
|
/*
|
|
|
|
DOC_PARAM(buffer, The buffer from which to get a token.)
|
|
|
|
DOC_PARAM(pos, The position in the buffer in absolute coordinates.)
|
|
|
|
DOC_PARAM(get_result, The output struct specifying which token contains pos.)
|
|
|
|
DOC_RETURN(Returns non-zero on success. This call can fail if the buffer doesn't exist,
|
|
|
|
or if the buffer doesn't have tokens ready.)
|
|
|
|
DOC(This call finds the token that contains a particular position, or if the position is in between
|
|
|
|
tokens it finds the index of the token to the left of the position.)
|
|
|
|
DOC_SEE(Cpp_Get_Token_Result)
|
|
|
|
DOC_SEE(cpp_get_token)
|
|
|
|
*/{
|
2016-09-15 15:01:52 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
Editing_File *file = imp_get_file(cmd, buffer);
|
|
|
|
Cpp_Token_Array token_array = file->state.token_array;
|
|
|
|
|
|
|
|
bool32 result = 0;
|
|
|
|
if (file && token_array.tokens && file->state.tokens_complete){
|
|
|
|
result = 1;
|
|
|
|
Cpp_Get_Token_Result get = {0};
|
2016-09-23 17:50:55 +00:00
|
|
|
get = cpp_get_token(token_array, pos);
|
2016-09-15 15:01:52 +00:00
|
|
|
*get_result = get;
|
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-06-27 15:52:58 +00:00
|
|
|
API_EXPORT Buffer_Summary
|
2016-07-02 14:15:15 +00:00
|
|
|
Create_Buffer(Application_Links *app, char *filename, int32_t filename_len, Buffer_Create_Flag flags)/*
|
2016-09-08 22:57:37 +00:00
|
|
|
DOC_PARAM(filename, The filename parameter specifies the name of the file to be opened or created;
|
|
|
|
it need not be null terminated.)
|
2016-07-02 14:15:15 +00:00
|
|
|
DOC_PARAM(filename_len, The filename_len parameter spcifies the length of the filename string.)
|
|
|
|
DOC_PARAM(flags, The flags parameter specifies behaviors for buffer creation.)
|
|
|
|
DOC_RETURN(This call returns the summary of the created buffer.)
|
2016-09-08 22:57:37 +00:00
|
|
|
|
|
|
|
DOC(Tries to create a new buffer and associate it to the given filename. If such a buffer
|
|
|
|
already exists the existing buffer is returned in the Buffer_Summary and no new buffer is
|
|
|
|
created. If the buffer does not exist a new buffer is created and named after the given
|
|
|
|
filename. If the filename corresponds to a file on the disk that file is loaded and put into
|
|
|
|
buffer, if the filename does not correspond to a file on disk the buffer is created empty.)
|
|
|
|
|
2016-07-12 18:20:06 +00:00
|
|
|
DOC_SEE(Buffer_Summary)
|
2016-06-24 02:21:11 +00:00
|
|
|
DOC_SEE(Buffer_Create_Flag)
|
|
|
|
*/{
|
2016-06-17 03:31:15 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
System_Functions *system = cmd->system;
|
|
|
|
Models *models = cmd->models;
|
|
|
|
Working_Set *working_set = &models->working_set;
|
|
|
|
General_Memory *general = &models->mem.general;
|
|
|
|
Partition *part = &models->mem.part;
|
|
|
|
|
|
|
|
Buffer_Summary result = {0};
|
|
|
|
|
2016-08-26 17:52:35 +00:00
|
|
|
String fname = make_string(filename, filename_len);
|
|
|
|
|
2016-06-17 03:31:15 +00:00
|
|
|
Temp_Memory temp = begin_temp_memory(part);
|
2016-08-26 19:35:50 +00:00
|
|
|
|
2016-06-17 03:31:15 +00:00
|
|
|
if (filename != 0){
|
2016-08-26 19:35:50 +00:00
|
|
|
Editing_File *file = 0;
|
|
|
|
b32 do_new_file = false;
|
|
|
|
Plat_Handle handle = {0};
|
2016-07-20 15:19:54 +00:00
|
|
|
|
2016-08-26 19:35:50 +00:00
|
|
|
Editing_File_Canon_Name canon = {0};
|
2016-08-26 17:52:35 +00:00
|
|
|
if (get_canon_name(system, &canon, fname)){
|
2016-08-26 19:35:50 +00:00
|
|
|
file = working_set_canon_contains(working_set, canon.name);
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
do_new_file = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!file){
|
|
|
|
file = working_set_name_contains(working_set, fname);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!file){
|
|
|
|
if (!do_new_file){
|
2016-08-26 17:52:35 +00:00
|
|
|
if (flags & BufferCreate_AlwaysNew){
|
2016-06-24 02:21:11 +00:00
|
|
|
do_new_file = true;
|
|
|
|
}
|
2016-08-26 17:52:35 +00:00
|
|
|
else{
|
|
|
|
if (!system->load_handle(canon.name.str, &handle)){
|
|
|
|
do_new_file = true;
|
|
|
|
}
|
|
|
|
}
|
2016-08-26 19:35:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!do_new_file){
|
|
|
|
Assert(!handle_equal(handle, handle_zero()));
|
2016-06-17 03:31:15 +00:00
|
|
|
|
2016-08-26 19:35:50 +00:00
|
|
|
i32 size = system->load_size(handle);
|
|
|
|
b32 in_general_mem = false;
|
|
|
|
char *buffer = push_array(part, char, size);
|
|
|
|
|
|
|
|
if (buffer == 0){
|
|
|
|
buffer = (char*)general_memory_allocate(general, size);
|
|
|
|
Assert(buffer != 0);
|
|
|
|
in_general_mem = true;
|
2016-06-17 03:31:15 +00:00
|
|
|
}
|
2016-08-26 19:35:50 +00:00
|
|
|
|
|
|
|
if (system->load_file(handle, buffer, size)){
|
2016-06-17 03:31:15 +00:00
|
|
|
file = working_set_alloc_always(working_set, general);
|
|
|
|
if (file){
|
2016-08-26 21:30:08 +00:00
|
|
|
buffer_bind_file(system, general, working_set, file, canon.name);
|
2016-08-26 17:52:35 +00:00
|
|
|
buffer_bind_name(general, working_set, file, fname);
|
2016-08-26 19:35:50 +00:00
|
|
|
init_normal_file(system, models, file, buffer, size);
|
2016-06-17 03:31:15 +00:00
|
|
|
fill_buffer_summary(&result, file, cmd);
|
|
|
|
}
|
|
|
|
}
|
2016-08-26 19:35:50 +00:00
|
|
|
|
|
|
|
if (in_general_mem){
|
|
|
|
general_memory_free(general, buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
system->load_close(handle);
|
2016-06-17 03:31:15 +00:00
|
|
|
}
|
2016-09-01 00:26:52 +00:00
|
|
|
else if (!(flags & BufferCreate_NeverNew)){
|
2016-08-26 19:35:50 +00:00
|
|
|
file = working_set_alloc_always(working_set, general);
|
|
|
|
if (file){
|
|
|
|
buffer_bind_name(general, working_set, file, fname);
|
|
|
|
init_normal_file(system, models, file, 0, 0);
|
|
|
|
fill_buffer_summary(&result, file, cmd);
|
|
|
|
}
|
2016-06-17 03:31:15 +00:00
|
|
|
}
|
|
|
|
}
|
2016-08-26 19:35:50 +00:00
|
|
|
else{
|
|
|
|
fill_buffer_summary(&result, file, cmd);
|
|
|
|
}
|
2016-06-17 03:31:15 +00:00
|
|
|
}
|
|
|
|
end_temp_memory(temp);
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
API_EXPORT bool32
|
|
|
|
Save_Buffer(Application_Links *app, Buffer_Summary *buffer, char *filename, int32_t filename_len, uint32_t flags)/*
|
|
|
|
DOC_PARAM(buffer, The buffer parameter specifies the buffer to save to a file.)
|
|
|
|
DOC_PARAM(filename, The filename parameter specifies the name of the file to associated to the buffer; it need not be null terminated.)
|
|
|
|
DOC_PARAM(filename_len, The filename_len parameter specifies the length of the filename string.)
|
|
|
|
DOC_PARAM(flags, This parameter is not currently used and should be set to 0 for now.)
|
|
|
|
DOC_RETURN(This call returns non-zero on success.)
|
2016-06-24 02:21:11 +00:00
|
|
|
*/{
|
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
System_Functions *system = cmd->system;
|
|
|
|
Models *models = cmd->models;
|
2016-07-02 14:15:15 +00:00
|
|
|
bool32 result = false;
|
2016-06-24 02:21:11 +00:00
|
|
|
|
|
|
|
Editing_File *file = imp_get_file(cmd, buffer);
|
|
|
|
if (file){
|
|
|
|
result = true;
|
2016-08-24 23:01:33 +00:00
|
|
|
|
|
|
|
Partition *part = &models->mem.part;
|
|
|
|
Temp_Memory temp = begin_temp_memory(part);
|
|
|
|
String name = make_string_terminated(part, filename, filename_len);
|
|
|
|
save_file_to_name(system, &models->mem, file, name.str);
|
|
|
|
end_temp_memory(temp);
|
2016-06-24 02:21:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
API_EXPORT bool32
|
|
|
|
Kill_Buffer(Application_Links *app, Buffer_Identifier buffer, View_ID view_id, Buffer_Kill_Flag flags)/*
|
|
|
|
DOC_PARAM(buffer, The buffer parameter specifies the buffer to try to kill.)
|
|
|
|
DOC_PARAM(view_id, The view_id parameter specifies the view that will contain the "are you sure" dialogue if the buffer is dirty.)
|
|
|
|
DOC_PARAM(flags, The flags parameter specifies behaviors for the buffer kill.)
|
2016-08-27 17:48:10 +00:00
|
|
|
DOC_RETURN(This call returns non-zero if the buffer is killed.)
|
2016-09-09 13:04:51 +00:00
|
|
|
|
|
|
|
DOC(Tries to kill the idenfied buffer. If the buffer is dirty and the "are you sure"
|
2016-06-24 02:21:11 +00:00
|
|
|
dialogue needs to be displayed the provided view is used to show the dialogue.
|
2016-09-09 13:04:51 +00:00
|
|
|
If the view is not open the kill fails.)
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
DOC_SEE(Buffer_Kill_Flag)
|
|
|
|
DOC_SEE(Buffer_Identifier)
|
2016-06-24 02:21:11 +00:00
|
|
|
*/{
|
2016-06-17 03:31:15 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
System_Functions *system = cmd->system;
|
|
|
|
Models *models = cmd->models;
|
|
|
|
Working_Set *working_set = &models->working_set;
|
|
|
|
View *vptr = imp_get_view(cmd, view_id);
|
|
|
|
Editing_File *file = get_file_from_identifier(system, working_set, buffer);
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t result = false;
|
2016-06-17 03:31:15 +00:00
|
|
|
|
|
|
|
if (file){
|
2016-06-24 02:21:11 +00:00
|
|
|
if (flags & BufferKill_AlwaysKill){
|
|
|
|
result = true;
|
2016-08-24 23:01:33 +00:00
|
|
|
kill_file(system, models, file);
|
2016-06-17 03:31:15 +00:00
|
|
|
}
|
|
|
|
else{
|
2016-08-27 17:48:10 +00:00
|
|
|
Try_Kill_Result kill_result = interactive_try_kill_file(system, models, file);
|
|
|
|
if (kill_result == TryKill_NeedDialogue){
|
|
|
|
if (vptr){
|
|
|
|
interactive_begin_sure_to_kill(system, vptr, file);
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
#define MESSAGE "CUSTOM WARNING: the buffer is dirty and no view was specified for a dialogue.\n"
|
2016-09-17 00:03:09 +00:00
|
|
|
print_message(app, literal(MESSAGE));
|
2016-08-27 17:48:10 +00:00
|
|
|
#undef MESSAGE
|
|
|
|
}
|
2016-06-24 02:21:11 +00:00
|
|
|
}
|
|
|
|
else{
|
2016-08-27 17:48:10 +00:00
|
|
|
if (kill_result == TryKill_Success){
|
|
|
|
result = true;
|
|
|
|
}
|
2016-06-24 02:21:11 +00:00
|
|
|
}
|
2016-06-17 03:31:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-06-20 20:34:48 +00:00
|
|
|
internal void
|
|
|
|
internal_get_view_first(Command_Data *cmd, View_Summary *view){
|
2016-06-13 18:54:26 +00:00
|
|
|
Editing_Layout *layout = &cmd->models->layout;
|
|
|
|
Panel *panel = layout->used_sentinel.next;
|
|
|
|
|
|
|
|
Assert(panel != &layout->used_sentinel);
|
2016-06-20 20:34:48 +00:00
|
|
|
fill_view_summary(view, panel->view, cmd);
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
|
2016-06-20 20:34:48 +00:00
|
|
|
internal void
|
|
|
|
internal_get_view_next(Command_Data *cmd, View_Summary *view){
|
2016-06-13 18:54:26 +00:00
|
|
|
Editing_Layout *layout = &cmd->models->layout;
|
|
|
|
Live_Views *live_set = &cmd->vars->live_set;
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t index = view->view_id - 1;
|
2016-06-20 20:34:48 +00:00
|
|
|
View *vptr = 0;
|
|
|
|
Panel *panel = 0;
|
2016-06-13 18:54:26 +00:00
|
|
|
|
|
|
|
if (index >= 0 && index < live_set->max){
|
|
|
|
vptr = live_set->views + index;
|
|
|
|
panel = vptr->panel;
|
2016-06-20 20:34:48 +00:00
|
|
|
if (panel){
|
|
|
|
panel = panel->next;
|
|
|
|
}
|
2016-06-13 18:54:26 +00:00
|
|
|
if (panel && panel != &layout->used_sentinel){
|
|
|
|
fill_view_summary(view, panel->view, &cmd->vars->live_set, &cmd->models->working_set);
|
|
|
|
}
|
|
|
|
else{
|
2016-09-01 19:40:25 +00:00
|
|
|
*view = null_view_summary;
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
2016-09-01 19:40:25 +00:00
|
|
|
*view = null_view_summary;
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-27 15:52:58 +00:00
|
|
|
API_EXPORT View_Summary
|
2016-07-02 14:15:15 +00:00
|
|
|
Get_View_First(Application_Links *app, Access_Flag access)/*
|
|
|
|
DOC_PARAM(access, The access parameter determines what levels of protection this call can access.)
|
|
|
|
DOC_RETURN(This call returns the summary of the first view in a view loop.)
|
2016-06-24 02:21:11 +00:00
|
|
|
DOC
|
|
|
|
(
|
2016-07-02 14:15:15 +00:00
|
|
|
This call begins a loop across all the open views.
|
2016-06-24 02:21:11 +00:00
|
|
|
|
2016-07-05 01:36:30 +00:00
|
|
|
If the View_Summary returned is a null summary, the loop is finished.
|
2016-06-24 02:21:11 +00:00
|
|
|
Views should not be closed or opened durring a view loop.
|
|
|
|
)
|
|
|
|
DOC_SEE(Access_Flag)
|
|
|
|
DOC_SEE(get_view_next)
|
|
|
|
*/{
|
2016-06-20 20:34:48 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
View_Summary view = {};
|
|
|
|
|
|
|
|
internal_get_view_first(cmd, &view);
|
|
|
|
while (view.exists && !access_test(view.lock_flags, access)){
|
|
|
|
internal_get_view_next(cmd, &view);
|
|
|
|
}
|
|
|
|
|
|
|
|
return(view);
|
|
|
|
}
|
|
|
|
|
2016-06-27 15:52:58 +00:00
|
|
|
API_EXPORT void
|
2016-07-02 14:15:15 +00:00
|
|
|
Get_View_Next(Application_Links *app, View_Summary *view, Access_Flag access)/*
|
2016-07-05 01:36:30 +00:00
|
|
|
DOC_PARAM(view, The View_Summary pointed to by view is iterated to the next view or to a null summary if this is the last view.)
|
2016-07-02 14:15:15 +00:00
|
|
|
DOC_PARAM(access, The access parameter determines what levels of protection this call can access. The view outputted will be the next view that is accessible.)
|
2016-06-24 02:21:11 +00:00
|
|
|
DOC
|
|
|
|
(
|
2016-07-05 01:36:30 +00:00
|
|
|
This call steps a View_Summary to the next view in the global view order.
|
2016-06-24 02:21:11 +00:00
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
If the view outputted does not exist, the loop is finished.
|
2016-06-24 02:21:11 +00:00
|
|
|
Views should not be closed or opened durring a view loop.
|
|
|
|
)
|
|
|
|
DOC_SEE(Access_Flag)
|
|
|
|
DOC_SEE(get_view_first)
|
|
|
|
*/{
|
2016-06-20 20:34:48 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
|
|
|
|
internal_get_view_next(cmd, view);
|
|
|
|
while (view->exists && !access_test(view->lock_flags, access)){
|
|
|
|
internal_get_view_next(cmd, view);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-27 15:52:58 +00:00
|
|
|
API_EXPORT View_Summary
|
2016-07-02 14:15:15 +00:00
|
|
|
Get_View(Application_Links *app, View_ID view_id, Access_Flag access)/*
|
|
|
|
DOC_PARAM(view_id, The view_id specifies the view to try to get.)
|
|
|
|
DOC_PARAM(access, The access parameter determines what levels of protection this call can access.)
|
|
|
|
DOC_RETURN(This call returns a summary that describes the indicated view if it is open and accessible.)
|
|
|
|
DOC_SEE(Access_Flag)
|
2016-06-24 02:21:11 +00:00
|
|
|
*/{
|
2016-06-13 18:54:26 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
2016-06-24 02:21:11 +00:00
|
|
|
View_Summary view = {0};
|
2016-06-13 18:54:26 +00:00
|
|
|
Live_Views *live_set = cmd->live_set;
|
2016-07-02 14:15:15 +00:00
|
|
|
i32 max = live_set->max;
|
2016-06-20 20:34:48 +00:00
|
|
|
View *vptr = 0;
|
2016-06-13 18:54:26 +00:00
|
|
|
|
2016-06-24 02:21:11 +00:00
|
|
|
view_id -= 1;
|
|
|
|
if (view_id >= 0 && view_id < max){
|
|
|
|
vptr = live_set->views + view_id;
|
2016-06-13 18:54:26 +00:00
|
|
|
fill_view_summary(&view, vptr, live_set, &cmd->models->working_set);
|
2016-06-20 20:34:48 +00:00
|
|
|
if (!access_test(view.lock_flags, access)){
|
2016-09-01 19:40:25 +00:00
|
|
|
view = null_view_summary;
|
2016-06-20 20:34:48 +00:00
|
|
|
}
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(view);
|
|
|
|
}
|
|
|
|
|
2016-06-27 15:52:58 +00:00
|
|
|
API_EXPORT View_Summary
|
2016-07-02 14:15:15 +00:00
|
|
|
Get_Active_View(Application_Links *app, Access_Flag access)/*
|
|
|
|
DOC_PARAM(access, The access parameter determines what levels of protection this call can access.)
|
|
|
|
DOC_RETURN(This call returns a summary that describes the active view.)
|
2016-06-28 19:48:12 +00:00
|
|
|
DOC_SEE(set_active_view)
|
2016-07-02 14:15:15 +00:00
|
|
|
DOC_SEE(Access_Flag)
|
2016-06-24 02:21:11 +00:00
|
|
|
*/{
|
2016-06-13 18:54:26 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
2016-09-17 01:53:31 +00:00
|
|
|
|
|
|
|
Panel *panel = cmd->models->layout.panels + cmd->models->layout.active_panel;
|
|
|
|
|
|
|
|
Assert(panel->view != 0);
|
|
|
|
|
2016-06-28 19:48:12 +00:00
|
|
|
View_Summary view = {0};
|
2016-09-17 01:53:31 +00:00
|
|
|
fill_view_summary(&view, panel->view, &cmd->vars->live_set, &cmd->models->working_set);
|
2016-06-20 20:34:48 +00:00
|
|
|
if (!access_test(view.lock_flags, access)){
|
2016-09-01 19:40:25 +00:00
|
|
|
view = null_view_summary;
|
2016-06-20 20:34:48 +00:00
|
|
|
}
|
2016-06-13 18:54:26 +00:00
|
|
|
return(view);
|
|
|
|
}
|
|
|
|
|
2016-07-05 01:36:30 +00:00
|
|
|
API_EXPORT View_Summary
|
|
|
|
Open_View(Application_Links *app, View_Summary *view_location, View_Split_Position position)/*
|
|
|
|
DOC_PARAM(view_location, The view_location parameter specifies the view to split to open the new view.)
|
|
|
|
DOC_PARAM(position, The position parameter specifies how to split the view and where to place the new view.)
|
|
|
|
DOC_RETURN(If this call succeeds it returns a View_Summary describing the newly created view, if it fails it
|
|
|
|
returns a null summary.)
|
2016-09-17 01:53:31 +00:00
|
|
|
DOC(4coder is built with a limit of 16 views. If 16 views are already open when this is called the call will fail.)
|
2016-07-05 01:36:30 +00:00
|
|
|
DOC_SEE(View_Split_Position)
|
|
|
|
*/{
|
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
System_Functions *system = cmd->system;
|
|
|
|
Models *models = cmd->models;
|
|
|
|
View *vptr = imp_get_view(cmd, view_location);
|
|
|
|
Panel *panel = vptr->panel;
|
|
|
|
View_Summary result = {0};
|
|
|
|
|
|
|
|
if (models->layout.panel_count < models->layout.panel_max_count){
|
|
|
|
b32 vsplit = ((position == ViewSplit_Left) || (position == ViewSplit_Right));
|
|
|
|
b32 grtsplit = ((position == ViewSplit_Bottom) || (position == ViewSplit_Right));
|
|
|
|
|
|
|
|
Split_Result split = layout_split_panel(&models->layout, panel, vsplit);
|
|
|
|
|
|
|
|
Panel *grtpanel = split.panel;
|
|
|
|
Panel *lsrpanel = panel;
|
|
|
|
|
|
|
|
if (!grtsplit){
|
|
|
|
Swap(i32, panel->which_child, split.panel->which_child);
|
|
|
|
Swap(Panel*, grtpanel, lsrpanel);
|
|
|
|
}
|
|
|
|
|
|
|
|
split.panel->screen_region = panel->screen_region;
|
|
|
|
if (vsplit){
|
|
|
|
i32 x_pos = ROUND32(lerp((f32)lsrpanel->full.x0,
|
|
|
|
split.divider->pos,
|
|
|
|
(f32)lsrpanel->full.x1));
|
|
|
|
|
|
|
|
grtpanel->full.x0 = x_pos;
|
|
|
|
grtpanel->full.x1 = lsrpanel->full.x1;
|
|
|
|
lsrpanel->full.x1 = x_pos;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
i32 y_pos = ROUND32(lerp((f32)lsrpanel->full.y0,
|
|
|
|
split.divider->pos,
|
|
|
|
(f32)lsrpanel->full.y1));
|
|
|
|
|
|
|
|
grtpanel->full.y0 = y_pos;
|
|
|
|
grtpanel->full.y1 = lsrpanel->full.y1;
|
|
|
|
lsrpanel->full.y1 = y_pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
panel_fix_internal_area(panel);
|
|
|
|
panel_fix_internal_area(split.panel);
|
|
|
|
split.panel->prev_inner = split.panel->inner;
|
|
|
|
|
|
|
|
models->layout.active_panel = (i32)(split.panel - models->layout.panels);
|
|
|
|
panel_make_empty(system, cmd->vars, split.panel);
|
2016-07-05 15:15:38 +00:00
|
|
|
|
|
|
|
fill_view_summary(&result, split.panel->view, cmd);
|
2016-07-05 01:36:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
API_EXPORT bool32
|
|
|
|
Close_View(Application_Links *app, View_Summary *view)/*
|
|
|
|
DOC_PARAM(view, The view parameter specifies which view to close.)
|
|
|
|
DOC_RETURN(This call returns non-zero on success.)
|
2016-09-08 22:57:37 +00:00
|
|
|
|
|
|
|
DOC(If the given view is open and is not the last view, it will be closed.
|
2016-07-05 01:36:30 +00:00
|
|
|
If the given view is the active view, the next active view in the global
|
2016-09-08 22:57:37 +00:00
|
|
|
order of view will be made active. If the given view is the last open view
|
|
|
|
in the system, the call will fail.)
|
|
|
|
|
2016-07-05 01:36:30 +00:00
|
|
|
*/{
|
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
System_Functions *system = cmd->system;
|
|
|
|
Models *models = cmd->models;
|
|
|
|
View *vptr = imp_get_view(cmd, view);
|
|
|
|
|
2016-09-17 01:53:31 +00:00
|
|
|
bool32 result = 0;
|
2016-07-05 01:36:30 +00:00
|
|
|
|
2016-09-17 01:53:31 +00:00
|
|
|
if (vptr){
|
|
|
|
if (models->layout.panel_count > 1){
|
|
|
|
Panel *panel = vptr->panel;
|
|
|
|
|
|
|
|
Divider_And_ID div, parent_div, child_div;
|
|
|
|
i32 child;
|
|
|
|
i32 parent;
|
|
|
|
i32 which_child;
|
|
|
|
i32 active;
|
|
|
|
|
|
|
|
live_set_free_view(system, models->live_set, vptr);
|
|
|
|
panel->view = 0;
|
|
|
|
|
|
|
|
div = layout_get_divider(&models->layout, panel->parent);
|
|
|
|
|
|
|
|
// This divider cannot have two child dividers.
|
|
|
|
Assert(div.divider->child1 == -1 || div.divider->child2 == -1);
|
|
|
|
|
|
|
|
// Get the child who needs to fill in this node's spot
|
|
|
|
child = div.divider->child1;
|
|
|
|
if (child == -1) child = div.divider->child2;
|
|
|
|
|
|
|
|
parent = div.divider->parent;
|
|
|
|
which_child = div.divider->which_child;
|
|
|
|
|
|
|
|
// Fill the child in the slot this node use to hold
|
|
|
|
if (parent == -1){
|
|
|
|
Assert(models->layout.root == div.id);
|
|
|
|
models->layout.root = child;
|
2016-07-05 01:36:30 +00:00
|
|
|
}
|
|
|
|
else{
|
2016-09-17 01:53:31 +00:00
|
|
|
parent_div = layout_get_divider(&models->layout, parent);
|
|
|
|
if (which_child == -1){
|
|
|
|
parent_div.divider->child1 = child;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
parent_div.divider->child2 = child;
|
|
|
|
}
|
2016-07-05 01:36:30 +00:00
|
|
|
}
|
2016-09-17 01:53:31 +00:00
|
|
|
|
|
|
|
// If there was a child divider, give it information about it's new parent.
|
|
|
|
if (child != -1){
|
|
|
|
child_div = layout_get_divider(&models->layout, child);
|
|
|
|
child_div.divider->parent = parent;
|
|
|
|
child_div.divider->which_child = div.divider->which_child;
|
|
|
|
}
|
|
|
|
|
|
|
|
// What is the new active panel?
|
|
|
|
active = -1;
|
|
|
|
if (child == -1){
|
|
|
|
Panel *panel_ptr = 0;
|
|
|
|
Panel *used_panels = &models->layout.used_sentinel;
|
|
|
|
for (dll_items(panel_ptr, used_panels)){
|
|
|
|
if (panel_ptr != panel && panel_ptr->parent == div.id){
|
|
|
|
panel_ptr->parent = parent;
|
|
|
|
panel_ptr->which_child = which_child;
|
|
|
|
active = (i32)(panel_ptr - models->layout.panels);
|
|
|
|
break;
|
|
|
|
}
|
2016-07-05 01:36:30 +00:00
|
|
|
}
|
|
|
|
}
|
2016-09-17 01:53:31 +00:00
|
|
|
else{
|
|
|
|
Panel *panel_ptr = panel->next;
|
|
|
|
if (panel_ptr == &models->layout.used_sentinel) panel_ptr = panel_ptr->next;
|
|
|
|
Assert(panel_ptr != panel);
|
|
|
|
active = (i32)(panel_ptr - models->layout.panels);
|
|
|
|
}
|
|
|
|
Assert(active != -1 && panel != models->layout.panels + active);
|
|
|
|
|
|
|
|
// If the panel we're closing was previously active, we have to switch to it's sibling.
|
|
|
|
if (models->layout.active_panel == (i32)(panel - models->layout.panels)){
|
|
|
|
models->layout.active_panel = active;
|
|
|
|
}
|
|
|
|
|
|
|
|
layout_free_divider(&models->layout, div.divider);
|
|
|
|
layout_free_panel(&models->layout, panel);
|
|
|
|
layout_fix_all_panels(&models->layout);
|
2016-07-05 01:36:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
API_EXPORT bool32
|
2016-06-28 19:48:12 +00:00
|
|
|
Set_Active_View(Application_Links *app, View_Summary *view)/*
|
2016-07-02 14:15:15 +00:00
|
|
|
DOC_PARAM(view, The view parameter specifies which view to make active.)
|
|
|
|
DOC_RETURN(This call returns non-zero on success.)
|
2016-09-17 01:53:31 +00:00
|
|
|
|
|
|
|
DOC(If the given view is open, it is set as the
|
2016-06-28 19:48:12 +00:00
|
|
|
active view, and takes subsequent commands and is returned
|
2016-09-17 01:53:31 +00:00
|
|
|
from get_active_view.)
|
|
|
|
|
2016-06-28 19:48:12 +00:00
|
|
|
DOC_SEE(get_active_view)
|
|
|
|
*/{
|
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
Models *models = cmd->models;
|
|
|
|
View *vptr = imp_get_view(cmd, view);
|
2016-07-02 14:15:15 +00:00
|
|
|
bool32 result = false;
|
2016-06-28 19:48:12 +00:00
|
|
|
|
|
|
|
if (vptr){
|
|
|
|
result = true;
|
|
|
|
|
|
|
|
Panel *panel = vptr->panel;
|
|
|
|
models->layout.active_panel = (i32)(panel - models->layout.panels);
|
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-09-20 19:48:02 +00:00
|
|
|
API_EXPORT int32_t
|
|
|
|
View_Get_Setting(Application_Links *app, View_Summary *view, View_Setting_ID setting){
|
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
View *vptr = imp_get_view(cmd, view);
|
|
|
|
int32_t result = -1;
|
|
|
|
|
|
|
|
if (vptr){
|
|
|
|
switch (setting){
|
|
|
|
case ViewSetting_ShowWhitespace: result = vptr->file_data.show_whitespace; break;
|
|
|
|
case ViewSetting_ShowScrollbar: result = !vptr->hide_scrollbar; break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
API_EXPORT bool32
|
|
|
|
View_Set_Setting(Application_Links *app, View_Summary *view, View_Setting_ID setting, int32_t value)/*
|
|
|
|
DOC_PARAM(view, The view parameter specifies the view on which to set a setting.)
|
|
|
|
DOC_PARAM(setting, The setting parameter identifies the setting that shall be changed.)
|
|
|
|
DOC_PARAM(value, The value parameter specifies the value to which the setting shall be changed.)
|
|
|
|
DOC_RETURN(This call returns non-zero on success.)
|
2016-06-29 18:38:58 +00:00
|
|
|
DOC_SEE(View_Setting_ID)
|
|
|
|
*/{
|
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
View *vptr = imp_get_view(cmd, view);
|
2016-07-02 14:15:15 +00:00
|
|
|
bool32 result = false;
|
2016-06-29 18:38:58 +00:00
|
|
|
|
|
|
|
if (vptr){
|
2016-07-04 20:40:57 +00:00
|
|
|
result = true;
|
2016-06-29 18:38:58 +00:00
|
|
|
switch (setting){
|
2016-07-04 20:40:57 +00:00
|
|
|
case ViewSetting_ShowWhitespace:
|
|
|
|
{
|
|
|
|
vptr->file_data.show_whitespace = value;
|
|
|
|
}break;
|
|
|
|
|
2016-06-29 18:38:58 +00:00
|
|
|
case ViewSetting_ShowScrollbar:
|
|
|
|
{
|
|
|
|
vptr->hide_scrollbar = !value;
|
|
|
|
}break;
|
2016-07-04 20:40:57 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
result = false;
|
|
|
|
}break;
|
2016-06-29 18:38:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fill_view_summary(view, vptr, cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
API_EXPORT bool32
|
2016-06-28 22:58:50 +00:00
|
|
|
View_Set_Split_Proportion(Application_Links *app, View_Summary *view, float t)/*
|
2016-07-02 14:15:15 +00:00
|
|
|
DOC_PARAM(view, The view parameter specifies which view shall have it's size adjusted.)
|
|
|
|
DOC_PARAM(t, The t parameter specifies the proportion of the containing box that the view should occupy. t should be in [0,1].)
|
|
|
|
DOC_RETURN(This call returns non-zero on success.)
|
2016-06-28 22:58:50 +00:00
|
|
|
*/{
|
2016-07-02 14:15:15 +00:00
|
|
|
bool32 result = false;
|
2016-06-28 19:48:12 +00:00
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
if (0 <= t && t <= 1.f){
|
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
Models *models = cmd->models;
|
|
|
|
Editing_Layout *layout = &models->layout;
|
|
|
|
View *vptr = imp_get_view(cmd, view);
|
2016-06-28 22:58:50 +00:00
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
if (vptr){
|
|
|
|
result = true;
|
|
|
|
|
|
|
|
Panel *panel = vptr->panel;
|
|
|
|
Panel_Divider *div = layout->dividers + panel->parent;
|
|
|
|
|
|
|
|
if (panel->which_child == 1){
|
|
|
|
t = 1-t;
|
|
|
|
}
|
|
|
|
|
|
|
|
div->pos = t;
|
|
|
|
layout_fix_all_panels(layout);
|
2016-06-28 22:58:50 +00:00
|
|
|
}
|
2016-06-28 19:48:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
API_EXPORT bool32
|
2016-06-27 15:52:58 +00:00
|
|
|
View_Compute_Cursor(Application_Links *app, View_Summary *view, Buffer_Seek seek, Full_Cursor *cursor_out)/*
|
2016-07-02 14:15:15 +00:00
|
|
|
DOC_PARAM(view, The view parameter specifies the view on which to run the cursor computation.)
|
|
|
|
DOC_PARAM(seek, The seek parameter specifies the target position for the seek.)
|
|
|
|
DOC_PARAM(cursor_out, On success this struct is filled with the result of the seek.)
|
|
|
|
DOC_RETURN(This call returns non-zero on success.)
|
|
|
|
DOC(Computes a Full_Cursor for the given seek position with no side effects.)
|
2016-06-24 04:02:09 +00:00
|
|
|
DOC_SEE(Buffer_Seek)
|
2016-07-02 14:15:15 +00:00
|
|
|
DOC_SEE(Full_Cursor)
|
2016-06-24 04:02:09 +00:00
|
|
|
*/{
|
2016-06-13 18:54:26 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
2016-06-14 20:40:57 +00:00
|
|
|
View *vptr = imp_get_view(cmd, view);
|
|
|
|
Editing_File *file = 0;
|
2016-07-02 14:15:15 +00:00
|
|
|
bool32 result = false;
|
2016-06-13 18:54:26 +00:00
|
|
|
|
2016-06-14 20:40:57 +00:00
|
|
|
if (vptr){
|
|
|
|
file = vptr->file_data.file;
|
|
|
|
if (file && !file->is_loading){
|
|
|
|
if (seek.type == buffer_seek_line_char && seek.character <= 0){
|
|
|
|
seek.character = 1;
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
2016-06-24 04:02:09 +00:00
|
|
|
result = true;
|
2016-09-29 01:07:14 +00:00
|
|
|
*cursor_out = view_compute_cursor(vptr, seek, 0);
|
2016-06-14 20:40:57 +00:00
|
|
|
fill_view_summary(view, vptr, cmd);
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
API_EXPORT bool32
|
|
|
|
View_Set_Cursor(Application_Links *app, View_Summary *view, Buffer_Seek seek, bool32 set_preferred_x)/*
|
|
|
|
DOC_PARAM(view, The view parameter specifies the view in which to set the cursor.)
|
|
|
|
DOC_PARAM(seek, The seek parameter specifies the target position for the seek.)
|
|
|
|
DOC_PARAM(set_preferred_x, If this parameter is true the preferred x is updated to match the new cursor x.)
|
|
|
|
DOC_RETURN(This call returns non-zero on success.)
|
2016-06-24 04:02:09 +00:00
|
|
|
DOC
|
|
|
|
(
|
2016-07-02 14:15:15 +00:00
|
|
|
This call sets the the view's cursor position. set_preferred_x should usually be true
|
|
|
|
unless the change in cursor position is is a vertical motion that tries to keep the
|
|
|
|
cursor in the same column or x position.
|
2016-06-24 04:02:09 +00:00
|
|
|
)
|
|
|
|
DOC_SEE(Buffer_Seek)
|
|
|
|
*/{
|
2016-06-13 18:54:26 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
2016-06-14 20:40:57 +00:00
|
|
|
View *vptr = imp_get_view(cmd, view);
|
|
|
|
Editing_File *file = 0;
|
2016-07-02 14:15:15 +00:00
|
|
|
bool32 result = false;
|
2016-06-13 18:54:26 +00:00
|
|
|
|
2016-06-14 20:40:57 +00:00
|
|
|
if (vptr){
|
|
|
|
file = vptr->file_data.file;
|
2016-09-22 00:01:12 +00:00
|
|
|
Assert(file);
|
|
|
|
if (!file->is_loading){
|
2016-06-14 20:40:57 +00:00
|
|
|
result = true;
|
|
|
|
if (seek.type == buffer_seek_line_char && seek.character <= 0){
|
|
|
|
seek.character = 1;
|
|
|
|
}
|
2016-09-29 01:07:14 +00:00
|
|
|
Full_Cursor cursor = view_compute_cursor(vptr, seek, 0);
|
2016-09-22 00:01:12 +00:00
|
|
|
view_set_cursor(vptr, cursor, set_preferred_x, file->settings.unwrapped_lines);
|
2016-07-12 18:20:06 +00:00
|
|
|
fill_view_summary(view, vptr, cmd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
API_EXPORT bool32
|
|
|
|
View_Set_Scroll(Application_Links *app, View_Summary *view, GUI_Scroll_Vars scroll)/*
|
|
|
|
DOC(TODO)
|
|
|
|
DOC_SEE(GUI_Scroll_Vars)
|
|
|
|
*/{
|
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
View *vptr = imp_get_view(cmd, view);
|
|
|
|
Editing_File *file = 0;
|
|
|
|
bool32 result = false;
|
|
|
|
|
|
|
|
if (vptr){
|
|
|
|
file = vptr->file_data.file;
|
|
|
|
if (file && !file->is_loading){
|
|
|
|
result = true;
|
|
|
|
view_set_scroll(vptr, scroll);
|
2016-06-14 20:40:57 +00:00
|
|
|
fill_view_summary(view, vptr, cmd);
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
API_EXPORT bool32
|
2016-06-27 15:52:58 +00:00
|
|
|
View_Set_Mark(Application_Links *app, View_Summary *view, Buffer_Seek seek)/*
|
2016-07-02 14:15:15 +00:00
|
|
|
DOC_PARAM(view, The view parameter specifies the view in which to set the mark.)
|
|
|
|
DOC_PARAM(seek, The seek parameter specifies the target position for the seek.)
|
|
|
|
DOC_RETURN(This call returns non-zero on success.)
|
|
|
|
DOC(This call sets the the view's mark position.)
|
2016-06-24 04:02:09 +00:00
|
|
|
DOC_SEE(Buffer_Seek)
|
|
|
|
*/{
|
2016-06-13 18:54:26 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
2016-06-14 20:40:57 +00:00
|
|
|
View *vptr = imp_get_view(cmd, view);
|
2016-07-02 22:59:16 +00:00
|
|
|
Editing_File *file = 0;
|
2016-06-14 20:40:57 +00:00
|
|
|
Full_Cursor cursor = {0};
|
2016-07-02 14:15:15 +00:00
|
|
|
bool32 result = false;
|
2016-06-13 18:54:26 +00:00
|
|
|
|
2016-06-14 20:40:57 +00:00
|
|
|
if (vptr){
|
2016-07-02 22:59:16 +00:00
|
|
|
file = vptr->file_data.file;
|
|
|
|
if (file && !file->is_loading){
|
|
|
|
result = true;
|
|
|
|
if (seek.type != buffer_seek_pos){
|
2016-09-29 01:07:14 +00:00
|
|
|
cursor = view_compute_cursor(vptr, seek, 0);
|
2016-07-02 22:59:16 +00:00
|
|
|
vptr->edit_pos->mark = cursor.pos;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
vptr->edit_pos->mark = seek.pos;
|
|
|
|
}
|
|
|
|
fill_view_summary(view, vptr, cmd);
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
API_EXPORT bool32
|
|
|
|
View_Set_Highlight(Application_Links *app, View_Summary *view, int32_t start, int32_t end, bool32 turn_on)/*
|
|
|
|
DOC_PARAM(view, The view parameter specifies the view in which to set the highlight.)
|
|
|
|
DOC_PARAM(start, This parameter specifies the absolute position of the first character of the highlight range.)
|
|
|
|
DOC_PARAM(end, This parameter specifies the absolute position of the character one past the end of the highlight range.)
|
|
|
|
DOC_PARAM(turn_on, This parameter indicates whether the highlight is being turned on or off.)
|
|
|
|
DOC_RETURN(This call returns non-zero on success.)
|
2016-06-24 04:02:09 +00:00
|
|
|
DOC
|
|
|
|
(
|
|
|
|
The highlight is mutually exclusive to the cursor. When the turn_on parameter
|
|
|
|
is set to true the highlight will be shown and the cursor will be hidden. After
|
2016-08-31 15:10:22 +00:00
|
|
|
that either setting the cursor with view_set_cursor or calling view_set_highlight
|
|
|
|
and the turn_on set to false, will switch back to showing the cursor.
|
2016-06-24 04:02:09 +00:00
|
|
|
)
|
|
|
|
*/{
|
2016-06-13 18:54:26 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
2016-06-14 20:40:57 +00:00
|
|
|
View *vptr = imp_get_view(cmd, view);
|
2016-07-02 14:15:15 +00:00
|
|
|
bool32 result = false;
|
2016-06-13 18:54:26 +00:00
|
|
|
|
2016-06-14 20:40:57 +00:00
|
|
|
if (vptr){
|
|
|
|
result = true;
|
|
|
|
if (turn_on){
|
|
|
|
view_set_temp_highlight(vptr, start, end);
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
2016-06-14 20:40:57 +00:00
|
|
|
else{
|
|
|
|
vptr->file_data.show_temp_highlight = 0;
|
|
|
|
}
|
|
|
|
fill_view_summary(view, vptr, cmd);
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
API_EXPORT bool32
|
|
|
|
View_Set_Buffer(Application_Links *app, View_Summary *view, Buffer_ID buffer_id, Set_Buffer_Flag flags)/*
|
|
|
|
DOC_PARAM(view, The view parameter specifies the view in which to display the buffer.)
|
|
|
|
DOC_PARAM(buffer_id, The buffer_id parameter specifies which buffer to show in the view.)
|
|
|
|
DOC_PARAM(flags, The flags parameter specifies behaviors for setting the buffer.)
|
|
|
|
DOC_RETURN(This call returns non-zero on success.)
|
2016-06-24 04:02:09 +00:00
|
|
|
DOC
|
|
|
|
(
|
|
|
|
On success view_set_buffer sets the specified view's current buffer and
|
|
|
|
cancels and dialogue shown in the view and displays the file.
|
|
|
|
)
|
|
|
|
DOC_SEE(Set_Buffer_Flag)
|
|
|
|
*/{
|
2016-06-13 18:54:26 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
2016-06-14 20:40:57 +00:00
|
|
|
View *vptr = imp_get_view(cmd, view);
|
|
|
|
Models *models = cmd->models;
|
|
|
|
Editing_File *file = 0;
|
2016-07-02 14:15:15 +00:00
|
|
|
bool32 result = false;
|
2016-06-13 18:54:26 +00:00
|
|
|
|
2016-06-14 20:40:57 +00:00
|
|
|
if (vptr){
|
|
|
|
file = working_set_get_active_file(&models->working_set, buffer_id);
|
|
|
|
|
|
|
|
if (file){
|
|
|
|
result = true;
|
|
|
|
if (file != vptr->file_data.file){
|
|
|
|
view_set_file(vptr, file, models);
|
2016-06-24 04:02:09 +00:00
|
|
|
if (!(flags & SetBuffer_KeepOriginalGUI)){
|
|
|
|
view_show_file(vptr);
|
|
|
|
}
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
}
|
2016-06-14 20:40:57 +00:00
|
|
|
|
|
|
|
fill_view_summary(view, vptr, cmd);
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
API_EXPORT bool32
|
|
|
|
View_Post_Fade(Application_Links *app, View_Summary *view, float seconds, int32_t start, int32_t end, int_color color)/*
|
|
|
|
DOC_PARAM(view, The view parameter specifies the view onto which the fade effect shall be posted.)
|
|
|
|
DOC_PARAM(seconds, This parameter specifies the number of seconds the fade effect should last.)
|
|
|
|
DOC_PARAM(start, This parameter specifies the absolute position of the first character of the fade range.)
|
|
|
|
DOC_PARAM(end, This parameter specifies the absolute position of the character one past the end of the fdae range.)
|
|
|
|
DOC_PARAM(color, The color parameter specifies the initial color of the text before it fades to it's natural color.)
|
|
|
|
DOC_RETURN(This call returns non-zero on success.)
|
|
|
|
DOC_SEE(int_color)
|
2016-06-24 16:38:52 +00:00
|
|
|
*/{
|
2016-06-14 19:00:03 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
2016-06-14 20:40:57 +00:00
|
|
|
View *vptr = imp_get_view(cmd, view);
|
2016-06-14 19:00:03 +00:00
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
bool32 result = false;
|
2016-06-14 19:00:03 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t size = end - start;
|
2016-06-14 20:40:57 +00:00
|
|
|
if (vptr){
|
|
|
|
if (size > 0){
|
|
|
|
result = true;
|
2016-07-02 14:15:15 +00:00
|
|
|
view_post_paste_effect(vptr, seconds, start, size, color | 0xFF000000);
|
2016-06-14 19:00:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-06-27 15:52:58 +00:00
|
|
|
API_EXPORT User_Input
|
2016-07-02 14:15:15 +00:00
|
|
|
Get_User_Input(Application_Links *app, Input_Type_Flag get_type, Input_Type_Flag abort_type)/*
|
|
|
|
DOC_PARAM(get_type, The get_type parameter specifies the set of input types that should be returned.)
|
|
|
|
DOC_PARAM(abort_type, The get_type parameter specifies the set of input types that should trigger an abort signal.)
|
|
|
|
DOC_RETURN(This call returns a User_Input that describes a user input event.)
|
2016-06-24 19:33:37 +00:00
|
|
|
DOC
|
|
|
|
(
|
|
|
|
This call preempts the command. The command is resumed if either a get or abort condition
|
|
|
|
is met, or if another command is executed. If either the abort condition is met or another
|
|
|
|
command is executed an abort signal is returned. If an abort signal is ever returned the
|
|
|
|
command should finish execution without any more calls that preempt the command.
|
2016-07-02 14:15:15 +00:00
|
|
|
If a get condition is met the user input is returned.
|
2016-06-24 19:33:37 +00:00
|
|
|
)
|
|
|
|
DOC_SEE(Input_Type_Flag)
|
|
|
|
DOC_SEE(User_Input)
|
|
|
|
*/{
|
2016-06-13 18:54:26 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
System_Functions *system = cmd->system;
|
|
|
|
Coroutine *coroutine = (Coroutine*)app->current_coroutine;
|
|
|
|
User_Input result = {0};
|
|
|
|
|
|
|
|
if (app->type_coroutine == Co_Command){
|
|
|
|
Assert(coroutine);
|
|
|
|
*((u32*)coroutine->out+0) = get_type;
|
|
|
|
*((u32*)coroutine->out+1) = abort_type;
|
|
|
|
system->yield_coroutine(coroutine);
|
|
|
|
result = *(User_Input*)coroutine->in;
|
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-06-27 15:52:58 +00:00
|
|
|
API_EXPORT User_Input
|
|
|
|
Get_Command_Input (Application_Links *app)/*
|
2016-07-02 14:15:15 +00:00
|
|
|
DOC_RETURN(This call returns the input that triggered the currently executing command.)
|
2016-06-24 19:33:37 +00:00
|
|
|
DOC_SEE(User_Input)
|
|
|
|
*/{
|
2016-06-13 18:54:26 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
User_Input result;
|
|
|
|
|
|
|
|
result.type = UserInputKey;
|
|
|
|
result.abort = 0;
|
|
|
|
result.key = cmd->key;
|
2016-07-02 14:15:15 +00:00
|
|
|
// TODO(allen): It would be nice to fill this.
|
|
|
|
result.command.cmdid = 0;
|
2016-06-13 18:54:26 +00:00
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-06-27 15:52:58 +00:00
|
|
|
API_EXPORT Mouse_State
|
|
|
|
Get_Mouse_State(Application_Links *app)/*
|
2016-07-02 14:15:15 +00:00
|
|
|
DOC_RETURN(This call returns the current mouse state as of the beginning of the frame.)
|
2016-06-24 19:33:37 +00:00
|
|
|
DOC_SEE(Mouse_State)
|
|
|
|
*/{
|
2016-06-13 18:54:26 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
App_Vars *vars = cmd->vars;
|
|
|
|
Mouse_State mouse = direct_get_mouse_state(&vars->available_input);
|
|
|
|
return(mouse);
|
|
|
|
}
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
/*
|
|
|
|
API_EXPORT Event_Message
|
2016-06-27 15:52:58 +00:00
|
|
|
Get_Event_Message (Application_Links *app){
|
2016-06-13 18:54:26 +00:00
|
|
|
Event_Message message = {0};
|
|
|
|
System_Functions *system = (System_Functions*)app->system_links;
|
|
|
|
Coroutine *coroutine = (Coroutine*)app->current_coroutine;
|
|
|
|
|
|
|
|
if (app->type_coroutine == Co_View){
|
|
|
|
Assert(coroutine);
|
|
|
|
system->yield_coroutine(coroutine);
|
|
|
|
message = *(Event_Message*)coroutine->in;
|
|
|
|
}
|
|
|
|
|
|
|
|
return(message);
|
|
|
|
}
|
2016-07-02 14:15:15 +00:00
|
|
|
*/
|
2016-06-13 18:54:26 +00:00
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
API_EXPORT bool32
|
|
|
|
Start_Query_Bar(Application_Links *app, Query_Bar *bar, uint32_t flags)/*
|
|
|
|
DOC_PARAM(bar, This parameter provides a Query_Bar that should remain in valid memory
|
|
|
|
until end_query_bar or the end of the command. It is commonly a good idea to make
|
|
|
|
this a pointer to a Query_Bar stored on the stack.)
|
|
|
|
DOC_PARAM(flags, This parameter is not currently used and should be 0 for now.)
|
|
|
|
DOC_RETURN(This call returns non-zero on success.)
|
2016-06-24 19:33:37 +00:00
|
|
|
DOC
|
|
|
|
(
|
2016-07-02 14:15:15 +00:00
|
|
|
This call tells the active view to begin displaying a "Query_Bar" which is a small
|
|
|
|
GUI element that can overlap a buffer or other 4coder GUI. The contents of the bar
|
|
|
|
can be changed after the call to start_query_bar and the query bar shown by 4coder
|
|
|
|
will reflect the change. Since the bar stops showing when the command exits the
|
|
|
|
only use for this call is in an interactive command that makes calls to get_user_input.
|
2016-06-24 19:33:37 +00:00
|
|
|
)
|
|
|
|
*/{
|
2016-09-21 22:34:19 +00:00
|
|
|
Command_Data *command = (Command_Data*)app->cmd_context;
|
|
|
|
USE_VIEW(vptr);
|
2016-06-13 18:54:26 +00:00
|
|
|
Query_Slot *slot = 0;
|
|
|
|
|
|
|
|
slot = alloc_query_slot(&vptr->query_set);
|
|
|
|
slot->query_bar = bar;
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
bool32 result = (slot != 0);
|
|
|
|
return(result);
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
|
2016-06-27 15:52:58 +00:00
|
|
|
API_EXPORT void
|
2016-07-02 14:15:15 +00:00
|
|
|
End_Query_Bar(Application_Links *app, Query_Bar *bar, uint32_t flags)/*
|
|
|
|
DOC_PARAM(bar, This parameter should be a bar pointer of a currently active query bar.)
|
|
|
|
DOC_PARAM(flags, This parameter is not currently used and should be 0 for now.)
|
|
|
|
DOC(Stops showing the particular query bar specified by the bar parameter.)
|
2016-06-24 19:33:37 +00:00
|
|
|
*/{
|
2016-09-21 22:34:19 +00:00
|
|
|
Command_Data *command = (Command_Data*)app->cmd_context;
|
|
|
|
USE_VIEW(vptr);
|
2016-06-13 18:54:26 +00:00
|
|
|
free_query_slot(&vptr->query_set, bar);
|
|
|
|
}
|
|
|
|
|
2016-06-27 15:52:58 +00:00
|
|
|
API_EXPORT void
|
2016-07-02 14:15:15 +00:00
|
|
|
Print_Message(Application_Links *app, char *str, int32_t len)/*
|
|
|
|
DOC_PARAM(str, The str parameter specifies the string to post to *messages*; it need not be null terminated.)
|
|
|
|
DOC_PARAM(len, The len parameter specifies the length of the str string.)
|
|
|
|
DOC(This call posts a string to the *messages* buffer.)
|
2016-06-24 19:33:37 +00:00
|
|
|
*/{
|
2016-06-13 18:54:26 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
Models *models = cmd->models;
|
2016-06-24 19:33:37 +00:00
|
|
|
do_feedback_message(cmd->system, models, make_string(str, len));
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
// TODO(allen): List the names of built in themes and fonts.
|
|
|
|
|
2016-06-27 15:52:58 +00:00
|
|
|
API_EXPORT void
|
2016-07-02 14:15:15 +00:00
|
|
|
Change_Theme(Application_Links *app, char *name, int32_t len)/*
|
|
|
|
DOC_PARAM(name, The name parameter specifies the name of the theme to begin using; it need not be null terminated.)
|
|
|
|
DOC_PARAM(len, The len parameter specifies the length of the name string.)
|
2016-07-14 16:41:23 +00:00
|
|
|
DOC(This call changes 4coder's color pallet to one of the built in themes.)
|
2016-06-24 19:33:37 +00:00
|
|
|
*/{
|
2016-06-13 18:54:26 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
Style_Library *styles = &cmd->models->styles;
|
|
|
|
String theme_name = make_string(name, len);
|
|
|
|
|
2016-06-23 23:11:09 +00:00
|
|
|
i32 i = 0;
|
|
|
|
i32 count = styles->count;
|
|
|
|
Style *s = styles->styles;
|
|
|
|
|
2016-06-13 18:54:26 +00:00
|
|
|
for (i = 0; i < count; ++i, ++s){
|
2016-08-28 04:31:06 +00:00
|
|
|
if (match_ss(s->name, theme_name)){
|
2016-06-13 18:54:26 +00:00
|
|
|
style_copy(main_style(cmd->models), s);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-27 15:52:58 +00:00
|
|
|
API_EXPORT void
|
2016-07-14 16:41:23 +00:00
|
|
|
Change_Font(Application_Links *app, char *name, int32_t len, bool32 apply_to_all_files)/*
|
2016-07-02 14:15:15 +00:00
|
|
|
DOC_PARAM(name, The name parameter specifies the name of the font to begin using; it need not be null terminated.)
|
|
|
|
DOC_PARAM(len, The len parameter specifies the length of the name string.)
|
2016-07-14 16:41:23 +00:00
|
|
|
DOC_PARAM(apply_to_all_files, If this is set all open files change to this font. Usually this should be true
|
|
|
|
durring the start hook because several files already exist at that time.)
|
|
|
|
DOC(This call changes 4coder's default font to one of the built in fonts.)
|
2016-06-24 19:33:37 +00:00
|
|
|
*/{
|
2016-06-13 18:54:26 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
Font_Set *set = cmd->models->font_set;
|
2016-07-14 16:41:23 +00:00
|
|
|
|
2016-06-13 18:54:26 +00:00
|
|
|
Style_Font *global_font = &cmd->models->global_font;
|
|
|
|
String font_name = make_string(name, len);
|
2016-06-23 23:11:09 +00:00
|
|
|
i16 font_id = 0;
|
2016-06-13 18:54:26 +00:00
|
|
|
|
|
|
|
if (font_set_extract(set, font_name, &font_id)){
|
2016-07-14 16:41:23 +00:00
|
|
|
if (apply_to_all_files){
|
2016-07-15 15:45:02 +00:00
|
|
|
global_set_font(cmd->system, cmd->models, font_id);
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
global_font->font_id = font_id;
|
2016-07-14 16:41:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
API_EXPORT void
|
|
|
|
Buffer_Set_Font(Application_Links *app, Buffer_Summary *buffer, char *name, int32_t len)/*
|
|
|
|
DOC_PARAM(buffer, This parameter the buffer that shall have it's font changed)
|
|
|
|
DOC_PARAM(name, The name parameter specifies the name of the font to begin using; it need not be null terminated.)
|
|
|
|
DOC_PARAM(len, The len parameter specifies the length of the name string.)
|
|
|
|
DOC(This call sets the display font of a particular buffer.)
|
|
|
|
*/{
|
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
System_Functions *system = cmd->system;
|
|
|
|
Models *models = cmd->models;
|
|
|
|
Editing_File *file = imp_get_file(cmd, buffer);
|
|
|
|
|
2016-09-01 19:40:25 +00:00
|
|
|
if (file){
|
|
|
|
Font_Set *set = models->font_set;
|
|
|
|
String font_name = make_string(name, len);
|
|
|
|
i16 font_id = 0;
|
|
|
|
|
|
|
|
if (font_set_extract(set, font_name, &font_id)){
|
|
|
|
file_set_font(system, models, file, font_id);
|
|
|
|
}
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-27 15:52:58 +00:00
|
|
|
API_EXPORT void
|
2016-07-02 14:15:15 +00:00
|
|
|
Set_Theme_Colors(Application_Links *app, Theme_Color *colors, int32_t count)/*
|
|
|
|
DOC_PARAM(colors, The colors pointer provides an array of color structs pairing differet style tags to color codes.)
|
|
|
|
DOC_PARAM(count, The count parameter specifies the number of Theme_Color structs in the colors array.)
|
2016-06-24 19:33:37 +00:00
|
|
|
DOC
|
|
|
|
(
|
2016-07-02 14:15:15 +00:00
|
|
|
For each struct in the array, the slot in the main color pallet specified by the
|
|
|
|
struct's tag is set to the color code in the struct. If the tag value is invalid
|
|
|
|
no change is made to the color pallet.
|
2016-06-24 19:33:37 +00:00
|
|
|
)
|
|
|
|
*/{
|
2016-06-13 18:54:26 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
Style *style = main_style(cmd->models);
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
int_color *color = 0;
|
2016-06-23 23:11:09 +00:00
|
|
|
i32 i = 0;
|
|
|
|
Theme_Color *theme_color = colors;
|
|
|
|
|
2016-06-13 18:54:26 +00:00
|
|
|
for (i = 0; i < count; ++i, ++theme_color){
|
|
|
|
color = style_index_by_tag(&style->main, theme_color->tag);
|
2016-07-02 14:15:15 +00:00
|
|
|
if (color){
|
|
|
|
*color = theme_color->color | 0xFF000000;
|
|
|
|
}
|
2016-06-13 18:54:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-27 15:52:58 +00:00
|
|
|
API_EXPORT void
|
2016-07-02 14:15:15 +00:00
|
|
|
Get_Theme_Colors(Application_Links *app, Theme_Color *colors, int32_t count)/*
|
2016-06-24 19:33:37 +00:00
|
|
|
DOC_PARAM(colors, an array of color structs listing style tags to get color values for)
|
|
|
|
DOC_PARAM(count, the number of color structs in the colors array)
|
|
|
|
DOC
|
|
|
|
(
|
2016-07-02 14:15:15 +00:00
|
|
|
For each struct in the array, the color field of the struct is filled with the
|
|
|
|
color from the slot in the main color pallet specified by the tag. If the tag
|
|
|
|
value is invalid the color is filled with black.
|
2016-06-24 19:33:37 +00:00
|
|
|
)
|
|
|
|
*/{
|
2016-06-14 19:00:03 +00:00
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
Style *style = main_style(cmd->models);
|
|
|
|
|
2016-06-23 23:11:09 +00:00
|
|
|
u32 *color = 0;
|
|
|
|
i32 i = 0;
|
|
|
|
Theme_Color *theme_color = colors;
|
|
|
|
|
2016-06-14 19:00:03 +00:00
|
|
|
for (i = 0; i < count; ++i, ++theme_color){
|
|
|
|
color = style_index_by_tag(&style->main, theme_color->tag);
|
|
|
|
if (color){
|
|
|
|
theme_color->color = *color | 0xFF000000;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
theme_color->color = 0xFF000000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
API_EXPORT int32_t
|
|
|
|
Directory_Get_Hot(Application_Links *app, char *out, int32_t capacity)/*
|
|
|
|
DOC_PARAM(out, This parameter provides a character buffer that receives the 4coder 'hot directory'.)
|
|
|
|
DOC_PARAM(capacity, This parameter specifies the maximum size to be output to the out buffer.)
|
|
|
|
DOC_RETURN(This call returns the size of the string written into the buffer.)
|
2016-06-27 15:52:58 +00:00
|
|
|
DOC
|
|
|
|
(
|
|
|
|
4coder has a concept of a 'hot directory' which is the directory most recently
|
|
|
|
accessed in the GUI. Whenever the GUI is opened it shows the hot directory.
|
|
|
|
|
|
|
|
In the future this will be deprecated and eliminated in favor of more flexible
|
2016-07-02 14:15:15 +00:00
|
|
|
directories controlled on the custom side.
|
2016-06-27 15:52:58 +00:00
|
|
|
)
|
|
|
|
*/{
|
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
Hot_Directory *hot = &cmd->models->hot_directory;
|
|
|
|
i32 copy_max = capacity - 1;
|
|
|
|
hot_directory_clean_end(hot);
|
|
|
|
if (copy_max > hot->string.size)
|
|
|
|
copy_max = hot->string.size;
|
|
|
|
memcpy(out, hot->string.str, copy_max);
|
|
|
|
out[copy_max] = 0;
|
|
|
|
return(hot->string.size);
|
|
|
|
}
|
|
|
|
|
2016-09-01 03:06:46 +00:00
|
|
|
// TODO(allen): Replace this with an autogenerated file
|
2016-07-11 16:15:37 +00:00
|
|
|
#define Memory_Allocate system->memory_allocate
|
|
|
|
#define Memory_Set_Protection system->memory_set_protection
|
|
|
|
#define Memory_Free system->memory_free
|
|
|
|
|
2016-06-27 15:52:58 +00:00
|
|
|
#define Get_4ed_Path system->get_4ed_path
|
|
|
|
#define File_Exists system->file_exists
|
|
|
|
#define Directory_CD system->directory_cd
|
2016-06-29 19:11:37 +00:00
|
|
|
#define Show_Mouse_Cursor system->show_mouse_cursor
|
2016-06-27 15:52:58 +00:00
|
|
|
|
2016-09-01 03:06:46 +00:00
|
|
|
#define Toggle_Fullscreen system->toggle_fullscreen
|
|
|
|
#define Is_Fullscreen system->is_fullscreen
|
2016-09-01 20:29:07 +00:00
|
|
|
#define Send_Exit_Signal system->send_exit_signal
|
2016-09-01 03:06:46 +00:00
|
|
|
|
2016-06-27 15:52:58 +00:00
|
|
|
API_EXPORT File_List
|
2016-07-02 14:15:15 +00:00
|
|
|
Get_File_List(Application_Links *app, char *dir, int32_t len)/*
|
|
|
|
DOC_PARAM(dir, This parameter specifies the directory whose files will be enumerated in the returned list; it need not be null terminated.)
|
|
|
|
DOC_PARAM(len, This parameter the length of the dir string.)
|
2016-06-27 15:52:58 +00:00
|
|
|
DOC_RETURN
|
|
|
|
(
|
2016-07-02 14:15:15 +00:00
|
|
|
This call returns a File_List struct containing pointers to the names of the files in
|
2016-06-27 15:52:58 +00:00
|
|
|
the specified directory. The File_List returned should be passed to free_file_list
|
|
|
|
when it is no longer in use.
|
|
|
|
)
|
|
|
|
*/{
|
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
System_Functions *system = cmd->system;
|
|
|
|
File_List result = {};
|
|
|
|
system->set_file_list(&result, make_string(dir, len));
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
API_EXPORT void
|
|
|
|
Free_File_List(Application_Links *app, File_List list)/*
|
2016-07-02 14:15:15 +00:00
|
|
|
DOC_PARAM(list, This parameter provides the file list to be freed.)
|
|
|
|
DOC(After this call the file list passed in should not be read or written to.)
|
2016-06-27 15:52:58 +00:00
|
|
|
*/{
|
|
|
|
Command_Data *cmd = (Command_Data*)app->cmd_context;
|
|
|
|
System_Functions *system = cmd->system;
|
|
|
|
system->set_file_list(&list, make_string(0, 0));
|
|
|
|
}
|
|
|
|
|
2016-06-13 18:54:26 +00:00
|
|
|
// BOTTOM
|
|
|
|
|