Add -autokibitz checkbox to UCI-options menu dialog
authorH.G. Muller <h.g.muller@hccnet.nl>
Thu, 25 Feb 2010 19:32:23 +0000 (20:32 +0100)
committerH.G. Muller <h.g.muller@hccnet.nl>
Thu, 25 Feb 2010 19:32:23 +0000 (20:32 +0100)
winboard/resource.h
winboard/winboard.rc
winboard/woptions.c

index 940e367..ee1bd86 100644 (file)
 #define OPT_DualBoard                  1753\r
 #define OPT_SmartMove                  1754\r
 #define OPT_StartupChatBoxes           1755\r
+#define OPT_AutoKibitz                 1756\r
 #define IDC_SPECIFY_ENG_STATIC          1814\r
 #define IDC_SPECIFY_SERVER_STATIC       1815\r
 #define OPT_MESS                        1818\r
index 0bffd9b..c9ca00f 100644 (file)
@@ -484,6 +484,8 @@ BEGIN
     PUSHBUTTON      "Cancel",IDCANCEL,248,250,50,15\r
     CONTROL         "&Auto Comment",OPT_AutoComment,"Button",BS_AUTOCHECKBOX | \r
                     WS_TABSTOP,10,12,63,8\r
+    CONTROL         "&Auto Kibitz",OPT_AutoKibitz,"Button",BS_AUTOCHECKBOX | \r
+                    WS_TABSTOP,84,12,63,8\r
     CONTROL         "Auto &Observe",OPT_AutoObserve,"Button",BS_AUTOCHECKBOX | \r
                     WS_TABSTOP,10,25,63,8\r
     CONTROL         "&Get Move List",OPT_GetMoveList,"Button",\r
index f5dbb3e..f9f3ce4 100644 (file)
@@ -1177,6 +1177,7 @@ IcsOptionsDialog(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
     /* Initialize the dialog items */\r
 #define CHECK_BOX(x,y) CheckDlgButton(hDlg, (x), (BOOL)(y))\r
 \r
+    CHECK_BOX(OPT_AutoKibitz, appData.autoKibitz);\r
     CHECK_BOX(OPT_AutoComment, appData.autoComment);\r
     CHECK_BOX(OPT_AutoObserve, appData.autoObserve);\r
     CHECK_BOX(OPT_GetMoveList, appData.getMoveList);\r
@@ -1261,6 +1262,7 @@ IcsOptionsDialog(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
       appData.premove          = IS_CHECKED(OPT_Premove);\r
       appData.premoveWhite     = IS_CHECKED(OPT_PremoveWhite);\r
       appData.premoveBlack     = IS_CHECKED(OPT_PremoveBlack);\r
+      appData.autoKibitz       = IS_CHECKED(OPT_AutoKibitz);\r
       appData.autoComment      = IS_CHECKED(OPT_AutoComment);\r
       appData.autoObserve      = IS_CHECKED(OPT_AutoObserve);\r
       appData.getMoveList      = IS_CHECKED(OPT_GetMoveList);\r