X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?p=xscreensaver;a=blobdiff_plain;f=hacks%2Fglx%2Fcarousel.c;h=7f7a8da628a267761048e3f9aaecf21a2ea4c06e;hp=cf2f51c8f1a567cf40775c82298459b38e071468;hb=4361b69d3178d7fc98d0388f9a223af6c2651aba;hpb=6afd6db0ae9396cd7ff897ade597cd5483f49b0e diff --git a/hacks/glx/carousel.c b/hacks/glx/carousel.c index cf2f51c8..7f7a8da6 100644 --- a/hacks/glx/carousel.c +++ b/hacks/glx/carousel.c @@ -1,4 +1,4 @@ -/* carousel, Copyright (c) 2005-2014 Jamie Zawinski +/* carousel, Copyright (c) 2005-2015 Jamie Zawinski * Loads a sequence of images and rotates them around. * * Permission to use, copy, modify, distribute, and sell this software and its @@ -12,7 +12,7 @@ * Created: 21-Feb-2005 */ -#define DEF_FONT "-*-helvetica-bold-r-normal-*-240-*" +#define DEF_FONT "-*-helvetica-bold-r-normal-*-*-240-*-*-*-*-*-*" #define DEFAULTS "*count: 7 \n" \ "*delay: 10000 \n" \ "*wireframe: False \n" \ @@ -46,7 +46,7 @@ #include "grab-ximage.h" #include "texfont.h" -# ifndef HAVE_COCOA +# ifndef HAVE_JWXYZ # include /* for XrmDatabase in -debug mode */ # endif @@ -463,7 +463,7 @@ carousel_handle_event (ModeInfo *mi, XEvent *event) static void hack_resources (Display *dpy) { -# ifndef HAVE_COCOA +# ifndef HAVE_JWXYZ char *res = "desktopGrabber"; char *val = get_string_resource (dpy, res, "DesktopGrabber"); char buf1[255]; @@ -475,7 +475,7 @@ hack_resources (Display *dpy) value.addr = buf2; value.size = strlen(buf2); XrmPutResource (&db, buf1, "String", &value); -# endif /* !HAVE_COCOA */ +# endif /* !HAVE_JWXYZ */ } @@ -494,8 +494,14 @@ loading_msg (ModeInfo *mi, int n) sprintf (text, "Loading images... (%d%%)", (int) (n * 100 / MI_COUNT(mi))); - if (ss->loading_sw == 0) /* only do this once, so that the string doesn't move. */ - ss->loading_sw = texture_string_width (ss->texfont, text, &ss->loading_sh); + if (ss->loading_sw == 0) + { + /* only do this once, so that the string doesn't move. */ + XCharStruct e; + texture_string_metrics (ss->texfont, text, &e, 0, 0); + ss->loading_sw = e.width; + ss->loading_sh = e.ascent + e.descent; + } glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); @@ -507,6 +513,7 @@ loading_msg (ModeInfo *mi, int n) glPushMatrix(); glLoadIdentity(); +/* { double rot = current_device_rotation(); glRotatef(rot, 0, 0, 1); @@ -517,13 +524,16 @@ loading_msg (ModeInfo *mi, int n) glScalef (s, 1/s, 1); } } +*/ - if (MI_WIDTH(mi) < MI_HEIGHT(mi)) /* USE_IPHONE portrait orientation */ +# ifdef HAVE_MOBILE + if (MI_WIDTH(mi) < MI_HEIGHT(mi)) /* portrait orientation */ { GLfloat s = (MI_WIDTH(mi) / (GLfloat) MI_HEIGHT(mi)); glScalef (s, s, s); glTranslatef(-s/2, 0, 0); } +# endif glOrtho(0, MI_WIDTH(mi), 0, MI_HEIGHT(mi), -1, 1); glTranslatef ((MI_WIDTH(mi) - ss->loading_sw) / 2, @@ -553,11 +563,7 @@ init_carousel (ModeInfo *mi) carousel_state *ss; int wire = MI_IS_WIREFRAME(mi); - if (sss == NULL) { - if ((sss = (carousel_state *) - calloc (MI_NUM_SCREENS(mi), sizeof(carousel_state))) == NULL) - return; - } + MI_INIT (mi, sss, NULL); ss = &sss[screen]; if ((ss->glx_context = init_GL(mi)) != NULL) { @@ -773,10 +779,13 @@ draw_frame (ModeInfo *mi, image_frame *frame, time_t now, Bool body_p) } else /* Draw a title under the image. */ { + XCharStruct e; int sw, sh; GLfloat scale = 0.05; char *title = frame->current.title ? frame->current.title : "(untitled)"; - sw = texture_string_width (ss->texfont, title, &sh); + texture_string_metrics (ss->texfont, title, &e, 0, 0); + sw = e.width; + sh = e.ascent + e.descent; glTranslatef (0, -scale, 0);