summaryrefslogtreecommitdiffstats
path: root/uisimulator/x11/uibasic.c
blob: 0c3e9bb9d06fb10f7cce9abc6f4a934455adffe8 (plain)
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
/***************************************************************************
 *             __________               __   ___.                  
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___  
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /  
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <   
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \  
 *                     \/            \/     \/    \/            \/ 
 * $Id$
 *
 * Copyright (C) 2002 by Daniel Stenberg <daniel@haxx.se>
 *
 * 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 <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include <ctype.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

#include <errno.h>
#include <ctype.h>
#include <time.h>

#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 "Recorder" 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();
}