2017-01-23 06:19:43 +00:00
|
|
|
#if !defined(FCODER_TYPES_H)
|
|
|
|
#define FCODER_TYPES_H
|
2016-09-02 23:14:25 +00:00
|
|
|
|
2017-01-23 06:19:43 +00:00
|
|
|
#if !defined(FCODER_META_TAGS)
|
|
|
|
#define FCODER_META_TAGS
|
2016-11-02 03:27:51 +00:00
|
|
|
|
2017-01-23 06:19:43 +00:00
|
|
|
# define ENUM(type,name) typedef type name; enum name##_
|
|
|
|
# define TYPEDEF typedef
|
|
|
|
# define TYPEDEF_FUNC typedef
|
2016-11-02 03:27:51 +00:00
|
|
|
# define STRUCT struct
|
|
|
|
# define UNION union
|
2017-01-23 06:19:43 +00:00
|
|
|
# define GLOBAL_VAR static
|
|
|
|
|
2016-11-02 03:27:51 +00:00
|
|
|
#endif
|
|
|
|
|
2019-10-05 02:48:05 +00:00
|
|
|
struct Application_Links{
|
|
|
|
void *cmd_context;
|
|
|
|
void *current_coroutine;
|
|
|
|
i32 type_coroutine;
|
|
|
|
};
|
2019-10-10 22:57:02 +00:00
|
|
|
typedef void Custom_Layer_Init_Type(Application_Links *app);
|
|
|
|
void custom_layer_init(Application_Links *app);
|
|
|
|
|
|
|
|
typedef b32 _Get_Version_Type(i32 maj, i32 min, i32 patch);
|
|
|
|
typedef Custom_Layer_Init_Type *_Init_APIs_Type(struct API_VTable_custom *custom_vtable,
|
|
|
|
struct API_VTable_system *system_vtable);
|
2019-10-05 02:48:05 +00:00
|
|
|
|
|
|
|
////////////////////////////////
|
|
|
|
|
2019-02-25 23:42:13 +00:00
|
|
|
TYPEDEF u32 argb_color;
|
|
|
|
|
|
|
|
TYPEDEF u32 int_color;
|
|
|
|
|
|
|
|
TYPEDEF u16 id_color;
|
2016-07-02 14:15:15 +00:00
|
|
|
|
2019-03-21 03:18:08 +00:00
|
|
|
TYPEDEF u32 Child_Process_ID;
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
TYPEDEF i32 Buffer_ID;
|
2016-07-02 14:15:15 +00:00
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
TYPEDEF i32 View_ID;
|
2016-07-02 14:15:15 +00:00
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
TYPEDEF i32 Panel_ID;
|
2019-02-24 07:22:16 +00:00
|
|
|
|
2019-04-01 00:36:09 +00:00
|
|
|
TYPEDEF u32 Text_Layout_ID;
|
|
|
|
|
|
|
|
STRUCT Buffer_Point{
|
2019-06-20 23:43:27 +00:00
|
|
|
i64 line_number;
|
2019-04-01 00:36:09 +00:00
|
|
|
Vec2 pixel_shift;
|
|
|
|
};
|
|
|
|
|
2019-09-02 18:59:36 +00:00
|
|
|
STRUCT Line_Shift_Vertical{
|
|
|
|
i64 line;
|
|
|
|
f32 y_delta;
|
|
|
|
};
|
|
|
|
|
|
|
|
STRUCT Line_Shift_Character{
|
|
|
|
i64 line;
|
|
|
|
i64 character_delta;
|
|
|
|
};
|
|
|
|
|
2019-03-21 03:18:08 +00:00
|
|
|
ENUM(u32, Child_Process_Set_Target_Flags){
|
|
|
|
ChildProcessSet_FailIfBufferAlreadyAttachedToAProcess = 1,
|
|
|
|
ChildProcessSet_FailIfProcessAlreadyAttachedToABuffer = 2,
|
|
|
|
ChildProcessSet_NeverOverrideExistingAttachment = 3,
|
|
|
|
ChildProcessSet_CursorAtEnd = 4,
|
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
ENUM(u32, Memory_Protect_Flags){
|
2016-09-01 00:26:52 +00:00
|
|
|
MemProtect_Read = 0x1,
|
|
|
|
MemProtect_Write = 0x2,
|
2016-07-10 05:49:11 +00:00
|
|
|
MemProtect_Execute = 0x4,
|
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
ENUM(i32, Wrap_Indicator_Mode){
|
2016-10-27 23:45:41 +00:00
|
|
|
WrapIndicator_Hide,
|
|
|
|
WrapIndicator_Show_After_Line,
|
|
|
|
WrapIndicator_Show_At_Wrap_Edge,
|
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
ENUM(i32, Global_Setting_ID){
|
2017-05-14 23:42:16 +00:00
|
|
|
GlobalSetting_Null,
|
|
|
|
GlobalSetting_LAltLCtrlIsAltGr,
|
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
ENUM(i32, Buffer_Setting_ID){
|
2016-07-01 05:42:19 +00:00
|
|
|
BufferSetting_Null,
|
2016-07-04 20:40:57 +00:00
|
|
|
BufferSetting_Eol,
|
2016-07-12 18:20:06 +00:00
|
|
|
BufferSetting_Unimportant,
|
|
|
|
BufferSetting_ReadOnly,
|
2019-02-12 02:33:11 +00:00
|
|
|
BufferSetting_RecordsHistory,
|
2016-07-01 05:42:19 +00:00
|
|
|
};
|
|
|
|
|
2019-06-09 00:09:14 +00:00
|
|
|
STRUCT Character_Predicate{
|
|
|
|
u8 b[32];
|
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
ENUM(i32, View_Setting_ID){
|
2016-07-01 05:42:19 +00:00
|
|
|
ViewSetting_Null,
|
2016-07-04 20:40:57 +00:00
|
|
|
ViewSetting_ShowWhitespace,
|
2016-07-01 05:42:19 +00:00
|
|
|
ViewSetting_ShowScrollbar,
|
2017-03-27 22:36:42 +00:00
|
|
|
ViewSetting_ShowFileBar,
|
2018-08-04 02:41:38 +00:00
|
|
|
ViewSetting_UICommandMap
|
2016-07-01 05:42:19 +00:00
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
ENUM(u32, Buffer_Create_Flag){
|
2016-07-01 05:42:19 +00:00
|
|
|
BufferCreate_Background = 0x1,
|
|
|
|
BufferCreate_AlwaysNew = 0x2,
|
2016-09-01 00:26:52 +00:00
|
|
|
BufferCreate_NeverNew = 0x4,
|
2017-11-21 21:30:40 +00:00
|
|
|
BufferCreate_JustChangedFile = 0x8,
|
2018-08-05 07:09:18 +00:00
|
|
|
BufferCreate_MustAttachToFile = 0x10,
|
|
|
|
BufferCreate_NeverAttachToFile = 0x20,
|
2018-10-06 01:42:56 +00:00
|
|
|
BufferCreate_SuppressNewFileHook = 0x40,
|
2016-07-01 05:42:19 +00:00
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
ENUM(u32, Buffer_Save_Flag){
|
2017-11-21 21:30:40 +00:00
|
|
|
BufferSave_IgnoreDirtyFlag = 0x1,
|
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
ENUM(u32, Buffer_Kill_Flag){
|
2016-07-01 05:42:19 +00:00
|
|
|
BufferKill_AlwaysKill = 0x2,
|
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
ENUM(u32, Buffer_Reopen_Flag){};
|
2018-11-21 07:48:42 +00:00
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
ENUM(i32, Buffer_Kill_Result){
|
2018-08-05 07:09:18 +00:00
|
|
|
BufferKillResult_Killed = 0,
|
|
|
|
BufferKillResult_Dirty = 1,
|
|
|
|
BufferKillResult_Unkillable = 2,
|
|
|
|
BufferKillResult_DoesNotExist = 3,
|
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
ENUM(i32, Buffer_Reopen_Result){
|
2018-11-21 07:48:42 +00:00
|
|
|
BufferReopenResult_Reopened = 0,
|
|
|
|
BufferReopenResult_Failed = 1,
|
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
ENUM(u32, Access_Flag){
|
2016-07-01 05:42:19 +00:00
|
|
|
AccessOpen = 0x0,
|
|
|
|
AccessProtected = 0x1,
|
|
|
|
AccessHidden = 0x2,
|
|
|
|
AccessAll = 0xFF
|
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
ENUM(u32, Dirty_State){
|
2016-09-14 23:39:33 +00:00
|
|
|
DirtyState_UpToDate = 0,
|
|
|
|
DirtyState_UnsavedChanges = 1,
|
2019-02-25 23:42:13 +00:00
|
|
|
DirtyState_UnloadedChanges = 2,
|
|
|
|
DirtyState_UnsavedChangesAndUnloadedChanges = 3,
|
2016-09-09 22:56:43 +00:00
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
ENUM(u32, Command_Line_Interface_Flag){
|
2016-07-01 05:42:19 +00:00
|
|
|
CLI_OverlapWithConflict = 0x1,
|
|
|
|
CLI_AlwaysBindToView = 0x2,
|
|
|
|
CLI_CursorAtEnd = 0x4,
|
2019-03-17 23:11:37 +00:00
|
|
|
CLI_SendEndSignal = 0x8,
|
2016-07-01 05:42:19 +00:00
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
ENUM(u32, Set_Buffer_Flag){
|
2016-07-01 05:42:19 +00:00
|
|
|
SetBuffer_KeepOriginalGUI = 0x1
|
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
ENUM(i32, Mouse_Cursor_Show_Type){
|
2016-07-01 05:42:19 +00:00
|
|
|
MouseCursorShow_Never,
|
|
|
|
MouseCursorShow_Always,
|
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
ENUM(i32, View_Split_Position){
|
2016-07-05 01:36:30 +00:00
|
|
|
ViewSplit_Top,
|
|
|
|
ViewSplit_Bottom,
|
|
|
|
ViewSplit_Left,
|
2019-02-05 09:13:38 +00:00
|
|
|
ViewSplit_Right,
|
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
ENUM(i32, Panel_Split_Kind){
|
2019-02-24 07:22:16 +00:00
|
|
|
PanelSplitKind_Ratio_Min = 0,
|
|
|
|
PanelSplitKind_Ratio_Max = 1,
|
|
|
|
PanelSplitKind_FixedPixels_Min = 2,
|
|
|
|
PanelSplitKind_FixedPixels_Max = 3,
|
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
ENUM(i32, Panel_Split_Orientation){
|
2019-02-26 21:05:02 +00:00
|
|
|
PanelSplit_LeftAndRight = 0,
|
|
|
|
PanelSplit_TopAndBottom = 1,
|
2019-02-24 07:22:16 +00:00
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
ENUM(i32, Panel_Child){
|
2019-02-26 21:05:02 +00:00
|
|
|
PanelChild_Min = 0,
|
|
|
|
PanelChild_Max = 1,
|
2016-07-05 01:36:30 +00:00
|
|
|
};
|
|
|
|
|
2019-10-10 00:07:38 +00:00
|
|
|
TYPEDEF u8 Key_Modifier;
|
2017-01-23 06:19:43 +00:00
|
|
|
|
2017-01-07 02:59:55 +00:00
|
|
|
STRUCT Mouse_State{
|
2019-10-10 00:07:38 +00:00
|
|
|
b8 l;
|
|
|
|
b8 r;
|
|
|
|
b8 press_l;
|
|
|
|
b8 press_r;
|
|
|
|
b8 release_l;
|
|
|
|
b8 release_r;
|
|
|
|
b8 out_of_window;
|
2019-02-26 23:08:42 +00:00
|
|
|
i32 wheel;
|
2019-02-25 23:42:13 +00:00
|
|
|
UNION{
|
|
|
|
STRUCT{
|
2019-02-26 23:08:42 +00:00
|
|
|
i32 x;
|
|
|
|
i32 y;
|
2019-02-25 23:42:13 +00:00
|
|
|
};
|
|
|
|
Vec2_i32 p;
|
|
|
|
};
|
2016-07-01 05:42:19 +00:00
|
|
|
};
|
|
|
|
|
2017-05-21 01:22:20 +00:00
|
|
|
STRUCT Parser_String_And_Type{
|
|
|
|
char *str;
|
2019-02-26 23:08:42 +00:00
|
|
|
u32 length;
|
|
|
|
u32 type;
|
2017-05-21 01:22:20 +00:00
|
|
|
};
|
|
|
|
|
2019-06-02 00:45:18 +00:00
|
|
|
ENUM(u32, File_Attribute_Flag){
|
|
|
|
FileAttribute_IsDirectory = 1,
|
|
|
|
};
|
|
|
|
|
|
|
|
STRUCT File_Attributes{
|
|
|
|
u64 size;
|
|
|
|
u64 last_write_time;
|
|
|
|
File_Attribute_Flag flags;
|
|
|
|
};
|
|
|
|
|
2016-11-02 03:27:51 +00:00
|
|
|
STRUCT File_Info{
|
2019-08-04 00:49:40 +00:00
|
|
|
File_Info *next;
|
|
|
|
String_Const_u8 file_name;
|
|
|
|
File_Attributes attributes;
|
|
|
|
};
|
|
|
|
|
2016-11-02 03:27:51 +00:00
|
|
|
STRUCT File_List{
|
2019-08-04 00:49:40 +00:00
|
|
|
File_Info **infos;
|
2019-02-26 23:08:42 +00:00
|
|
|
u32 count;
|
2016-07-01 05:42:19 +00:00
|
|
|
};
|
|
|
|
|
2017-01-07 02:59:55 +00:00
|
|
|
STRUCT Buffer_Identifier{
|
2016-07-01 05:42:19 +00:00
|
|
|
char *name;
|
2019-02-26 23:08:42 +00:00
|
|
|
i32 name_len;
|
2017-01-07 02:59:55 +00:00
|
|
|
Buffer_ID id;
|
2016-07-01 05:42:19 +00:00
|
|
|
};
|
|
|
|
|
2019-09-02 18:59:36 +00:00
|
|
|
STRUCT Buffer_Scroll{
|
|
|
|
Buffer_Point position;
|
|
|
|
Buffer_Point target;
|
|
|
|
};
|
|
|
|
|
|
|
|
STRUCT Basic_Scroll{
|
|
|
|
Vec2_f32 position;
|
|
|
|
Vec2_f32 target;
|
2016-07-02 22:59:16 +00:00
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
ENUM(i32, Buffer_Seek_Type){
|
2016-09-24 06:17:06 +00:00
|
|
|
buffer_seek_pos,
|
2019-09-02 18:59:36 +00:00
|
|
|
buffer_seek_line_col,
|
|
|
|
};
|
|
|
|
|
2016-11-02 03:27:51 +00:00
|
|
|
STRUCT Buffer_Seek{
|
2016-07-02 22:59:16 +00:00
|
|
|
Buffer_Seek_Type type;
|
2016-11-02 03:27:51 +00:00
|
|
|
UNION{
|
2019-09-02 18:59:36 +00:00
|
|
|
STRUCT{
|
2019-06-20 23:43:27 +00:00
|
|
|
i64 pos;
|
2016-07-02 22:59:16 +00:00
|
|
|
};
|
2019-09-02 18:59:36 +00:00
|
|
|
STRUCT{
|
2019-06-20 23:43:27 +00:00
|
|
|
i64 line;
|
2019-09-02 18:59:36 +00:00
|
|
|
i64 col;
|
2016-07-02 22:59:16 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-09-02 18:59:36 +00:00
|
|
|
STRUCT Buffer_Cursor{
|
2019-06-20 23:43:27 +00:00
|
|
|
i64 pos;
|
|
|
|
i64 line;
|
2019-09-02 18:59:36 +00:00
|
|
|
i64 col;
|
2016-09-24 06:17:06 +00:00
|
|
|
};
|
|
|
|
|
2019-09-02 18:59:36 +00:00
|
|
|
STRUCT Range_Cursor{
|
2019-06-01 23:58:28 +00:00
|
|
|
struct{
|
2019-09-02 18:59:36 +00:00
|
|
|
Buffer_Cursor min;
|
|
|
|
Buffer_Cursor max;
|
2019-06-01 23:58:28 +00:00
|
|
|
};
|
|
|
|
struct{
|
2019-09-02 18:59:36 +00:00
|
|
|
Buffer_Cursor begin;
|
|
|
|
Buffer_Cursor end;
|
2019-06-01 23:58:28 +00:00
|
|
|
};
|
|
|
|
struct{
|
2019-09-02 18:59:36 +00:00
|
|
|
Buffer_Cursor start;
|
|
|
|
Buffer_Cursor end;
|
2019-06-01 23:58:28 +00:00
|
|
|
};
|
|
|
|
struct{
|
2019-09-02 18:59:36 +00:00
|
|
|
Buffer_Cursor first;
|
|
|
|
Buffer_Cursor one_past_last;
|
2019-06-01 23:58:28 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-02-24 02:30:29 +00:00
|
|
|
STRUCT Marker{
|
2019-08-24 01:34:42 +00:00
|
|
|
i64 pos;
|
2019-02-26 23:08:42 +00:00
|
|
|
b32 lean_right;
|
2017-02-24 02:30:29 +00:00
|
|
|
};
|
|
|
|
|
2017-01-23 06:19:43 +00:00
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
ENUM(i32, Managed_Object_Type)
|
2018-09-07 22:39:33 +00:00
|
|
|
{
|
|
|
|
ManagedObjectType_Error = 0,
|
|
|
|
ManagedObjectType_Memory = 1,
|
|
|
|
ManagedObjectType_Markers = 2,
|
2019-02-26 19:59:57 +00:00
|
|
|
|
|
|
|
ManagedObjectType_COUNT = 4,
|
2016-07-01 05:42:19 +00:00
|
|
|
};
|
|
|
|
|
2018-10-06 15:26:20 +00:00
|
|
|
|
2019-09-04 05:31:35 +00:00
|
|
|
TYPEDEF u64 Managed_ID;
|
2018-10-06 15:26:20 +00:00
|
|
|
|
2019-09-04 05:31:35 +00:00
|
|
|
TYPEDEF u64 Managed_Scope;
|
2019-02-27 05:49:35 +00:00
|
|
|
TYPEDEF u64 Managed_Object;
|
2018-09-28 23:42:32 +00:00
|
|
|
|
|
|
|
static Managed_Scope ManagedScope_NULL = 0;
|
|
|
|
static Managed_Object ManagedObject_NULL = 0;
|
|
|
|
|
2019-09-04 05:31:35 +00:00
|
|
|
static Managed_ID ManagedIndex_ERROR = 0;
|
|
|
|
|
2018-10-01 19:32:28 +00:00
|
|
|
STRUCT Marker_Visual{
|
2018-09-28 23:42:32 +00:00
|
|
|
Managed_Scope scope;
|
2019-02-26 23:08:42 +00:00
|
|
|
u32 slot_id;
|
|
|
|
u32 gen_id;
|
2018-09-28 23:42:32 +00:00
|
|
|
};
|
2018-10-06 15:26:20 +00:00
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
ENUM(u32, Glyph_Flag){
|
2019-02-24 07:22:16 +00:00
|
|
|
GlyphFlag_None = 0x0,
|
|
|
|
GlyphFlag_Rotate90 = 0x1,
|
2019-01-25 21:03:52 +00:00
|
|
|
};
|
|
|
|
|
2019-10-13 20:17:22 +00:00
|
|
|
struct Query_Bar{
|
2019-06-01 23:58:28 +00:00
|
|
|
String_Const_u8 prompt;
|
|
|
|
String_Const_u8 string;
|
|
|
|
umem string_capacity;
|
2018-09-07 22:39:33 +00:00
|
|
|
};
|
|
|
|
|
2019-10-13 20:17:22 +00:00
|
|
|
struct Query_Bar_Ptr_Array{
|
2019-02-27 05:49:35 +00:00
|
|
|
Query_Bar **ptrs;
|
|
|
|
i32 count;
|
|
|
|
};
|
|
|
|
|
2019-10-13 20:17:22 +00:00
|
|
|
struct Query_Bar_Group{
|
|
|
|
Application_Links *app;
|
|
|
|
View_ID view;
|
|
|
|
|
|
|
|
Query_Bar_Group(Application_Links *app);
|
|
|
|
Query_Bar_Group(Application_Links *app, View_ID view);
|
|
|
|
~Query_Bar_Group();
|
|
|
|
};
|
|
|
|
|
2019-04-05 21:56:58 +00:00
|
|
|
TYPEDEF_FUNC void UI_Quit_Function_Type(struct Application_Links *app, View_ID view);
|
|
|
|
#define UI_QUIT_FUNCTION(name) void name(struct Application_Links *app, View_ID view)
|
2018-09-08 01:36:42 +00:00
|
|
|
|
2016-11-02 03:27:51 +00:00
|
|
|
STRUCT Theme_Color{
|
2019-02-25 23:42:13 +00:00
|
|
|
id_color tag;
|
|
|
|
argb_color color;
|
2016-07-01 05:42:19 +00:00
|
|
|
};
|
|
|
|
|
2019-02-25 23:42:13 +00:00
|
|
|
//STRUCT Theme{
|
|
|
|
//int_color colors[Stag_COUNT];
|
|
|
|
//};
|
2017-06-05 21:48:49 +00:00
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
TYPEDEF u32 Face_ID;
|
2017-11-20 23:31:57 +00:00
|
|
|
|
2019-07-24 07:41:40 +00:00
|
|
|
STRUCT Font_Load_Location{
|
|
|
|
String_Const_u8 file_name;
|
|
|
|
b32 in_4coder_font_folder;
|
|
|
|
};
|
|
|
|
|
|
|
|
STRUCT Face_Load_Parameters{
|
|
|
|
u32 pt_size;
|
2019-02-26 23:08:42 +00:00
|
|
|
b32 bold;
|
|
|
|
b32 italic;
|
|
|
|
b32 underline;
|
|
|
|
b32 hinting;
|
2017-11-20 23:31:57 +00:00
|
|
|
};
|
|
|
|
|
2019-07-24 07:41:40 +00:00
|
|
|
STRUCT Face_Description{
|
|
|
|
Font_Load_Location font;
|
|
|
|
Face_Load_Parameters parameters;
|
|
|
|
};
|
|
|
|
|
2019-03-31 21:30:06 +00:00
|
|
|
STRUCT Face_Metrics{
|
2019-10-09 14:40:50 +00:00
|
|
|
f32 text_height;
|
2019-03-31 21:30:06 +00:00
|
|
|
f32 line_height;
|
2019-10-09 14:40:50 +00:00
|
|
|
f32 max_advance;
|
|
|
|
f32 normal_advance;
|
|
|
|
f32 space_advance;
|
|
|
|
f32 decimal_digit_advance;
|
|
|
|
f32 hex_digit_advance;
|
2019-03-31 21:30:06 +00:00
|
|
|
};
|
|
|
|
|
2019-09-02 18:59:36 +00:00
|
|
|
STRUCT Edit{
|
|
|
|
String_Const_u8 text;
|
|
|
|
Interval_i64 range;
|
2019-02-08 10:03:48 +00:00
|
|
|
};
|
|
|
|
|
2019-09-02 18:59:36 +00:00
|
|
|
STRUCT Batch_Edit{
|
|
|
|
Batch_Edit *next;
|
|
|
|
Edit edit;
|
2016-09-09 01:02:51 +00:00
|
|
|
};
|
2016-09-02 17:01:52 +00:00
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
ENUM(i32, Record_Kind){
|
2019-02-08 10:03:48 +00:00
|
|
|
RecordKind_Single,
|
|
|
|
RecordKind_Group,
|
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
ENUM(i32, Record_Error){
|
2019-02-08 12:33:43 +00:00
|
|
|
RecordError_NoError,
|
|
|
|
RecordError_InvalidBuffer,
|
|
|
|
RecordError_NoHistoryAttached,
|
|
|
|
RecordError_IndexOutOfBounds,
|
2019-06-01 23:58:28 +00:00
|
|
|
RecordError_SubIndexOutOfBounds,
|
2019-02-08 12:33:43 +00:00
|
|
|
RecordError_InitialStateDummyRecord,
|
|
|
|
RecordError_WrongRecordTypeAtIndex,
|
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
ENUM(u32, Record_Merge_Flag){
|
2019-02-09 01:48:11 +00:00
|
|
|
RecordMergeFlag_StateInRange_MoveStateForward = 0x0,
|
|
|
|
RecordMergeFlag_StateInRange_MoveStateBackward = 0x1,
|
|
|
|
RecordMergeFlag_StateInRange_ErrorOut = 0x2,
|
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
TYPEDEF i32 History_Record_Index;
|
2019-02-08 10:03:48 +00:00
|
|
|
|
2019-02-08 12:33:43 +00:00
|
|
|
STRUCT Record_Info{
|
|
|
|
Record_Error error;
|
|
|
|
Record_Kind kind;
|
2019-02-26 23:08:42 +00:00
|
|
|
i32 edit_number;
|
2019-02-08 12:33:43 +00:00
|
|
|
union{
|
|
|
|
struct{
|
2019-06-01 23:58:28 +00:00
|
|
|
String_Const_u8 string_forward;
|
|
|
|
String_Const_u8 string_backward;
|
2019-06-20 04:45:58 +00:00
|
|
|
i64 first;
|
2019-02-08 12:33:43 +00:00
|
|
|
} single;
|
|
|
|
struct{
|
2019-02-26 23:08:42 +00:00
|
|
|
i32 count;
|
2019-02-08 12:33:43 +00:00
|
|
|
} group;
|
|
|
|
};
|
2019-02-08 10:03:48 +00:00
|
|
|
};
|
2016-09-02 17:01:52 +00:00
|
|
|
|
2017-01-23 06:19:43 +00:00
|
|
|
TYPEDEF void Custom_Command_Function(struct Application_Links *app);
|
|
|
|
|
2018-06-22 20:59:21 +00:00
|
|
|
#if defined(CUSTOM_COMMAND_SIG) || defined(CUSTOM_DOC) || defined(CUSTOM_ALIAS)
|
2018-08-10 21:52:57 +00:00
|
|
|
#error Please do not define CUSTOM_COMMAND_SIG, CUSTOM_DOC, or CUSTOM_ALIAS
|
2018-06-15 20:10:49 +00:00
|
|
|
#endif
|
2018-06-22 20:59:21 +00:00
|
|
|
|
|
|
|
#if !defined(META_PASS)
|
|
|
|
#define CUSTOM_COMMAND_SIG(name) void name(struct Application_Links *app)
|
|
|
|
#define CUSTOM_DOC(str)
|
|
|
|
#define CUSTOM_ALIAS(x) x
|
|
|
|
#else
|
|
|
|
#define CUSTOM_COMMAND_SIG(name) CUSTOM_COMMAND_SIG(name, __FILE__, __LINE__)
|
|
|
|
#define CUSTOM_DOC(str) CUSTOM_DOC(str)
|
|
|
|
#define CUSTOM_ALIAS(x) CUSTOM_ALIAS(x)
|
2018-06-15 20:10:49 +00:00
|
|
|
#endif
|
2017-01-23 06:19:43 +00:00
|
|
|
|
2019-10-10 22:57:02 +00:00
|
|
|
// TODO(allen): rename
|
2017-01-23 06:19:43 +00:00
|
|
|
STRUCT User_Input{
|
2019-10-10 00:07:38 +00:00
|
|
|
Input_Event event;
|
2019-02-26 23:08:42 +00:00
|
|
|
b32 abort;
|
2017-01-23 06:19:43 +00:00
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
STRUCT Frame_Info{
|
|
|
|
i32 index;
|
|
|
|
f32 literal_dt;
|
|
|
|
f32 animation_dt;
|
|
|
|
};
|
|
|
|
|
|
|
|
TYPEDEF_FUNC void Render_Callback(struct Application_Links *app);
|
|
|
|
|
2019-10-10 22:57:02 +00:00
|
|
|
typedef i32 Hook_ID;
|
|
|
|
enum{
|
|
|
|
HookID_FileOutOfSync,
|
|
|
|
HookID_Exit,
|
|
|
|
HookID_BufferViewerUpdate,
|
|
|
|
HookID_ScrollRule,
|
|
|
|
HookID_NewFile,
|
|
|
|
HookID_OpenFile,
|
|
|
|
HookID_SaveFile,
|
|
|
|
HookID_EndFile,
|
|
|
|
HookID_FileEditRange,
|
|
|
|
HookID_FileExternallyModified,
|
2019-10-13 20:17:22 +00:00
|
|
|
HookID_ViewEventHandler,
|
2019-10-10 22:57:02 +00:00
|
|
|
HookID_RenderCaller,
|
|
|
|
HookID_InputFilter,
|
|
|
|
HookID_Start,
|
|
|
|
HookID_BufferNameResolver,
|
|
|
|
HookID_ModifyColorTable,
|
|
|
|
HookID_ClipboardChange,
|
|
|
|
HookID_GetViewBufferRegion,
|
|
|
|
};
|
2018-09-22 23:45:24 +00:00
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
TYPEDEF_FUNC i32 Hook_Function(struct Application_Links *app);
|
|
|
|
#define HOOK_SIG(name) i32 name(struct Application_Links *app)
|
2017-01-23 06:19:43 +00:00
|
|
|
|
2019-10-10 22:57:02 +00:00
|
|
|
TYPEDEF_FUNC void Render_Caller_Function(struct Application_Links *app, Frame_Info frame_info);
|
|
|
|
#define RENDER_CALLER_SIG(name) void name(struct Application_Links *app, Frame_Info frame_info)
|
|
|
|
|
2019-09-04 05:31:35 +00:00
|
|
|
TYPEDEF_FUNC i32 Buffer_Hook_Function(struct Application_Links *app, Buffer_ID buffer_id);
|
|
|
|
#define BUFFER_HOOK_SIG(name) i32 name(struct Application_Links *app, Buffer_ID buffer_id)
|
2017-01-23 06:19:43 +00:00
|
|
|
|
2019-09-02 18:59:36 +00:00
|
|
|
TYPEDEF_FUNC i32 File_Edit_Range_Function(struct Application_Links *app, Buffer_ID buffer_id,
|
|
|
|
Interval_i64 range, String_Const_u8 text);
|
|
|
|
#define FILE_EDIT_RANGE_SIG(name) i32 name(struct Application_Links *app, Buffer_ID buffer_id, Interval_i64 range, String_Const_u8 text)
|
2019-03-22 01:27:28 +00:00
|
|
|
|
2019-08-13 18:54:15 +00:00
|
|
|
TYPEDEF_FUNC i32 File_Externally_Modified_Function(struct Application_Links *app, Buffer_ID buffer_id);
|
|
|
|
#define FILE_EXTERNALLY_MODIFIED_SIG(name) i32 name(struct Application_Links *app, Buffer_ID buffer_id)
|
|
|
|
|
2017-01-23 06:19:43 +00:00
|
|
|
TYPEDEF_FUNC void Input_Filter_Function(Mouse_State *mouse);
|
|
|
|
#define INPUT_FILTER_SIG(name) void name(Mouse_State *mouse)
|
|
|
|
|
2019-09-02 18:59:36 +00:00
|
|
|
TYPEDEF_FUNC Vec2_f32 Delta_Rule_Function(Vec2_f32 pending_delta, View_ID view_id, b32 is_new_target, f32 dt);
|
|
|
|
#define DELTA_RULE_SIG(name) Vec2_f32 name(Vec2_f32 pending_delta, View_ID view_id, b32 is_new_target, f32 dt)
|
2017-01-23 06:19:43 +00:00
|
|
|
|
2019-02-25 23:42:13 +00:00
|
|
|
STRUCT Color_Table{
|
|
|
|
argb_color *vals;
|
|
|
|
u32 count;
|
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
TYPEDEF_FUNC Color_Table Modify_Color_Table_Function(struct Application_Links *app, Frame_Info frame);
|
|
|
|
#define MODIFY_COLOR_TABLE_SIG(name) Color_Table name(struct Application_Links *app, Frame_Info frame)
|
2019-02-25 23:42:13 +00:00
|
|
|
|
2019-03-30 22:36:31 +00:00
|
|
|
ENUM(u32, Clipboard_Change_Flag){
|
|
|
|
ClipboardFlag_FromOS = 0x1,
|
2019-03-15 08:38:28 +00:00
|
|
|
};
|
2019-06-01 23:58:28 +00:00
|
|
|
TYPEDEF_FUNC void Clipboard_Change_Hook_Function(struct Application_Links *app, String_Const_u8 contents, Clipboard_Change_Flag flags);
|
|
|
|
#define CLIPBOARD_CHANGE_HOOK_SIG(name) void name(struct Application_Links *app, String_Const_u8 contents, Clipboard_Change_Flag flags)
|
2019-03-15 08:38:28 +00:00
|
|
|
|
2019-06-19 02:31:59 +00:00
|
|
|
TYPEDEF_FUNC Rect_f32 Get_View_Buffer_Region_Function(struct Application_Links *app, View_ID view_id, Rect_f32 sub_region);
|
|
|
|
#define GET_VIEW_BUFFER_REGION_SIG(name) Rect_f32 name(struct Application_Links *app, View_ID view_id, Rect_f32 sub_region)
|
2019-02-27 05:49:35 +00:00
|
|
|
|
2017-12-01 18:04:07 +00:00
|
|
|
STRUCT Buffer_Name_Conflict_Entry{
|
|
|
|
Buffer_ID buffer_id;
|
2019-06-01 23:58:28 +00:00
|
|
|
String_Const_u8 file_name;
|
|
|
|
String_Const_u8 base_name;
|
|
|
|
u8 *unique_name_in_out;
|
|
|
|
umem unique_name_len_in_out;
|
|
|
|
umem unique_name_capacity;
|
2017-12-01 18:04:07 +00:00
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
TYPEDEF_FUNC void Buffer_Name_Resolver_Function(struct Application_Links *app, Buffer_Name_Conflict_Entry *conflicts, i32 conflict_count);
|
2017-11-30 23:25:49 +00:00
|
|
|
#define BUFFER_NAME_RESOLVER_SIG(n) \
|
2019-02-26 23:08:42 +00:00
|
|
|
void n(struct Application_Links *app, Buffer_Name_Conflict_Entry *conflicts, i32 conflict_count)
|
2017-11-30 23:25:49 +00:00
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
TYPEDEF_FUNC i32 Start_Hook_Function(struct Application_Links *app, char **files, i32 file_count, char **flags, i32 flag_count);
|
2017-06-23 23:07:18 +00:00
|
|
|
#define START_HOOK_SIG(name) \
|
2019-02-26 23:08:42 +00:00
|
|
|
i32 name(struct Application_Links *app, char **files, i32 file_count, char **flags, i32 flag_count)
|
2017-06-23 23:07:18 +00:00
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
TYPEDEF_FUNC i32 Get_Binding_Data_Function(void *data, i32 size);
|
|
|
|
#define GET_BINDING_DATA(name) i32 name(void *data, i32 size)
|
2017-01-23 06:19:43 +00:00
|
|
|
|
2019-10-10 18:21:47 +00:00
|
|
|
typedef i64 Command_Map_ID;
|
|
|
|
|
2019-06-18 04:47:00 +00:00
|
|
|
STRUCT Color_Picker{
|
2019-06-01 23:58:28 +00:00
|
|
|
String_Const_u8 title;
|
2019-02-25 23:42:13 +00:00
|
|
|
argb_color *dest;
|
2019-02-26 23:08:42 +00:00
|
|
|
b32 *finished;
|
2019-02-24 07:22:16 +00:00
|
|
|
};
|
|
|
|
|
2019-06-16 23:38:22 +00:00
|
|
|
ENUM(u32, String_Match_Flag){
|
|
|
|
StringMatch_CaseSensitive = 1,
|
|
|
|
StringMatch_LeftSideSloppy = 2,
|
|
|
|
StringMatch_RightSideSloppy = 4,
|
|
|
|
StringMatch_Straddled = 8,
|
|
|
|
};
|
|
|
|
|
|
|
|
STRUCT String_Match{
|
|
|
|
String_Match *next;
|
|
|
|
Buffer_ID buffer;
|
2019-06-18 04:47:00 +00:00
|
|
|
i32 string_id;
|
2019-06-16 23:38:22 +00:00
|
|
|
String_Match_Flag flags;
|
2019-06-20 03:43:02 +00:00
|
|
|
Range_i64 range;
|
2019-06-16 23:38:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
STRUCT String_Match_List{
|
|
|
|
String_Match *first;
|
|
|
|
String_Match *last;
|
|
|
|
i32 count;
|
|
|
|
};
|
2019-02-24 07:22:16 +00:00
|
|
|
|
2019-06-19 02:31:59 +00:00
|
|
|
STRUCT Process_State{
|
|
|
|
b32 valid;
|
2019-03-15 08:38:28 +00:00
|
|
|
b32 is_updating;
|
|
|
|
i64 return_code;
|
|
|
|
};
|
|
|
|
|
2017-01-23 06:19:43 +00:00
|
|
|
#endif
|
|
|
|
|