blob: 023fcdc8da41252748712c1caa972930a98abf71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
/*
* Copyright (C) 2002-2003 Joern Thyssen <[email protected]>
* Copyright (C) 2004-2021 the AUTHORS
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* $Id: gtkchequer.h,v 1.23 2021/10/05 20:58:46 plm Exp $
*/
#ifndef GTKCHEQUER_H
#define GTKCHEQUER_H
#include "backgammon.h"
typedef struct {
GtkWidget *pwMoves; /* the movelist */
GtkWidget *pwRollout, *pwRolloutSettings; /* rollout buttons */
GtkWidget *pwEval, *pwEvalSettings; /* evaluation buttons */
GtkWidget *pwMove; /* move button */
GtkWidget *pwCopy; /* copy button */
GtkWidget *pwEvalPly; /* predefined eval buttons */
GtkWidget *pwRolloutPresets; /* predefined Rollout buttons */
GtkWidget *pwShow; /* button for showing moves */
GtkWidget *pwTempMap; /* button for showing temperature map */
GtkWidget *pwCmark; /* button for marking */
GtkWidget *pwScoreMap; /* button for showing move score map */
moverecord *pmr;
movelist *pml;
int fButtonsValid;
int fDestroyOnMove;
unsigned int *piHighlight;
int fDetails;
int hist;
} hintdata;
extern GtkWidget *CreateMoveList(moverecord * pmr,
const int fButtonsValid, const int fDestroyOnMove, const int fDetails, int hist);
extern int
CheckHintButtons(hintdata * phd);
extern void MoveListRefreshSize(void);
extern GtkWidget *pwDetails;
extern int showMoveListDetail;
#endif
|