Started to add tgi text output functions

git-svn-id: svn://svn.cc65.org/cc65/trunk@1428 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2002-10-03 11:18:49 +00:00
parent 2f44fb05a4
commit 7fffd12f11
3 changed files with 96 additions and 8 deletions

View File

@@ -47,6 +47,18 @@
/*****************************************************************************/
/* Definitions */
/*****************************************************************************/
/* Constants used for tgi_textstyle */
#define TGI_TEXT_HORIZONTAL 0
#define TGI_TEXT_VERTICAL 1
/*****************************************************************************/
/* Functions */
/*****************************************************************************/
@@ -163,6 +175,30 @@ void __fastcall__ tgi_outtext (int x, int y, const char* text);
void __fastcall__ tgi_bar (int x1, int y1, int x2, int y2);
/* Draw a bar (a filled rectangle) using the current color. */
void __fastcall__ tgi_textstyle (unsigned char magx, unsigned char magy,
unsigned char dir);
/* Set the style for text output. */
unsigned __fastcall__ tgi_textwidth (const char* s);
/* Calculate the width of the text in pixels according to the current text
* style.
*/
unsigned __fastcall__ tgi_textheight (const char* s);
/* Calculate the height of the text in pixels according to the current text
* style.
*/
void __fastcall__ tgi_outtext (const char* s);
/* Output text at the current graphics cursor position. The graphics cursor
* is moved to the end of the text.
*/
void __fastcall__ tgi_outtextxy (int x, int y, const char* s);
/* Output text at the given cursor position. The graphics cursor is moved to
* the end of the text.
*/
/* End of tgi.h */