X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=backend.h;h=e53bb45da0b3781713e43defd82b66a76d8657a2;hb=c0d0ea91773838e5d11c3cd3b407fea251058c34;hp=2fc012feab23c4b49a7b6d4f526454eeff1fd765;hpb=24e290d23d9be7bfc246940db91011e46ad480e5;p=xboard.git diff --git a/backend.h b/backend.h index 2fc012f..e53bb45 100644 --- a/backend.h +++ b/backend.h @@ -113,6 +113,7 @@ extern Board boards[]; extern char marker[BOARD_RANKS][BOARD_FILES]; extern char lastMsg[MSG_SIZ]; extern Boolean bookUp; +extern int tinyLayout, smallLayout; char *CmailMsg P((void)); /* Tord: Added the useFEN960 parameter in PositionToFEN() below */ @@ -318,16 +319,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 +331,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 {