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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665
|
(*
* prooftree --- proof tree display for Proof General
*
* Copyright (C) 2011 - 2016 Hendrik Tews
*
* This file is part of "prooftree".
*
* "prooftree" 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.
*
* "prooftree" 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 in file COPYING in this or one of the parent
* directories for more details.
*
* You should have received a copy of the GNU General Public License
* along with "prooftree". If not, see <http://www.gnu.org/licenses/>.
*
* $Id: configuration.ml,v 1.46 2016/01/23 12:57:13 tews Exp $
*)
(** Prooftree Configuration and the Configuration Dialog *)
open Util
open Gtk_ext
(**/**)
module U = Unix
(**/**)
(*****************************************************************************
*****************************************************************************)
(** {2 Configuration record and global variables} *)
(** Hardwired location of the user-specific configuration file. *)
let config_file_location =
Filename.concat
(Sys.getenv "HOME")
".prooftree"
(** Configuration record. For simplicity the user specific
configuration file is (mostly) a marshaled configuration record.
In order to be independent of Gdk marshaling, the configuration
record consists only of pure OCaml values. Fonts and colors are
therefore not accessed via the configuration record, but via their
own references (of some suitable Gdk type). These references must,
of course, be kept in sync with the current configuration. All
other configurable values are accessed through the current
configuration record, which is stored in {!current_config}.
*)
(* IMPORTANT: INCREASE config_file_version BELOW WHEN CHANGING THIS RECORD *)
type t = {
turnstile_radius : int;
(** Radius (in pixel) of the circle around the turnstile symbol for
the current node. Used also as kind of circular bounding box of
the turnstile symbol.
*)
turnstile_left_bar_x_offset : int;
(** X-offset of the vertical bar of the turnstile symbol. *)
turnstile_left_bar_y_offset : int;
(** Y-offset of the upper and lower end of the vertical bar of the
turnstile symbol (with respect to the centre of the vertical
bar).
*)
turnstile_horiz_bar_x_offset : int;
(** Length of the horizontal bar of the turnstile symbol. *)
turnstile_line_width : int;
(** Line width of all lines (including the turnstile symbol). *)
turnstile_number_x_offset : int;
(** X-offset (with respect to the centre of the turnstile symbol) at
which the number of the external sequent window is printed, if
there is any.
*)
proof_command_length : int;
(** Maximal number of characters that are displayed for a proof
command in the proof-tree display.
*)
subtree_sep : int;
(** Additional space added between two adjacent subtrees. (More
precisely, this value is added to the width of every node in the
proof-tree display.)
*)
line_sep : int;
(** Space left between nodes and connecting lines. *)
level_distance : int;
(** Vertical distance between two levels of the proof tree. *)
proof_tree_sep : int;
(** Horizontal distance between two independent proof trees in one layer *)
layer_sep : int;
(** Vertical distance between two layers of proof trees *)
button_1_drag_acceleration : float;
(** Acceleration multiplier for dragging the proof-tree display
inside its viewport. Positive values move the viewport (i.e.,
the tree underneath moves in the opposite direction of the
mouse), negative values move the tree (i.e., the tree underneath
moves in the same direction as the mouse).
*)
proof_tree_font : string;
(** Font description (as for {xref lablgtk class
GPango.font_description}) for the text inside the proof-tree
display.
*)
sequent_font : string;
(** Font description (as for {xref lablgtk class
GPango.font_description}) for the text in the sequent display
and in the additional node windows.
*)
current_color : (int * int * int);
(** The color for the current branch, as 16-bit RGB value. *)
cheated_color : (int * int * int);
(** The color for branches that have been finished with a cheating
command, as 16-bit RGB value
*)
proved_complete_color : (int * int * int);
(** The color for branches that have been proved and which depend on no
non-instantiated existential variables, as 16-bit RGB value.
*)
proved_incomplete_color : (int * int * int);
(** The color for branches that have been proved and that have
non-instantiated existential variables, as 16-bit RGB value.
*)
proved_partial_color : (int * int * int);
(** The color for branches that have been proved and whose own
existential variables are all instantiated, but where the
instantiations depend on some not-yet instantiated existential
variables. The value is the 16-bit RGB triple.
*)
(*
* mark_subtree_color : (int * int * int);
* (\** The color for marked subtrees, as 16 bit RGB value. *\)
*)
existential_create_color : (int * int * int);
(** The color for marking nodes that introduce a given existential
variable, as 16 bit RGB value.
*)
existential_instantiate_color : (int * int * int);
(** The color for marking nodes that intantiate a given existential
variable, as 16 bit RGB value.
*)
display_doc_tooltips : bool;
(** Whether to display documentation/help tool-tips. *)
display_turnstile_tooltips : bool;
(** Whether to display complete sequents as tool-tips over sequent
symbols.
*)
display_command_tooltips : bool;
(** Whether to display complete proof commands as tool-tips over
proof commands.
*)
default_width_proof_tree_window : int;
(** Default width of the proof-tree window, used if there was no
[-geometry] option.
*)
default_height_proof_tree_window : int;
(** Default heigth of the proof-tree window, used if there was no
[-geometry] option.
*)
internal_sequent_window_lines : int;
(** Number of text lines in the internal sequent window. If [0] the
internal sequent window is hidden.
*)
node_window_max_lines : int;
(** Maximal number of text lines in external node windows. *)
ext_table_lines : int;
(** Default number of lines for the table of existential variables. *)
debug_mode : bool;
(** Print more exception backtraces for internal errors, if true. *)
copy_input : bool;
(** Write all read input into the file [copy_input_file], if true. *)
copy_input_file : string;
(** File to write read input to, if [copy_input] is true. *)
}
(** Set the fields [turnstile_left_bar_x_offset],
[turnstile_left_bar_y_offset] and [turnstile_horiz_bar_x_offset]
as function of the field [turnstile_radius]. Set
[turnstile_number_x_offset] as function of [turnstile_line_width]
(see {!t}).
*)
let update_sizes config =
let radius = config.turnstile_radius in
{ config with
turnstile_left_bar_x_offset =
int_of_float(-0.23 *. (float_of_int radius) +. 0.5);
turnstile_left_bar_y_offset =
int_of_float(0.65 *. (float_of_int radius) +. 0.5);
turnstile_horiz_bar_x_offset =
int_of_float(0.7 *. (float_of_int radius) +. 0.5);
turnstile_number_x_offset = -(config.turnstile_line_width + 1);
}
(** Create the default, builtin configuration record. *)
let default_configuration =
let radius = 10 in
let blue = GDraw.color (`NAME "blue") in
let red = GDraw.color (`NAME "red") in
let c = {
turnstile_radius = radius;
turnstile_line_width = 2;
proof_command_length = 15;
subtree_sep = 5;
line_sep = 3;
level_distance = 38;
proof_tree_sep = 15;
layer_sep = 30;
turnstile_left_bar_x_offset = 0;
turnstile_left_bar_y_offset = 0;
turnstile_horiz_bar_x_offset = 0;
turnstile_number_x_offset = 0;
button_1_drag_acceleration = 4.0;
proof_tree_font = "Sans 8";
sequent_font = "Sans 8";
current_color =
(Gdk.Color.red blue, Gdk.Color.green blue, Gdk.Color.blue blue);
cheated_color =
(Gdk.Color.red red, Gdk.Color.green red, Gdk.Color.blue red);
proved_complete_color = (19 * 255, 197 * 256, 19 * 255);
proved_partial_color = (100 * 256, 114 * 256, 0 * 256);
proved_incomplete_color = (26 * 255, 226 * 256, 216 * 256);
(* mark_subtree_color = (0,0,0); *)
existential_create_color = (255 * 256, 0xF5 * 256, 0x8F * 256);
existential_instantiate_color = (255 * 256, 0xB6 * 256, 0x6D * 256);
display_doc_tooltips = true;
display_turnstile_tooltips = true;
display_command_tooltips = true;
default_width_proof_tree_window = 400;
default_height_proof_tree_window = 400;
internal_sequent_window_lines = 1;
node_window_max_lines = 35;
ext_table_lines = 8;
debug_mode = false;
copy_input = false;
copy_input_file = "/tmp/prooftree.log";
}
in
update_sizes c
(** Reference of the internal configuration record. Most configuration
values are accessed through this reference. For fonts and colors
there are separate references, which are always updated, when the
configuration changes.
*)
let current_config = ref default_configuration
(** Font description for the text inside the proof-tree display, as
value of {xref lablgtk class GPango.font_description} type. Should
always be in sync with the [proof_tree_font] field of
{!current_config}.
*)
let proof_tree_font_desc =
ref(GPango.font_description default_configuration.proof_tree_font)
(** Font description for the text in the sequent display and in the
additional node windows, as value of {xref lablgtk class
GPango.font_description} type. Should always be in sync with the
[sequent_font] field of {!current_config}.
*)
let sequent_font_desc =
ref(GPango.font_description default_configuration.sequent_font)
(** Color for the current branch, as {xref lablgtk type Gdk.color}.
Should always be in sync with the [current_color] field of
{!current_config}.
*)
let current_gdk_color =
ref(GDraw.color (`RGB default_configuration.current_color))
(** Color for branches that have been finished with a cheating
command, as {xref lablgtk type Gdk.color}. Should always be in
sync with the [cheated_color] field of {!current_config}.
*)
let cheated_gdk_color =
ref(GDraw.color (`RGB default_configuration.cheated_color))
(** Color for branches that have been proved and which have no
non-instantiated esistential variables, as {xref lablgtk type
Gdk.color}. Should always be in sync with the
[proved_complete_color] field of {!current_config}.
*)
let proved_complete_gdk_color =
ref(GDraw.color (`RGB default_configuration.proved_complete_color))
(** Color for branches that have been proved and that have
non-instantiated existential variables as {xref lablgtk type
Gdk.color}. Should always be in sync with the
[proved_incomplete_color] field of {!current_config}.
*)
let proved_incomplete_gdk_color =
ref(GDraw.color (`RGB default_configuration.proved_incomplete_color))
(** Color for branches that have been proved and whose own existential
variables are all instantiated, but where the instantiations
depend on some not-yet instantiated existential variables. The
value is given as {xref lablgtk type Gdk.color} and should always
be in sync with the [proved_partial_color] field of
{!current_config}.
*)
let proved_partial_gdk_color =
ref(GDraw.color (`RGB default_configuration.proved_partial_color))
(*
* (\** Color for marked subtrees, as {xref lablgtk type Gdk.color}.
* Should always be in sync with the {!mark_subtree_color} field of
* {!current_config}.
* *\)
* let mark_subtree_gdk_color =
* ref(GDraw.color (`RGB default_configuration.mark_subtree_color))
*)
(** Color for marking nodes that introduce a given existential
variable, as {xref lablgtk type Gdk.color}. Should always be in
sync with the [existential_create_color] field of
{!current_config}.
*)
let existential_create_gdk_color =
ref(GDraw.color (`RGB default_configuration.existential_create_color))
(** Color for marking nodes that instantiate a given existential
variable, as {xref lablgtk type Gdk.color}. Should always be in
sync with the [existential_instantiate_color] field of
{!current_config}.
*)
let existential_instantiate_gdk_color =
ref(GDraw.color (`RGB default_configuration.existential_instantiate_color))
(** Update the references for fonts and colors after the current
configuration has been changed.
*)
let update_font_and_color () =
proof_tree_font_desc :=
GPango.font_description !current_config.proof_tree_font;
sequent_font_desc :=
GPango.font_description !current_config.sequent_font;
current_gdk_color :=
GDraw.color (`RGB !current_config.current_color);
cheated_gdk_color :=
GDraw.color (`RGB !current_config.cheated_color);
proved_complete_gdk_color :=
GDraw.color (`RGB !current_config.proved_complete_color);
proved_incomplete_gdk_color :=
GDraw.color (`RGB !current_config.proved_incomplete_color);
proved_partial_gdk_color :=
GDraw.color (`RGB !current_config.proved_partial_color);
(*
* mark_subtree_gdk_color :=
* GDraw.color (`RGB !current_config.mark_subtree_color);
*)
existential_create_gdk_color :=
GDraw.color (`RGB !current_config.existential_create_color);
existential_instantiate_gdk_color :=
GDraw.color (`RGB !current_config.existential_instantiate_color)
(** This function reference solves the recursive module dependency
between modules {!Proof_tree}, {!Input} and this module. It is
filled with {!Main.configuration_updated} when [Main] is
initialized.
*)
let configuration_updated_callback = ref (fun () -> ())
(** Update the configuration and all directly derived state variables. *)
let update_configuration_record c =
current_config := c;
update_font_and_color ()
(** [update_configuration c] does all the necessary actions to make
[c] the current configuration. It stores [c] in {!current_config},
updates the references for fonts and colors and calls all
[configuration_updated] functions/methods.
*)
let update_configuration c =
update_configuration_record c;
!configuration_updated_callback ()
(** Reference for the argument of the [-geometry] option. *)
let geometry_string = ref ""
(** Flag for option [-config]. *)
let start_config_dialog = ref false
(*****************************************************************************
*****************************************************************************)
(** {2 Save / Restore configuration records}
A configuration file consists of an ASCII header (followed by a
newline) and a marshaled configuration record (of type {!t}).
Because of the header one can easily identify the file by opening
it in any editor. The header contains also a version field, which
changes whenever the type of the marshaled value changes.
*)
(** Common header of all configuration files. *)
let config_file_header_start = "Prooftree configuration file version "
(** Version specific header of the current config file version. *)
let config_file_version = "04"
(** The complete ASCII header of configuration files. *)
let config_file_header = config_file_header_start ^ config_file_version ^ "\n"
(** [write_config_file file c] writes a config file at [file],
containing the configuration record [c].
*)
let write_config_file file_name (config : t) =
let oc = open_out_bin file_name in
output_string oc config_file_header;
Marshal.to_channel oc config [];
close_out oc
(** Read a configuration file at the specified location. Raises
[Sys_error] if the file is not present or not readable. Raises
[Failure] if there is no configuration file or if the file has an
incompatible version. Return the read configuration file on success.
*)
let read_config_file file_name : t =
let header_len = String.length config_file_header in
let ic = open_in_bin file_name in
let header = really_input_string ic header_len in
if header = config_file_header
then begin
let c = (Marshal.from_channel ic : t) in
close_in ic;
c
end
else if string_starts header config_file_header_start
then raise(Failure "Incompatible configuration file version")
else raise(Failure "Invalid configuration file")
(** Try to load the configuration file at {!config_file_location},
ignoring all errors. If a valid configuration file is found, the
current configuration record is updated. If an incompatible
version is found, a warning message is displayed. Used during
start-up.
*)
let try_load_config_file () =
let copt =
try
(* print_endline "before read"; *)
let res = Some(read_config_file config_file_location) in
(* print_endline "after read"; *)
res
with
| Failure "Incompatible configuration file version" ->
print_endline "version error";
run_message_dialog
("File " ^ config_file_location ^
" is not compatible with this version of Prooftree!\n\
Using default configuration.")
`WARNING;
None
| _ ->
print_endline "other error";
None
in
match copt with
| None -> ()
| Some c -> update_configuration_record c
(*****************************************************************************
*****************************************************************************)
(** {2 Configuration Dialog} *)
(** Reference to ensure that at most one configuration window does
exist.
*)
let config_window = ref None
(** Class for managing configuration windows. Objects are created when
the widget tree is completely constructed. Contains the necessary
state and methods to handle all callbacks. The callbacks must be
set up by the function that creates objects.
Arguments are
- old_config current config at config window start time
- top_window {xref lablgtk class GWindow.window}
of the top-level widget
- line_width_adjustment {xref lablgtk class GData.adjustment}
for line width
- turnstile_size_adjustment {xref lablgtk class GData.adjustment}
for turnstile size
- line_sep_adjustment {xref lablgtk class GData.adjustment}
for line gap
- proof_tree_sep_adjustment {xref lablgtk class GData.adjustment}
for proof tree sep
- subtree_sep_adjustment {xref lablgtk class GData.adjustment}
for node padding
- command_length_adjustment {xref lablgtk class GData.adjustment}
for command length
- level_dist_adjustment {xref lablgtk class GData.adjustment}
for vertical distance
- layer_sep_adjustment {xref lablgtk class GData.adjustment}
layer sep
- tree_font_button {xref lablgtk class GButton.font_button}
for proof tree font
- sequent_font_button {xref lablgtk class GButton.font_button}
for sequent window font
- current_color_button {xref lablgtk class GButton.color_button}
for current color
- cheated_color_button {xref lablgtk class GButton.color_button}
for cheated color
- proved_complete_color_button {xref lablgtk class GButton.color_button}
for complete color
- proved_incomplete_color_button {xref lablgtk class GButton.color_button}
for incomplete color
- proved_partial_color_button {xref lablgtk class GButton.color_button}
for partial color
- ext_create_color_button {xref lablgtk class GButton.color_button}
for create exist.
- ext_inst_color_button {xref lablgtk class GButton.color_button}
for instant. exist.
- drag_accel_adjustment {xref lablgtk class GData.adjustment}
for drac acceleration
- doc_tooltip_check_box {xref lablgtk class GButton.toggle_button}
for the help tool-tips check bock
- turnstile_tooltip_check_box {xref lablgtk class GButton.toggle_button}
for the turnstile tool-tips check bock
- command_tooltip_check_box {xref lablgtk class GButton.toggle_button}
for the command tool-tips check bock
- default_size_width_adjustment {xref lablgtk class GData.adjustment}
for default window size width
- default_size_height_adjustment {xref lablgtk class GData.adjustment}
for default window size height
- internal_seq_lines_adjustment {xref lablgtk class GData.adjustment}
for lines in the internal sequent window
- external_node_lines_adjustment {xref lablgtk class GData.adjustment}
for lines in external node windows
- ext_table_lines_adjustment {xref lablgtk class GData.adjustment}
for lines in evar table
- debug_check_box {xref lablgtk class GButton.toggle_button}
for the more-debug-info check box
- tee_file_box_check_box {xref lablgtk class GButton.toggle_button}
for log-input check box
- tee_file_name_entry {xref lablgtk class GEdit.entry}
of the log-file text entry
- tooltip_misc_objects list of {xref lablgtk class GObj.misc_ops}
of config dialog elements that have a tool-tip
to switch on and off
*)
class config_window
old_config
top_window
line_width_adjustment
turnstile_size_adjustment
line_sep_adjustment
proof_tree_sep_adjustment
subtree_sep_adjustment
command_length_adjustment
level_dist_adjustment
layer_sep_adjustment
tree_font_button
sequent_font_button
current_color_button
cheated_color_button
proved_complete_color_button
proved_incomplete_color_button
proved_partial_color_button
(* mark_subtree_color_button *)
ext_create_color_button
ext_inst_color_button
drag_accel_adjustment
doc_tooltip_check_box
turnstile_tooltip_check_box
command_tooltip_check_box
default_size_width_adjustment default_size_height_adjustment
internal_seq_lines_adjustment
external_node_lines_adjustment
ext_table_lines_adjustment
debug_check_box
tee_file_box_check_box
tee_file_name_entry
tooltip_misc_objects
=
object (self)
(** The callbacks for the configuration update may trigger several
config updates in a row. When this setting is [true], then the
config update is not done.
*)
val mutable delay_config_update = false
(** Set to [true] when the log-file chooser dialog sets the log-file
name to avoid switching off the log file check box.
*)
val mutable clean_tee_file_check_box = true
(** Make this configuration dialog visible. *)
method present = top_window#present()
(** [set_configuration c] changes spinners and buttons to show the
configuration of the configuration record [c].
*)
method set_configuration conf =
(* print_endline "set config start"; *)
line_width_adjustment#set_value (float_of_int conf.turnstile_line_width);
turnstile_size_adjustment#set_value (float_of_int conf.turnstile_radius);
subtree_sep_adjustment#set_value (float_of_int conf.subtree_sep);
line_sep_adjustment#set_value (float_of_int conf.line_sep);
proof_tree_sep_adjustment#set_value (float_of_int conf.proof_tree_sep);
command_length_adjustment#set_value (float_of_int conf.proof_command_length);
level_dist_adjustment#set_value (float_of_int conf.level_distance);
layer_sep_adjustment#set_value (float_of_int conf.layer_sep);
tree_font_button#set_font_name conf.proof_tree_font;
sequent_font_button#set_font_name conf.sequent_font;
current_color_button#set_color (GDraw.color (`RGB conf.current_color));
cheated_color_button#set_color (GDraw.color (`RGB conf.cheated_color));
proved_complete_color_button#set_color
(GDraw.color (`RGB conf.proved_complete_color));
proved_incomplete_color_button#set_color
(GDraw.color (`RGB conf.proved_incomplete_color));
proved_partial_color_button#set_color
(GDraw.color (`RGB conf.proved_partial_color));
(*
* mark_subtree_color_button#set_color
* (GDraw.color (`RGB conf.mark_subtree_color));
*)
ext_create_color_button#set_color
(GDraw.color (`RGB conf.existential_create_color));
ext_inst_color_button#set_color
(GDraw.color (`RGB conf.existential_instantiate_color));
drag_accel_adjustment#set_value conf.button_1_drag_acceleration;
doc_tooltip_check_box#set_active conf.display_doc_tooltips;
turnstile_tooltip_check_box#set_active conf.display_turnstile_tooltips;
command_tooltip_check_box#set_active conf.display_command_tooltips;
default_size_width_adjustment#set_value
(float_of_int conf.default_width_proof_tree_window);
default_size_height_adjustment#set_value
(float_of_int conf.default_height_proof_tree_window);
internal_seq_lines_adjustment#set_value
(float_of_int conf.internal_sequent_window_lines);
external_node_lines_adjustment#set_value
(float_of_int conf.node_window_max_lines);
ext_table_lines_adjustment#set_value
(float_of_int conf.ext_table_lines);
debug_check_box#set_active conf.debug_mode;
tee_file_box_check_box#set_active conf.copy_input;
tee_file_name_entry#set_text conf.copy_input_file;
(* print_endline "set config end"; *)
()
(** Change spinners and buttons to show the compile-time default
configuration.
*)
method reset_to_default () =
self#change_config_and_config_window default_configuration
(** Switch the help/documentation tool-tips on or off, according to
the argument [flag].
*)
method toggle_tooltips flag =
List.iter (fun misc -> misc#set_has_tooltip flag) tooltip_misc_objects
(** Start and manage the modal file selection dialog for the
log-file button. If the user makes a selection, the log-file
text entry is updated. The current configuration is then changed
via the [notify_text] signal of this entry.
*)
method tee_file_button_click () =
let file_chooser = GWindow.file_chooser_dialog
~action:`SAVE
~parent:top_window
~destroy_with_parent:true
~title:"Prooftree log file selection"
~focus_on_map:true
~modal:true ()
in
file_chooser#add_select_button_stock `APPLY `SELECT;
file_chooser#add_button_stock `CANCEL `CANCEL;
ignore(file_chooser#set_current_folder
(Filename.dirname tee_file_name_entry#text));
let chooser_file =
match file_chooser#run() with
| `SELECT -> file_chooser#filename
| `CANCEL
| `DELETE_EVENT -> None
in
file_chooser#destroy();
(match chooser_file with
| Some file ->
clean_tee_file_check_box <- false;
tee_file_name_entry#set_text file
| None -> ()
);
()
(** Create a new configuration record with the current values of the
spinners and buttons of this configuration dialog.
*)
method private extract_configuration =
let round_to_int f = int_of_float(f +. 0.5) in
let c = {
turnstile_line_width = round_to_int line_width_adjustment#value;
turnstile_radius = round_to_int turnstile_size_adjustment#value;
line_sep = round_to_int line_sep_adjustment#value;
proof_tree_sep = round_to_int proof_tree_sep_adjustment#value;
subtree_sep = round_to_int subtree_sep_adjustment#value;
proof_command_length = round_to_int command_length_adjustment#value;
level_distance = round_to_int level_dist_adjustment#value;
layer_sep = round_to_int layer_sep_adjustment#value;
turnstile_left_bar_x_offset = 0;
turnstile_left_bar_y_offset = 0;
turnstile_horiz_bar_x_offset = 0;
turnstile_number_x_offset = 0;
button_1_drag_acceleration = drag_accel_adjustment#value;
proof_tree_font = tree_font_button#font_name;
sequent_font = sequent_font_button#font_name;
current_color = (let c = current_color_button#color in
(Gdk.Color.red c, Gdk.Color.green c, Gdk.Color.blue c));
cheated_color = (let c = cheated_color_button#color in
(Gdk.Color.red c, Gdk.Color.green c, Gdk.Color.blue c));
proved_complete_color =
(let c = proved_complete_color_button#color in
(Gdk.Color.red c, Gdk.Color.green c, Gdk.Color.blue c));
proved_incomplete_color =
(let c = proved_incomplete_color_button#color in
(Gdk.Color.red c, Gdk.Color.green c, Gdk.Color.blue c));
proved_partial_color =
(let c = proved_partial_color_button#color in
(Gdk.Color.red c, Gdk.Color.green c, Gdk.Color.blue c));
(*
* mark_subtree_color =
* (let c = mark_subtree_color_button#color in
* (Gdk.Color.red c, Gdk.Color.green c, Gdk.Color.blue c));
*)
existential_create_color =
(let c = ext_create_color_button#color in
(Gdk.Color.red c, Gdk.Color.green c, Gdk.Color.blue c));
existential_instantiate_color =
(let c = ext_inst_color_button#color in
(Gdk.Color.red c, Gdk.Color.green c, Gdk.Color.blue c));
display_doc_tooltips = doc_tooltip_check_box#active;
display_turnstile_tooltips = turnstile_tooltip_check_box#active;
display_command_tooltips = command_tooltip_check_box#active;
default_width_proof_tree_window =
round_to_int default_size_width_adjustment#value;
default_height_proof_tree_window =
round_to_int default_size_height_adjustment#value;
internal_sequent_window_lines =
round_to_int internal_seq_lines_adjustment#value;
node_window_max_lines =
round_to_int external_node_lines_adjustment#value;
ext_table_lines =
round_to_int ext_table_lines_adjustment#value;
debug_mode = debug_check_box#active;
copy_input = tee_file_box_check_box#active;
copy_input_file = tee_file_name_entry#text;
}
in
update_sizes c
(** Callback when any item of the configuration changed. This simply
updates the complete configuration in the whole program.
*)
method config_changed () =
(* Printf.printf "change config delay %b\n%!" delay_config_update; *)
if not delay_config_update then begin
(* let app_start = U.gettimeofday () in *)
let c = self#extract_configuration in
self#toggle_tooltips c.display_doc_tooltips;
(try
update_configuration c;
with
| Log_input_file_error msg ->
run_message_dialog
(Printf.sprintf
"Opening the input log file failed with\n %s.\n\
Disabeling input logging."
msg)
`WARNING;
tee_file_box_check_box#set_active false
);
(*
* let app_end = U.gettimeofday () in
* Printf.printf "apply config %f ms\n%!" ((app_end -. app_start) *. 1000.)
*)
end
(** Update the current configuration record and all displayed values
in the config window. This method makes sure that the body of
the callback {config_changed} is only executed ones and that the
input logging flag is not reset.
*)
method private change_config_and_config_window c =
delay_config_update <- true;
clean_tee_file_check_box <- false;
self#set_configuration c;
delay_config_update <- false;
self#config_changed ()
(** Callback for the case that the log file entry has changed. To
avoid lots of file openings, the tee file check box is disabled.
*)
method log_file_entry_changed (_ : string) =
(* Printf.printf "log entry start clean %b\n%!" clean_tee_file_check_box; *)
if clean_tee_file_check_box then begin
let delay = delay_config_update in
delay_config_update <- true;
tee_file_box_check_box#set_active false;
delay_config_update <- delay;
end;
clean_tee_file_check_box <- true;
(* print_endline "log entry middle"; *)
self#config_changed ();
(* print_endline "log entry end"; *)
()
(** Action for the Save button: Saves the current configuration in
the user specific configuration file {!config_file_location}. If
the values of this configuration dialog differ from the current
configuration, a suitable warning is displayed.
*)
method save () =
try
write_config_file config_file_location !current_config
with
| Sys_error s when Util.string_ends s "Permission denied" ->
run_message_dialog
("No permission to write the configuration file at "
^ config_file_location ^ "!")
`WARNING
| e ->
let backtrace = Printexc.get_backtrace () in
let buf = Buffer.create 4095 in
let print_backtrace = ref !current_config.debug_mode in
(match e with
| e ->
Buffer.add_string buf "Internal error: Escaping exception ";
Buffer.add_string buf (Printexc.to_string e);
Buffer.add_string buf " in write_config_file";
(match e with
| U.Unix_error(error, _func, _info) ->
Buffer.add_char buf '\n';
Buffer.add_string buf (U.error_message error);
| _ -> ()
)
);
if !print_backtrace then begin
Buffer.add_char buf '\n';
Buffer.add_string buf backtrace;
end;
prerr_endline (Buffer.contents buf);
run_message_dialog (Buffer.contents buf) `WARNING;
()
(** Action for the Restore button: Restore the configuration in the
the user specific configuration file {!config_file_location} as
current configuration and update this dialog accordingly.
*)
method restore () =
try
let c = read_config_file config_file_location in
self#change_config_and_config_window c
with
| Sys_error s when Util.string_ends s "No such file or directory" ->
run_message_dialog
("No configuration file at " ^ config_file_location ^ "!")
`WARNING
| Failure "Incompatible configuration file version" ->
run_message_dialog
("File " ^ config_file_location ^
" is not compatible with this version of Prooftree!")
`WARNING
| Failure "Invalid configuration file" ->
run_message_dialog
("File " ^ config_file_location ^ " is not a valid Prooftree \
configuration file!")
`WARNING
| e ->
let backtrace = Printexc.get_backtrace () in
let buf = Buffer.create 4095 in
let print_backtrace = ref !current_config.debug_mode in
(match e with
| e ->
Buffer.add_string buf "Internal error: Escaping exception ";
Buffer.add_string buf (Printexc.to_string e);
Buffer.add_string buf " in read_config_file";
(match e with
| U.Unix_error(error, _func, _info) ->
Buffer.add_char buf '\n';
Buffer.add_string buf (U.error_message error);
| _ -> ()
)
);
if !print_backtrace then begin
Buffer.add_char buf '\n';
Buffer.add_string buf backtrace;
end;
prerr_endline (Buffer.contents buf);
run_message_dialog (Buffer.contents buf) `WARNING;
()
(** Action for the Cancel button and the destroy signal. *)
method destroy () =
config_window := None;
top_window#destroy();
if !start_config_dialog then exit 0
(** Action for the Cancel button: Reset config to start time. *)
method cancel () =
self#change_config_and_config_window old_config;
self#destroy ()
(** Action of the OK button. *)
method ok () =
self#destroy ()
end
(** [adjustment_set_pos_int ~lower adjustment] configures [adjustment]
for integer values between [~lower] and [100].
*)
let adjustment_set_pos_int ?(lower = 1.0) (adjustment : GData.adjustment) =
adjustment#set_bounds
~lower ~upper:100.0
~step_incr:1.0 ~page_incr:1.0 ()
(** Create a new configuation dialog. Creates the widget hierarchy,
initializes the management object and registers all callbacks.
*)
let make_config_window () =
let current_config = !current_config in
let top_window = GWindow.window () in
let top_v_box = GPack.vbox ~packing:top_window#add () in
let _config_title = GMisc.label
~markup:"<big><b>Prooftree Configuration</b></big>"
~xpad:10 ~ypad:10
~packing:top_v_box#pack () in
let notebook = GPack.notebook
~show_border:true
~packing:top_v_box#pack () in
let append_to_notebook label =
let label = GMisc.label ~markup:label () in
fun w -> ignore(notebook#append_page ~tab_label:label#coerce w)
in
(****************************************************************************
*
* tree configuration frame
*
****************************************************************************)
let tree_frame = GBin.frame
~label:"Tree Layout Parameters"
~border_width:5
~packing:(append_to_notebook "Layout") () in
let tree_frame_table = GPack.table
(* ~columns:2 ~rows:2 *) ~border_width:5
~packing:tree_frame#add () in
let _middle_separator = GMisc.label ~text:"" ~xpad:7
~packing:(tree_frame_table#attach ~left:2 ~top:0) () in
let _right_separator = GMisc.label ~text:"" ~xpad:2
~packing:(tree_frame_table#attach ~left:5 ~top:0) () in
(* Line width *)
let line_width_tooltip = "Line width of all lines" in
let line_width_label = GMisc.label
~text:"Line width" ~xalign:0.0 ~xpad:5
~packing:(tree_frame_table#attach ~left:0 ~top:0) () in
let line_width_spinner = GEdit.spin_button
~digits:0 ~numeric:true
~packing:(tree_frame_table#attach ~left:1 ~top:0) () in
let line_width_adjustment = line_width_spinner#adjustment in
adjustment_set_pos_int line_width_adjustment;
line_width_adjustment#set_value
(float_of_int current_config.turnstile_line_width);
line_width_label#misc#set_tooltip_text line_width_tooltip;
line_width_spinner#misc#set_tooltip_text line_width_tooltip;
(* turnstile radius *)
let turnstile_size_tooltip =
"Radius of the circle around the current turnstile; determines \
the size of the turnstile as well" in
let turnstile_size_label = GMisc.label
~text:"Turnstile size" ~xalign:0.0 ~xpad:5
~packing:(tree_frame_table#attach ~left:0 ~top:1) () in
let turnstile_size_spinner = GEdit.spin_button
~digits:0 ~numeric:true
~packing:(tree_frame_table#attach ~left:1 ~top:1) () in
let turnstile_size_adjustment = turnstile_size_spinner#adjustment in
adjustment_set_pos_int turnstile_size_adjustment;
turnstile_size_adjustment#set_value
(float_of_int current_config.turnstile_radius);
turnstile_size_label#misc#set_tooltip_text turnstile_size_tooltip;
turnstile_size_spinner#misc#set_tooltip_text turnstile_size_tooltip;
(* line_sep *)
let line_sep_tooltip =
"Gap between the node connecting lines and the nodes" in
let line_sep_label = GMisc.label
~text:"Line gap" ~xalign:0.0 ~xpad:5
~packing:(tree_frame_table#attach ~left:0 ~top:2) () in
let line_sep_spinner = GEdit.spin_button
~digits:0 ~numeric:true
~packing:(tree_frame_table#attach ~left:1 ~top:2) () in
let line_sep_adjustment = line_sep_spinner#adjustment in
adjustment_set_pos_int ~lower:0.0 line_sep_adjustment;
line_sep_adjustment#set_value
(float_of_int current_config.line_sep);
line_sep_label#misc#set_tooltip_text line_sep_tooltip;
line_sep_spinner#misc#set_tooltip_text line_sep_tooltip;
(* proof_tree_sep *)
let proof_tree_sep_tooltip =
"Additional padding between adjacent proof trees in one layer" in
let proof_tree_sep_label = GMisc.label
~text:"Tree padding" ~xalign:0.0 ~xpad:5
~packing:(tree_frame_table#attach ~left:0 ~top:3) () in
let proof_tree_sep_spinner = GEdit.spin_button
~digits:0 ~numeric:true
~packing:(tree_frame_table#attach ~left:1 ~top:3) () in
let proof_tree_sep_adjustment = proof_tree_sep_spinner#adjustment in
adjustment_set_pos_int ~lower:0.0 proof_tree_sep_adjustment;
proof_tree_sep_adjustment#set_value
(float_of_int current_config.proof_tree_sep);
proof_tree_sep_label#misc#set_tooltip_text proof_tree_sep_tooltip;
proof_tree_sep_spinner#misc#set_tooltip_text proof_tree_sep_tooltip;
(* subtree_sep *)
let subtree_sep_tooltip =
"Additional padding added to the width of each node in the proof tree" in
let subtree_sep_label = GMisc.label
~text:"Node padding" ~xalign:0.0 ~xpad:5
~packing:(tree_frame_table#attach ~left:3 ~top:0) () in
let subtree_sep_spinner = GEdit.spin_button
~digits:0 ~numeric:true
~packing:(tree_frame_table#attach ~left:4 ~top:0) () in
let subtree_sep_adjustment = subtree_sep_spinner#adjustment in
adjustment_set_pos_int ~lower:0.0 subtree_sep_adjustment;
subtree_sep_adjustment#set_value
(float_of_int current_config.subtree_sep);
subtree_sep_label#misc#set_tooltip_text subtree_sep_tooltip;
subtree_sep_spinner#misc#set_tooltip_text subtree_sep_tooltip;
(* proof_command_length *)
let command_length_tooltip =
"Number of characters displayed for proof commands" in
let command_length_label = GMisc.label
~text:"Command length" ~xalign:0.0 ~xpad:5
~packing:(tree_frame_table#attach ~left:3 ~top:1) () in
let command_length_spinner = GEdit.spin_button
~digits:0 ~numeric:true
~packing:(tree_frame_table#attach ~left:4 ~top:1) () in
let command_length_adjustment = command_length_spinner#adjustment in
adjustment_set_pos_int command_length_adjustment;
command_length_adjustment#set_value
(float_of_int current_config.proof_command_length);
command_length_label#misc#set_tooltip_text command_length_tooltip;
command_length_spinner#misc#set_tooltip_text command_length_tooltip;
(* level distance *)
let level_dist_tooltip = "Vertical distance between neighboring nodes" in
let level_dist_label = GMisc.label
~text:"Vertical distance" ~xalign:0.0 ~xpad:5
~packing:(tree_frame_table#attach ~left:3 ~top:2) () in
let level_dist_spinner = GEdit.spin_button
~digits:0 ~numeric:true
~packing:(tree_frame_table#attach ~left:4 ~top:2) () in
let level_dist_adjustment = level_dist_spinner#adjustment in
adjustment_set_pos_int level_dist_adjustment;
level_dist_adjustment#set_value
(float_of_int current_config.level_distance);
level_dist_label#misc#set_tooltip_text level_dist_tooltip;
level_dist_spinner#misc#set_tooltip_text level_dist_tooltip;
(* layer_sep *)
let layer_sep_tooltip =
"Additional padding between adjacent layers of proof trees" in
let layer_sep_label = GMisc.label
~text:"Layer padding" ~xalign:0.0 ~xpad:5
~packing:(tree_frame_table#attach ~left:3 ~top:3) () in
let layer_sep_spinner = GEdit.spin_button
~digits:0 ~numeric:true
~packing:(tree_frame_table#attach ~left:4 ~top:3) () in
let layer_sep_adjustment = layer_sep_spinner#adjustment in
adjustment_set_pos_int layer_sep_adjustment;
layer_sep_adjustment#set_value
(float_of_int current_config.layer_sep);
layer_sep_label#misc#set_tooltip_text layer_sep_tooltip;
layer_sep_spinner#misc#set_tooltip_text layer_sep_tooltip;
(****************************************************************************
*
* Fonts
*
****************************************************************************)
let font_frame = GBin.frame
~label:"Fonts"
~border_width:5
~packing:(append_to_notebook "Fonts") () in
let font_frame_table = GPack.table
~border_width:5 ~packing:font_frame#add () in
(* tree font *)
let tree_font_tooltip = "Font for proof commands in the proof tree display" in
let tree_font_label = GMisc.label
~text:"Proof Tree" ~xalign:0.0 ~xpad:5
~packing:(font_frame_table#attach ~left:0 ~top:0) () in
let tree_font_button = GButton.font_button
~title:"Proof Tree Font"
~font_name:current_config.proof_tree_font
~packing:(font_frame_table#attach ~left:1 ~top:0) () in
tree_font_button#set_use_size true;
tree_font_button#set_use_font true;
tree_font_label#misc#set_tooltip_text tree_font_tooltip;
tree_font_button#misc#set_tooltip_text tree_font_tooltip;
(* sequent font *)
let sequent_font_tooltip = "Font for sequent and proof command windows" in
let sequent_font_label = GMisc.label
~text:"Sequent window" ~xalign:0.0 ~xpad:5
~packing:(font_frame_table#attach ~left:0 ~top:1) () in
let sequent_font_button = GButton.font_button
~title:"Sequent Window Font"
~font_name:current_config.sequent_font
~packing:(font_frame_table#attach ~left:1 ~top:1) () in
sequent_font_button#set_use_size true;
sequent_font_button#set_use_font true;
sequent_font_label#misc#set_tooltip_text sequent_font_tooltip;
sequent_font_button#misc#set_tooltip_text sequent_font_tooltip;
(****************************************************************************
*
* Colors
*
****************************************************************************)
let color_frame = GBin.frame
~label:"Colors"
~border_width:5
~packing:(append_to_notebook "Colors") () in
let color_frame_table = GPack.table
~border_width:5 ~packing:color_frame#add () in
let _middle_separator = GMisc.label ~text:"" ~xpad:4
~packing:(color_frame_table#attach ~left:2 ~top:0) () in
let _right_separator = GMisc.label ~text:"" ~xpad:2
~packing:(color_frame_table#attach ~left:5 ~top:0) () in
let make_color_conf row column color
label_text selection_dialog_title tooltip =
let label = GMisc.label
~text:label_text ~xalign:0.0 ~xpad:5
~packing:(color_frame_table#attach ~left:column ~top:row) () in
let button = GButton.color_button
~title:selection_dialog_title
~color:color
~packing:(color_frame_table#attach ~left:(column + 1) ~top:row) () in
(* button#set_use_alpha true; *)
label#misc#set_tooltip_text tooltip;
button#misc#set_tooltip_text tooltip;
(label, button)
in
let row = 0 in
let column = 0 in
(* current color *)
let (current_color_label, current_color_button) =
make_color_conf row column !current_gdk_color "Current branch"
"Current Branch Color"
"Color for the current branch" in
let column = column + 3 in
(* proved incomplete color *)
let (proved_incomplete_color_label, proved_incomplete_color_button) =
make_color_conf row column !proved_incomplete_gdk_color "Proved incomplete"
"Incompletely Proved Branches Color"
"Color for proved branches which still have some non-instantiated \
existential variables" in
let row = 1 in
let column = 0 in
(* cheated color *)
let (cheated_color_label, cheated_color_button) =
make_color_conf row column !cheated_gdk_color "Cheated"
"Cheated Branches Color"
"Color for branches terminated with a cheating proof command" in
let column = column + 3 in
(* existential create color *)
let (ext_create_color_label, ext_create_color_button) =
make_color_conf row column !existential_create_gdk_color
"Create existential"
"Create Existential Variable Color"
"Color for marking the node that introduces some existential variable" in
let row = 2 in
let column = 0 in
(*
* (\* mark subtree color *\)
* let (mark_subtree_color_label, mark_subtree_color_button) =
* make_color_conf row column !mark_subtree_gdk_color "Mark"
* "Mark Subtree Color"
* "Color for marking subtrees, e.g., those that contain a certain \
* existential variable" in
*)
(* proved complete color *)
let (proved_complete_color_label, proved_complete_color_button) =
make_color_conf row column !proved_complete_gdk_color "Proved complete"
"Completely Proved Branches Color"
"Color for completely proved branches where all existential \
variables are fully instantiated" in
let column = column + 3 in
(* existential instantiate color *)
let (ext_inst_color_label, ext_inst_color_button) =
make_color_conf row column !existential_instantiate_gdk_color
"Instantiate existential"
"Instantiate Existential Variable Color"
"Color for marking the node that instantiates some existential variable"
in
let row = 3 in
let column = 0 in
(* proved partial color *)
let (proved_partial_color_label, proved_partial_color_button) =
make_color_conf row column !proved_partial_gdk_color "Proved partial"
"Partially Proved Branches Color"
"Color for completely proved branches where all existential \
variables are instantiated but some of them use not-yet \
instantiated existential variables" in
(****************************************************************************
*
* Misc
*
****************************************************************************)
let misc_frame = GBin.frame
~label:"Miscellaneous"
~border_width:5
~packing:(append_to_notebook "Misc") () in
let misc_frame_table = GPack.table
(* ~columns:2 ~rows:2 *) ~border_width:5
~packing:misc_frame#add () in
(* doc tooltips *)
let misc_line = 0 in
let doc_tooltip_tooltip = "Switch ordinary help tool tips on and off" in
let doc_tooltip_alignment = GBin.alignment
~padding:(0,0,3,0)
~packing:(misc_frame_table#attach ~left:0 ~right:2 ~top:misc_line) () in
let doc_tooltip_check_box = GButton.check_button
~label:"Display help tool tips"
~active:current_config.display_doc_tooltips
~packing:doc_tooltip_alignment#add () in
doc_tooltip_alignment#misc#set_tooltip_text doc_tooltip_tooltip;
(* turnstile tooltips *)
let misc_line = 1 in
let turnstile_tooltip_tooltip =
"Switch sequent display as tool tip over the proof tree on and off" in
let turnstile_tooltip_alignment = GBin.alignment
~padding:(0,0,3,0)
~packing:(misc_frame_table#attach ~left:0 ~right:2 ~top:misc_line) () in
let turnstile_tooltip_check_box = GButton.check_button
~label:"Display turnstile tool tips"
~active:current_config.display_turnstile_tooltips
~packing:turnstile_tooltip_alignment#add () in
turnstile_tooltip_alignment#misc#set_tooltip_text turnstile_tooltip_tooltip;
(* command tooltips *)
let misc_line = 2 in
let command_tooltip_tooltip =
"Switch display of truncated commands as tool tip on and off" in
let command_tooltip_alignment = GBin.alignment
~padding:(0,0,3,0)
~packing:(misc_frame_table#attach ~left:0 ~right:2 ~top:misc_line) () in
let command_tooltip_check_box = GButton.check_button
~label:"Display command tool tips"
~active:current_config.display_command_tooltips
~packing:command_tooltip_alignment#add () in
command_tooltip_alignment#misc#set_tooltip_text command_tooltip_tooltip;
(* drag accel *)
let misc_line = 3 in
let drag_accel_tooltip =
"Acceleration for dragging the viewport to the proof tree" in
let drag_accel_label = GMisc.label
~text:"Drag acceleration" ~xalign:0.0 ~xpad:5
~packing:(misc_frame_table#attach ~left:0 ~top:misc_line) () in
let drag_accel_spinner = GEdit.spin_button
~digits:2 ~numeric:true
~packing:(misc_frame_table#attach ~left:1 ~top:misc_line) () in
let drag_accel_adjustment = drag_accel_spinner#adjustment in
drag_accel_adjustment#set_bounds
~lower:(-99.0) ~upper:99.0
~step_incr:0.01 ~page_incr:1.0 ();
drag_accel_adjustment#set_value
current_config.button_1_drag_acceleration;
drag_accel_label#misc#set_tooltip_text drag_accel_tooltip;
drag_accel_spinner#misc#set_tooltip_text drag_accel_tooltip;
(* default size *)
let misc_line = 4 in
let default_size_tooltip = "Size for newly created proof tree windows" in
let default_size_label = GMisc.label
~text:"Default window size" ~xalign:0.0 ~xpad:5
~packing:(misc_frame_table#attach ~left:0 ~top:misc_line) () in
let default_size_width_spinner = GEdit.spin_button
~digits:0 ~numeric:true
~packing:(misc_frame_table#attach ~left:1 ~top:misc_line) () in
let default_size_width_adjustment = default_size_width_spinner#adjustment in
default_size_width_adjustment#set_bounds
~lower:(-9999.0) ~upper:9999.0
~step_incr:1.0 ~page_incr:100.0 ();
default_size_width_adjustment#set_value
(float_of_int current_config.default_width_proof_tree_window);
let _x_label = GMisc.label
~text:"\195\151" (* multiplication sign U+00D7 *)
~xpad:5
~packing:(misc_frame_table#attach ~left:2 ~top:misc_line) () in
let default_size_height_spinner = GEdit.spin_button
~digits:0 ~numeric:true
~packing:(misc_frame_table#attach ~left:3 ~top:misc_line) () in
let default_size_height_adjustment = default_size_height_spinner#adjustment in
default_size_height_adjustment#set_bounds
~lower:(-9999.0) ~upper:9999.0
~step_incr:1.0 ~page_incr:100.0 ();
default_size_height_adjustment#set_value
(float_of_int current_config.default_height_proof_tree_window);
default_size_label#misc#set_tooltip_text default_size_tooltip;
default_size_width_spinner#misc#set_tooltip_text default_size_tooltip;
default_size_height_spinner#misc#set_tooltip_text default_size_tooltip;
(* internal sequent window lines *)
let misc_line = 5 in
let internal_seq_lines_tooltip =
"Initial height (in lines) of the sequent window \
below the proof tree display"
in
let internal_seq_lines_label = GMisc.label
~text:"Int. Sequent window" ~xalign:0.0 ~xpad:5
~packing:(misc_frame_table#attach ~left:0 ~top:misc_line) () in
let internal_seq_lines_spinner = GEdit.spin_button
~digits:0 ~numeric:true
~packing:(misc_frame_table#attach ~left:1 ~top:misc_line) () in
let internal_seq_lines_adjustment = internal_seq_lines_spinner#adjustment in
adjustment_set_pos_int ~lower:0.0 internal_seq_lines_adjustment;
internal_seq_lines_adjustment#set_value
(float_of_int current_config.internal_sequent_window_lines);
internal_seq_lines_label#misc#set_tooltip_text internal_seq_lines_tooltip;
internal_seq_lines_spinner#misc#set_tooltip_text internal_seq_lines_tooltip;
(* external node window lines *)
let misc_line = 6 in
let external_node_lines_tooltip =
"Maximal height (in lines) of additional node windows" in
let external_node_lines_label = GMisc.label
~text:"Ext. node window" ~xalign:0.0 ~xpad:5
~packing:(misc_frame_table#attach ~left:0 ~top:misc_line) () in
let external_node_lines_spinner = GEdit.spin_button
~digits:0 ~numeric:true
~packing:(misc_frame_table#attach ~left:1 ~top:misc_line) () in
let external_node_lines_adjustment = external_node_lines_spinner#adjustment in
adjustment_set_pos_int external_node_lines_adjustment;
external_node_lines_adjustment#set_value
(float_of_int current_config.node_window_max_lines);
external_node_lines_label#misc#set_tooltip_text external_node_lines_tooltip;
external_node_lines_spinner#misc#set_tooltip_text external_node_lines_tooltip;
(* existential table lines *)
let misc_line = 7 in
let ext_table_lines_tooltip =
"Default number of lines for the existential variable table" in
let ext_table_lines_label = GMisc.label
~text:"Evar table" ~xalign:0.0 ~xpad:5
~packing:(misc_frame_table#attach ~left:0 ~top:misc_line) () in
let ext_table_lines_spinner = GEdit.spin_button
~digits:0 ~numeric:true
~packing:(misc_frame_table#attach ~left:1 ~top:misc_line) () in
let ext_table_lines_adjustment = ext_table_lines_spinner#adjustment in
adjustment_set_pos_int ext_table_lines_adjustment;
ext_table_lines_adjustment#set_value
(float_of_int current_config.ext_table_lines);
ext_table_lines_label#misc#set_tooltip_text ext_table_lines_tooltip;
ext_table_lines_spinner#misc#set_tooltip_text ext_table_lines_tooltip;
(* non-configurable config-file *)
let misc_line = 8 in
let config_file_tooltip =
"The configuration file is determined at compilation time" in
let config_file_label = GMisc.label
~text:"Configuration file"
~xalign:0.0 ~xpad:5
~packing:(misc_frame_table#attach ~left:0 ~top:misc_line) () in
let config_file_alignment = GBin.alignment
~padding:(0,0,3,0)
~packing:(misc_frame_table#attach ~left:1 ~right:4 ~top:misc_line) () in
let _config_file_file = GMisc.label
~text:config_file_location
~xalign:0.0
~packing:config_file_alignment#add () in
config_file_label#misc#set_tooltip_text config_file_tooltip;
config_file_alignment#misc#set_tooltip_text config_file_tooltip;
(****************************************************************************
*
* Debugging Options
*
****************************************************************************)
let debug_frame = GBin.frame
~label:"Debugging Options"
~border_width:5
~packing:(append_to_notebook "Debug") () in
let debug_frame_table = GPack.table
(* ~columns:2 ~rows:2 *) ~border_width:5
~packing:debug_frame#add () in
(* debug *)
let debug_tooltip = "Provide more information on fatal error conditions" in
let debug_alignment = GBin.alignment
~padding:(0,0,3,0)
~packing:(debug_frame_table#attach ~left:0 ~right:4 ~top:0) () in
let debug_check_box = GButton.check_button
~label:"More debug information"
~active:current_config.debug_mode
~packing:debug_alignment#add () in
debug_alignment#misc#set_tooltip_text debug_tooltip;
(* tee file checkbox*)
let tee_file_box_tooltip = "Save all input from Proof General in log file" in
let tee_file_box_alignment = GBin.alignment
~padding:(0,0,3,0)
~packing:(debug_frame_table#attach ~left:0 ~right:4 ~top:1) () in
let tee_file_box_check_box = GButton.check_button
~label:"Log Proof General input"
~active:current_config.copy_input
~packing:tee_file_box_alignment#add () in
tee_file_box_alignment#misc#set_tooltip_text tee_file_box_tooltip;
(* tee file filename *)
let _tee_file_name_label = GMisc.label
~text:"Log file" ~xalign:0.0 ~xpad:5
~packing:(debug_frame_table#attach ~left:0 ~top:2) () in
let tee_file_name_entry = GEdit.entry
~text:current_config.copy_input_file
(* ~max_length:25 *)
~packing:(debug_frame_table#attach ~left:1 ~top:2) () in
let _button_separator = GMisc.label ~text:"" ~xpad:5
~packing:(debug_frame_table#attach ~left:2 ~top:2) () in
let tee_file_name_button = GButton.button
~label:"Change log file"
~packing:(debug_frame_table#attach ~left:3 ~top:2) () in
(* XXX try again when lablgtk has the file-set signal for
* file chooser_button's. Tried last with lablgtk 2.16 for GTK 2.12.
*
* let file_chooser_button = GFile.chooser_button ~action:`SAVE
* ~title:"title" ~packing:(debug_frame_table#attach ~left:3 ~top:3) () in
*)
(****************************************************************************
*
* bottom button box
*
****************************************************************************)
(*
* let _separator = GMisc.separator `HORIZONTAL
* ~packing:top_v_box#pack () in
*)
let button_box = GPack.hbox
~spacing:5 (* ~border_width:5 *) ~packing:top_v_box#pack () in
let reset_button = GButton.button (* XXX find stock item *)
~label:"Set defaults" ~packing:button_box#pack () in
let cancel_button = GButton.button
~stock:`CANCEL ~packing:button_box#pack () in
let ok_button = GButton.button
~stock:`OK ~packing:button_box#pack () in
let restore_button = GButton.button
~stock:`REVERT_TO_SAVED ~packing:(button_box#pack ~from:`END) () in
let save_button = GButton.button
~stock:`SAVE ~packing:(button_box#pack ~from:`END) () in
let config_window =
new config_window
current_config
top_window
line_width_adjustment
turnstile_size_adjustment
line_sep_adjustment
proof_tree_sep_adjustment
subtree_sep_adjustment
command_length_adjustment
level_dist_adjustment
layer_sep_adjustment
tree_font_button
sequent_font_button
current_color_button
cheated_color_button
proved_complete_color_button
proved_incomplete_color_button
proved_partial_color_button
(* mark_subtree_color_button *)
ext_create_color_button
ext_inst_color_button
drag_accel_adjustment
doc_tooltip_check_box
turnstile_tooltip_check_box
command_tooltip_check_box
default_size_width_adjustment default_size_height_adjustment
internal_seq_lines_adjustment
external_node_lines_adjustment
ext_table_lines_adjustment
debug_check_box
tee_file_box_check_box
tee_file_name_entry
[ line_width_label#misc; line_width_spinner#misc;
turnstile_size_label#misc; turnstile_size_spinner#misc;
line_sep_label#misc; line_sep_spinner#misc;
proof_tree_sep_label#misc; proof_tree_sep_spinner#misc;
subtree_sep_label#misc; subtree_sep_spinner#misc;
command_length_label#misc; command_length_spinner#misc;
level_dist_label#misc; level_dist_spinner#misc;
layer_sep_label#misc; layer_sep_spinner#misc;
tree_font_label#misc; tree_font_button#misc;
sequent_font_label#misc; sequent_font_button#misc;
current_color_label#misc; current_color_button#misc;
cheated_color_label#misc; cheated_color_button#misc;
proved_complete_color_label#misc; proved_complete_color_button#misc;
proved_incomplete_color_label#misc; proved_incomplete_color_button#misc;
proved_partial_color_label#misc; proved_partial_color_button#misc;
(* mark_subtree_color_label#misc; mark_subtree_color_button#misc; *)
ext_create_color_label#misc; ext_create_color_button#misc;
ext_inst_color_label#misc; ext_inst_color_button#misc;
doc_tooltip_alignment#misc;
turnstile_tooltip_alignment#misc;
command_tooltip_alignment#misc;
drag_accel_label#misc; drag_accel_spinner#misc;
default_size_label#misc; default_size_width_spinner#misc;
default_size_height_spinner#misc;
internal_seq_lines_label#misc; internal_seq_lines_spinner#misc;
external_node_lines_label#misc; external_node_lines_spinner#misc;
ext_table_lines_label#misc; ext_table_lines_spinner#misc;
config_file_label#misc;
config_file_alignment#misc; debug_alignment#misc;
tee_file_box_alignment#misc;
]
in
top_window#set_title "Prooftree Configuration";
config_window#toggle_tooltips current_config.display_doc_tooltips;
List.iter (fun adj -> ignore(adj#connect#value_changed
~callback:config_window#config_changed))
[line_width_adjustment; turnstile_size_adjustment; line_sep_adjustment;
proof_tree_sep_adjustment; subtree_sep_adjustment;
command_length_adjustment; level_dist_adjustment; layer_sep_adjustment;
drag_accel_adjustment; default_size_width_adjustment;
default_size_height_adjustment; internal_seq_lines_adjustment;
external_node_lines_adjustment; ext_table_lines_adjustment;
];
List.iter (fun fb -> ignore (fb#connect#font_set
~callback:config_window#config_changed))
[tree_font_button; sequent_font_button];
List.iter (fun cb -> ignore (cb#connect#color_set
~callback:config_window#config_changed))
[current_color_button; cheated_color_button; proved_complete_color_button;
proved_incomplete_color_button; proved_partial_color_button;
ext_create_color_button; ext_inst_color_button
];
List.iter (fun cb -> ignore (cb#connect#toggled
~callback:config_window#config_changed))
[doc_tooltip_check_box; turnstile_tooltip_check_box;
command_tooltip_check_box; debug_check_box; tee_file_box_check_box
];
ignore(tee_file_name_entry#connect#notify_text
~callback:config_window#log_file_entry_changed);
ignore(tee_file_name_button#connect#clicked
~callback:config_window#tee_file_button_click);
ignore(top_window#connect#destroy ~callback:config_window#destroy);
ignore(reset_button#connect#clicked ~callback:config_window#reset_to_default);
ignore(cancel_button#connect#clicked ~callback:config_window#cancel);
ignore(ok_button#connect#clicked ~callback:config_window#ok);
ignore(save_button#connect#clicked ~callback:config_window#save);
ignore(restore_button#connect#clicked ~callback:config_window#restore);
top_window#show ();
config_window
(** Show a configuration dialog. If there is currently none, a new one
is created.
*)
let show_config_window () =
match !config_window with
| Some w -> w#present
| None -> config_window := Some(make_config_window ())
|