X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=backend.h;h=a5b10568cd7c073bf892c244ef1f48b604837721;hb=fa8cdd39eca80f4bdbf6e8e8a290fa1b8979224e;hp=2fc012feab23c4b49a7b6d4f526454eeff1fd765;hpb=cbd80b765ec4a10f6cdde5811bc0f216c975eb50;p=xboard.git diff --git a/backend.h b/backend.h index 2fc012f..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 {