X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=xhistory.c;h=4d0afe8ccf0b81812b0df742eafe2ff485f09b7e;hb=0a3919ff10a347a8d840f75fd2c816efe52e5098;hp=4211de10a781de867c01e5a1e31e6a2479171027;hpb=02de46755f727ffb565f7c855f37c344eee925ff;p=xboard.git diff --git a/xhistory.c b/xhistory.c index 4211de1..4d0afe8 100644 --- a/xhistory.c +++ b/xhistory.c @@ -25,31 +25,9 @@ #include #include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - #include "common.h" -#include "frontend.h" #include "backend.h" #include "xhistory.h" -#include "xboard.h" #include "dialogs.h" #include "gettext.h" @@ -62,11 +40,9 @@ #endif // templates for calls into back-end (= history.c; should be moved to history.h header shared with it!) -void RefreshMemoContent P((void)); -void MemoContentUpdated P((void)); void FindMoveByCharIndex P(( int char_index )); -// variables in xoptions.c +// variables in nhistory.c extern Option historyOptions[]; // ------------- low-level front-end actions called by MoveHistory back-end ----------------- @@ -74,27 +50,16 @@ extern Option historyOptions[]; void HighlightMove (int from, int to, Boolean highlight) { +#ifdef TODO_GTK if(highlight) XawTextSetSelection( historyOptions[0].handle, from, to ); // for lack of a better method, use selection for highighting -} - -void -ClearHistoryMemo () -{ - SetWidgetText(&historyOptions[0], "", HistoryDlg); -} - -// the bold argument says 0 = normal, 1 = bold typeface -// the colorNr argument says 0 = font-default, 1 = gray -int -AppendToHistoryMemo (char * text, int bold, int colorNr) -{ - return AppendText(&historyOptions[0], text); // for now ignore bold & color stuff, as Xaw cannot handle that +#endif } void ScrollToCurrent (int caretPos) { +#ifdef TODO_GTK Arg args[10]; char *s; int len; @@ -110,16 +75,17 @@ ScrollToCurrent (int caretPos) XtSetArg(args[0], XtNinsertPosition, caretPos); // this triggers scrolling in Xaw XtSetArg(args[1], XtNdisplayCaret, False); XtSetValues(historyOptions[0].handle, args, 2); +#endif } // ------------------------------ callbacks -------------------------- -char *historyText; char historyTranslations[] = ": select-start() \n \ : extend-end() SelectMove() \n"; +#ifdef TODO_GTK void SelectMove (Widget w, XEvent * event, String * params, Cardinal * nParams) { @@ -128,42 +94,5 @@ SelectMove (Widget w, XEvent * event, String * params, Cardinal * nParams) XawTextGetSelectionPos(w, &index, &dummy); FindMoveByCharIndex( index ); // [HGM] also does the actual moving to it, now } +#endif -Option historyOptions[] = { -{ 200, T_VSCRL | T_FILL | T_WRAP | T_TOP, 400, NULL, (void*) &historyText, "", NULL, TextBox, "" }, -{ 0, NO_OK, 0, NULL, (void*) NULL, "", NULL, EndMark , "" } -}; - -// ------------ standard entry points into MoveHistory code ----------- - -Boolean -MoveHistoryIsUp () -{ - return shellUp[HistoryDlg]; -} - -Boolean -MoveHistoryDialogExists () -{ - return DialogExists(HistoryDlg); -} - -void -HistoryPopUp () -{ - if(GenericPopUp(historyOptions, _("Move list"), HistoryDlg, BoardWindow, NONMODAL, 1)) - AddHandler(&historyOptions[0], 0); - MarkMenu("Show Move History", HistoryDlg); -} - -void -HistoryShowProc () -{ - if (!shellUp[HistoryDlg]) { - ASSIGN(historyText, ""); - HistoryPopUp(); - RefreshMemoContent(); - MemoContentUpdated(); - } else PopDown(HistoryDlg); - ToNrEvent(currentMove); -}