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 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348
|
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ConfigDialog</class>
<widget class="QDialog" name="ConfigDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>866</width>
<height>589</height>
</rect>
</property>
<property name="windowTitle">
<string>Configuration</string>
</property>
<layout class="QGridLayout" name="gridLayout_5">
<item row="0" column="0">
<widget class="QWidget" name="mainWidget" native="true">
<property name="contextMenuPolicy">
<enum>Qt::PreventContextMenu</enum>
</property>
<layout class="QVBoxLayout" name="verticalLayout_5">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QSplitter" name="splitter">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<widget class="QWidget" name="categoriesWidget" native="true">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>1</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QLineEdit" name="categoriesFilter">
<property name="placeholderText">
<string>Search</string>
</property>
</widget>
</item>
<item>
<widget class="QTreeWidget" name="categoriesTree">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>150</width>
<height>0</height>
</size>
</property>
<property name="verticalScrollMode">
<enum>QAbstractItemView::ScrollPerPixel</enum>
</property>
<attribute name="headerVisible">
<bool>false</bool>
</attribute>
<column>
<property name="text">
<string notr="true">1</string>
</property>
</column>
<item>
<property name="text">
<string>General</string>
</property>
<property name="statusTip">
<string notr="true">generalPage</string>
</property>
<property name="icon">
<iconset resource="../icons.qrc">
<normaloff>:/icons/img/config_general.png</normaloff>:/icons/img/config_general.png</iconset>
</property>
</item>
<item>
<property name="text">
<string>Keyboard shortcuts</string>
</property>
<property name="statusTip">
<string notr="true">shortcutsPage</string>
</property>
<property name="icon">
<iconset resource="../icons.qrc">
<normaloff>:/icons/img/keyboard.png</normaloff>:/icons/img/keyboard.png</iconset>
</property>
</item>
<item>
<property name="text">
<string>Look & feel</string>
</property>
<property name="statusTip">
<string notr="true">lookAndFeelPage</string>
</property>
<property name="icon">
<iconset resource="../icons.qrc">
<normaloff>:/icons/img/config_look_and_feel.png</normaloff>:/icons/img/config_look_and_feel.png</iconset>
</property>
<item>
<property name="text">
<string>Style</string>
</property>
<property name="statusTip">
<string notr="true">stylePage</string>
</property>
<property name="icon">
<iconset resource="../icons.qrc">
<normaloff>:/icons/img/config_style.png</normaloff>:/icons/img/config_style.png</iconset>
</property>
</item>
<item>
<property name="text">
<string>Fonts</string>
</property>
<property name="statusTip">
<string notr="true">fontsPage</string>
</property>
<property name="icon">
<iconset resource="../icons.qrc">
<normaloff>:/icons/img/config_font.png</normaloff>:/icons/img/config_font.png</iconset>
</property>
</item>
<item>
<property name="text">
<string>Code colors</string>
</property>
<property name="statusTip">
<string notr="true">codeColorsPage</string>
</property>
<property name="icon">
<iconset resource="../icons.qrc">
<normaloff>:/icons/img/config_colors.png</normaloff>:/icons/img/config_colors.png</iconset>
</property>
</item>
</item>
<item>
<property name="text">
<string>Database list</string>
</property>
<property name="statusTip">
<string notr="true">databaseListPage</string>
</property>
<property name="icon">
<iconset resource="../icons.qrc">
<normaloff>:/icons/img/database_online.png</normaloff>:/icons/img/database_online.png</iconset>
</property>
</item>
<item>
<property name="text">
<string>Code assistant</string>
</property>
<property name="statusTip">
<string notr="true">codeAssistantPage</string>
</property>
<property name="icon">
<iconset resource="../icons.qrc">
<normaloff>:/icons/img/code_assistant.png</normaloff>:/icons/img/code_assistant.png</iconset>
</property>
</item>
<item>
<property name="text">
<string>Data browsing</string>
</property>
<property name="statusTip">
<string notr="true">dataBrowsingPage</string>
</property>
<property name="icon">
<iconset resource="../icons.qrc">
<normaloff>:/icons/img/table.png</normaloff>:/icons/img/table.png</iconset>
</property>
<item>
<property name="text">
<string>Data editors</string>
</property>
<property name="statusTip">
<string notr="true">dataEditorsPage</string>
</property>
<property name="icon">
<iconset resource="../icons.qrc">
<normaloff>:/icons/img/config_data_editors.png</normaloff>:/icons/img/config_data_editors.png</iconset>
</property>
</item>
</item>
<item>
<property name="text">
<string>Plugins</string>
</property>
<property name="statusTip">
<string notr="true">pluginsPage</string>
</property>
<property name="icon">
<iconset resource="../icons.qrc">
<normaloff>:/icons/img/plugin.png</normaloff>:/icons/img/plugin.png</iconset>
</property>
<item>
<property name="text">
<string>Code formatters</string>
</property>
<property name="statusTip">
<string notr="true">formatterPluginsPage</string>
</property>
</item>
</item>
</widget>
</item>
</layout>
</widget>
<widget class="QStackedWidget" name="stackedWidget">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>5</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="currentIndex">
<number>1</number>
</property>
<widget class="QWidget" name="databaseListPage">
<layout class="QVBoxLayout" name="verticalLayout_36">
<item>
<widget class="QGroupBox" name="dbListGroup">
<property name="title">
<string>Database list</string>
</property>
<layout class="QGridLayout" name="gridLayout">
<item row="4" column="0">
<widget class="QCheckBox" name="sortColumns">
<property name="toolTip">
<string>If switched off, then columns will be sorted in the order they are typed in CREATE TABLE statement.</string>
</property>
<property name="text">
<string>Sort table columns alphabetically</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.SortColumns</string>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QCheckBox" name="expandTablesCheck">
<property name="text">
<string>Expand tables node when connected to a database</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.ExpandTables</string>
</property>
</widget>
</item>
<item row="6" column="0">
<widget class="QGroupBox" name="addLabelsGroup">
<property name="toolTip">
<string><p>Additional labels are those displayed next to the names on the databases list (they are blue, unless configured otherwise). Enabling this option will result in labels for databases, invalid databases and aggregated nodes (column group, index group, trigger group). For more labels see options below.<p></string>
</property>
<property name="title">
<string>Display additional labels on the list</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
<property name="checked">
<bool>false</bool>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.ShowDbTreeLabels</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_20">
<item>
<widget class="QCheckBox" name="regularTableLabelsCheck">
<property name="toolTip">
<string>For regular tables labels will show number of columns, indexes and triggers for each of tables.</string>
</property>
<property name="text">
<string>Display labels for regular tables</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.ShowRegularTableLabels</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="virtTableLabelsCheck">
<property name="toolTip">
<string>Virtual tables will be marked with a 'virtual' label.</string>
</property>
<property name="text">
<string>Display labels for virtual tables</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.ShowVirtualTableLabels</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item row="2" column="0">
<widget class="QCheckBox" name="expandViewsCheck">
<property name="text">
<string>Expand views node when connected to a database</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.ExpandViews</string>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QCheckBox" name="sortObjects">
<property name="toolTip">
<string>If this option is switched off, then objects will be sorted in order they appear in sqlite_master table (which is in order they were created)</string>
</property>
<property name="text">
<string>Sort objects (tables, indexes, triggers and views) alphabetically</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.SortObjects</string>
</property>
</widget>
</item>
<item row="5" column="0">
<widget class="QCheckBox" name="dispSysTableCheck">
<property name="text">
<string>Display system tables and indexes on the list</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.ShowSystemObjects</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="dbDialogGroup">
<property name="title">
<string>Database dialog window</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_37">
<item>
<widget class="QCheckBox" name="dontMarkDbAsDefaultCheck">
<property name="toolTip">
<string><p>When adding new database it is marked to be "permanent" (stored in configuration) by default. Checking this option makes every new database to NOT be "permanent" by default.</p></string>
</property>
<property name="text">
<string>Do not mark database to be "permanent" by default</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.NewDbNotPermanentByDefault</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="bypassDbDialogCheck">
<property name="toolTip">
<string><p>When this option is enabled, then files dropped from file manager onto database list will be automatically added to the list, bypassing standard database dialog. If for various reasons automatic process fails, then standard dialog will be presented to the user.</p></string>
</property>
<property name="text">
<string>Try to bypass dialog completly when dropping database file onto the list</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.BypassDbDialogWhenDropped</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<spacer name="verticalSpacer_4">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
<widget class="QWidget" name="dataBrowsingPage">
<layout class="QVBoxLayout" name="verticalLayout_21">
<item>
<widget class="QScrollArea" name="dataBrowsingScrollArea">
<property name="widgetResizable">
<bool>true</bool>
</property>
<widget class="QWidget" name="dataBrowsingScrollAreaContents">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>660</width>
<height>754</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout_34">
<item>
<widget class="QGroupBox" name="dataBrowsingGroup">
<property name="title">
<string>Data browsing and editing</string>
</property>
<layout class="QGridLayout" name="gridLayout_2">
<item row="4" column="0" colspan="3">
<widget class="QCheckBox" name="keepNullWhenEmptyCheck">
<property name="toolTip">
<string><p>When editing a cell which used to have NULL value and entering empty string as new value, then this option determinates whether the new value should remain NULL (have this option enabled), or should it be overwritten with empty string value (have this option disabled).</p></string>
</property>
<property name="text">
<string>Keep NULL value when entering empty value</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.KeepNullWhenEmptyValue</string>
</property>
</widget>
</item>
<item row="0" column="0" colspan="2">
<widget class="QLabel" name="rowsPerPageLabel">
<property name="text">
<string>Number of data rows per page:</string>
</property>
</widget>
</item>
<item row="3" column="0" colspan="3">
<widget class="QCheckBox" name="tolltipInDataViewCheck">
<property name="toolTip">
<string><p>When this is enabled and user holds mouse pointer over a cell in any data view (query results, a table data, a view data) a tooltip will appear with details about the cell - it includes details like column data type, constraints, ROWID and others.</p></string>
</property>
<property name="text">
<string>Show column and row details tooltip in data view</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.ShowDataViewTooltips</string>
</property>
</widget>
</item>
<item row="2" column="2">
<widget class="QSpinBox" name="memPopulConfigsCheck">
<property name="toolTip">
<string><p>Maximum number of configurations of Populate Table dialog stored in configuration. Value of 100 should be sufficient.</p></string>
</property>
<property name="maximum">
<number>999999</number>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.PopulateHistorySize</string>
</property>
</widget>
</item>
<item row="2" column="0" colspan="2">
<widget class="QLabel" name="memPopulConfigsLabel">
<property name="toolTip">
<string><p>Maximum number of configurations of Populate Table dialog stored in configuration. Value of 100 should be sufficient.</p></string>
</property>
<property name="text">
<string>Number of memorized table populating configurations</string>
</property>
</widget>
</item>
<item row="0" column="2">
<widget class="QSpinBox" name="rowsPerPageSpin">
<property name="maximumSize">
<size>
<width>150</width>
<height>16777215</height>
</size>
</property>
<property name="minimum">
<number>1</number>
</property>
<property name="maximum">
<number>99999</number>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.NumberOfRowsPerPage</string>
</property>
</widget>
</item>
<item row="1" column="0" colspan="3">
<widget class="QCheckBox" name="limitColumnsVsRowsCheck">
<property name="toolTip">
<string><html><head/><body><p>If query results contain dozens (or hundreds) of columns, it is more likely that it will exhaust free memory of your computer by loading several gigabytes of data at once. SQLiteStudio may try to limit number of results displayed on one page in such cases to protect your computer. If you know that you don't work with big values in database, you can disable this limit and you will always see as many rows as defined per page.</p></body></html></string>
</property>
<property name="text">
<string>Limit number of rows for in case of dozens of columns</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.LimitRowsForManyColumns</string>
</property>
</widget>
</item>
<item row="7" column="0" colspan="3">
<widget class="QCheckBox" name="useLfForMultilineBox">
<property name="toolTip">
<string><html><head/><body><p>Converts Unicode line separators (U+2028, U+2029) to the standard LF (<span style=" font-family:'monospace';">\n</span>) character when editing text in form view editor.</p><p>Disable to preserve the original characters.</p></body></html></string>
</property>
<property name="text">
<string>Convert Unicode line separators to LF (\n) in form view editors</string>
</property>
<property name="cfg" stdset="0">
<string>General.UseLfForMultilineEditors</string>
</property>
</widget>
</item>
<item row="6" column="0" colspan="3">
<widget class="QCheckBox" name="useSciFormatForDoublesCheck">
<property name="toolTip">
<string><html><head/><body><p>When enabled, SQLiteStudio automatically switches to scientific notation for very small real numbers (e.g. <span style=" font-style:italic;">5.3e-21</span>).<br/>Decimal notation is used for values whose magnitude allows a readable decimal representation.</p><p>When disabled, real numbers are always displayed using decimal notation, even if this results in very long fractional parts.</p></body></html></string>
</property>
<property name="text">
<string>Use scientific notation for very small real numbers in the grid view</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.UseSciFormatForDoubles</string>
</property>
</widget>
</item>
<item row="5" column="0" colspan="3">
<widget class="QCheckBox" name="useDefaultForNullCheck">
<property name="toolTip">
<string><html><head/><body><p>Enable this to always enforce DEFAULT value when committing a NULL value for a column that has DEFAULT value defined, even though the column is allowed to contain NULL values.</p><p>Disable this option to use DEFAULT value exclusively when NULL value is committed for column with NOT NULL constraint.</p></body></html></string>
</property>
<property name="text">
<string>Use DEFAULT value (if defined), when committing NULL value</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.UseDefaultValueForNull</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="dataColumnWdGroup">
<property name="title">
<string>Data column width</string>
</property>
<layout class="QGridLayout" name="gridLayout_9">
<item row="1" column="0" colspan="2">
<widget class="QCheckBox" name="enlargeColumnCheck">
<property name="toolTip">
<string><html><head/><body><p>When user enters new value into column and the value is bigger than the current column width, the application will enlarge the column to fit the new value, but not wider than the limit defined in the option above.</p></body></html></string>
</property>
<property name="text">
<string>Enlarge column when entering value longer than current width</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.EnlargeColumnForValue</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QSpinBox" name="initColWidthLimitSpin">
<property name="maximumSize">
<size>
<width>150</width>
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string><p>When the data is read into grid view columns width is automatically adjusted. This value limits the initial width for the adjustment, but user can still resize the column manually over this limit.</p></string>
</property>
<property name="minimum">
<number>10</number>
</property>
<property name="maximum">
<number>99999</number>
</property>
<property name="value">
<number>600</number>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.MaxInitialColumnWith</string>
</property>
</widget>
</item>
<item row="0" column="0">
<widget class="QLabel" name="initColWidthLimitLabel">
<property name="toolTip">
<string><html><head/><body><p>When the data is read into grid view columns width is automatically adjusted. This value limits the initial width for the adjustment, but user can still resize the column manually over this limit. This value is also used when enlarging column upon new, longer value entered by the user (see option below).</p></body></html></string>
</property>
<property name="text">
<string>Limit automatic data column width to (in pixels):</string>
</property>
</widget>
</item>
<item row="2" column="0" colspan="2">
<widget class="QCheckBox" name="keepColNameCheck">
<property name="toolTip">
<string><html><head/><body><p>Initial width of data columns will be set to at least show complete name of the column in the header. This can still be overwritten by the initial limit of column width specified in pixels (the setting above).</p></body></html></string>
</property>
<property name="text">
<string>Keep at least the width to show complete column name</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.ColumnWidthForName</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="insertRowPlacementGroup">
<property name="title">
<string>Inserting new row in data grid</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_33">
<item>
<widget class="ConfigRadioButton" name="insertRowBeforeRadio">
<property name="text">
<string>Before currently selected row</string>
</property>
<property name="checked">
<bool>true</bool>
</property>
<property name="assignedValue" stdset="0">
<number>0</number>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.InsertRowPlacement</string>
</property>
</widget>
</item>
<item>
<widget class="ConfigRadioButton" name="insertRowAfterRadio">
<property name="text">
<string>After currently selected row</string>
</property>
<property name="assignedValue" stdset="0">
<number>1</number>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.InsertRowPlacement</string>
</property>
</widget>
</item>
<item>
<widget class="ConfigRadioButton" name="insertRowAtEndRadio">
<property name="text">
<string>At the end of data view</string>
</property>
<property name="assignedValue" stdset="0">
<number>2</number>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.InsertRowPlacement</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="tableWinGroup">
<property name="title">
<string>Table windows</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_18">
<item>
<widget class="QCheckBox" name="openTablesOnDataCheck">
<property name="toolTip">
<string><p>When enabled, Table Windows will show up with the data tab, instead of the structure tab.</p></string>
</property>
<property name="text">
<string>Open Table Windows with the data tab for start</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.OpenTablesOnData</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="dataTabInTableAsFirstCheck">
<property name="toolTip">
<string><p>When enabled the "Data" tab will be placed as first tab in every Table Window, instead of being at second place.</p></string>
</property>
<property name="text">
<string>Place data tab as first tab in a Table Window</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.DataTabAsFirstInTables</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="viewWinGroup">
<property name="title">
<string>View windows</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_19">
<item>
<widget class="QCheckBox" name="openViewsOnDataCheck">
<property name="toolTip">
<string><p>When enabled, View Windows will show up with the data tab, instead of the structure tab.</p></string>
</property>
<property name="text">
<string>Open View Windows with the data tab for start</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.OpenViewsOnData</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="dataTabInViewAsFirstCheck">
<property name="toolTip">
<string><p>When enabled the "Data" tab will be placed as first tab in every View Window, instead of being at second place.</p></string>
</property>
<property name="text">
<string>Place data tab as first tab in a View Window</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.DataTabAsFirstInViews</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<spacer name="verticalSpacer_6">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="dataEditorsPage">
<layout class="QVBoxLayout" name="verticalLayout_24">
<item>
<widget class="QSplitter" name="splitter_2">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<widget class="QGroupBox" name="dataEditorsTypesGroup">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>1</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="title">
<string>Data types</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_22">
<item>
<widget class="QToolBar" name="dataEditorsTypesToolbar"/>
</item>
<item>
<widget class="QListWidget" name="dataEditorsTypesList">
<property name="cfg" stdset="0">
<string notr="true">General.DataEditorsOrder</string>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="dataEditorsRightWidget" native="true">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>3</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<layout class="QVBoxLayout" name="verticalLayout_23">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QGroupBox" name="dataEditorsAvailableGroup">
<property name="title">
<string>Available editors:</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_26">
<item>
<widget class="QListWidget" name="dataEditorsAvailableList">
<property name="sortingEnabled">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="dataEditorsSelectedGroup">
<property name="title">
<string>Editors selected for this data type:</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_27">
<item>
<widget class="QTabWidget" name="dataEditorsSelectedTabs">
<property name="movable">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="generalPage">
<layout class="QVBoxLayout" name="verticalLayout_3">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QGroupBox" name="schemaEditingGroup">
<property name="title">
<string>Schema editing</string>
</property>
<layout class="QGridLayout" name="gridLayout_12">
<item row="1" column="1">
<widget class="QSpinBox" name="ddlHistorySizeSpin">
<property name="maximumSize">
<size>
<width>150</width>
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Number of DDL changes kept in history.</string>
</property>
<property name="maximum">
<number>9999999</number>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.DdlHistorySize</string>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="ddlHistorySizeLabel">
<property name="text">
<string>DDL history size:</string>
</property>
</widget>
</item>
<item row="0" column="0" colspan="2">
<widget class="QCheckBox" name="dontShowDdlPreview">
<property name="text">
<string>Don't show DDL preview dialog when committing schema changes</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.DontShowDdlPreview</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="sqlQueriesGroup">
<property name="title">
<string>SQL queries</string>
</property>
<layout class="QGridLayout" name="gridLayout_4">
<item row="1" column="1">
<widget class="QSpinBox" name="queryHistorySizeSpin">
<property name="maximumSize">
<size>
<width>150</width>
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Number of queries kept in the history.</string>
</property>
<property name="maximum">
<number>999999</number>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.SqlHistorySize</string>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QLabel" name="bindParamLimitLabel">
<property name="toolTip">
<string><p>Maximum number of query parameters (:param, @param, $param, ?) stored in history. When you re-use parameter with the same name/position, SQLiteStudio will pre-initialize it with most recent memorized value (you will still be able to change it). Value of 1000 should be sufficient.</p></string>
</property>
<property name="text">
<string>Number of memorized query parameters</string>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QSpinBox" name="bindParamLimitSpin">
<property name="toolTip">
<string><p>Maximum number of query parameters (:param, @param, $param, ?) stored in history. When you re-use parameter with the same name/position, SQLiteStudio will pre-initialize it with most recent memorized value (you will still be able to change it). Value of 1000 should be sufficient.</p></string>
</property>
<property name="maximum">
<number>999999</number>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.BindParamsCacheSize</string>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QCheckBox" name="execQueryUnderCursorCheck">
<property name="toolTip">
<string><html><head/><body><p>If there is more than one query in the SQL editor window, then (if this option is enabled) only a single query will be executed - the one under the keyboard insertion cursor. Otherwise all queries will be executed. You can always limit queries to be executed by selecting those queries before calling to execute. You can also use dedicated shortcuts for executing in one mode or the other (currently configured to %1 for single query execution and %2 for all queries execution).</p></body></html></string>
</property>
<property name="text">
<string>Execute only the query under the cursor</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.ExecuteCurrentQueryOnly</string>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="queryHistorySizeLabel">
<property name="toolTip">
<string>Number of queries kept in the history.</string>
</property>
<property name="text">
<string>History size:</string>
</property>
</widget>
</item>
<item row="5" column="0">
<widget class="QCheckBox" name="wrapLinesInSqlEditorCheck">
<property name="toolTip">
<string><html><head/><body><p>If enabled, lines longer than the editor width will be wrapped, so horizontal scrolling will not be needed.</p></body></html></string>
</property>
<property name="text">
<string>Wrap lines in SQL editor</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.SqlEditorWrapWords</string>
</property>
</widget>
</item>
<item row="4" column="0">
<widget class="QCheckBox" name="highlightCurrentQueryCheck">
<property name="toolTip">
<string><html><head/><body><p>Highlights entire query that is currently under the insertion cursor. It's the same query that will be executed when you hit &quot;Execute query&quot; hotkey or button (unless configured otherwise).</p></body></html></string>
</property>
<property name="text">
<string>Highlight current query</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.SqlEditorCurrQueryHighlight</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="updatesGroup">
<property name="title">
<string>Updates</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_29">
<item>
<widget class="QCheckBox" name="checkForUpdatesCheck">
<property name="text">
<string>Automatically check for updates at startup</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.CheckUpdatesOnStartup</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="sessionGroup">
<property name="title">
<string>Session</string>
</property>
<layout class="QGridLayout" name="gridLayout_11">
<item row="0" column="0">
<widget class="QCheckBox" name="sessionCheck">
<property name="text">
<string>Restore last session (active MDI windows) after startup</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.RestoreSession</string>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QCheckBox" name="multipleSessionsCheck">
<property name="text">
<string>Allow multiple instances of the application at the same time</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.AllowMultipleSessions</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="statusFieldGroup_2">
<property name="title">
<string>Status Field</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_35">
<item>
<widget class="QCheckBox" name="checkBox_2">
<property name="toolTip">
<string><p>When user manually closes the Status panel, this option makes sure that if any new message is printed in the Status panel it will be reopened. If it's disabled, then Status panel can only be open manually by the user from the "View" menu.</p></string>
</property>
<property name="text">
<string>Always open Status panel when new message is printed</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.AutoOpenStatusField</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
<widget class="QWidget" name="codeColorsPage">
<layout class="QGridLayout" name="gridLayout_6">
<property name="horizontalSpacing">
<number>15</number>
</property>
<item row="0" column="2">
<widget class="QTabWidget" name="codeColorsPreviewTabWidget"/>
</item>
<item row="2" column="0" colspan="3">
<spacer name="codeColorsSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
<item row="0" column="0" colspan="2">
<widget class="QGroupBox" name="commonCodeColorsGroup">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="title">
<string>Code syntax colors</string>
</property>
<layout class="QGridLayout" name="gridLayout_3">
<item row="3" column="0">
<widget class="QCheckBox" name="keywordFgCheck">
<property name="text">
<string>Keyword foreground</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">Colors.SyntaxKeywordFgCustom</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="ColorButton" name="regularFgBtn">
<property name="maximumSize">
<size>
<width>50</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string notr="true"/>
</property>
<property name="cfg" stdset="0">
<string notr="true">Colors.SyntaxForeground</string>
</property>
</widget>
</item>
<item row="11" column="1">
<widget class="ColorButton" name="blobFgBtn">
<property name="maximumSize">
<size>
<width>50</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string notr="true"/>
</property>
<property name="cfg" stdset="0">
<string notr="true">Colors.SyntaxBlobFg</string>
</property>
</widget>
</item>
<item row="3" column="1">
<widget class="ColorButton" name="keywordFgBtn">
<property name="maximumSize">
<size>
<width>50</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string notr="true"/>
</property>
<property name="cfg" stdset="0">
<string notr="true">Colors.SyntaxKeywordFg</string>
</property>
</widget>
</item>
<item row="9" column="1">
<widget class="ColorButton" name="validObjectsFgBtn">
<property name="maximumSize">
<size>
<width>50</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string notr="true"/>
</property>
<property name="cfg" stdset="0">
<string notr="true">Colors.SyntaxValidObject</string>
</property>
</widget>
</item>
<item row="7" column="1">
<widget class="ColorButton" name="commentFgBtn">
<property name="maximumSize">
<size>
<width>50</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string notr="true"/>
</property>
<property name="cfg" stdset="0">
<string notr="true">Colors.SyntaxCommentFg</string>
</property>
</widget>
</item>
<item row="0" column="0">
<widget class="QCheckBox" name="regularFgCheck">
<property name="text">
<string>Regular foreground</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">Colors.SyntaxForegroundCustom</string>
</property>
</widget>
</item>
<item row="7" column="0">
<widget class="QCheckBox" name="commentFgCheck">
<property name="text">
<string>Comment foreground</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">Colors.SyntaxCommentFgCustom</string>
</property>
</widget>
</item>
<item row="5" column="1">
<widget class="ColorButton" name="numberFgBtn">
<property name="maximumSize">
<size>
<width>50</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string notr="true"/>
</property>
<property name="cfg" stdset="0">
<string notr="true">Colors.SyntaxNumberFg</string>
</property>
</widget>
</item>
<item row="5" column="0">
<widget class="QCheckBox" name="numberFgCheck">
<property name="text">
<string>Number foreground</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">Colors.SyntaxNumberFgCustom</string>
</property>
</widget>
</item>
<item row="19" column="1">
<widget class="ColorButton" name="matchedParBgBtn">
<property name="maximumSize">
<size>
<width>50</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string notr="true"/>
</property>
<property name="cfg" stdset="0">
<string notr="true">Colors.SyntaxParenthesisBg</string>
</property>
</widget>
</item>
<item row="9" column="0">
<widget class="QCheckBox" name="validObjectsFkCheck">
<property name="text">
<string>Valid objects foreground</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">Colors.SyntaxValidObjectCustom</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="ColorButton" name="stringFgBtn">
<property name="maximumSize">
<size>
<width>50</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string notr="true"/>
</property>
<property name="cfg" stdset="0">
<string notr="true">Colors.SyntaxStringFg</string>
</property>
</widget>
</item>
<item row="17" column="1">
<widget class="ColorButton" name="currQueryBgBtn">
<property name="maximumSize">
<size>
<width>50</width>
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string><html><head/><body><p>You can disable current query highlighting entirely on the General settings page.</p></body></html></string>
</property>
<property name="text">
<string notr="true"/>
</property>
<property name="cfg" stdset="0">
<string notr="true">Colors.SyntaxCurrentQueryBg</string>
</property>
</widget>
</item>
<item row="11" column="0">
<widget class="QCheckBox" name="blobFgCheck">
<property name="text">
<string>BLOB value foreground</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">Colors.SyntaxBlobFgCustom</string>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QCheckBox" name="stringFgCheck">
<property name="text">
<string>String foreground</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">Colors.SyntaxStringFgCustom</string>
</property>
</widget>
</item>
<item row="15" column="1">
<widget class="ColorButton" name="currLineBgBtn">
<property name="maximumSize">
<size>
<width>50</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string notr="true"/>
</property>
<property name="cfg" stdset="0">
<string notr="true">Colors.SyntaxCurrentLineBg</string>
</property>
</widget>
</item>
<item row="21" column="1">
<widget class="ColorButton" name="matchedParFgBtn">
<property name="text">
<string notr="true"/>
</property>
<property name="cfg" stdset="0">
<string notr="true">Colors.SyntaxParenthesisFg</string>
</property>
</widget>
</item>
<item row="13" column="0">
<widget class="QCheckBox" name="bindParamFgCheck">
<property name="text">
<string>Bind parameter foreground</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">Colors.SyntaxBindParamFgCustom</string>
</property>
</widget>
</item>
<item row="13" column="1">
<widget class="ColorButton" name="bindParamFgBtn">
<property name="maximumSize">
<size>
<width>50</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string notr="true"/>
</property>
<property name="cfg" stdset="0">
<string notr="true">Colors.SyntaxBindParamFg</string>
</property>
</widget>
</item>
<item row="15" column="0">
<widget class="QCheckBox" name="currLineBgCheck">
<property name="text">
<string>Current line background</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">Colors.SyntaxCurrentLineBgCustom</string>
</property>
</widget>
</item>
<item row="17" column="0">
<widget class="QCheckBox" name="currQueryBgCheck">
<property name="text">
<string>Current query background</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">Colors.SyntaxCurrentQueryBgCustom</string>
</property>
</widget>
</item>
<item row="19" column="0">
<widget class="QCheckBox" name="matchedParBgCheck">
<property name="text">
<string>Matched parenthesis background</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">Colors.SyntaxParenthesisBgCustom</string>
</property>
</widget>
</item>
<item row="21" column="0">
<widget class="QCheckBox" name="matchedParFgCheck">
<property name="text">
<string>Matched parenthesis foreground</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">Colors.SyntaxParenthesisFgCustom</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item row="1" column="0" colspan="3">
<widget class="QFrame" name="frame">
<property name="frameShape">
<enum>QFrame::NoFrame</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_3">
<property name="spacing">
<number>0</number>
</property>
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item alignment="Qt::AlignRight">
<widget class="QPushButton" name="codeColorsResetBtn">
<property name="text">
<string>Reset to defaults</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="shortcutsPage">
<layout class="QVBoxLayout" name="verticalLayout_28">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QLineEdit" name="shortcutsFilterEdit">
<property name="placeholderText">
<string>Filter shortcuts by name or key combination</string>
</property>
</widget>
</item>
<item>
<widget class="QTreeWidget" name="shortcutsTable">
<property name="focusPolicy">
<enum>Qt::NoFocus</enum>
</property>
<property name="editTriggers">
<set>QAbstractItemView::NoEditTriggers</set>
</property>
<property name="showDropIndicator" stdset="0">
<bool>false</bool>
</property>
<property name="selectionMode">
<enum>QAbstractItemView::NoSelection</enum>
</property>
<property name="indentation">
<number>0</number>
</property>
<property name="rootIsDecorated">
<bool>false</bool>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
<property name="expandsOnDoubleClick">
<bool>false</bool>
</property>
<attribute name="headerMinimumSectionSize">
<number>16</number>
</attribute>
<attribute name="headerDefaultSectionSize">
<number>150</number>
</attribute>
<attribute name="headerStretchLastSection">
<bool>false</bool>
</attribute>
<column>
<property name="text">
<string>Action</string>
</property>
</column>
<column>
<property name="text">
<string>Key combination</string>
</property>
</column>
<column>
<property name="text">
<string notr="true"/>
</property>
</column>
<column>
<property name="text">
<string notr="true"/>
</property>
</column>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="lookAndFeelPage">
<layout class="QVBoxLayout" name="verticalLayout_7">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QScrollArea" name="lookAndFeelScroll">
<property name="widgetResizable">
<bool>true</bool>
</property>
<widget class="QWidget" name="lookAndFeelScrollWidget">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>389</width>
<height>288</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout_31">
<item>
<widget class="QGroupBox" name="langGroup">
<property name="title">
<string>Language</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_30">
<item>
<widget class="QLabel" name="label">
<property name="text">
<string>Changing language requires application restart to take effect.</string>
</property>
</widget>
</item>
<item>
<widget class="QComboBox" name="langCombo">
<property name="cfg" stdset="0">
<string notr="true">General.Language</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="compactLayoutGroup">
<property name="title">
<string>Compact layout</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_32">
<item>
<widget class="QCheckBox" name="compactLayoutCheck">
<property name="toolTip">
<string><p>Compact layout reduces all margins and spacing on the UI to minimum, making space for displaying more data. It makes the interface a little bit less aesthetic, but allows to display more data at once.</p></string>
</property>
<property name="text">
<string>Use compact layout</string>
</property>
<property name="checked">
<bool>true</bool>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.CompactLayout</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="dockLayoutGroup">
<property name="title">
<string>Main window dock areas</string>
</property>
<layout class="QGridLayout" name="gridLayout_13">
<item row="0" column="0">
<widget class="ConfigRadioButton" name="dockLayoutVertical">
<property name="text">
<string>Left and right areas occupy corners</string>
</property>
<property name="icon">
<iconset resource="../icons.qrc">
<normaloff>:/icons/img/dock_layout_vertical.png</normaloff>:/icons/img/dock_layout_vertical.png</iconset>
</property>
<property name="checked">
<bool>true</bool>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.DockLayout</string>
</property>
<property name="assignedValue" stdset="0">
<string notr="true">vertical</string>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="ConfigRadioButton" name="dockLeyoutHorizontal">
<property name="text">
<string>Top and bottom areas occupy corners</string>
</property>
<property name="icon">
<iconset resource="../icons.qrc">
<normaloff>:/icons/img/dock_layout_horizontal.png</normaloff>:/icons/img/dock_layout_horizontal.png</iconset>
</property>
<property name="cfg" stdset="0">
<string notr="true">General.DockLayout</string>
</property>
<property name="assignedValue" stdset="0">
<string notr="true">horizontal</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<spacer name="verticalSpacer_5">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="pluginsPage">
<layout class="QGridLayout" name="gridLayout_18">
<property name="topMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item row="1" column="0" colspan="2">
<widget class="QTreeWidget" name="pluginsList">
<property name="focusPolicy">
<enum>Qt::NoFocus</enum>
</property>
<property name="editTriggers">
<set>QAbstractItemView::NoEditTriggers</set>
</property>
<property name="showDropIndicator" stdset="0">
<bool>false</bool>
</property>
<property name="selectionMode">
<enum>QAbstractItemView::NoSelection</enum>
</property>
<property name="verticalScrollMode">
<enum>QAbstractItemView::ScrollPerPixel</enum>
</property>
<property name="indentation">
<number>0</number>
</property>
<property name="rootIsDecorated">
<bool>false</bool>
</property>
<property name="expandsOnDoubleClick">
<bool>false</bool>
</property>
<property name="columnCount">
<number>2</number>
</property>
<attribute name="headerVisible">
<bool>false</bool>
</attribute>
<attribute name="headerStretchLastSection">
<bool>false</bool>
</attribute>
<column>
<property name="text">
<string notr="true">1</string>
</property>
</column>
<column>
<property name="text">
<string notr="true">2</string>
</property>
</column>
</widget>
</item>
<item row="0" column="0" colspan="2">
<widget class="QWidget" name="hideBuiltInPluginsWidget" native="true">
<layout class="QHBoxLayout" name="horizontalLayout_2">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QCheckBox" name="hideBuiltInPluginsCheck">
<property name="text">
<string>Hide built-in plugins</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="stylePage">
<layout class="QVBoxLayout" name="verticalLayout_6">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QWidget" name="activeStyleWidget" native="true">
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QLabel" name="activeStyleLabel">
<property name="text">
<string>Current style:</string>
</property>
</widget>
</item>
<item>
<widget class="QComboBox" name="activeStyleCombo">
<property name="cfg" stdset="0">
<string notr="true">General.Style</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="activeStylePreviewGroup">
<property name="title">
<string>Preview</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_8">
<item>
<widget class="QTabWidget" name="previewTabs">
<property name="currentIndex">
<number>0</number>
</property>
<widget class="QWidget" name="previewTab1">
<attribute name="title">
<string>Enabled</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
<widget class="QWidget" name="previewWidget" native="true">
<layout class="QGridLayout" name="gridLayout_8">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item row="2" column="0">
<widget class="QProgressBar" name="previewProgressBar">
<property name="value">
<number>24</number>
</property>
</widget>
</item>
<item row="1" column="6">
<widget class="QCheckBox" name="previewCheckBox">
<property name="text">
<string notr="true">CheckBox</string>
</property>
</widget>
</item>
<item row="0" column="1" rowspan="4">
<widget class="QSlider" name="previewVerticalSlider">
<property name="value">
<number>50</number>
</property>
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
</widget>
</item>
<item row="0" column="2" rowspan="4">
<widget class="QScrollBar" name="previewVerticalScrollBar">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
</widget>
</item>
<item row="0" column="3" colspan="2">
<widget class="QPushButton" name="previewPushButton">
<property name="text">
<string notr="true">PushButton</string>
</property>
</widget>
</item>
<item row="1" column="3" colspan="3">
<widget class="QSpinBox" name="previewSpinBox"/>
</item>
<item row="2" column="3" colspan="5">
<widget class="QProgressBar" name="progressBar">
<property name="maximum">
<number>0</number>
</property>
<property name="value">
<number>0</number>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QTreeWidget" name="previewTreeWidget">
<column>
<property name="text">
<string notr="true">Column</string>
</property>
</column>
<item>
<property name="text">
<string notr="true">123</string>
</property>
<item>
<property name="text">
<string notr="true">11111</string>
</property>
</item>
<item>
<property name="text">
<string notr="true">22222</string>
</property>
</item>
<item>
<property name="text">
<string notr="true">33333</string>
</property>
</item>
</item>
<item>
<property name="text">
<string notr="true">456</string>
</property>
<item>
<property name="text">
<string notr="true">44444</string>
</property>
</item>
<item>
<property name="text">
<string notr="true">55555</string>
</property>
</item>
<item>
<property name="text">
<string notr="true">66666</string>
</property>
</item>
</item>
</widget>
</item>
<item row="0" column="5">
<widget class="QToolButton" name="previewToolButton">
<property name="text">
<string notr="true">...</string>
</property>
</widget>
</item>
<item row="0" column="0">
<widget class="QLineEdit" name="previewLineEdit"/>
</item>
<item row="0" column="6">
<widget class="QRadioButton" name="previewRadioButton">
<property name="text">
<string notr="true">RadioButton</string>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QComboBox" name="previewComboBox">
<property name="currentText">
<string notr="true">ABC</string>
</property>
<item>
<property name="text">
<string notr="true">ABC</string>
</property>
</item>
<item>
<property name="text">
<string notr="true">XYZ</string>
</property>
</item>
</widget>
</item>
<item row="3" column="3" colspan="5">
<widget class="QTextEdit" name="previewTextEdit">
<property name="html">
<string notr="true"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css">
p, li { white-space: pre-wrap; }
hr { height: 1px; border-width: 0; }
li.unchecked::marker { content: "\2610"; }
li.checked::marker { content: "\2612"; }
</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Abcdefgh</span></p></body></html></string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="previewTab2">
<attribute name="title">
<string>Disabled</string>
</attribute>
<layout class="QGridLayout" name="gridLayout_7"/>
</widget>
</widget>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="formatterPluginsPage">
<layout class="QVBoxLayout" name="verticalLayout_17">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QTreeWidget" name="formatterPluginsTree">
<property name="alternatingRowColors">
<bool>true</bool>
</property>
<property name="verticalScrollMode">
<enum>QAbstractItemView::ScrollPerPixel</enum>
</property>
<property name="rootIsDecorated">
<bool>false</bool>
</property>
<property name="itemsExpandable">
<bool>false</bool>
</property>
<attribute name="headerStretchLastSection">
<bool>false</bool>
</attribute>
<column>
<property name="text">
<string>Language</string>
</property>
</column>
<column>
<property name="text">
<string>Active formatter plugin</string>
</property>
</column>
<column>
<property name="text">
<string>Configuration</string>
</property>
</column>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="fontsPage">
<layout class="QVBoxLayout" name="verticalLayout_4">
<item>
<widget class="QScrollArea" name="fontsScrollArea">
<property name="frameShape">
<enum>QFrame::NoFrame</enum>
</property>
<property name="lineWidth">
<number>0</number>
</property>
<property name="widgetResizable">
<bool>true</bool>
</property>
<widget class="QWidget" name="fontsWidget">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>235</width>
<height>318</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout_9">
<item>
<widget class="QGroupBox" name="sqlEditorFontGroup">
<property name="title">
<string>SQL editor font</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_10">
<item>
<widget class="FontEdit" name="sqlEditorFont" native="true">
<property name="cfg" stdset="0">
<string notr="true">Fonts.SqlEditor</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="dbTreeFontGroup">
<property name="title">
<string>Database list font</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_13">
<item>
<widget class="FontEdit" name="dbTreeFont" native="true">
<property name="cfg" stdset="0">
<string notr="true">Fonts.DbTree</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="dbTreeLabelGroup">
<property name="title">
<string>Database list additional label font</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_14">
<item>
<widget class="FontEdit" name="dbTreeLabelFont" native="true">
<property name="cfg" stdset="0">
<string notr="true">Fonts.DbTreeLabel</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="dataViewFontGroup">
<property name="title">
<string>Data view font</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_15">
<item>
<widget class="FontEdit" name="dataViewFont" native="true">
<property name="cfg" stdset="0">
<string notr="true">Fonts.DataView</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="statusFieldFontGroup">
<property name="title">
<string>Status field font</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_16">
<item>
<widget class="FontEdit" name="statusFieldfont" native="true">
<property name="cfg" stdset="0">
<string notr="true">Fonts.StatusField</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<spacer name="verticalSpacer_2">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="codeAssistantPage">
<layout class="QGridLayout" name="gridLayout_10">
<item row="0" column="0">
<widget class="QGroupBox" name="codeAssistantGroup">
<property name="title">
<string>Code assistant settings</string>
</property>
<layout class="QGridLayout" name="gridLayout_14">
<item row="0" column="0">
<widget class="QCheckBox" name="autoTriggerAssistantCheck">
<property name="toolTip">
<string><html><head/><body><p>If this option is enabled, the code assistant will be triggered in cases, when user types for example <span style=" font-weight:700;">tableName.</span> to propose columns of the table. If the option is disabled, user will have to hit the assistant hotkey explicitly.</p></body></html></string>
</property>
<property name="text">
<string>Automatically trigger the assistant after a dot is typed after an object name</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">CodeAssistant.AutoTrigger</string>
</property>
</widget>
</item>
<item row="1" column="0">
<spacer name="codeAssistantSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
</widget>
</widget>
</item>
</layout>
</widget>
</item>
<item row="4" column="0">
<widget class="QDialogButtonBox" name="buttonBox">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="standardButtons">
<set>QDialogButtonBox::Apply|QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
</property>
</widget>
</item>
</layout>
</widget>
<customwidgets>
<customwidget>
<class>ConfigRadioButton</class>
<extends>QRadioButton</extends>
<header>common/configradiobutton.h</header>
</customwidget>
<customwidget>
<class>FontEdit</class>
<extends>QWidget</extends>
<header>common/fontedit.h</header>
<container>1</container>
</customwidget>
<customwidget>
<class>ColorButton</class>
<extends>QPushButton</extends>
<header>common/colorbutton.h</header>
</customwidget>
</customwidgets>
<tabstops>
<tabstop>categoriesFilter</tabstop>
<tabstop>categoriesTree</tabstop>
<tabstop>pluginsList</tabstop>
<tabstop>buttonBox</tabstop>
<tabstop>expandViewsCheck</tabstop>
<tabstop>sortObjects</tabstop>
<tabstop>sortColumns</tabstop>
<tabstop>ddlHistorySizeSpin</tabstop>
<tabstop>dontShowDdlPreview</tabstop>
<tabstop>queryHistorySizeSpin</tabstop>
<tabstop>execQueryUnderCursorCheck</tabstop>
<tabstop>expandTablesCheck</tabstop>
<tabstop>activeStyleCombo</tabstop>
<tabstop>previewTabs</tabstop>
<tabstop>previewCheckBox</tabstop>
<tabstop>previewVerticalSlider</tabstop>
<tabstop>previewPushButton</tabstop>
<tabstop>previewSpinBox</tabstop>
<tabstop>previewTreeWidget</tabstop>
<tabstop>previewToolButton</tabstop>
<tabstop>previewLineEdit</tabstop>
<tabstop>previewRadioButton</tabstop>
<tabstop>previewComboBox</tabstop>
<tabstop>previewTextEdit</tabstop>
<tabstop>fontsScrollArea</tabstop>
</tabstops>
<resources>
<include location="../icons.qrc"/>
</resources>
<connections>
<connection>
<sender>buttonBox</sender>
<signal>accepted()</signal>
<receiver>ConfigDialog</receiver>
<slot>accept()</slot>
<hints>
<hint type="sourcelabel">
<x>248</x>
<y>254</y>
</hint>
<hint type="destinationlabel">
<x>157</x>
<y>274</y>
</hint>
</hints>
</connection>
<connection>
<sender>buttonBox</sender>
<signal>rejected()</signal>
<receiver>ConfigDialog</receiver>
<slot>reject()</slot>
<hints>
<hint type="sourcelabel">
<x>316</x>
<y>260</y>
</hint>
<hint type="destinationlabel">
<x>286</x>
<y>274</y>
</hint>
</hints>
</connection>
</connections>
</ui>
|