#ifndef OSD_H #define OSD_H /* This file is part of FreeIntv. FreeIntv is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. FreeIntv is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with FreeIntv; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ // On-Screen Display - Intellivision // void OSD_drawText(int x, int y, const char *text); void OSD_drawPaused(void); void OSD_drawLeftRight(void); void OSD_drawRightLeft(void); // On-Screen Display - General // void OSD_setDisplay(unsigned int frame[], unsigned int width, unsigned int height); void OSD_setColor(unsigned int color); void OSD_setBackground(unsigned int color); void OSD_HLine(int x, int y, int len); void OSD_VLine(int x, int y, int len); void OSD_Box(int x1, int y1, int width, int height); void OSD_FillBox(int x1, int y1, int width, int height); void OSD_drawLetter(int x, int y, int c); void OSD_drawText(int x, int y, const char *text); void OSD_drawInt(int x, int y, int num, int base); void OSD_drawTextFree(int x, int y, const char *text); void OSD_drawTextBG(int x, int y, const char *text); void OSD_drawTextCenterBG(int y, const char *text); #endif