X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=xoptions.c;h=37e6838c4a13e653a8c412ed881d2e4bded97bec;hb=8a375395a4cc09b1febaf64c4b2e7ce66c59a69b;hp=69bb9f6ae890ea3461e8ca96f6c47b43d49091ee;hpb=fb1fe1e685ae5b35d0230cd33c2c0c795d6db24b;p=xboard.git diff --git a/xoptions.c b/xoptions.c index 69bb9f6..37e6838 100644 --- a/xoptions.c +++ b/xoptions.c @@ -727,6 +727,7 @@ void CreateComboPopup(parent, name, n, mb) typedef void ButtonCallback(int n); +extern WindowPlacement wpComment, wpTags; char *trialSound; static int oldCores, oldPonder; int MakeColors P((void)); @@ -737,7 +738,7 @@ void GenericReadout(); Widget shells[10]; Widget marked[10]; Boolean shellUp[10]; -WindowPlacement *wp[10]; +WindowPlacement *wp[10] = { NULL, &wpComment, &wpTags }; Option *dialogOptions[10]; void MarkMenu(char *item, int dlgNr) @@ -1846,6 +1847,43 @@ void NewCommentPopup(char *title, char *text, int index) XtOverrideTranslations(commentOptions[0].handle, XtParseTranslationTable(commentTranslations)); } +static char *tagsText, *msgText; + +void NewTagsCallback(int n) +{ + ReplaceTags(tagsText, &gameInfo); +} + +void changeTags(int n) +{ + Arg args[16]; + XtSetArg(args[0], XtNstring, &tagsText); + XtGetValues(currentOption[0].handle, args, 1); + ReplaceTags(tagsText, &gameInfo); +} + +Option tagsOptions[] = { +{ 0xD, 200, 250, NULL, (void*) &tagsText, "", NULL, TextBox, "" }, +{ 0, 0, 0, NULL, NULL, NULL, NULL, Label, "" }, +{ 0, 0, 0, NULL, (void*) &changeTags, NULL, NULL, Button, "save changes" }, +{ 0, 1, 0, NULL, (void*) &NewTagsCallback, "", NULL, EndMark , "" } +}; + +void NewTagsPopup(char *text, char *msg) +{ + Widget edit; + Arg args[16]; + + if(shells[2]) { // if already exists, alter title and content + XtSetArg(args[0], XtNstring, text); + XtSetValues(tagsOptions[0].handle, args, 1); + } + tagsText = text; + tagsOptions[1].textValue = msg; + MarkMenu("menuView.Show Tags", 2); + GenericPopUp(tagsOptions, _("Tags"), 2); +} + extern char ICSInputTranslations[]; char *icsText;