/*************************************************************************** * __________ __ ___. * Open \______ \ ____ ____ | | _\_ |__ _______ ___ * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ * \/ \/ \/ \/ \/ * $Id$ * * Copyright (C) 2002 by Daniel Stenberg * * All files in this archive are subject to the GNU General Public License. * See the file COPYING in the source tree root for full license agreement. * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY * KIND, either express or implied. * ****************************************************************************/ #include #include #include #include #include #include #include #include #include #include #include #include "config.h" #include "screenhack.h" #include "version.h" #include "lcd-x11.h" #include "lcd-playersim.h" #define MAX(x,y) ((x)>(y)?(x):(y)) #define MIN(x,y) ((x)<(y)?(x):(y)) #define PROGNAME "rockboxui" /* -- -- */ GC draw_gc; static Colormap cmap; int display_zoom=1; bool lcd_display_redraw=true; XrmOptionDescRec options [] = { /* { "-subtractive", ".additive", XrmoptionNoArg, "false" }, */ { "-server", ".server", XrmoptionSepArg, 0 }, { "-help", ".help", XrmoptionNoArg, "false" }, { 0, 0, 0, 0 } }; char *progclass = "rockboxui"; char *defaults [] = { #ifdef IRIVER_H100 ".background: lightblue", #elif defined ARCHOS_GMINI120 ".background: royalblue", #else ".background: lightgreen", #endif ".foreground: black", "*help: false", 0 }; void init_window () { XGCValues gcv; XWindowAttributes xgwa; XGetWindowAttributes (dpy, window, &xgwa); cmap = xgwa.colormap; gcv.function = GXxor; gcv.foreground = get_pixel_resource("foreground", "Foreground", dpy, cmap); draw_gc = XCreateGC (dpy, window, GCForeground, &gcv); screen_resized(LCD_WIDTH, LCD_HEIGHT); } void screen_resized(int width, int height) { int maxx, maxy; maxx = width; maxy = height; XtAppLock(app); XSetForeground(dpy, draw_gc, get_pixel_resource("background", "Background", dpy, cmap)); XFillRectangle(dpy, window, draw_gc, 0, 0, width*display_zoom, height*display_zoom); XtAppUnlock(app); lcd_display_redraw=true; screen_redraw(); } void drawrect(int color, int x1, int y1, int x2, int y2) { XtAppLock(app); if (color==0) XSetForeground(dpy, draw_gc, get_pixel_resource("background", "Background", dpy, cmap)); else XSetForeground(dpy, draw_gc, get_pixel_resource("foreground", "Foreground", dpy, cmap)); XFillRectangle(dpy, window, draw_gc, x1*display_zoom, y1*display_zoom, x2*display_zoom, y2*display_zoom); XtAppUnlock(app); } static void help(void) { printf(PROGNAME " " ROCKBOXUI_VERSION " " __DATE__ "\n" "usage: " PROGNAME "\n"); } void drawline(int color, int x1, int y1, int x2, int y2) { XtAppLock(app); if (color==0) XSetForeground(dpy, draw_gc, get_pixel_resource("background", "Background", dpy, cmap)); else XSetForeground(dpy, draw_gc, get_pixel_resource("foreground", "Foreground", dpy, cmap)); XDrawLine(dpy, window, draw_gc, (int)(x1*display_zoom), (int)(y1*display_zoom), (int)(x2*display_zoom), (int)(y2*display_zoom)); XtAppUnlock(app); } void drawdot(int color, int x, int y) { XtAppLock(app); if (color==0) XSetForeground(dpy, draw_gc, get_pixel_resource("background", "Background", dpy, cmap)); else XSetForeground(dpy, draw_gc, get_pixel_resource("foreground", "Foreground", dpy, cmap)); XFillRectangle(dpy, window, draw_gc, x*display_zoom, y*display_zoom, display_zoom, display_zoom); XtAppUnlock(app); } void drawdots(int color, struct coordinate *points, int count) { XtAppLock(app); if (color==0) XSetForeground(dpy, draw_gc, get_pixel_resource("background", "Background", dpy, cmap)); else XSetForeground(dpy, draw_gc, get_pixel_resource("foreground", "Foreground", dpy, cmap)); while (count--) { XFillRectangle(dpy, window, draw_gc, points[count].x*display_zoom, points[count].y*display_zoom, display_zoom, display_zoom); } XtAppUnlock(app); } void drawrectangles(int color, struct rectangle *points, int count) { XtAppLock(app); if (color==0) XSetForeground(dpy, draw_gc, get_pixel_resource("background", "Background", dpy, cmap)); else XSetForeground(dpy, draw_gc, get_pixel_resource("foreground", "Foreground", dpy, cmap)); while (count--) { XFillRectangle(dpy, window, draw_gc, points[count].x*display_zoom, points[count].y*display_zoom, points[count].width*display_zoom, points[count].height*display_zoom); } XtAppUnlock(app); } void drawtext(int color, int x, int y, char *text) { XtAppLock(app); if (color==0) XSetForeground(dpy, draw_gc, get_pixel_resource("background", "Background", dpy, cmap)); else XSetForeground(dpy, draw_gc, get_pixel_resource("foreground", "Foreground", dpy, cmap)); XDrawString(dpy, window, draw_gc, x*display_zoom, y*display_zoom, text, strlen(text)); XtAppUnlock(app); } /* this is where the applicaton starts */ extern void app_main(void); void screenhack() { Bool helpme; /* This doesn't work, but I don't know why (Daniel 1999-12-01) */ helpme = get_boolean_resource ("help", "Boolean"); if(helpme) help(); printf(PROGNAME " " ROCKBOXUI_VERSION " (" __DATE__ ")\n"); init_window(); screen_redraw(); app_main(); } void screen_redraw() { /* draw a border around the screen */ #define X1 0 #define Y1 0 #define X2 (LCD_WIDTH + MARGIN_X*2) #define Y2 (LCD_HEIGHT + MARGIN_Y) drawline(1, X1, Y1, X2, Y1); drawline(1, X2, Y1, X2, Y2); drawline(1, X1, Y2, X2, Y2); drawline(1, X1, Y1, X1, Y2); lcd_update(); #ifdef LCD_REMOTE_HEIGHT /* draw a border around the remote LCD screen */ #define RX1 0 #define RY1 (Y2 +1) #define RX2 (LCD_REMOTE_WIDTH + MARGIN_X*2) #define RY2 (Y2 + 1 + LCD_REMOTE_HEIGHT) drawline(1, RX1, RY1, RX2, RY1); drawline(1, RX2, RY1, RX2, RY2); drawline(1, RX1, RY2, RX2, RY2); drawline(1, RX1, RY1, RX1, RY2); lcd_remote_update(); #endif }