X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=frontend.h;h=7912f9d9d3db36381ab4b5744f8456b6694f39cc;hb=4042b38821940cd48e9f3d10b5208da7b6288dfd;hp=0e782e1005ae1d22f0f9fea110002054072b726e;hpb=db47508e69470712a51f6fd2e06348a0c1de615c;p=xboard.git diff --git a/frontend.h b/frontend.h index 0e782e1..7912f9d 100644 --- a/frontend.h +++ b/frontend.h @@ -55,6 +55,7 @@ #define _FRONTEND #include +#include typedef VOIDSTAR ProcRef; #define NoProc ((ProcRef) 0) @@ -90,6 +91,10 @@ void CommentPopDown P((void)); void EditCommentPopUp P((int index, String title, String text)); void ErrorPopDown P((void)); int EventToSquare P((int x, int limit)); +void DrawSeekAxis P(( int x, int y, int xTo, int yTo )); +void DrawSeekBackground P(( int left, int top, int right, int bottom )); +void DrawSeekText P((char *buf, int x, int y)); +void DrawSeekDot P((int x, int y, int color)); void RingBell P((void)); void PlayIcsWinSound P((void)); @@ -117,7 +122,7 @@ void StartLoadGameTimer P((long millisec)); void AutoSaveGame P((void)); typedef void (*DelayedEventCallback) P((void)); -void ScheduleDelayedEvent P((DelayedEventCallback cb, long millisec)); +void ScheduleDelayedEvent P((DelayedEventCallback cb, guint millisec)); DelayedEventCallback GetDelayedEvent P((void)); void CancelDelayedEvent P((void)); // [HGM] mouse: next six used by mouse handler, which was moved to backend @@ -127,6 +132,7 @@ void PromotionPopUp P((void)); void DragPieceBegin P((int x, int y)); void DragPieceEnd P((int x, int y)); void LeftClick P((ClickType c, int x, int y)); +int RightClick P((ClickType c, int x, int y, int *col, int *row)); int StartChildProcess P((char *cmdLine, char *dir, ProcRef *pr)); void DestroyChildProcess P((ProcRef pr, int/*boolean*/ signal)); @@ -155,6 +161,14 @@ void CmailSigHandlerCallBack P((InputSourceRef isr, VOIDSTAR closure, extern ProcRef cmailPR; +/* in xgamelist.c or winboard.c */ +void GLT_ClearList(); +void GLT_DeSelectList(); +void GLT_AddToList( char *name ); +Boolean GLT_GetFromList( int index, char *name ); + +extern char lpUserGLT[]; + /* these are in wgamelist.c */ void GameListPopUp P((FILE *fp, char *filename)); void GameListPopDown P((void)); @@ -183,6 +197,9 @@ void HistorySet P((char movelist[][2*MOVE_LEN], int first, int last, int current void FreezeUI P((void)); void ThawUI P((void)); extern char *programName; +extern int commentUp; + +void GreyRevert P((Boolean grey)); typedef struct FrontEndProgramStats_TAG { int which; @@ -198,4 +215,14 @@ typedef struct FrontEndProgramStats_TAG { void SetProgramStats P(( FrontEndProgramStats * stats )); /* [AS] */ +void EngineOutputPopUp P((void)); +void EngineOutputPopDown P((void)); +int EngineOutputIsUp P((void)); +int EngineOutputDialogExists P((void)); +void EvalGraphPopUp P((void)); +void EvalGraphPopDown P((void)); +Boolean EvalGraphIsUp P((void)); +int EvalGraphDialogExists P((void)); +Boolean MoveHistoryIsUp P((void)); + #endif