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 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
|
/* Copyright (C) 2001-2002 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 "mensisui.h"
#include <fontforge/ustring.h>
#include <time.h>
#include <fontforge/gfile.h>
extern char *helpdir;
void ProtestR(int labelr) {
unichar_t ubuf[80];
u_strcpy(ubuf,GStringGetResource(_STR_Badnumberin,NULL));
u_strcat(ubuf,GStringGetResource(labelr,NULL));
if ( ubuf[u_strlen(ubuf)-1]==' ' )
ubuf[u_strlen(ubuf)-1]='\0';
if ( ubuf[u_strlen(ubuf)-1]==':' )
ubuf[u_strlen(ubuf)-1]='\0';
GWidgetPostNotice(ubuf,ubuf);
}
real GetRealR(GWindow gw,int cid,int namer,int *err) {
const unichar_t *txt; unichar_t *end;
real val;
txt = _GGadgetGetTitle(GWidgetGetControl(gw,cid));
val = u_strtod(txt,&end);
if ( *end!='\0' ) {
ProtestR(namer);
*err = true;
}
return( val );
}
int GetIntR(GWindow gw,int cid,int namer,int *err) {
const unichar_t *txt; unichar_t *end;
int val;
txt = _GGadgetGetTitle(GWidgetGetControl(gw,cid));
val = u_strtol(txt,&end,10);
if ( *end!='\0' ) {
ProtestR(namer);
*err = true;
}
return( val );
}
int GetHexR(GWindow gw,int cid,int namer,int *err) {
const unichar_t *txt; unichar_t *end;
int val;
txt = _GGadgetGetTitle(GWidgetGetControl(gw,cid));
if ( *txt=='U' && txt[1]=='+' )
txt += 2;
val = u_strtoul(txt,&end,16);
if ( *end!='\0' ) {
ProtestR(namer);
*err = true;
}
return( val );
}
int GetListR(GWindow gw,int cid,int namer,int *err) {
int val;
GTextInfo *ti;
ti = GGadgetGetListItemSelected(GWidgetGetControl(gw,cid));
val = (int) (ti->userdata);
return( val );
}
void GetDateR(GWindow gw,int cid,int namer,uint32 date[2],int *err) {
const unichar_t *txt; unichar_t *end;
struct tm tm, *test;
time_t t;
txt = _GGadgetGetTitle(GWidgetGetControl(gw,cid));
while ( *txt==' ' ) ++txt;
if ( uc_strmatch(txt,"now")==0 ) {
time(&t);
} else {
memset(&tm,'\0',sizeof(tm));
tm.tm_year = u_strtol(txt,&end,10)-1900;
if ( *end=='-' ) ++end;
tm.tm_mon = u_strtol(end,&end,10)-1;
if ( *end=='-' ) ++end;
tm.tm_mday = u_strtol(end,&end,10);
while ( *end==' ' ) ++end;
tm.tm_hour = u_strtol(end,&end,10);
if ( *end==':' ) ++end;
tm.tm_min = u_strtol(end,&end,10);
if ( *end==':' ) ++end;
tm.tm_sec = u_strtol(end,&end,10);
t = mktime(&tm); /* mktime is not document to deal with dst correctly */
test = localtime(&t);
if ( test->tm_isdst )
t -= 60*60;
}
TimeTToQuad(t,date);
}
void TimeTToQuad(time_t t, uint32 date[2]) {
uint32 date1904[4];
uint32 year[2];
int i;
if ( sizeof(time_t)>32 ) {
/* as unixes switch over to 64 bit times, this will be the better */
/* solution */
t += ((time_t) 60)*60*24*365*(70-4);
t += 60*60*24*(70-4)/4; /* leap years */
date[0] = ((t>>16)>>16);
date[1] = t&0xffffffff;
} else {
date1904[0] = date1904[1] = date1904[2] = date1904[3] = 0;
year[0] = 60*60*24*365;
year[1] = year[0]>>16; year[0] &= 0xffff;
for ( i=4; i<70; ++i ) {
date1904[3] += year[0];
date1904[2] += year[1];
if ( (i&3)==0 )
date1904[3] += 60*60*24;
date1904[2] += date1904[3]>>16;
date1904[3] &= 0xffff;
date1904[1] += date1904[2]>>16;
date1904[2] &= 0xffff;
}
date1904[3] += t&0xffff;
date1904[2] += t>>16;
date1904[2] += date1904[3]>>16;
date1904[3] &= 0xffff;
date1904[1] += date1904[2]>>16;
date1904[2] &= 0xffff;
date[0] = (date1904[0]<<16) | date1904[1];
date[1] = (date1904[2]<<16) | date1904[3];
}
}
#if __CygWin
/* Try to find the default browser by looking it up in the windows registry */
/* The registry is organized as a tree. We are interested in the subtree */
/* starting at HKEY_CLASSES_ROOT. This contains two different kinds of things*/
/* Extensions and Programs. First we look up the extension and it refers us */
/* to a program. So we look up the program, and look up shell->open->command */
/* in it. The value of command is a path followed by potential arguments */
/* viz: c:\program files\foobar "%1" */
/* Extensions seem to contain the ".", so ".html" not "html" */
#include <w32api/wtypes.h>
#include <w32api/winbase.h>
#include <w32api/winreg.h>
static char *win_program_from_extension(char *exten) {
DWORD type, dlen, err;
char programindicator[1000];
char programpath[1000];
HKEY hkey_prog, hkey_shell, hkey_open, hkey_exten, hkey_command;
char *pt;
if ( RegOpenKeyEx(HKEY_CLASSES_ROOT,exten,0,KEY_READ,&hkey_exten)!=ERROR_SUCCESS ) {
/*fprintf( stderr, "Failed to find extension \"%s\", did it have a period?\n", exten );*/
return( NULL );
}
dlen = sizeof(programindicator);
if ( (err=RegQueryValueEx(hkey_exten,"",NULL,&type,(uint8 *)programindicator,&dlen))!=ERROR_SUCCESS ) {
fprintf( stderr, "Failed to default value of exten \"%s\".\n Error=%ld", exten, err );
RegCloseKey(hkey_exten);
return( NULL );
}
RegCloseKey(hkey_exten);
if ( RegOpenKeyEx(HKEY_CLASSES_ROOT,programindicator,0,KEY_READ,&hkey_prog)!=ERROR_SUCCESS ) {
fprintf( stderr, "Failed to find program \"%s\"\n", programindicator );
return( NULL );
}
if ( RegOpenKeyEx(hkey_prog,"shell",0,KEY_READ,&hkey_shell)!=ERROR_SUCCESS ) {
fprintf( stderr, "Failed to find \"%s->shell\"\n", programindicator );
RegCloseKey(hkey_prog);
return( NULL );
}
if ( RegOpenKeyEx(hkey_shell,"open",0,KEY_READ,&hkey_open)!=ERROR_SUCCESS ) {
fprintf( stderr, "Failed to find \"%s->shell->open\"\n", programindicator );
RegCloseKey(hkey_prog); RegCloseKey(hkey_shell);
return( NULL );
}
if ( RegOpenKeyEx(hkey_open,"command",0,KEY_READ,&hkey_command)!=ERROR_SUCCESS ) {
fprintf( stderr, "Failed to find \"%s->shell->open\"\n", programindicator );
RegCloseKey(hkey_prog); RegCloseKey(hkey_shell); RegCloseKey(hkey_command);
return( NULL );
}
dlen = sizeof(programpath);
if ( RegQueryValueEx(hkey_command,"",NULL,&type,(uint8 *)programpath,&dlen)!=ERROR_SUCCESS ) {
fprintf( stderr, "Failed to find default for \"%s->shell->open->command\"\n", programindicator );
RegCloseKey(hkey_prog); RegCloseKey(hkey_shell); RegCloseKey(hkey_open); RegCloseKey(hkey_command);
return( NULL );
}
RegCloseKey(hkey_prog); RegCloseKey(hkey_shell); RegCloseKey(hkey_open); RegCloseKey(hkey_command);
pt = strstr(programpath,"%1");
if ( pt!=NULL )
pt[1] = 's';
return( copy(programpath));
}
static void do_windows_browser(char *fullspec) {
char *format, *start, *pt, ch, *temp, *cmd;
format = win_program_from_extension(".html");
if ( format==NULL )
format = win_program_from_extension(".htm");
if ( format==NULL ) {
GDrawError("Could not find a browser. Set the BROWSER environment variable to point to one" );
return;
}
if ( format[0]=='"' || format[0]=='\'' ) {
start = format+1;
pt = strchr(start,format[0]);
} else {
start = format;
pt = strchr(start,' ');
}
if ( pt==NULL ) pt = start+strlen(start);
ch = *pt; *pt='\0';
temp = galloc(strlen(start)+300+ (ch==0?0:strlen(pt+1)));
cygwin_conv_to_full_posix_path(start,temp+1);
temp[0]='"'; strcat(temp,"\" ");
if ( ch!='\0' )
strcat(temp,pt+1);
cmd = galloc(strlen(temp)+strlen(fullspec)+8);
sprintf( cmd, temp, fullspec );
strcat(cmd," &" );
system(cmd);
free( cmd ); free( temp ); free( format );
}
#endif
static char browser[1025];
static void findbrowser(void) {
#if __CygWin
static char *stdbrowsers[] = { "netscape.exe", "opera.exe", "galeon.exe", "kfmclient.exe",
"mozilla.exe", "mosaic.exe", /*"grail",*/
"iexplore.exe",
/*"lynx.exe",*/
#else
static char *stdbrowsers[] = { "x-www-browser", "htmlview", "firefox", "mozilla", "konqueror",
"opera", "galeon", "kfmclient", "netscape", "mosaic", /*"grail",*/ "lynx",
#endif
NULL };
int i;
char *path;
if ( getenv("BROWSER")!=NULL ) {
strcpy(browser,getenv("BROWSER"));
#if __CygWin /* Get rid of any dos style names */
if ( isalpha(browser[0]) && browser[1]==':' && browser[2]=='\\' )
cygwin_conv_to_full_posix_path(getenv("BROWSER"),browser);
else if ( strchr(browser,'/')==NULL ) {
if ( strstrmatch(browser,".exe")==NULL )
strcat(browser,".exe");
if ( (path=_GFile_find_program_dir(browser))!=NULL ) {
snprintf(browser,sizeof(browser),"%s/%s", path, getenv("BROWSER"));
free(path);
}
}
#endif
if ( strcmp(browser,"kde")==0 || strcmp(browser,"kfm")==0 ||
strcmp(browser,"konqueror")==0 || strcmp(browser,"kfmclient")==0 )
strcpy(browser,"kfmclient openURL");
return;
}
for ( i=0; stdbrowsers[i]!=NULL; ++i ) {
if ( (path=_GFile_find_program_dir(stdbrowsers[i]))!=NULL ) {
if ( strcmp(stdbrowsers[i],"kfmclient")==0 )
strcpy(browser,"kfmclient openURL");
else
#if __CygWin
snprintf(browser,sizeof(browser),"%s/%s", path, stdbrowsers[i]);
#else
strcpy(browser,stdbrowsers[i]);
#endif
free(path);
return;
}
}
#if __Mac
strcpy(browser,"open"); /* thanks to riggle */
#endif
}
void help(char *file) {
char fullspec[1024], *temp, *pt;
if ( browser[0]=='\0' )
findbrowser();
#ifndef __CygWin
if ( browser[0]=='\0' ) {
GDrawError("Could not find a browser. Set the BROWSER environment variable to point to one" );
return;
}
#endif
if ( strstr(file,"http://")==NULL ) {
fullspec[0] = 0;
if ( *file!='/' ) {
if ( helpdir==NULL || *helpdir=='\0' ) {
#ifdef DOCDIR
strcpy(fullspec,DOCDIR "/");
#elif defined(SHAREDIR)
strcpy(fullspec,SHAREDIR "/../doc/mensis/");
#else
strcpy(fullspec,"/usr/local/share/doc/mensis/");
#endif
} else
strcpy(fullspec,helpdir);
}
strcat(fullspec,file);
if (( pt = strrchr(fullspec,'#') )!=NULL ) *pt ='\0';
if ( !GFileReadable( fullspec )) {
if ( *file!='/' ) {
strcpy(fullspec,"/usr/share/doc/mensis/");
strcat(fullspec,file);
if (( pt = strrchr(fullspec,'#') )!=NULL ) *pt ='\0';
}
}
if ( !GFileReadable( fullspec )) {
strcpy(fullspec,"http://mensis.sf.net/");
strcat(fullspec,file);
} else if ( pt!=NULL )
*pt = '#';
} else
strcpy(fullspec,file);
#if __CygWin
if ( (strstrmatch(browser,"/cygdrive")!=NULL || browser[0]=='\0') &&
strstr(fullspec,":/")==NULL ) {
/* It looks as though the browser is a windows application, so we */
/* should give it a windows file name */
char *pt, *tpt;
temp = galloc(1024);
cygwin_conv_to_full_win32_path(fullspec,temp);
for ( pt = fullspec, tpt = temp; *tpt && pt<fullspec+sizeof(fullspec)-3; *pt++ = *tpt++ )
if ( *tpt=='\\' )
*pt++ = '\\';
*pt = '\0';
free(temp);
}
#endif
#if __Mac
if ( strcmp(browser,"open")==0 )
/* open doesn't want "file:" prepended */;
else
#endif
if ( strstr(fullspec,":/")==NULL ) {
char *t1 = galloc(strlen(fullspec)+strlen("file:")+20);
#if __CygWin
sprintf( t1, "file:\\\\\\%s", fullspec );
#else
sprintf( t1, "file:%s", fullspec);
#endif
strcpy(fullspec,t1);
free(t1);
}
#if 0 && __Mac
/* Starting a Mac application is weird... system() can't do it */
/* Thanks to Edward H. Trager giving me an example... */
if ( strstr(browser,".app")!=NULL ) {
*strstr(browser,".app") = '\0';
pt = strrchr(browser,'/');
if ( pt==NULL ) pt = browser-1;
++pt;
temp = galloc(strlen(pt)+strlen(fullspec) +
strlen( "osascript -l AppleScript -e \"Tell application \"\" to getURL \"\"\"" )+
20);
/* this doesn't work on Max OS X.0 (osascript does not support -e) */
sprintf( temp, "osascript -l AppleScript -e \"Tell application \"%s\" to getURL \"%s\"\"",
pt, fullspec);
system(temp);
GWidgetPostNoticeR(_STR_LeaveX,_STR_LeaveXLong);
} else {
#elif __Mac
/* This seems a bit easier... Thanks to riggle */
if ( strcmp(browser,"open")==0 ) {
temp = galloc(strlen(browser) + strlen(fullspec) + 20);
sprintf( temp, "open \"%s\" &", fullspec );
system(temp);
GWidgetPostNoticeR(_STR_LeaveX,_STR_LeaveXLong);
} else {
#elif __CygWin
if ( browser[0]=='\0' ) {
do_windows_browser(fullspec);
} else {
#else
{
#endif
temp = galloc(strlen(browser) + strlen(fullspec) + 20);
sprintf( temp, "\"%s\" \"%s\" &", browser, fullspec );
system(temp);
}
free(temp);
}
|