X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=backend.h;h=a5b10568cd7c073bf892c244ef1f48b604837721;hb=02de46755f727ffb565f7c855f37c344eee925ff;hp=ae2baf5cda92662e3e2c69e3fcf9b7fbd256e1d8;hpb=78faea4c21208a7219dc11180519b18f0444c5f7;p=xboard.git diff --git a/backend.h b/backend.h index ae2baf5..a5b1056 100644 --- a/backend.h +++ b/backend.h @@ -318,16 +318,8 @@ extern Boolean set_cont_sequence P((char *new_seq)); extern int wrap P((char *dest, char *src, int count, int width, int *lp)); int Explode P((Board board, int fromX, int fromY, int toX, int toY)); -typedef enum { CheckBox, ComboBox, TextBox, Button, Spin, ResetButton, SaveButton, ListBox, - FileName, PathName, Slider, Message, Fractional, Label, Break, EndMark } Control; - -/* Flags Option.min used for ComboBox: */ -#define COMBO_CALLBACK (1 << 0) -#define NO_GETTEXT (1 << 1) - -/* Flags for Option.min used for Button, SaveButton, EndMark: */ -#define SAME_ROW (1 << 0) -#define NO_OK (1 << 1) +typedef enum { CheckBox, ComboBox, TextBox, Button, Spin, ResetButton, SaveButton, ListBox, Graph, PopUp, + FileName, PathName, Slider, Message, Fractional, Label, BoxBegin, BoxEnd, DropDown, Break, EndMark } Control; typedef struct _OPT { // [HGM] options: descriptor of UCI-style option int value; // current setting, starts as default @@ -338,7 +330,7 @@ typedef struct _OPT { // [HGM] options: descriptor of UCI-style option char *textValue; // points to beginning of text value in name field char **choice; // points to array of combo choices in cps->combo Control type; - char name[MSG_SIZ]; // holds both option name and text value + char *name; // holds both option name and text value (in allocated memory) } Option; typedef struct _CPS { @@ -439,6 +431,7 @@ extern int opponentKibitzes; // used by wengineo.c extern int errorExitStatus; extern char *recentEngines; extern char *comboLine; +extern Boolean partnerUp, twoBoards; void SettingsPopUp P((ChessProgramState *cps)); // [HGM] really in front-end, but CPS not known in frontend.h int WaitForEngine P((ChessProgramState *cps, DelayedEventCallback x)); void Load P((ChessProgramState *cps, int n));