2 * menus.c -- platform-indendent menu handling code for XBoard
4 * Copyright 1991 by Digital Equipment Corporation, Maynard,
7 * Enhancements Copyright 1992-2001, 2002, 2003, 2004, 2005, 2006,
8 * 2007, 2008, 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc.
10 * The following terms apply to Digital Equipment Corporation's copyright
12 * ------------------------------------------------------------------------
15 * Permission to use, copy, modify, and distribute this software and its
16 * documentation for any purpose and without fee is hereby granted,
17 * provided that the above copyright notice appear in all copies and that
18 * both that copyright notice and this permission notice appear in
19 * supporting documentation, and that the name of Digital not be
20 * used in advertising or publicity pertaining to distribution of the
21 * software without specific, written prior permission.
23 * DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
24 * ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
25 * DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
26 * ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
27 * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
28 * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
30 * ------------------------------------------------------------------------
32 * The following terms apply to the enhanced version of XBoard
33 * distributed by the Free Software Foundation:
34 * ------------------------------------------------------------------------
36 * GNU XBoard is free software: you can redistribute it and/or modify
37 * it under the terms of the GNU General Public License as published by
38 * the Free Software Foundation, either version 3 of the License, or (at
39 * your option) any later version.
41 * GNU XBoard is distributed in the hope that it will be useful, but
42 * WITHOUT ANY WARRANTY; without even the implied warranty of
43 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
44 * General Public License for more details.
46 * You should have received a copy of the GNU General Public License
47 * along with this program. If not, see http://www.gnu.org/licenses/. *
49 *------------------------------------------------------------------------
50 ** See the file ChangeLog for a revision history. */
60 #include <sys/types.h>
68 #else /* not STDC_HEADERS */
69 extern char *getenv();
72 # else /* not HAVE_STRING_H */
74 # endif /* not HAVE_STRING_H */
75 #endif /* not STDC_HEADERS */
85 // [HGM] bitmaps: put before incuding the bitmaps / pixmaps, to know how many piece types there are.
94 # define _(s) gettext (s)
95 # define N_(s) gettext_noop (s)
102 * Button/menu procedures
105 char *gameCopyFilename, *gamePasteFilename;
106 Boolean saveSettingsOnExit;
107 char *settingsFileName;
110 LoadGamePopUp (FILE *f, int gameNumber, char *title)
112 cmailMsgLoaded = FALSE;
113 if (gameNumber == 0) {
114 int error = GameListBuild(f);
116 DisplayError(_("Cannot build game list"), error);
117 } else if (!ListEmpty(&gameList) &&
118 ((ListGame *) gameList.tailPred)->number > 1) {
119 GameListPopUp(f, title);
125 return LoadGame(f, gameNumber, title, FALSE);
131 if (gameMode == AnalyzeMode || gameMode == AnalyzeFile) {
134 FileNamePopUp(_("Load game file name?"), "", ".pgn .game", LoadGamePopUp, "rb");
156 LoadNextPositionProc ()
162 LoadPrevPositionProc ()
168 ReloadPositionProc ()
176 if (gameMode == AnalyzeMode || gameMode == AnalyzeFile) {
179 FileNamePopUp(_("Load position file name?"), "", ".fen .epd .pos", LoadPosition, "rb");
185 FileNamePopUp(_("Save game file name?"),
186 DefaultFileName(appData.oldSaveStyle ? "game" : "pgn"),
187 appData.oldSaveStyle ? ".game" : ".pgn",
194 FileNamePopUp(_("Save position file name?"),
195 DefaultFileName(appData.oldSaveStyle ? "pos" : "fen"),
196 appData.oldSaveStyle ? ".pos" : ".fen",
201 ReloadCmailMsgProc ()
203 ReloadCmailMsgEvent(FALSE);
207 CopyFENToClipboard ()
208 { // wrapper to make call from back-end possible
215 static char *selected_fen_position=NULL;
216 if(gameMode == EditPosition) EditPositionDone(TRUE);
217 if (selected_fen_position) free(selected_fen_position);
218 selected_fen_position = (char *)PositionToFEN(currentMove, NULL, 1);
219 if (!selected_fen_position) return;
220 CopySomething(selected_fen_position);
228 ret = SaveGameToFile(gameCopyFilename, FALSE);
237 if(!SaveGameListAsText(fopen(gameCopyFilename, "w"))) return;
263 UserAdjudicationEvent(+1);
269 UserAdjudicationEvent(-1);
275 UserAdjudicationEvent(0);
293 if(twoBoards) { partnerUp = 1; DrawPosition(True, NULL); partnerUp = 0; }
294 flipView = !flipView;
295 DrawPosition(True, NULL);
301 saveSettingsOnExit = !saveSettingsOnExit;
303 MarkMenuItem("Options.SaveSettingsonExit", saveSettingsOnExit);
309 SaveSettings(settingsFileName);
316 snprintf(buf, sizeof(buf), "xterm -e info --directory %s --directory . -f %s &",
325 snprintf(buf, MSG_SIZ, "%s mailto:bug-xboard@gnu.org", appData.sysOpen);
333 snprintf(buf, MSG_SIZ, "%s http://www.gnu.org/software/xboard/user_guide/UserGuide.html", appData.sysOpen);
341 snprintf(buf, MSG_SIZ, "%s http://www.gnu.org/software/xboard/", appData.sysOpen);
349 snprintf(buf, MSG_SIZ, "%s http://www.gnu.org/software/xboard/whats_new/portal.html", appData.sysOpen);
356 char buf[2 * MSG_SIZ];
358 char *zippy = _(" (with Zippy code)");
362 snprintf(buf, sizeof(buf),
364 "Copyright 1991 Digital Equipment Corporation\n"
365 "Enhancements Copyright 1992-2013 Free Software Foundation\n"
366 "Enhancements Copyright 2005 Alessandro Scotti\n\n"
367 "%s is free software and carries NO WARRANTY;"
368 "see the file COPYING for more information.\n"
369 "The GTK build of this version is experimental and unstable\n\n"
370 "Visit XBoard on the web at: http://www.gnu.org/software/xboard/\n"
371 "Check out the newest features at: http://www.gnu.org/software/xboard/whats_new.html\n\n"
372 "Report bugs via email at: <bug-xboard@gnu.org>\n\n"
374 programVersion, zippy, PACKAGE);
375 ErrorPopUp(_("About XBoard"), buf, FALSE);
381 appData.debugMode = !appData.debugMode;
382 if(!strcmp(appData.nameOfDebugFile, "stderr")) return; // stderr is already open, and should never be closed
383 if(!appData.debugMode) fclose(debugFP);
385 debugFP = fopen(appData.nameOfDebugFile, "w");
386 if(debugFP == NULL) debugFP = stderr;
387 else setbuf(debugFP, NULL);
398 # define MARK_MENU_ITEM(X,Y)
400 # define MARK_MENU_ITEM(X,Y) MarkMenuItem(X, Y)
404 PonderNextMoveProc ()
406 PonderNextMoveEvent(!appData.ponderNextMove);
407 MARK_MENU_ITEM("Options.PonderNextMove", appData.ponderNextMove);
413 appData.alwaysPromoteToQueen = !appData.alwaysPromoteToQueen;
414 MARK_MENU_ITEM("Options.AlwaysQueen", appData.alwaysPromoteToQueen);
418 AnimateDraggingProc ()
420 appData.animateDragging = !appData.animateDragging;
422 if (appData.animateDragging) CreateAnimVars();
423 MARK_MENU_ITEM("Options.AnimateDragging", appData.animateDragging);
429 appData.animate = !appData.animate;
430 if (appData.animate) CreateAnimVars();
431 MARK_MENU_ITEM("Options.AnimateMoving", appData.animate);
437 appData.autoCallFlag = !appData.autoCallFlag;
438 MARK_MENU_ITEM("Options.AutoFlag", appData.autoCallFlag);
444 appData.autoFlipView = !appData.autoFlipView;
445 MARK_MENU_ITEM("Options.AutoFlipView", appData.autoFlipView);
451 appData.blindfold = !appData.blindfold;
452 MARK_MENU_ITEM("Options.Blindfold", appData.blindfold);
453 DrawPosition(True, NULL);
459 appData.testLegality = !appData.testLegality;
460 MARK_MENU_ITEM("Options.TestLegality", appData.testLegality);
467 if (appData.flashCount == 0) {
468 appData.flashCount = 3;
470 appData.flashCount = -appData.flashCount;
472 MARK_MENU_ITEM("Options.FlashMoves", appData.flashCount > 0);
477 HighlightDraggingProc ()
479 appData.highlightDragging = !appData.highlightDragging;
480 MARK_MENU_ITEM("Options.HighlightDragging", appData.highlightDragging);
485 HighlightLastMoveProc ()
487 appData.highlightLastMove = !appData.highlightLastMove;
488 MARK_MENU_ITEM("Options.HighlightLastMove", appData.highlightLastMove);
492 HighlightArrowProc ()
494 appData.highlightMoveWithArrow = !appData.highlightMoveWithArrow;
495 MARK_MENU_ITEM("Options.HighlightWithArrow", appData.highlightMoveWithArrow);
501 appData.icsAlarm = !appData.icsAlarm;
502 // MARK_MENU_ITEM("Options.ICSAlarm", appData.icsAlarm);
508 appData.ringBellAfterMoves = !appData.ringBellAfterMoves;
509 MARK_MENU_ITEM("Options.MoveSound", appData.ringBellAfterMoves);
515 appData.oneClick = !appData.oneClick;
516 MARK_MENU_ITEM("Options.OneClickMoving", appData.oneClick);
520 PeriodicUpdatesProc ()
522 PeriodicUpdatesEvent(!appData.periodicUpdates);
523 MARK_MENU_ITEM("Options.PeriodicUpdates", appData.periodicUpdates);
527 PopupExitMessageProc ()
529 appData.popupExitMessage = !appData.popupExitMessage;
530 MARK_MENU_ITEM("Options.PopupExitMessage", appData.popupExitMessage);
534 PopupMoveErrorsProc ()
536 appData.popupMoveErrors = !appData.popupMoveErrors;
537 MARK_MENU_ITEM("Options.PopupMoveErrors", appData.popupMoveErrors);
543 appData.premove = !appData.premove;
544 // MARK_MENU_ITEM("Options.Premove", appData.premove);
550 appData.showCoords = !appData.showCoords;
551 MARK_MENU_ITEM("Options.ShowCoords", appData.showCoords);
552 DrawPosition(True, NULL);
558 appData.showThinking = !appData.showThinking; // [HGM] thinking: taken out of ShowThinkingEvent
565 appData.hideThinkingFromHuman = !appData.hideThinkingFromHuman; // [HGM] thinking: taken out of ShowThinkingEvent
568 MARK_MENU_ITEM("Options.HideThinking", appData.hideThinkingFromHuman);
574 ScheduleDelayedEvent(CreateBookEvent, 50);
578 * Menu definition tables
581 MenuItem fileMenu[] = {
582 {N_("New Game"), "<Ctrl>n", "NewGame", ResetGameEvent},
583 {N_("New Shuffle Game..."), NULL, "NewShuffleGame", ShuffleMenuProc},
584 {N_("New Variant..."), "<Alt><Shift>v", "NewVariant", NewVariantProc},// [HGM] variant: not functional yet
585 {"----", NULL, NULL, NothingProc},
586 {N_("Load Game"), "<Ctrl>o", "LoadGame", LoadGameProc, CHECK},
587 {N_("Load Position"), "<Ctrl><Shift>o", "LoadPosition", LoadPositionProc},
588 {N_("Next Position"), "<Shift>Page_Down", "LoadNextPosition", LoadNextPositionProc},
589 {N_("Prev Position"), "<Shift>Page_Up", "LoadPreviousPosition", LoadPrevPositionProc},
590 {"----", NULL, NULL, NothingProc},
591 {N_("Save Game"), "<Ctrl>s", "SaveGame", SaveGameProc},
592 {N_("Save Position"), "<Ctrl><Shift>s", "SavePosition", SavePositionProc},
593 {N_("Save Games as Book"), NULL, "CreateBook", CreateBookDelayed},
594 {"----", NULL, NULL, NothingProc},
595 {N_("Mail Move"), NULL, "MailMove", MailMoveEvent},
596 {N_("Reload CMail Message"), NULL, "ReloadCMailMessage", ReloadCmailMsgProc},
597 {"----", NULL, NULL, NothingProc},
598 {N_("Quit "), "<Ctrl>q", "Quit", QuitProc},
599 {NULL, NULL, NULL, NULL}
602 MenuItem editMenu[] = {
603 {N_("Copy Game"), "<Ctrl>c", "CopyGame", CopyGameProc},
604 {N_("Copy Position"), "<Ctrl><Shift>c", "CopyPosition", CopyPositionProc},
605 {N_("Copy Game List"), NULL, "CopyGameList", CopyGameListProc},
606 {"----", NULL, NULL, NothingProc},
607 {N_("Paste Game"), "<Ctrl>v", "PasteGame", PasteGameProc},
608 {N_("Paste Position"), "<Ctrl><Shift>v", "PastePosition", PastePositionProc},
609 {"----", NULL, NULL, NothingProc},
610 {N_("Edit Game"), "<Ctrl>e", "EditGame", EditGameEvent},
611 {N_("Edit Position"), "<Ctrl><Shift>e", "EditPosition", EditPositionEvent},
612 {N_("Edit Tags"), NULL, "EditTags", EditTagsProc},
613 {N_("Edit Comment"), NULL, "EditComment", EditCommentProc},
614 {N_("Edit Book"), NULL, "EditBook", EditBookEvent},
615 {"----", NULL, NULL, NothingProc},
616 {N_("Revert"), "Home", "Revert", RevertProc},
617 {N_("Annotate"), NULL, "Annotate", AnnotateProc},
618 {N_("Truncate Game"), "End", "TruncateGame", TruncateGameEvent},
619 {"----", NULL, NULL, NothingProc},
620 {N_("Backward"), "<Alt>Left", "Backward", BackwardEvent},
621 {N_("Forward"), "<Alt>Right", "Forward", ForwardEvent},
622 {N_("Back to Start"), "<Alt>Home", "BacktoStart", ToStartEvent},
623 {N_("Forward to End"), "<Alt>End", "ForwardtoEnd", ToEndEvent},
624 {NULL, NULL, NULL, NULL}
627 MenuItem viewMenu[] = {
628 {N_("Flip View"), "F2", "FlipView", FlipViewProc, CHECK},
629 {"----", NULL, NULL, NothingProc},
630 {N_("Engine Output"), "<Alt><Shift>o", "EngineOutput", EngineOutputProc, CHECK},
631 {N_("Move History"), "<Alt><Shift>h", "MoveHistory", HistoryShowProc, CHECK}, // [HGM] hist: activate 4.2.7 code
632 {N_("Evaluation Graph"), "<Alt><Shift>e", "EvaluationGraph", EvalGraphProc, CHECK},
633 {N_("Game List"), "<Alt><Shift>g", "GameList", ShowGameListProc, CHECK},
634 {N_("ICS text menu"), NULL, "ICStextmenu", IcsTextProc, CHECK},
635 {"----", NULL, NULL, NothingProc},
636 {N_("Tags"), NULL, "Tags", EditTagsProc, CHECK},
637 {N_("Comments"), NULL, "Comments", EditCommentProc, CHECK},
638 {N_("ICS Input Box"), NULL, "ICSInputBox", IcsInputBoxProc, CHECK},
639 {N_("Open Chat Window"), NULL, "OpenChatWindow", ChatProc, CHECK},
640 {"----", NULL, NULL, NothingProc},
641 {N_("Board..."), NULL, "Board", BoardOptionsProc},
642 {N_("Game List Tags..."), NULL, "GameListTags", GameListOptionsProc},
643 {NULL, NULL, NULL, NULL}
646 MenuItem modeMenu[] = {
647 {N_("Machine White"), "<Ctrl>w", "MachineWhite", MachineWhiteEvent, RADIO },
648 {N_("Machine Black"), "<Ctrl>b", "MachineBlack", MachineBlackEvent, RADIO },
649 {N_("Two Machines"), "<Ctrl>t", "TwoMachines", TwoMachinesEvent, RADIO },
650 {N_("Analysis Mode"), "<Ctrl>a", "AnalysisMode", (MenuProc*) AnalyzeModeEvent, RADIO },
651 {N_("Analyze Game"), "<Ctrl>g", "AnalyzeFile", AnalyzeFileEvent, RADIO },
652 {N_("Edit Game"), "<Ctrl>e", "EditGame", EditGameEvent, RADIO },
653 {N_("Edit Position"), "<Ctrl><Shift>e", "EditPosition", EditPositionEvent, RADIO },
654 {N_("Training"), NULL, "Training", TrainingEvent, RADIO },
655 {N_("ICS Client"), NULL, "ICSClient", IcsClientEvent, RADIO },
656 {"----", NULL, NULL, NothingProc},
657 {N_("Machine Match"), NULL, "MachineMatch", MatchProc, CHECK },
658 {N_("Pause"), "Pause", "Pause", PauseEvent, CHECK },
659 {NULL, NULL, NULL, NULL}
662 MenuItem actionMenu[] = {
663 {N_("Accept"), "F3", "Accept", AcceptEvent},
664 {N_("Decline"), "F4", "Decline", DeclineEvent},
665 {N_("Rematch"), "F12", "Rematch", RematchEvent},
666 {"----", NULL, NULL, NothingProc},
667 {N_("Call Flag"), "F5", "CallFlag", CallFlagEvent},
668 {N_("Draw"), "F6", "Draw", DrawEvent},
669 {N_("Adjourn"), "F7", "Adjourn", AdjournEvent},
670 {N_("Abort"), "F8", "Abort", AbortEvent},
671 {N_("Resign"), "F9", "Resign", ResignEvent},
672 {"----", NULL, NULL, NothingProc},
673 {N_("Stop Observing"), "F10", "StopObserving", StopObservingEvent},
674 {N_("Stop Examining"), "F11", "StopExamining", StopExaminingEvent},
675 {N_("Upload to Examine"), NULL, "UploadtoExamine", UploadGameEvent},
676 {"----", NULL, NULL, NothingProc},
677 {N_("Adjudicate to White"), NULL, "AdjudicatetoWhite", AdjuWhiteProc},
678 {N_("Adjudicate to Black"), NULL, "AdjudicatetoBlack", AdjuBlackProc},
679 {N_("Adjudicate Draw"), NULL, "AdjudicateDraw", AdjuDrawProc},
680 {NULL, NULL, NULL, NULL}
683 MenuItem engineMenu[100] = {
684 {N_("Load New 1st Engine..."), NULL, "LoadNew1stEngine", LoadEngine1Proc},
685 {N_("Load New 2nd Engine..."), NULL, "LoadNew2ndEngine", LoadEngine2Proc},
686 {"----", NULL, NULL, NothingProc},
687 {N_("Engine #1 Settings..."), NULL, "Engine#1Settings", FirstSettingsProc},
688 {N_("Engine #2 Settings..."), NULL, "Engine#2Settings", SecondSettingsProc},
689 {"----", NULL, NULL, NothingProc},
690 {N_("Hint"), NULL, "Hint", HintEvent},
691 {N_("Book"), NULL, "Book", BookEvent},
692 {"----", NULL, NULL, NothingProc},
693 {N_("Move Now"), "<Ctrl>m", "MoveNow", MoveNowEvent},
694 {N_("Retract Move"), "<Ctrl>x", "RetractMove", RetractMoveEvent},
695 {NULL, NULL, NULL, NULL}
698 MenuItem optionsMenu[] = {
700 {N_("General..."), NULL, "General", OptionsProc},
702 {N_("Time Control..."), "<Alt><Shift>t", "TimeControl", TimeControlProc},
703 {N_("Common Engine..."), "<Alt><Shift>u", "CommonEngine", UciMenuProc},
704 {N_("Adjudications..."), "<Alt><Shift>j", "Adjudications", EngineMenuProc},
705 {N_("ICS..."), NULL, "ICS", IcsOptionsProc},
706 {N_("Tournament..."), NULL, "Match", MatchOptionsProc},
707 {N_("Load Game..."), NULL, "LoadGame", LoadOptionsProc},
708 {N_("Save Game..."), NULL, "SaveGame", SaveOptionsProc},
709 {N_("Game List..."), NULL, "GameList", GameListOptionsProc},
710 {N_("Sounds..."), NULL, "Sounds", SoundOptionsProc},
711 {"----", NULL, NULL, NothingProc},
712 #ifndef OPTIONSDIALOG
713 {N_("Always Queen"), "<Ctrl><Shift>q", "AlwaysQueen", AlwaysQueenProc},
714 {N_("Animate Dragging"), NULL, "AnimateDragging", AnimateDraggingProc},
715 {N_("Animate Moving"), "<Ctrl><Shift>a", "AnimateMoving", AnimateMovingProc},
716 {N_("Auto Flag"), "<Ctrl><Shift>f", "AutoFlag", AutoflagProc},
717 {N_("Auto Flip View"), NULL, "AutoFlipView", AutoflipProc},
718 {N_("Blindfold"), NULL, "Blindfold", BlindfoldProc},
719 {N_("Flash Moves"), NULL, "FlashMoves", FlashMovesProc},
721 {N_("Highlight Dragging"), NULL, "HighlightDragging", HighlightDraggingProc},
723 {N_("Highlight Last Move"), NULL, "HighlightLastMove", HighlightLastMoveProc},
724 {N_("Highlight With Arrow"), NULL, "HighlightWithArrow", HighlightArrowProc},
725 {N_("Move Sound"), NULL, "MoveSound", MoveSoundProc},
726 {N_("One-Click Moving"), NULL, "OneClickMoving", OneClickProc},
727 {N_("Periodic Updates"), NULL, "PeriodicUpdates", PeriodicUpdatesProc},
728 {N_("Ponder Next Move"), "<Ctrl><Shift>p", "PonderNextMove", PonderNextMoveProc},
729 {N_("Popup Exit Message"), NULL, "PopupExitMessage", PopupExitMessageProc},
730 {N_("Popup Move Errors"), NULL, "PopupMoveErrors", PopupMoveErrorsProc},
731 {N_("Show Coords"), NULL, "ShowCoords", ShowCoordsProc},
732 {N_("Hide Thinking"), "<Ctrl><Shift>h", "HideThinking", HideThinkingProc},
733 {N_("Test Legality"), "<Ctrl><Shift>l", "TestLegality", TestLegalityProc},
734 {"----", NULL, NULL, NothingProc},
736 {N_("Save Settings Now"), NULL, "SaveSettingsNow", SaveSettingsProc},
737 {N_("Save Settings on Exit"), NULL, "SaveSettingsonExit", SaveOnExitProc, CHECK },
738 {NULL, NULL, NULL, NULL}
741 MenuItem helpMenu[] = {
742 {N_("Info XBoard"), NULL, "InfoXBoard", InfoProc},
743 {N_("Man XBoard"), "F1", "ManXBoard", ManProc},
744 {"----", NULL, NULL, NothingProc},
745 {N_("XBoard Home Page"), NULL, "XBoardHomePage", HomePageProc},
746 {N_("On-line User Guide"), NULL, "On-lineUserGuide", GuideProc},
747 {N_("Development News"), NULL, "DevelopmentNews", NewsPageProc},
748 {N_("e-Mail Bug Report"), NULL, "e-MailBugReport", BugReportProc},
749 {"----", NULL, NULL, NothingProc},
750 {N_("About XBoard"), NULL, "AboutXBoard", AboutProc},
751 {NULL, NULL, NULL, NULL}
754 MenuItem noMenu[] = {
755 { "", "<Alt>Next" ,"LoadNextGame", LoadNextGameProc },
756 { "", "<Alt>Prior" ,"LoadPrevGame", LoadPrevGameProc },
757 { "", NULL,"ReloadGame", ReloadGameProc },
758 { "", NULL,"ReloadPosition", ReloadPositionProc },
759 #ifndef OPTIONSDIALOG
760 { "", NULL,"AlwaysQueen", AlwaysQueenProc },
761 { "", NULL,"AnimateDragging", AnimateDraggingProc },
762 { "", NULL,"AnimateMoving", AnimateMovingProc },
763 { "", NULL,"Autoflag", AutoflagProc },
764 { "", NULL,"Autoflip", AutoflipProc },
765 { "", NULL,"Blindfold", BlindfoldProc },
766 { "", NULL,"FlashMoves", FlashMovesProc },
768 { "", NULL,"HighlightDragging", HighlightDraggingProc },
770 { "", NULL,"HighlightLastMove", HighlightLastMoveProc },
771 { "", NULL,"MoveSound", MoveSoundProc },
772 { "", NULL,"PeriodicUpdates", PeriodicUpdatesProc },
773 { "", NULL,"PopupExitMessage", PopupExitMessageProc },
774 { "", NULL,"PopupMoveErrors", PopupMoveErrorsProc },
775 { "", NULL,"ShowCoords", ShowCoordsProc },
776 { "", NULL,"ShowThinking", ShowThinkingProc },
777 { "", NULL,"HideThinking", HideThinkingProc },
778 { "", NULL,"TestLegality", TestLegalityProc },
780 { "", NULL,"AboutGame", AboutGameEvent },
781 { "", "<Ctrl>d" ,"DebugProc", DebugProc },
782 { "", NULL,"Nothing", NothingProc },
783 {NULL, NULL, NULL, NULL}
787 {N_("File"), "File", fileMenu},
788 {N_("Edit"), "Edit", editMenu},
789 {N_("View"), "View", viewMenu},
790 {N_("Mode"), "Mode", modeMenu},
791 {N_("Action"), "Action", actionMenu},
792 {N_("Engine"), "Engine", engineMenu},
793 {N_("Options"), "Options", optionsMenu},
794 {N_("Help"), "Help", helpMenu},
799 MenuNameToItem (char *menuName)
802 char buf[MSG_SIZ], *p;
804 static MenuItem a = { NULL, NULL, NULL, NothingProc };
805 extern Option mainOptions[];
806 safeStrCpy(buf, menuName, MSG_SIZ);
807 p = strchr(buf, '.');
808 if(!p) menuTab = noMenu, p = menuName; else {
810 for(i=0; menuBar[i].name; i++)
811 if(!strcmp(buf, menuBar[i].name)) break;
812 if(!menuBar[i].name) return NULL; // main menu not found
813 menuTab = menuBar[i].mi;
815 if(*p == NULLCHAR) { a.handle = mainOptions[i+1].handle; return &a; } // main menu bar
816 for(i=0; menuTab[i].string; i++)
817 if(menuTab[i].ref && !strcmp(p, menuTab[i].ref)) return menuTab + i;
818 return NULL; // item not found
824 AppendEnginesToMenu (char *list)
828 if(appData.icsActive || appData.recentEngines <= 0) return;
829 for(firstEngineItem=0; engineMenu[firstEngineItem].string; firstEngineItem++);
830 recentEngines = strdup(list);
832 p = strchr(list, '\n'); if(p == NULL) break;
833 if(i == 0) engineMenu[firstEngineItem++].string = "----"; // at least one valid item to add
835 if(firstEngineItem + i < 99)
836 engineMenu[firstEngineItem+i].string = strdup(list); // just set name; MenuProc stays NULL
837 i++; *p = '\n'; list = p + 1;
841 Enables icsEnables[] = {
842 { "File.MailMove", False },
843 { "File.ReloadCMailMessage", False },
844 { "Mode.MachineBlack", False },
845 { "Mode.MachineWhite", False },
846 { "Mode.AnalysisMode", False },
847 { "Mode.AnalyzeFile", False },
848 { "Mode.TwoMachines", False },
849 { "Mode.MachineMatch", False },
851 { "Engine.Hint", False },
852 { "Engine.Book", False },
853 { "Engine.MoveNow", False },
854 #ifndef OPTIONSDIALOG
855 { "PeriodicUpdates", False },
856 { "HideThinking", False },
857 { "PonderNextMove", False },
860 { "Engine.Engine#1Settings", False },
861 { "Engine.Engine#2Settings", False },
862 { "Engine.Load1stEngine", False },
863 { "Engine.Load2ndEngine", False },
864 { "Edit.Annotate", False },
865 { "Options.Match", False },
869 Enables ncpEnables[] = {
870 { "File.MailMove", False },
871 { "File.ReloadCMailMessage", False },
872 { "Mode.MachineWhite", False },
873 { "Mode.MachineBlack", False },
874 { "Mode.AnalysisMode", False },
875 { "Mode.AnalyzeFile", False },
876 { "Mode.TwoMachines", False },
877 { "Mode.MachineMatch", False },
878 { "Mode.ICSClient", False },
879 { "View.ICStextmenu", False },
880 { "View.ICSInputBox", False },
881 { "View.OpenChatWindow", False },
882 { "Action.", False },
883 { "Edit.Revert", False },
884 { "Edit.Annotate", False },
885 { "Engine.Engine#1Settings", False },
886 { "Engine.Engine#2Settings", False },
887 { "Engine.MoveNow", False },
888 { "Engine.RetractMove", False },
889 { "Options.ICS", False },
890 #ifndef OPTIONSDIALOG
891 { "Options.AutoFlag", False },
892 { "Options.AutoFlip View", False },
893 // { "Options.ICSAlarm", False },
894 { "Options.MoveSound", False },
895 { "Options.HideThinking", False },
896 { "Options.PeriodicUpdates", False },
897 { "Options.PonderNextMove", False },
899 { "Engine.Hint", False },
900 { "Engine.Book", False },
904 Enables gnuEnables[] = {
905 { "Mode.ICSClient", False },
906 { "View.ICStextmenu", False },
907 { "View.ICSInputBox", False },
908 { "View.OpenChatWindow", False },
909 { "Action.Accept", False },
910 { "Action.Decline", False },
911 { "Action.Rematch", False },
912 { "Action.Adjourn", False },
913 { "Action.StopExamining", False },
914 { "Action.StopObserving", False },
915 { "Action.UploadtoExamine", False },
916 { "Edit.Revert", False },
917 { "Edit.Annotate", False },
918 { "Options.ICS", False },
920 /* The next two options rely on SetCmailMode being called *after* */
921 /* SetGNUMode so that when GNU is being used to give hints these */
922 /* menu options are still available */
924 { "File.MailMove", False },
925 { "File.ReloadCMailMessage", False },
926 // [HGM] The following have been added to make a switch from ncp to GNU mode possible
927 { "Mode.MachineWhite", True },
928 { "Mode.MachineBlack", True },
929 { "Mode.AnalysisMode", True },
930 { "Mode.AnalyzeFile", True },
931 { "Mode.TwoMachines", True },
932 { "Mode.MachineMatch", True },
933 { "Engine.Engine#1Settings", True },
934 { "Engine.Engine#2Settings", True },
935 { "Engine.Hint", True },
936 { "Engine.Book", True },
937 { "Engine.MoveNow", True },
938 { "Engine.RetractMove", True },
943 Enables cmailEnables[] = {
945 { "Action.CallFlag", False },
946 { "Action.Draw", True },
947 { "Action.Adjourn", False },
948 { "Action.Abort", False },
949 { "Action.StopObserving", False },
950 { "Action.StopExamining", False },
951 { "File.MailMove", True },
952 { "File.ReloadCMailMessage", True },
956 Enables trainingOnEnables[] = {
957 { "Edit.EditComment", False },
958 { "Mode.Pause", False },
959 { "Edit.Forward", False },
960 { "Edit.Backward", False },
961 { "Edit.ForwardtoEnd", False },
962 { "Edit.BacktoStart", False },
963 { "Engine.MoveNow", False },
964 { "Edit.TruncateGame", False },
968 Enables trainingOffEnables[] = {
969 { "Edit.EditComment", True },
970 { "Mode.Pause", True },
971 { "Edit.Forward", True },
972 { "Edit.Backward", True },
973 { "Edit.ForwardtoEnd", True },
974 { "Edit.BacktoStart", True },
975 { "Engine.MoveNow", True },
976 { "Engine.TruncateGame", True },
980 Enables machineThinkingEnables[] = {
981 { "File.LoadGame", False },
982 // { "LoadNextGame", False },
983 // { "LoadPreviousGame", False },
984 // { "ReloadSameGame", False },
985 { "Edit.PasteGame", False },
986 { "File.LoadPosition", False },
987 // { "LoadNextPosition", False },
988 // { "LoadPreviousPosition", False },
989 // { "ReloadSamePosition", False },
990 { "Edit.PastePosition", False },
991 { "Mode.MachineWhite", False },
992 { "Mode.MachineBlack", False },
993 { "Mode.TwoMachines", False },
994 // { "MachineMatch", False },
995 { "Engine.RetractMove", False },
999 Enables userThinkingEnables[] = {
1000 { "File.LoadGame", True },
1001 // { "LoadNextGame", True },
1002 // { "LoadPreviousGame", True },
1003 // { "ReloadSameGame", True },
1004 { "Edit.PasteGame", True },
1005 { "File.LoadPosition", True },
1006 // { "LoadNextPosition", True },
1007 // { "LoadPreviousPosition", True },
1008 // { "ReloadSamePosition", True },
1009 { "Edit.PastePosition", True },
1010 { "Mode.MachineWhite", True },
1011 { "Mode.MachineBlack", True },
1012 { "Mode.TwoMachines", True },
1013 // { "MachineMatch", True },
1014 { "Engine.RetractMove", True },
1021 SetMenuEnables(icsEnables);
1024 if (appData.zippyPlay && !appData.noChessProgram) { /* [DM] icsEngineAnalyze */
1025 EnableNamedMenuItem("Mode.AnalysisMode", True);
1026 EnableNamedMenuItem("Engine.Engine#1Settings", True);
1034 SetMenuEnables(ncpEnables);
1040 SetMenuEnables(gnuEnables);
1046 SetMenuEnables(cmailEnables);
1050 SetTrainingModeOn ()
1052 SetMenuEnables(trainingOnEnables);
1053 if (appData.showButtonBar) {
1054 EnableButtonBar(False);
1060 SetTrainingModeOff ()
1062 SetMenuEnables(trainingOffEnables);
1063 if (appData.showButtonBar) {
1064 EnableButtonBar(True);
1069 SetUserThinkingEnables ()
1071 if (appData.noChessProgram) return;
1072 SetMenuEnables(userThinkingEnables);
1076 SetMachineThinkingEnables ()
1078 if (appData.noChessProgram) return;
1079 SetMenuEnables(machineThinkingEnables);
1081 case MachinePlaysBlack:
1082 case MachinePlaysWhite:
1083 case TwoMachinesPlay:
1084 EnableNamedMenuItem(ModeToWidgetName(gameMode), True);
1092 GreyRevert (Boolean grey)
1094 EnableNamedMenuItem("Edit.Revert", !grey);
1095 EnableNamedMenuItem("Edit.Annotate", !grey);
1099 ModeToWidgetName (GameMode mode)
1102 case BeginningOfGame:
1103 if (appData.icsActive)
1104 return "Mode.ICSClient";
1105 else if (appData.noChessProgram ||
1106 *appData.cmailGameName != NULLCHAR)
1107 return "Mode.EditGame";
1109 return "Mode.MachineBlack";
1110 case MachinePlaysBlack:
1111 return "Mode.MachineBlack";
1112 case MachinePlaysWhite:
1113 return "Mode.MachineWhite";
1115 return "Mode.AnalysisMode";
1117 return "Mode.AnalyzeFile";
1118 case TwoMachinesPlay:
1119 return "Mode.TwoMachines";
1121 return "Mode.EditGame";
1122 case PlayFromGameFile:
1123 return "File.LoadGame";
1125 return "Mode.EditPosition";
1127 return "Mode.Training";
1128 case IcsPlayingWhite:
1129 case IcsPlayingBlack:
1133 return "Mode.ICSClient";
1143 #ifndef OPTIONSDIALOG
1144 if (appData.alwaysPromoteToQueen) {
1145 MarkMenuItem("Options.Always Queen", True);
1147 if (appData.animateDragging) {
1148 MarkMenuItem("Options.Animate Dragging", True);
1150 if (appData.animate) {
1151 MarkMenuItem("Options.Animate Moving", True);
1153 if (appData.autoCallFlag) {
1154 MarkMenuItem("Options.Auto Flag", True);
1156 if (appData.autoFlipView) {
1157 XtSetValues(XtNameToWidget(menuBarWidget,"Options.Auto Flip View", True);
1159 if (appData.blindfold) {
1160 MarkMenuItem("Options.Blindfold", True);
1162 if (appData.flashCount > 0) {
1163 MarkMenuItem("Options.Flash Moves", True);
1166 if (appData.highlightDragging) {
1167 MarkMenuItem("Options.Highlight Dragging", True);
1170 if (appData.highlightLastMove) {
1171 MarkMenuItem("Options.Highlight Last Move", True);
1173 if (appData.highlightMoveWithArrow) {
1174 MarkMenuItem("Options.Arrow", True);
1176 // if (appData.icsAlarm) {
1177 // MarkMenuItem("Options.ICS Alarm", True);
1179 if (appData.ringBellAfterMoves) {
1180 MarkMenuItem("Options.Move Sound", True);
1182 if (appData.oneClick) {
1183 MarkMenuItem("Options.OneClick", True);
1185 if (appData.periodicUpdates) {
1186 MarkMenuItem("Options.Periodic Updates", True);
1188 if (appData.ponderNextMove) {
1189 MarkMenuItem("Options.Ponder Next Move", True);
1191 if (appData.popupExitMessage) {
1192 MarkMenuItem("Options.Popup Exit Message", True);
1194 if (appData.popupMoveErrors) {
1195 MarkMenuItem("Options.Popup Move Errors", True);
1197 // if (appData.premove) {
1198 // MarkMenuItem("Options.Premove", True);
1200 if (appData.showCoords) {
1201 MarkMenuItem("Options.Show Coords", True);
1203 if (appData.hideThinkingFromHuman) {
1204 MarkMenuItem("Options.Hide Thinking", True);
1206 if (appData.testLegality) {
1207 MarkMenuItem("Options.Test Legality", True);
1210 if (saveSettingsOnExit) {
1211 MarkMenuItem("Options.SaveSettingsonExit", True);