1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
|
/* testbench.cpp -- A companion library to SDL for working with Pango.
Copyright (C) 2004 NAKAMURA Ken'ichi
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*/
#include "SDL_Pango.h"
#include "stdio.h"
#include "stdlib.h"
SDLPango_Context *context;
char *text;
int resizeLoop(SDL_Surface **framebuf)
{
SDL_Event event;
while( SDL_PollEvent( &event ) ){
switch( event.type ){
case SDL_QUIT:
return 0;
case SDL_VIDEORESIZE:
*framebuf = SDL_SetVideoMode(event.resize.w, event.resize.h, 32, SDL_SWSURFACE | SDL_RESIZABLE);
break;
case SDL_KEYUP:
if(event.key.keysym.sym == SDLK_RETURN)
SDLPango_SetMarkup(context, text, -1);
else if(event.key.keysym.sym == SDLK_SPACE)
SDLPango_SetText(context, text, -1);
break;
default:
break;
}
}
return -1;
}
char *readFile(const char *filename)
{
long file_size;
char *text;
FILE *file = fopen(filename, "rb");
if(! file)
exit(1);
fseek(file, 0, SEEK_END);
file_size = ftell(file);
fseek(file, 0, SEEK_SET);
text = (char *)malloc(file_size + 1);
fread(text, file_size, 1, file);
text[file_size] = '\0';
return text;
}
int main(int argc, char *argv[])
{
SDL_Surface *framebuf;
SDL_Surface *surface;
if(argc == 1)
exit(1);
SDL_Init(SDL_INIT_VIDEO);
SDLPango_Init();
framebuf = SDL_SetVideoMode(640, 480, 32, SDL_SWSURFACE | SDL_RESIZABLE);
context = SDLPango_CreateContext();
#ifdef SET_DPI
SDLPango_SetDpi(context, 200.0, 200.0);
#endif
SDLPango_SetDefaultColor(context, MATRIX_TRANSPARENT_BACK_WHITE_LETTER);
SDLPango_SetMinimumSize(context, 640, 0);
#ifdef SET_BASE_DIRECTION
SDLPango_SetBaseDirection(context, SDLPANGO_DIRECTION_RTL);
#endif
text = readFile(argv[1]);
surface = NULL;
SDLPango_SetMarkup(context, text, -1);
while(resizeLoop(&framebuf)) {
SDL_Surface *surface;
SDLPango_SetMinimumSize(context, framebuf->w, 0);
#ifdef GET_LAUOUT_WIDTH
{
int w, h;
w = SDLPango_GetLayoutWidth(context);
h = SDLPango_GetLayoutHeight(context);
}
#endif
#ifdef CREATE_SURFACE_DRAW
surface = SDLPango_CreateSurfaceDraw(context);
#else
surface = SDL_CreateRGBSurface(SDL_SWSURFACE, framebuf->w, framebuf->h,
32, (Uint32)(255 << (8 * 3)), (Uint32)(255 << (8 * 2)),
(Uint32)(255 << (8 * 1)), 255);
SDLPango_Draw(context, surface, 0, 0);
#endif
SDL_FillRect(framebuf, NULL, SDL_MapRGBA(framebuf->format, 0, 0, 0, 0));
SDL_BlitSurface(surface, NULL, framebuf, NULL);
SDL_UpdateRect(framebuf, 0, 0, framebuf->w, framebuf->h);
SDL_FreeSurface(surface);
}
free(text);
SDLPango_FreeContext(context);
SDL_Quit();
return 0;
}
|