X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FApplications%2Fgui_ate_src%2Fmain.c;h=032a96859c4d51dda4784d92f66c6090931bf1e5;hb=04a050f42807686dc119838c82372409246d55bb;hp=e83ab7c4f874baa8c07758637c36193e822235fd;hpb=fa0ff18a7f85c7dc637aef2dfe5c1ed3dea7aee5;p=tpg%2Facess2.git diff --git a/Usermode/Applications/gui_ate_src/main.c b/Usermode/Applications/gui_ate_src/main.c index e83ab7c4..032a9685 100644 --- a/Usermode/Applications/gui_ate_src/main.c +++ b/Usermode/Applications/gui_ate_src/main.c @@ -10,6 +10,7 @@ #include #include #include +#include "strings.h" // === PROTOTYPES === int main(int argc, char *argv[]); @@ -33,7 +34,7 @@ int main(int argc, char *argv[]) AxWin3_Connect(NULL); // --- Build up window - gMainWindow = AxWin3_Widget_CreateWindow(NULL, 400, 600, ELEFLAG_VERTICAL); + gMainWindow = AxWin3_Widget_CreateWindow(NULL, 700, 400, ELEFLAG_VERTICAL); AxWin3_SetWindowTitle(gMainWindow, "Acess Text Editor"); // TODO: Update title with other info gMainWindow_Root = AxWin3_Widget_GetRoot(gMainWindow); @@ -69,10 +70,19 @@ int main(int argc, char *argv[]) AxWin3_RichText_SetCursorPos (gMainWindow_TextArea, 0, 0); AxWin3_RichText_SetCursorType (gMainWindow_TextArea, AXWIN3_RICHTEXT_CURSOR_VLINE); AxWin3_RichText_SetCursorBlink (gMainWindow_TextArea, 1); + + // + AxWin3_RichText_SetLineCount(gMainWindow_TextArea, 3); + AxWin3_RichText_SendLine(gMainWindow_TextArea, 0, "First line!"); + AxWin3_RichText_SendLine(gMainWindow_TextArea, 2, "Third line! \x01""ff0000A red"); + // + AxWin3_ShowWindow(gMainWindow_TextArea, 1); // TODO: Status Bar? + AxWin3_MoveWindow(gMainWindow, 50, 50); AxWin3_ShowWindow(gMainWindow, 1); + AxWin3_FocusWindow(gMainWindow); // Main loop AxWin3_MainLoop();