X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=xaw%2Fxboard.c;h=f1d9747c642b3f02b7d9619d3dbcc041d7ac7404;hb=62e5284278f8b168b7eabed3fbf28d39455d7d8c;hp=02149e511a36b9f0bb1e12af69d6aad81ee36dd1;hpb=acd8b8e897a59954fdcaa8ab9d55af4b9c290778;p=xboard.git diff --git a/xaw/xboard.c b/xaw/xboard.c index 02149e5..f1d9747 100644 --- a/xaw/xboard.c +++ b/xaw/xboard.c @@ -204,6 +204,7 @@ extern char *getenv(); #include "draw.h" #define SLASH '/' +#define DATADIR "~~" #ifdef __EMX__ #ifndef HAVE_USLEEP @@ -844,17 +845,18 @@ char * GenerateGlobalTranslationTable (void) { /* go through all menu items and extract the keyboard shortcuts, so that X11 can load them */ - char *output; + char *output[2]; - int i,j; + int i,j,n=0; MenuItem *mi; - output = strdup(""); + output[0] = strdup(""); // build keystrokes with and wo mod keys separately + output[1] = strdup(""); // so the more specific can preceed the other /* loop over all menu entries */ - for( i=0; menuBar[i].mi ; i++) + for( i=0; menuBar[i-n].mi || !n++; i++) { - mi = menuBar[i].mi; + mi = menuBar[i+n].mi; // kludge to access 'noMenu' behind sentinel for(j=0; mi[j].proc; j++) { if (mi[j].accel) @@ -919,17 +921,16 @@ GenerateGlobalTranslationTable (void) mods[strlen(mods)-1]='\0'; /* get the name for the callback, we can use MenuItem() here that will call KeyBindingProc */ - size_t namesize = snprintf(NULL, 0, "%s.%s", menuBar[i].ref, mi[j].ref); - char *name = malloc(namesize+1); - snprintf(name, namesize+1, "%s.%s", menuBar[i].ref, mi[j].ref); + char *name = malloc(MSG_SIZ); + if(n) snprintf(name, MSG_SIZ, "%s", mi[j].ref); + else snprintf(name, MSG_SIZ, "%s.%s", menuBar[i].ref, mi[j].ref); - size_t buffersize = snprintf(NULL, 0, ":%s%s: MenuItem(%s) \n ", mods, key, name); - char *buffer = malloc(buffersize+1); - snprintf(buffer, buffersize+1, ":%s%s: MenuItem(%s) \n ", mods, key, name); + char *buffer = malloc(MSG_SIZ); + snprintf(buffer, MSG_SIZ, ":%s%s: MenuItem(%s) \n ", mods, key, name); /* add string to the output */ - output = realloc(output, strlen(output) + strlen(buffer)+1); - strncat(output, buffer, strlen(buffer)); + output[shift|alt|ctrl] = realloc(output[shift|alt|ctrl], strlen(output[shift|alt|ctrl]) + strlen(buffer)+1); + strncat(output[shift|alt|ctrl], buffer, strlen(buffer)); /* clean up */ free(key); @@ -939,7 +940,10 @@ GenerateGlobalTranslationTable (void) } } } - return output; + output[1] = realloc(output[1], strlen(output[1]) + strlen(output[0])+1); + strncat(output[1], output[0], strlen(output[0])); + free(output[0]); + return output[1]; } @@ -987,6 +991,9 @@ main (int argc, char **argv) char *p; int forceMono = False; + extern Option chatOptions[]; // FIXME: adapt Chat window, removing ICS pane and Hide button + chatOptions[6].type = chatOptions[10].type = Skip; + srandom(time(0)); // [HGM] book: make random truly random setbuf(stdout, NULL); @@ -1353,6 +1360,13 @@ main (int argc, char **argv) return 0; } +void +DoEvents () +{ + XtInputMask m; + while((m = XtAppPending(appContext))) XtAppProcessEvent(appContext, m); +} + RETSIGTYPE TermSizeSigHandler (int sig) {