diff --git a/4coder_API.html b/4coder_API.html
index 75e6f58c..e693546f 100644
--- a/4coder_API.html
+++ b/4coder_API.html
@@ -1,145 +1,955 @@
+
4coder API
+
§1 Introduction
-exec_command
+
+This is the documentation for alpha 4.0.8 super! The documentation has been made as accurate as possible but there may be errors. If you have questions or discover errors please contact editor@4coder.net.
+
+
+
+
§2 Types and Functions
+
§2.1 Function List
+
+
§2.2 Descriptions
+
+
§2.2.0: exec_command
+
void exec_command(
+
Application_Links *app,
int command_id
)
+
+
Parameters
+
command_id
+
an integer id enumerated in 4coder_custom.h starting with cmdid
+
+
Description
Executes the command associated with the command_id passed in
+
+
§2.2.1: exec_system_command
+
int exec_system_command(
+
Application_Links *app,
View_Summary *view,
Buffer_Identifier buffer,
char *path,
int path_len,
char *command,
int command_len,
unsigned int flags
)
+
+
Parameters
+
view
+
the target view that will display the output buffer, may be NULL, see description for details
-exec_system_command
+
buffer
+
a buffer identifier for the buffer that will be filled with the output from the command
-directory_get_hot
+
path
+
the path from which the command is executed
-get_4ed_path
+
path_len
+
the length of the path string
-file_exists
+
command
+
the command to be executed
-directory_cd
+
command_len
+
the length of the command string
-get_file_list
+
flags
+
may be zero or one or more CLI flags ORed together
+
+
Return
returns non-zero if the command is successfully started, returns zero otherwise
Description
Executes a system 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. If the buffer already exists the command will fail, unless
+CLI_OverlapWithConflict is set in the flags.
+
+If the buffer is not already in an open view, and the view parameter is no NULL, then the provided view
+will display the output buffer. If the view parameter is NULL, no view will display the output.
+
+If CLI_OverlapWithConflict is set in the flags, the command will always be executed even if another command
+was outputting to the same buffer still.
+
+If CLI_AlwaysBindToView is set and the view parameter is not NULL, then the specified view will always
+begin displaying the output buffer, even if another open view already displays that buffer.
+
+If CLI_CursorAtEnd is set the cursor in the output buffer will be placed at the end of the buffer instead
+of at the beginning.
+
+
§2.2.2: clipboard_post
+
void clipboard_post(
+
Application_Links *app,
char *str,
int len
)
+
+
Parameters
+
str
+
the string to post to the clipboard
-free_file_list
+
len
+
the length of the string str
+
+
Description
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.
+
+
§2.2.3: clipboard_count
+
int clipboard_count(
+
Application_Links *app
)
+
+
Description
returns the number of items in the clipboard
+
+
§2.2.4: clipboard_index
+
int clipboard_index(
+
Application_Links *app,
int index,
char *out,
int len
)
+
+
Parameters
+
index
+
the index of the item to be read
-clipboard_post
+
out
+
a buffer where the clipboard contents are written or NULL
-clipboard_count
+
len
+
the length of the out buffer
+
+
Return
returns the size of the item on the clipboard associated with the given index
Description
There are multiple items on the 4coder clipboard. The most recent copy is always at
+index 0. The second most recent is at index 1, and so on for all the stored clipboard items.
+This function reads one of the clipboard items and stores it into the out buffer, if the out
+buffer is not NULL. This function always returns the size of the clipboard item specified
+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.
+
+
§2.2.5: get_buffer_first
+
Buffer_Summary get_buffer_first(
+
Application_Links *app,
unsigned int access
)
+
+
Parameters
+
access
+
the access flags for the access
+
+
Return
returns the summary of the first buffer in a buffer loop
Description
Begins a loop across all the buffers.
+
+If the buffer returned does not exist, the loop is finished. Buffers
+should not be killed durring a buffer loop.
See Also
+
+
§2.2.6: get_buffer_next
+
void get_buffer_next(
+
Application_Links *app,
Buffer_Summary *buffer,
unsigned int access
)
+
+
Parameters
+
buffer
+
pointer to the loop buffer originally returned by get_buffer_first
-clipboard_index
+
access
+
the access flags for the access
+
+
Description
Writes the next buffer into the buffer struct. To get predictable results every
+call to get_buffer_first and get_buffer_next in the loop should have the same
+access flags.
+
+If the buffer returned does not exist, the loop is finished. Buffers
+should not be killed durring a buffer loop.
See Also
+
+
§2.2.7: get_buffer
+
Buffer_Summary get_buffer(
+
Application_Links *app,
int buffer_id,
unsigned int access
)
+
+
Parameters
+
buffer_id
+
the id of the buffer to get
-get_buffer_first
+
access
+
the access flags for the access
+
+
Return
returns a summary that describes the indicated buffer if it exists and is accessible
+
+
§2.2.8: get_buffer_by_name
+
Buffer_Summary get_buffer_by_name(
+
Application_Links *app,
char *name,
int len,
unsigned int access
)
+
+
Parameters
-get_buffer_next
+
len
+
the length of the name string
-get_buffer
+
access
+
the access flags for the access
+
+
Return
returns a summary that describes the indicated buffer if it exists and is accessible
+
+
§2.2.9: buffer_boundary_seek
+
int buffer_boundary_seek(
+
Application_Links *app,
Buffer_Summary *buffer,
int start_pos,
int seek_forward,
unsigned int flags
)
+
+
Parameters
+
buffer
+
the buffer to seek through
-get_buffer_by_name
+
start_pos
+
the absolute position in the buffer to begin the seek
-buffer_seek
+
seek_forward
+
non-zero indicates to seek forward otherwise the seek goes backward
-buffer_read_range
+
flags
+
one or more types of boundaries to use for stopping the seek
+
+
Return
returns the position where the seek stops
See Also
+
+
§2.2.10: buffer_read_range
+
int buffer_read_range(
+
Application_Links *app,
Buffer_Summary *buffer,
int start,
int end,
char *out
)
+
+
Parameters
+
buffer
+
the buffer to read out of
-buffer_replace_range
+
start
+
the beginning of the read range
-buffer_set_setting
+
end
+
one past the end of the read range
-buffer_auto_indent
+
out
+
the output buffer to fill with the result of the read
+
+
Return
returns non-zero on success
Description
The output buffer must have a capacity of at least (end - start)
+The output is not null terminated.
+
+This call fails if the buffer does not exist, or if the read range
+is not within the bounds of the buffer.
+
+
§2.2.11: buffer_replace_range
+
int buffer_replace_range(
+
Application_Links *app,
Buffer_Summary *buffer,
int start,
int end,
char *str,
int len
)
+
+
Parameters
-create_buffer
+
start
+
the start of the range to edit
-save_buffer
+
end
+
the end of the range to edit
-kill_buffer
+
str
+
the string to write into the range
-get_view_first
+
len
+
the length of the str string
+
+
Return
returns non-zero if the replacement succeeds
Description
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.
+
+
§2.2.12: buffer_set_setting
+
int buffer_set_setting(
+
Application_Links *app,
Buffer_Summary *buffer,
int setting,
int value
)
+
+
Parameters
+
buffer
+
the buffer to set a setting on
-get_view_next
+
setting
+
one of the Buffer_Setting_ID enum values that identifies the setting to set
-get_view
+
value
+
the value to set the specified setting to
+
+
See Also
+
+
§2.2.13: buffer_auto_indent
+
int buffer_auto_indent(
+
Application_Links *app,
Buffer_Summary *buffer,
int start,
int end,
int tab_width,
unsigned int flags
)
+
+
Parameters
+
buffer
+
the buffer in which to apply the auto indenting
-get_active_view
+
start
+
the position to start the auto indenting
-view_compute_cursor
+
end
+
the position to end the auto indenting
-view_set_cursor
+
tab_width
+
the number of spaces to place as a tab
-view_set_mark
+
flags
+
the auto tab behavior flags
+
+
Return
returns non-zero when the call succeeds
Description
Applies the built in auto-indentation rule to the code in the range from
+start to end by inserting spaces or tabs at the beginning of the lines.
+If the buffer does not have lexing enabled or the lexing job has not
+completed this function will fail.
See Also
+
+
§2.2.14: create_buffer
+
Buffer_Summary create_buffer(
+
Application_Links *app,
char *filename,
int filename_len,
unsigned int flags
)
+
+
Parameters
+
filename
+
the name of the file to be opened or created
-view_set_highlight
+
filename_len
+
the length of the filename string
-view_set_buffer
+
flags
+
flags for buffer creation behavior
+
+
Return
returns the summary of the created buffer on success or a NULL buffer otherwise
Description
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.
See Also
+
+
§2.2.15: save_buffer
+
int save_buffer(
+
Application_Links *app,
Buffer_Summary *buffer,
char *filename,
int filename_len,
unsigned int flags
)
+
+
Parameters
+
buffer
+
the buffer to save to a file
-view_post_fade
+
filename
+
the name of the file to save the buffer into
-view_set_paste_rewrite_
+
filename_len
+
length of the filename string
-view_get_paste_rewrite_
+
flags
+
+
+
Return
returns non-zero if the save succeeds
+
+
§2.2.16: kill_buffer
+
int kill_buffer(
+
Application_Links *app,
Buffer_Identifier buffer,
int view_id,
unsigned int flags
)
+
+
Parameters
+
buffer
+
a buffer identifier specifying the buffer to try to kill
-get_user_input
+
view_id
+
the id of view that will contain the "are you sure" dialogue
-get_command_input
+
flags
+
flags for buffer kill behavior
+
+
Return
returns non-zero if the kill succeeds
Description
Tries to kill the idenfied buffer. If the buffer is dirty and the "are you sure"
+dialogue needs to be displayed the provided view is used to show the dialogue.
+If the view is not open the kill fails.
See Also
+
+
§2.2.17: get_view_first
+
View_Summary get_view_first(
+
Application_Links *app,
unsigned int access
)
+
+
Parameters
+
access
+
the access flags for the access
+
+
Return
returns the summary of the first view in a view loop
Description
Begins a loop across all the open views.
+
+If the view summary returned is NULL, the loop is finished.
+Views should not be closed or opened durring a view loop.
See Also
+
+
§2.2.18: get_view_next
+
void get_view_next(
+
Application_Links *app,
View_Summary *view,
unsigned int access
)
+
+
Parameters
+
view
+
pointer to the loop view originally returned by get_view_first
-get_mouse_state
+
access
+
the access flags for the access
+
+
Description
Writes the next view into the view struct. To get predictable results every
+call to get_view_first and get_view_next in the loop should have the same
+access flags.
+
+If the view summary returned is NULL, the loop is finished.
+Views should not be closed or opened durring a view loop.
See Also
+
+
§2.2.19: get_view
+
View_Summary get_view(
+
Application_Links *app,
int view_id,
unsigned int access
)
+
+
Parameters
+
view_id
+
the id of the view to get
-start_query_bar
+
access
+
the access flags for the access
+
+
Return
returns a summary that describes the indicated view if it is open and is accessible
+
+
§2.2.20: get_active_view
+
View_Summary get_active_view(
+
Application_Links *app,
unsigned int access
)
+
+
Parameters
+
access
+
the access flags for the access
+
+
Return
returns a summary that describes the active view
+
+
§2.2.21: view_compute_cursor
+
int view_compute_cursor(
+
Application_Links *app,
View_Summary *view,
Buffer_Seek seek,
Full_Cursor *cursor_out
)
+
+
Parameters
+
view
+
the view on which to run the cursor computation
-print_message
+
cursor_out
+
on success this is filled with result of the seek
+
+
Return
returns non-zero on success
Description
Computes a full cursor for the given seek position.
See Also
+
+
§2.2.22: view_set_cursor
+
int view_set_cursor(
+
Application_Links *app,
View_Summary *view,
Buffer_Seek seek,
int set_preferred_x
)
+
+
Parameters
+
view
+
the view in which to set the cursor
-change_font
+
set_preferred_x
+
if true the preferred x is updated to match the new cursor position
+
+
Return
returns non-zero on success
Description
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.
See Also
+
+
§2.2.23: view_set_mark
+
int view_set_mark(
+
Application_Links *app,
View_Summary *view,
Buffer_Seek seek
)
+
+
Parameters
+
view
+
the view in which to set the mark
-set_theme_colors
+
seek
+
+
+
Return
returns non-zero on success
Description
Sets the the view's mark position.
See Also
+
+
§2.2.24: view_set_highlight
+
int view_set_highlight(
+
Application_Links *app,
View_Summary *view,
int start,
int end,
int turn_on
)
+
+
Parameters
+
view
+
the view to set the highlight in
-get_theme_colors
+
start
+
the start of the highlight range
-
+
+
end
+
the end of the highlight range
+
+
+
turn_on
+
indicates whether the highlight is being turned on or off
+
+
Return
returns non-zero on success
Description
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
+that either setting the with view_set_cursor or calling view_set_highlight and
+the turn_on set to false, will switch back to showing the cursor.
+
+
§2.2.25: view_set_buffer
+
int view_set_buffer(
+
Application_Links *app,
View_Summary *view,
int buffer_id,
unsigned int flags
)
+
+
Parameters
+
view
+
the view to display the buffer in
+
+
+
buffer_id
+
the buffer to show in the view
+
+
+
flags
+
set buffer behavior flags
+
+
Return
returns non-zero on success
Description
On success view_set_buffer sets the specified view's current buffer and
+cancels and dialogue shown in the view and displays the file.
See Also
+
+
§2.2.26: view_post_fade
+
int view_post_fade(
+
Application_Links *app,
View_Summary *view,
float seconds,
int start,
int end,
unsigned int color
)
+
+
Parameters
+
view
+
the veiw to post a fade effect to
+
+
+
seconds
+
the number of seconds the fade effect should last
+
+
+
start
+
the first character in the fade range
+
+
+
end
+
one after the last character in the fade range
+
+
+
+
+
§2.2.27: view_set_paste_rewrite_
+
void view_set_paste_rewrite_(
+
Application_Links *app,
View_Summary *view
)
+
+No documentation generated for this function, assume it is non-public.
+
+
+
§2.2.28: view_get_paste_rewrite_
+
int view_get_paste_rewrite_(
+
Application_Links *app,
View_Summary *view
)
+
+No documentation generated for this function, assume it is non-public.
+
+
+
+
+
§2.2.31: get_mouse_state
+
Mouse_State get_mouse_state(
+
Application_Links *app
)
+
+
Return
returns the current mouse state
See Also
+
+
§2.2.32: start_query_bar
+
int start_query_bar(
+
Application_Links *app,
Query_Bar *bar,
unsigned int flags
)
+
+
Parameters
+
bar
+
a pointer to the Query_Bar struct that defines the bar's contents
+
+
+
Return
returns non-zero on success
Description
The memory pointed to by bar must remain valid until a call to end_query_bar or
+until the command returns.
+
+
§2.2.33: end_query_bar
+
void end_query_bar(
+
Application_Links *app,
Query_Bar *bar,
unsigned int flags
)
+
+
Parameters
+
bar
+
a pointer to the Query_Bar struct to end
+
+
+
Description
bar must be a pointer previously passed to start_query_bar previously in the same command.
+
+
§2.2.34: print_message
+
void print_message(
+
Application_Links *app,
char *str,
int len
)
+
+
Parameters
+
str
+
the string to post to *messages*
+
+
+
+
+
§2.2.35: change_theme
+
void change_theme(
+
Application_Links *app,
char *name,
int len
)
+
+
Parameters
+
name
+
the name of the built in theme to change to
+
+
+
len
+
the length of the name string
+
+
+
+
§2.2.36: change_font
+
void change_font(
+
Application_Links *app,
char *name,
int len
)
+
+
Parameters
+
name
+
the name of the built in font to change to
+
+
+
len
+
the length of the name string
+
+
+
+
§2.2.37: set_theme_colors
+
void set_theme_colors(
+
Application_Links *app,
Theme_Color *colors,
int count
)
+
+
Parameters
+
colors
+
an array of color structs pairing differet style tags to color codes
+
+
+
count
+
the number of color structs in the colors array
+
+
Description
For each color struct in the array, the color in the style pallet is set to the color
+code paired with the tag.
+
+
§2.2.38: get_theme_colors
+
void get_theme_colors(
+
Application_Links *app,
Theme_Color *colors,
int count
)
+
+
Parameters
+
colors
+
an array of color structs listing style tags to get color values for
+
+
+
count
+
the number of color structs in the colors array
+
+
Description
For each color struct in the array, the color field of the struct is filled with the
+color from the specified color in the pallet.
+
+
§2.2.39: directory_get_hot
+
int directory_get_hot(
+
Application_Links *app,
char *out,
int capacity
)
+
+
Parameters
+
out
+
a buffer that receives the 4coder 'hot directory'
+
+
+
capacity
+
the maximum size to be output to the output buffer
+
+
Return
returns the size of the string written into the buffer
Description
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
+directories controlled by the custom side.
+
+
§2.2.40: get_file_list
+
File_List get_file_list(
+
Application_Links *app,
char *dir,
int len
)
+
+
Parameters
+
dir
+
the directory whose files will be enumerated in the returned list
+
+
+
len
+
the length of the dir string
+
+
Return
returns a File_List struct containing pointers to the names of the files in
+the specified directory. The File_List returned should be passed to free_file_list
+when it is no longer in use.
+
+
§2.2.41: free_file_list
+
void free_file_list(
+
Application_Links *app,
File_List list
)
+
+
Parameters
+
list
+
the file list to be freed
+
+
Description
after this call the file list passed in should not be read or written to
+
+
§2.2.42: file_exists
+
int file_exists(
+
Application_Links *app,
char *filename,
int len
)
+
+
Parameters
+
+
len
+
the number of characters in the filename string
+
+
Return
returns non-zero if the file exists, returns zero if the file does not exist
+
+
§2.2.43: directory_cd
+
int directory_cd(
+
Application_Links *app,
char *dir,
int *len,
int capacity,
char *rel_path,
int rel_len
)
+
+
Parameters
+
dir
+
a string buffer containing a directory
+
+
+
len
+
the length of the string in the string buffer
+
+
+
capacity
+
the maximum size of the string buffer
+
+
+
rel_path
+
the path to change to, may include '.' or '..'
+
+
+
rel_len
+
the length of the rel_path string
+
+
Return
returns non-zero if the call succeeds, returns zero otherwise
Description
This call succeeds if the directory exists and the new directory fits inside the dir buffer.
+If the call succeeds the dir buffer is filled with the new directory and len contains the
+length of the string in the buffer.
+
+For instance if dir contains "C:/Users/MySelf" and rel is "Documents" the buffer will contain
+"C:/Users/MySelf/Documents" and len will contain the length of that string. This call can
+also be used with rel set to ".." to traverse to parent folders.
+
+
§2.2.44: get_4ed_path
+
int get_4ed_path(
+
Application_Links *app,
char *out,
int capacity
)
+
+
Parameters
+
out
+
a buffer that receives the path to the 4ed executable file
+
+
+
capacity
+
the maximum capacity of the output buffer
+
+
Return
returns non-zero on success, returns zero on failure
+
+
+