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
|
/* Copyright (C) 2000-2010 by George Williams */
/*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <stdio.h>
#include <stdarg.h>
#include "gdrawP.h"
#include "ustring.h"
/* Preallocate an error dialog so that we can pop it up if things go really bad*/
/* ie. if memory gets munched somehow */
#define ERR_LINE_MAX 20
static GWindow error;
static struct errinfo {
unichar_t *lines[ERR_LINE_MAX];
unsigned int dismissed: 1;
int width;
enum err_type { et_info, et_warn, et_error, et_fatal } err_type;
} errinfo;
static int e_h(GWindow gw, GEvent *event) {
int line;
int x,len, max_len;
GRect r;
static unichar_t ok[] = { 'O', 'K', '\0' };
if ( event->type == et_expose ) {
max_len = 0;
for ( line = 0; line<ERR_LINE_MAX && errinfo.lines[line]!=NULL; ++line ) {
len = GDrawGetTextWidth(gw,errinfo.lines[line],-1,NULL);
if ( len>max_len ) max_len = len;
}
x = (errinfo.width-max_len)/2;
for ( line = 0; line<ERR_LINE_MAX && errinfo.lines[line]!=NULL; ++line )
GDrawDrawText(gw,x, 10+10+15*line, errinfo.lines[line],-1,NULL,0x000000);
x = (errinfo.width-(len = GDrawGetTextWidth(gw,ok,2,NULL)))/2;
r.x = x-10; r.y = 25+15*line; r.width = len+20; r.height = 18;
GDrawFillRect(gw,&r,0xffffff);
GDrawDrawRect(gw,&r,0x000000);
GDrawDrawText(gw,x,r.y+13,ok,2,NULL,0x000000);
} else if ( event->type==et_char ) {
if ( event->u.chr.chars[0]=='\r' || event->u.chr.chars[0]=='\33' )
errinfo.dismissed = true;
} else if ( event->type==et_mouseup ) {
errinfo.dismissed = true;
} else if ( event->type==et_close ) {
errinfo.dismissed = true;
}
return( 1 );
}
static void RunError() {
errinfo.dismissed = false;
GDrawSetVisible(error,true);
while ( !errinfo.dismissed )
GDrawProcessOneEvent(NULL);
GDrawSetVisible(error,false);
GDrawSync(NULL);
GDrawProcessPendingEvents(NULL);
}
static void ProcessText(unichar_t *ubuf,char *buf, enum err_type et) {
int max_len = 60, len;
char *pt, *ept, *last_space;
unichar_t *ue = ubuf;
int line=0;
pt = buf;
for ( line=0; line<ERR_LINE_MAX && *pt; ++line ) {
last_space = NULL;
for ( ept = pt; *ept!='\n' && *ept!='\0' && ept-pt<max_len; ++ept )
if ( *ept==' ' )
last_space = ept;
if ( *ept!='\n' && *ept!='\0' && last_space!=NULL )
ept = last_space;
errinfo.lines[line] = def2u_strncpy(ue,pt,ept-pt);
ue[ept-pt] = '\0'; ue += (ept+1-pt);
if ( *ept=='\n' || *ept==' ' ) ++ept;
pt = ept;
}
for ( ; line<ERR_LINE_MAX ; ++line )
errinfo.lines[line] = NULL;
errinfo.err_type = et;
max_len = 0;
for ( line = 0; line<ERR_LINE_MAX && errinfo.lines[line]!=NULL; ++line ) {
len = GDrawGetTextWidth(error,errinfo.lines[line],-1,NULL);
if ( len>max_len ) max_len = len;
}
errinfo.width = max_len+30;
GDrawResize(error,max_len+30,15*line+50);
}
void _GDraw_InitError(GDisplay *gd) {
GRect screen, pos;
static unichar_t title[]= { 'E', 'r', 'r', 'o', 'r', '\0' };
static unichar_t courier[] = { 'c', 'o', 'u', 'r', 'i', 'e', 'r', '\0' };
static GDisplay *static_gd;
GWindowAttrs wattrs;
FontRequest rq;
if ( gd!=NULL )
static_gd = gd;
else
screen_display = gd = static_gd;
if ( gd==NULL )
return;
if ( error != NULL )
return;
GDrawGetSize(GDrawGetRoot(gd),&screen);
memset(&wattrs,0,sizeof(wattrs));
wattrs.mask = wam_events|wam_positioned|wam_cursor|wam_wtitle|wam_backcol|
wam_restrict|wam_redirect|wam_isdlg;
wattrs.event_masks = -1;
wattrs.positioned = 1;
wattrs.cursor = ct_pointer;
wattrs.window_title = title;
wattrs.background_color = 0xbbbbbb;
wattrs.restrict_input_to_me = true;
wattrs.redirect_chars_to_me = true;
wattrs.is_dlg = true;
pos.width = 300; pos.height = 180;
pos.x = (screen.width-pos.width)/2;
pos.y = (screen.width-pos.width)/3;
errinfo.width = pos.width;
error = GDrawCreateTopWindow(gd,&pos,e_h,NULL,&wattrs);
memset(&rq,0,sizeof(rq));
rq.family_name = courier;
rq.point_size = -12;
rq.weight = 400;
rq.style = 0;
GDrawAttachFont(error,&rq);
}
void GDrawIError(const char *fmt,...) {
char buf[1025]; unichar_t ubuf[1025];
va_list ap;
strcpy(buf,"Internal Error:\n");
va_start(ap, fmt);
vsprintf(buf+strlen(buf), fmt, ap);
va_end(ap);
fprintf( stderr, "%s\n", buf );
_GDraw_InitError(NULL);
if ( error!=NULL ) {
ProcessText(ubuf,buf,et_error);
RunError();
}
}
void GDrawError(const char *fmt,...) {
char buf[1025]; unichar_t ubuf[1025];
va_list ap;
va_start(ap, fmt);
vsprintf(buf, fmt, ap);
va_end(ap);
_GDraw_InitError(NULL);
if ( error==NULL )
fprintf( stderr, "%s\n", buf );
else {
ProcessText(ubuf,buf,et_error);
RunError();
}
}
void GDrawFatalError(const char *fmt,...) {
char buf[1025]; unichar_t ubuf[1025];
va_list ap;
strcpy(buf,"Fatal Error:\n");
va_start(ap, fmt);
vsprintf(buf+strlen(buf), fmt, ap);
va_end(ap);
fprintf( stderr, "%s\n", buf );
if ( error!=NULL ) {
ProcessText(ubuf,buf,et_fatal);
RunError();
}
exit(1);
}
|