- {N_("Info XBoard"), "Info XBoard", InfoProc},
- {N_("Man XBoard F1"), "Man XBoard", ManProc},
- {"----", NULL, NothingProc},
- {N_("XBoard Home Page"), "Home Page", HomePageProc},
- {N_("On-line User Guide"), "User Guide", GuideProc},
- {N_("Development News"), "News Page", NewsPageProc},
- {N_("e-Mail Bug Report"), "Bug Report", BugReportProc},
- {"----", NULL, NothingProc},
- {N_("About XBoard"), "About XBoard", AboutProc},
- {NULL, NULL, NULL}
+ {N_("Info XBoard"), NULL, "InfoXBoard", InfoProc},
+ {N_("Man XBoard"), "F1", "ManXBoard", ManProc},
+ {"----", NULL, NULL, NothingProc},
+ {N_("XBoard Home Page"), NULL, "XBoardHomePage", HomePageProc},
+ {N_("On-line User Guide"), NULL, "On-lineUserGuide", GuideProc},
+ {N_("Development News"), NULL, "DevelopmentNews", NewsPageProc},
+ {N_("e-Mail Bug Report"), NULL, "e-MailBugReport", BugReportProc},
+ {"----", NULL, NULL, NothingProc},
+ {N_("About XBoard"), NULL, "AboutXBoard", AboutProc},
+ {NULL, NULL, NULL, NULL}
+};
+
+MenuItem noMenu[] = {
+ { "", "<Alt>Next" ,"LoadNextGame", LoadNextGameProc },
+ { "", "<Alt>Prior" ,"LoadPrevGame", LoadPrevGameProc },
+ { "", NULL,"ReloadGame", ReloadGameProc },
+ { "", NULL,"ReloadPosition", ReloadPositionProc },
+#ifndef OPTIONSDIALOG
+ { "", NULL,"AlwaysQueen", AlwaysQueenProc },
+ { "", NULL,"AnimateDragging", AnimateDraggingProc },
+ { "", NULL,"AnimateMoving", AnimateMovingProc },
+ { "", NULL,"Autoflag", AutoflagProc },
+ { "", NULL,"Autoflip", AutoflipProc },
+ { "", NULL,"Blindfold", BlindfoldProc },
+ { "", NULL,"FlashMoves", FlashMovesProc },
+#if HIGHDRAG
+ { "", NULL,"HighlightDragging", HighlightDraggingProc },
+#endif
+ { "", NULL,"HighlightLastMove", HighlightLastMoveProc },
+ { "", NULL,"MoveSound", MoveSoundProc },
+ { "", NULL,"PeriodicUpdates", PeriodicUpdatesProc },
+ { "", NULL,"PopupExitMessage", PopupExitMessageProc },
+ { "", NULL,"PopupMoveErrors", PopupMoveErrorsProc },
+ { "", NULL,"ShowCoords", ShowCoordsProc },
+ { "", NULL,"ShowThinking", ShowThinkingProc },
+ { "", NULL,"HideThinking", HideThinkingProc },
+ { "", NULL,"TestLegality", TestLegalityProc },
+#endif
+ { "", NULL,"AboutGame", AboutGameEvent },
+ { "", "<Ctrl>d" ,"DebugProc", DebugProc },
+ { "", NULL,"Nothing", NothingProc },
+ {NULL, NULL, NULL, NULL}