X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FLibraries%2Flibaxwin3.so_src%2Finclude_exp%2Faxwin3%2Frichtext.h;h=8b091667a2a2399d15f8901c65a3a1ae2fe888b3;hb=c03022fb6a4a18e97bc12673a57f2f0cba489cd6;hp=89b4fc5fc2acf198e4cfdd1a5b475c7f732e14d8;hpb=8c20de5e4ec260d9a7ee6d737b7601fba1c871c0;p=tpg%2Facess2.git diff --git a/Usermode/Libraries/libaxwin3.so_src/include_exp/axwin3/richtext.h b/Usermode/Libraries/libaxwin3.so_src/include_exp/axwin3/richtext.h index 89b4fc5f..8b091667 100644 --- a/Usermode/Libraries/libaxwin3.so_src/include_exp/axwin3/richtext.h +++ b/Usermode/Libraries/libaxwin3.so_src/include_exp/axwin3/richtext.h @@ -40,6 +40,14 @@ extern void AxWin3_RichText_SetFont(tHWND Window, const char *FontName, int Poin extern void AxWin3_RichText_SetCursorType(tHWND Window, int Type); extern void AxWin3_RichText_SetCursorBlink(tHWND Window, int bBlink); extern void AxWin3_RichText_SetCursorPos(tHWND Window, int Row, int Column); +/* + * \brief Scroll the specified range of data down (moving lines up) + * \note This is NOT a visual scroll, it scrolls the data + * + * Top/Bottom `DownCount` lines are discarded (bottom if DownCount is -ve) + * UNLESS DownCount is -ve and RangeCount is -1 (indicating insertion of lines) + */ +extern void AxWin3_RichText_ScrollRange(tHWND Window, int FirstRow, int RangeCount, int DownCount); extern void AxWin3_RichText_SendLine(tHWND Window, int Line, const char *Text); #endif