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 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368
|
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ControlBox</class>
<widget class="QDialog" name="ControlBox">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>860</width>
<height>876</height>
</rect>
</property>
<property name="minimumSize">
<size>
<width>530</width>
<height>475</height>
</size>
</property>
<property name="windowTitle">
<string>Dialog</string>
</property>
<property name="sizeGripEnabled">
<bool>true</bool>
</property>
<layout class="QVBoxLayout" name="verticalLayout_11">
<item>
<widget class="QTabWidget" name="tabWidget">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="MinimumExpanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="whatsThis">
<string><html><head/><body><p><br/></p></body></html></string>
</property>
<property name="currentIndex">
<number>0</number>
</property>
<property name="movable">
<bool>true</bool>
</property>
<widget class="QWidget" name="Status">
<property name="layoutDirection">
<enum>Qt::LeftToRight</enum>
</property>
<attribute name="title">
<string>&Status</string>
</attribute>
<layout class="QGridLayout" name="gridLayout_3">
<item row="2" column="0">
<widget class="QScrollArea" name="scrollArea_5">
<property name="widgetResizable">
<bool>true</bool>
</property>
<widget class="QWidget" name="scrollAreaWidgetContents_7">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>818</width>
<height>778</height>
</rect>
</property>
<layout class="QGridLayout" name="gridLayout_2">
<item row="0" column="0">
<widget class="QGroupBox" name="groupBox_global_properties">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Maximum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="whatsThis">
<string><html><head/><body><p><span style=" font-weight:600;">OfflineMode</span></p><p>The offline mode indicates the global setting for switching all radios on or off. Changing offline mode to true results in powering down all devices. When leaving offline mode the individual policy of each device decides to switch the radio back on or not. </p><p>During offline mode, it is still possible to switch certain technologies manually back on. For example the limited usage of WiFi or Bluetooth devices might be allowed in some situations.</p></body></html></string>
</property>
<property name="title">
<string>Global Properties</string>
</property>
<layout class="QGridLayout" name="gridLayout_16">
<item row="0" column="1">
<layout class="QGridLayout" name="gridLayout_18">
<item row="1" column="1">
<widget class="QLabel" name="label_offlinemode">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>1</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="whatsThis">
<string><html><head/><body><p>The global setting for switching all radios on or off. When offline mode is engaged all radios are powered down.</p><p>While in offline mode it is possible to turn individual devices back on. When leaving offline mode the individual policy of each device determines if the radio is turned back on or not.</p></body></html></string>
</property>
<property name="text">
<string>OfflineMode: Unavailable</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QLabel" name="label_state">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>1</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="whatsThis">
<string><html><head/><body><p>The global connection state of the system. Possible values are &quot;offline&quot;, &quot;idle&quot;, &quot;ready&quot;, and &quot;online&quot;. </p></body></html></string>
</property>
<property name="text">
<string>State: Unavailable</string>
</property>
</widget>
</item>
<item row="0" column="2" alignment="Qt::AlignRight">
<widget class="QCheckBox" name="checkBox_devicesoff">
<property name="whatsThis">
<string><html><head/><body><p>This checkbox controls the global setting for switching all radios on or off. When checked all radios are powered down.</p><p>When the system is In offline mode it is possible to turn individual devices back on. When leaving offline mode the individual policy of each device determines if the radio is turned back on or not.</p></body></html></string>
</property>
<property name="text">
<string>All Devices &Off</string>
</property>
</widget>
</item>
<item row="0" column="0">
<widget class="QLabel" name="label_state_pix">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="MinimumExpanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string/>
</property>
<property name="scaledContents">
<bool>false</bool>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QToolButton" name="toolButton_offlinemode">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="whatsThis">
<string><html><head/><body><p>The global setting for switching all radios on or off. When offline mode is engaged all radios are powered down.</p><p>While in offline mode it is possible to turn individual devices back on. When leaving offline mode the individual policy of each device determines if the radio is turned back on or not.</p></body></html></string>
</property>
<property name="text">
<string>...</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
</item>
<item row="1" column="0">
<widget class="QSplitter" name="splitter01">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="handleWidth">
<number>5</number>
</property>
<widget class="QGroupBox" name="groupBox_technologies">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="whatsThis">
<string><html><head/><body><p>Connman refers to hardware devices as technologies. This box will display information about all known technologies.</p><p>To turn a technology on or off click on the button that shows in the <span style=" font-weight:600;">Powered</span> column for the technology.</p><p>To tether a technology click the button in the <span style=" font-weight:600;">Tethering</span> column to on. When tethering is enabled the default service is bridged to all clients connected through the tethered technology. If the <span style=" font-weight:600;">Tethering</span> columns are not shown clear the check in <span style=" font-weight:600;">Less</span> checkbox below this window.</p><p>Note that by default wired connections cannot be tethered. This behavior can be overwritten in the connman.conf file. </p></body></html></string>
</property>
<property name="title">
<string>Technologies</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_3">
<item>
<widget class="QTableWidget" name="tableWidget_technologies">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="editTriggers">
<set>QAbstractItemView::NoEditTriggers</set>
</property>
<property name="showDropIndicator" stdset="0">
<bool>false</bool>
</property>
<property name="dragDropOverwriteMode">
<bool>false</bool>
</property>
<property name="selectionMode">
<enum>QAbstractItemView::SingleSelection</enum>
</property>
<property name="selectionBehavior">
<enum>QAbstractItemView::SelectRows</enum>
</property>
<property name="showGrid">
<bool>false</bool>
</property>
<property name="cornerButtonEnabled">
<bool>false</bool>
</property>
<attribute name="horizontalHeaderCascadingSectionResizes">
<bool>true</bool>
</attribute>
<attribute name="horizontalHeaderMinimumSectionSize">
<number>75</number>
</attribute>
<attribute name="horizontalHeaderDefaultSectionSize">
<number>100</number>
</attribute>
<attribute name="horizontalHeaderStretchLastSection">
<bool>true</bool>
</attribute>
<attribute name="verticalHeaderVisible">
<bool>false</bool>
</attribute>
<attribute name="verticalHeaderHighlightSections">
<bool>false</bool>
</attribute>
<column>
<property name="text">
<string>Name</string>
</property>
</column>
<column>
<property name="text">
<string>Type</string>
</property>
</column>
<column>
<property name="text">
<string>Powered</string>
</property>
</column>
<column>
<property name="text">
<string>Connected</string>
</property>
</column>
<column>
<property name="text">
<string>Tethering</string>
</property>
</column>
<column>
<property name="text">
<string>ID:Password</string>
</property>
</column>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout_5">
<item>
<widget class="QPushButton" name="pushButton_rescanwifi01">
<property name="whatsThis">
<string><html><head/><body><p>Force a rescan of all WiFi technologies. This is similar to issuing the command <span style=" font-weight:600;">connmanctl scan wifi</span> from the command line.</p><p>The button will become inactive while the scan is occuring.</p></body></html></string>
</property>
<property name="text">
<string>Resc&an</string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>293</width>
<height>17</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QPushButton" name="pushButton_IDPass">
<property name="whatsThis">
<string><html><head/><body><p>To edit the ID and Password of a tethered WiFi device click this button.</p><p>The ID and Password are what clients will have to enter to connect to the ad-hoc network. This is only valid for WiFi connections</p></body></html></string>
</property>
<property name="text">
<string>ID:Pass</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="checkBox_hidetethering">
<property name="whatsThis">
<string><html><head/><body><p>When checked the tethering columns will be hidden.</p></body></html></string>
</property>
<property name="text">
<string>Less</string>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
<widget class="QGroupBox" name="groupBox_services">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="whatsThis">
<string><html><head/><body><p>This box lists all services that connman can connect to.</p></body></html></string>
</property>
<property name="title">
<string>Services</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_6">
<item>
<widget class="QTableWidget" name="tableWidget_services">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="editTriggers">
<set>QAbstractItemView::NoEditTriggers</set>
</property>
<property name="showDropIndicator" stdset="0">
<bool>false</bool>
</property>
<property name="dragDropOverwriteMode">
<bool>false</bool>
</property>
<property name="selectionMode">
<enum>QAbstractItemView::SingleSelection</enum>
</property>
<property name="selectionBehavior">
<enum>QAbstractItemView::SelectRows</enum>
</property>
<property name="showGrid">
<bool>false</bool>
</property>
<property name="cornerButtonEnabled">
<bool>false</bool>
</property>
<attribute name="horizontalHeaderCascadingSectionResizes">
<bool>true</bool>
</attribute>
<attribute name="horizontalHeaderMinimumSectionSize">
<number>75</number>
</attribute>
<attribute name="horizontalHeaderDefaultSectionSize">
<number>100</number>
</attribute>
<attribute name="horizontalHeaderStretchLastSection">
<bool>true</bool>
</attribute>
<attribute name="verticalHeaderVisible">
<bool>false</bool>
</attribute>
<attribute name="verticalHeaderHighlightSections">
<bool>false</bool>
</attribute>
<column>
<property name="text">
<string>Name</string>
</property>
</column>
<column>
<property name="text">
<string>Type</string>
</property>
</column>
<column>
<property name="text">
<string>State</string>
</property>
</column>
<column>
<property name="text">
<string>Connection</string>
</property>
</column>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout_3">
<item>
<widget class="QPushButton" name="pushButton_movebefore">
<property name="enabled">
<bool>false</bool>
</property>
<property name="whatsThis">
<string><html><head/><body><p>Move the selected service before another in the list.</p><p>The button will only become active if the selected service can be moved and if there is another valid service which it can be used as a target.</p></body></html></string>
</property>
<property name="text">
<string>Move Before</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="pushButton_moveafter">
<property name="enabled">
<bool>false</bool>
</property>
<property name="whatsThis">
<string><html><head/><body><p>Move the selected service after another in the list.</p><p>The button will only become active if the selected service can be moved and if there is another valid service which it can be used as a target.</p></body></html></string>
</property>
<property name="text">
<string>Move After</string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_7">
<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="checkBox_hidecnxn">
<property name="whatsThis">
<string><html><head/><body><p>When checked hide the connection name in the Services box.</p></body></html></string>
</property>
<property name="text">
<string>&Less</string>
</property>
<property name="checked">
<bool>false</bool>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
</widget>
</item>
</layout>
</widget>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="Details">
<property name="whatsThis">
<string><html><head/><body><p>This page will show the details of the service selected in the box at the top. If the selected service is not in the READY or ONLINE state then most of the details will be blank. </p><p>You may override service details by using the <span style=" font-weight:600;">Configuration</span> button at the bottom right. </p></body></html></string>
</property>
<attribute name="title">
<string>&Details</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
<widget class="QLabel" name="label_service">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Ser&vice</string>
</property>
<property name="buddy">
<cstring>comboBox_service</cstring>
</property>
</widget>
</item>
<item>
<widget class="QComboBox" name="comboBox_service">
<property name="whatsThis">
<string><html><head/><body><p>Use this Combobox to select the service for which you wish to view the detailed information.<br/></p></body></html></string>
</property>
</widget>
</item>
<item>
<widget class="QScrollArea" name="scrollArea_2">
<property name="toolTip">
<string><html><head/><body><p><br/></p></body></html></string>
</property>
<property name="widgetResizable">
<bool>true</bool>
</property>
<widget class="QWidget" name="scrollAreaWidgetContents_5">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>818</width>
<height>697</height>
</rect>
</property>
<layout class="QVBoxLayout" name="_2">
<item>
<widget class="QLabel" name="label_details_connection">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string/>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
</property>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout_7">
<item>
<widget class="QLabel" name="label_details_left">
<property name="text">
<string/>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_details_right">
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
</property>
</widget>
</item>
</layout>
</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>
<item>
<layout class="QHBoxLayout" name="horizontalLayout_6">
<item>
<spacer name="horizontalSpacer_8">
<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="QPushButton" name="pushButton_configuration">
<property name="whatsThis">
<string><html><head/><body><p>The default configuration method for all services is automatic or something like DHCP. This should be good enough for most typical usage, but if it is not this button will allow manual configuration of Ethernet and IP settings for the selected Service.</p><p>This button will be disabled if the service is provisioned via an external config file or if the service is of type VPN. It is not possible to modify the properties of these services.</p></body></html></string>
</property>
<property name="text">
<string>Configuration</string>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
<widget class="QWidget" name="Wireless">
<property name="whatsThis">
<string><html><head/><body><p><br/></p></body></html></string>
</property>
<attribute name="title">
<string>&Wireless</string>
</attribute>
<layout class="QGridLayout" name="gridLayout_5">
<item row="1" column="0">
<widget class="QGroupBox" name="groupBox_wireless_utils">
<property name="title">
<string>Wireless Services</string>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_2">
<item>
<widget class="QPushButton" name="pushButton_connect">
<property name="whatsThis">
<string><html><head/><body><p>Select a wifi service in the table below and press this button to connect the service. </p><p>If there is only one wifi service listed in the table pressing this button will automatically select that service and attempt to connect. </p><p>If information about the service is needed, a passphrase for instance, you will be prompted for it. </p></body></html></string>
</property>
<property name="text">
<string>Connect</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="pushButton_disconnect">
<property name="whatsThis">
<string><html><head/><body><p>Select a wifi service in the table below and press this button to disconnect it. </p><p>If there is only one wifi service in the &quot;ready&quot; or &quot;online&quot; state pressing this button will automatically select that service and disconnect it. </p><p>This may also be used to abort a previous connection attempt.</p></body></html></string>
</property>
<property name="text">
<string>Disconnect</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="pushButton_remove">
<property name="whatsThis">
<string><html><head/><body><p>Select a wifi service in the table below and press this button to remove the service. </p><p>If a service has previously been successfully connected (Favorite is true) this button will remove the Favorite property. The service will also be disconnected if it is currently connected. If the service required a passphrase then the passphrase it will be cleared and forgotten.</p><p>If a connection attempt failed this can slso be used to reset the service.</p></body></html></string>
</property>
<property name="text">
<string>Remove</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="pushButton_edit">
<property name="whatsThis">
<string><html><head/><body><p>Select a wifi service in the table below and press this button to edit the service. </p><p>The service must have previously been successfully connected (Favorite is true) for this button to work. Pressing <span style=" font-weight:600;">Edit</span> will remove the service and then request credentials to establish the connection. If the service is currently connected it will be disconnected first. If the service required a passphrase then the old passphrase it will be cleared and forgotten.</p><p>Connman does not provide any methods to retrieve credentials (passphrases, etc.) as that is insecure. CMST will not work around this protection. All this button really does is automate pressing the <span style=" font-weight:600;">Remove</span> and <span style=" font-weight:600;">Connect</span> buttons above. Make sure you know all of the credentials to reconnect as the existing credentials will be cleared when this button is pressed.</p></body></html></string>
</property>
<property name="text">
<string>Edit</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="pushButton_rescanwifi02">
<property name="whatsThis">
<string><html><head/><body><p>Force a rescan of all WiFi technologies. This is similar to issuing the command <span style=" font-weight:600;">connmanctl scan wifi</span> from the command line. This will also clear any selections in the table below.</p><p>The button will become inactive while the scan is occuring.</p></body></html></string>
</property>
<property name="text">
<string>Resc&an</string>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_wifi_state">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="whatsThis">
<string><html><head/><body><p>This label shows the number of WiFi technologies (devices) that were found, and the number that are powered on. There must be at least one WiFi technology found and powered in order for the box below to show services.</p><p>To turn a technology on or off go to the <span style=" font-weight:600;">Technologies</span> box in the <span style=" font-weight:600;">Status</span> tab and double click on the text that shows in the <span style=" font-weight:600;">Powered</span> column for the technology.</p></body></html></string>
</property>
<property name="text">
<string>Wifi State</string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_6">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
</item>
<item row="2" column="0">
<widget class="QTableWidget" name="tableWidget_wifi">
<property name="whatsThis">
<string><html><head/><body><p>This page shows the known WiFi services. </p><p><span style=" font-weight:600;">Name:</span> The SSID of the network.</p><p><span style=" font-weight:600;">Favorite:</span> A heart symbol in this column indicates that this computer has previously made a connection to the network using this service.</p><p><span style=" font-weight:600;">Connected:</span> Shows the connection state of this service. Hover the mouse over the icon to popup a text description. Online signals that an Internet connectionis available and has been verified. Ready signals a successfully connected device. </p><p><span style=" font-weight:600;">Security: </span>Describes the type of security used for this service. Possible values are &quot;none&quot;, &quot;wep&quot;, &quot;psk&quot;, &quot;ieee8021x&quot;, and &quot;wps&quot;.</p><p><span style=" font-weight:600;">Signal Strength:</span> The strength of the WiFi signal, normalized to a scale of 0 to 100.</p><p><br/></p></body></html></string>
</property>
<property name="editTriggers">
<set>QAbstractItemView::NoEditTriggers</set>
</property>
<property name="showDropIndicator" stdset="0">
<bool>false</bool>
</property>
<property name="dragDropOverwriteMode">
<bool>false</bool>
</property>
<property name="selectionMode">
<enum>QAbstractItemView::SingleSelection</enum>
</property>
<property name="selectionBehavior">
<enum>QAbstractItemView::SelectRows</enum>
</property>
<property name="showGrid">
<bool>false</bool>
</property>
<property name="cornerButtonEnabled">
<bool>false</bool>
</property>
<property name="columnCount">
<number>5</number>
</property>
<attribute name="horizontalHeaderMinimumSectionSize">
<number>80</number>
</attribute>
<attribute name="horizontalHeaderStretchLastSection">
<bool>true</bool>
</attribute>
<attribute name="verticalHeaderVisible">
<bool>false</bool>
</attribute>
<attribute name="verticalHeaderHighlightSections">
<bool>false</bool>
</attribute>
<column>
<property name="text">
<string>Name</string>
</property>
</column>
<column>
<property name="text">
<string>Favorite</string>
</property>
</column>
<column>
<property name="text">
<string>Connected</string>
</property>
</column>
<column>
<property name="text">
<string>Security</string>
</property>
</column>
<column>
<property name="text">
<string>Signal Strength</string>
</property>
</column>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="VPN">
<property name="whatsThis">
<string><html><head/><body><p><br/></p></body></html></string>
</property>
<attribute name="title">
<string>&VPN</string>
</attribute>
<layout class="QGridLayout" name="gridLayout_13">
<item row="0" column="0">
<widget class="QGroupBox" name="groupBox_vpn_utils">
<property name="title">
<string>VPN Services</string>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_9">
<item>
<widget class="QPushButton" name="pushButton_vpn_connect">
<property name="enabled">
<bool>true</bool>
</property>
<property name="whatsThis">
<string><html><head/><body><p>Select a vpn service in the table below and press this button to connect the service. </p><p>If there is only one vpn service listed in the table pressing this button will automatically select that service and attempt to connect. </p><p>If information about the service is needed, a passphrase for instance, you will be prompted for it. </p></body></html></string>
</property>
<property name="text">
<string>Connect</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="pushButton_vpn_disconnect">
<property name="enabled">
<bool>true</bool>
</property>
<property name="whatsThis">
<string><html><head/><body><p>Select a vpn service in the table below and press this button to disconnect it. </p><p>If there is only one vpn service in the &quot;ready&quot; or &quot;online&quot; state pressing this button will automatically select that service and disconnect it. </p><p>This may also be used to abort a previous connection attempt.</p></body></html></string>
</property>
<property name="text">
<string>Disconnect</string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_10">
<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="QPushButton" name="pushButton_createvpn">
<property name="text">
<string>Create</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="pushButton_removevpn">
<property name="text">
<string>Remove</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item row="3" column="0">
<widget class="QTableWidget" name="tableWidget_vpn">
<property name="whatsThis">
<string><html><head/><body><p>This page shows the provisioned VPN services. Some cells in the table may only be available once a connection is estlablished. </p><p><span style=" font-weight:600;">Name:</span> The name given in the provisioning file.</p><p><span style=" font-weight:600;">Type:</span> The VPN type (OpenConnect, OpenVPN, PPTP, etc)</p><p><span style=" font-weight:600;">State:</span> Shows the connection state of this service. Hover the mouse over the icon to popup a text description. </p><p><span style=" font-weight:600;">Host: </span>VPN Host IP.</p><p><span style=" font-weight:600;">Domain:</span> The VPN Domain.<br/></p></body></html></string>
</property>
<property name="editTriggers">
<set>QAbstractItemView::NoEditTriggers</set>
</property>
<property name="showDropIndicator" stdset="0">
<bool>false</bool>
</property>
<property name="dragDropOverwriteMode">
<bool>false</bool>
</property>
<property name="selectionMode">
<enum>QAbstractItemView::SingleSelection</enum>
</property>
<property name="selectionBehavior">
<enum>QAbstractItemView::SelectRows</enum>
</property>
<property name="showGrid">
<bool>false</bool>
</property>
<property name="cornerButtonEnabled">
<bool>false</bool>
</property>
<property name="columnCount">
<number>5</number>
</property>
<attribute name="horizontalHeaderCascadingSectionResizes">
<bool>false</bool>
</attribute>
<attribute name="horizontalHeaderMinimumSectionSize">
<number>80</number>
</attribute>
<attribute name="horizontalHeaderStretchLastSection">
<bool>true</bool>
</attribute>
<attribute name="verticalHeaderVisible">
<bool>false</bool>
</attribute>
<attribute name="verticalHeaderHighlightSections">
<bool>false</bool>
</attribute>
<column>
<property name="text">
<string>Name</string>
</property>
</column>
<column>
<property name="text">
<string>Type</string>
</property>
</column>
<column>
<property name="text">
<string>State</string>
</property>
</column>
<column>
<property name="text">
<string>Host</string>
</property>
</column>
<column>
<property name="text">
<string>Connection</string>
</property>
</column>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="Counters">
<property name="whatsThis">
<string><html><head/><body><p><br/></p></body></html></string>
</property>
<attribute name="title">
<string>&Counters</string>
</attribute>
<layout class="QGridLayout" name="gridLayout_15">
<item row="0" column="0">
<widget class="QScrollArea" name="scrollArea_4">
<property name="widgetResizable">
<bool>true</bool>
</property>
<widget class="QWidget" name="scrollAreaWidgetContents_6">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>818</width>
<height>778</height>
</rect>
</property>
<layout class="QGridLayout" name="gridLayout_7">
<item row="0" column="0">
<widget class="QLabel" name="label_counter_service_name">
<property name="whatsThis">
<string><html><head/><body><p>The service being monitored by the counters.</p></body></html></string>
</property>
<property name="text">
<string>Service:</string>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QGroupBox" name="groupBox_home_counter">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>1</verstretch>
</sizepolicy>
</property>
<property name="whatsThis">
<string><html><head/><body><p><br/></p></body></html></string>
</property>
<property name="title">
<string>Home</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_4">
<item>
<widget class="QScrollArea" name="scrollArea_home_counter">
<property name="widgetResizable">
<bool>true</bool>
</property>
<widget class="QWidget" name="scrollAreaWidgetContents_2">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>774</width>
<height>312</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout_9">
<item>
<widget class="QLabel" name="label_home_counter">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="whatsThis">
<string><html><head/><body><p>Counters for the &quot;online&quot; service connection that is not marked roaming. </p><p>Counters may not always be available. The counters could have been disabled at the command line (-c or --disable-counters) or occasionally the connection will register &quot;ready&quot; instead of &quot;online&quot;. Online is a &quot;ready&quot; connection that has verified internet connectivity. It is possible to be online with only a &quot;ready&quot; connection, however the counters only work for they &quot;online&quot; connection.</p></body></html></string>
</property>
<property name="text">
<string>Counter not available.</string>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
</widget>
</item>
</layout>
</widget>
</item>
<item row="2" column="0">
<widget class="QGroupBox" name="groupBox_roaming_counter">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>1</verstretch>
</sizepolicy>
</property>
<property name="whatsThis">
<string><html><head/><body><p>Counters for the &quot;online&quot; service connection marked &quot;roaming&quot;.</p><p>In the case of cellular services this normally indicates connections to a foreign provider.</p><p>Counters may not always be available. The counters could have been disabled at the command line (-c or --disable-counters) or occasionally the connection will register &quot;ready&quot; instead of &quot;online&quot;. Online is a &quot;ready&quot; connection that has verified internet connectivity. It is possible to be online with only a &quot;ready&quot; connection, however the counters only work for they &quot;online&quot; connection.</p></body></html></string>
</property>
<property name="title">
<string>Roaming</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_5">
<item>
<widget class="QScrollArea" name="scrollArea_roaming_counter">
<property name="widgetResizable">
<bool>true</bool>
</property>
<widget class="QWidget" name="scrollAreaWidgetContents_3">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>774</width>
<height>312</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout_10">
<item>
<widget class="QLabel" name="label_roam_counter">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string>Counter not available.</string>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
</widget>
</item>
</layout>
</widget>
</item>
<item row="3" column="0">
<widget class="QLabel" name="label_counter_settings">
<property name="toolTip">
<string><html><head/><body><p>Counter Settings</p></body></html></string>
</property>
<property name="whatsThis">
<string><html><head/><body><p>The threshold values for counter updates (counter resolution). Data and time work together to define how often the fields are updated.</p></body></html></string>
</property>
<property name="text">
<string>Settings:</string>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="Preferences">
<attribute name="title">
<string>&Preferences</string>
</attribute>
<layout class="QGridLayout" name="gridLayout_14">
<item row="0" column="0">
<widget class="QScrollArea" name="scrollArea_3">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="widgetResizable">
<bool>true</bool>
</property>
<widget class="QWidget" name="scrollAreaWidgetContents_4">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>818</width>
<height>778</height>
</rect>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_4">
<item>
<layout class="QVBoxLayout" name="verticalLayout_7">
<item>
<widget class="QGroupBox" name="groupBox_preferencesinterface">
<property name="whatsThis">
<string><html><head/><body><p>Preferences for the interface are in this box.</p></body></html></string>
</property>
<property name="title">
<string>Interface</string>
</property>
<layout class="QGridLayout" name="gridLayout_12">
<item row="1" column="0" colspan="2">
<widget class="QCheckBox" name="checkBox_retainstate">
<property name="whatsThis">
<string><html><head/><body><p>If checked the state of the GUI will be restored from settings saved on disk. Settings include the geometry and position of the dialog and the current tab. </p><p>These settings will be used at next boot to restore the user interface to the way it was at shutdown.</p><p>The settings file is: ~<span style=" font-weight:600;">/.config/cmst/cmst.conf </span><br/>This is a standard ini type text file.</p></body></html></string>
</property>
<property name="text">
<string>Retain State</string>
</property>
</widget>
</item>
<item row="2" column="0" colspan="2">
<widget class="QCheckBox" name="checkBox_enableinterfacetooltips">
<property name="whatsThis">
<string><html><head/><body><p>If checked the display of tooltips will be enabled for the interface widgets.</p><p>Tooltips are the small popups that appear when you hover the mouse pointer over an area of the interface. </p></body></html></string>
</property>
<property name="text">
<string>Enable ToolTips (Interface)</string>
</property>
</widget>
</item>
<item row="3" column="0" colspan="2">
<widget class="QCheckBox" name="checkBox_resetcounters">
<property name="enabled">
<bool>true</bool>
</property>
<property name="whatsThis">
<string><html><head/><body><p>Normally counters are cumulative and will retain the connect time and the TX and RX counts between boots. </p><p>When this box is checked the counters will reset to zero every time CMST is started, and if CMST is running everytime a Connman service is started. </p></body></html></string>
</property>
<property name="text">
<string>Reset Counters</string>
</property>
</widget>
</item>
<item row="4" column="0" colspan="2">
<widget class="QCheckBox" name="checkBox_advanced">
<property name="whatsThis">
<string><html><head/><body><p>When checked additional controls for advanced users are displayed.</p></body></html></string>
</property>
<property name="text">
<string>Advanced Controls</string>
</property>
<property name="checked">
<bool>false</bool>
</property>
</widget>
</item>
<item row="5" column="0">
<layout class="QHBoxLayout" name="horizontalLayout_8">
<item>
<widget class="QLineEdit" name="lineEdit_colorize">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Fixed">
<horstretch>1</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="whatsThis">
<string><html><head/><body><p>Color in #RGB format to colorize the internal icons with.</p></body></html></string>
</property>
<property name="clearButtonEnabled">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_2">
<property name="whatsThis">
<string><html><head/><body><p>Internal icons can be colorized. You may select a color using the button to the left, or you may type in the #RGB color yourself.</p><p>If you type the entry it must have leading # sign. Example: #22aa44 </p></body></html></string>
</property>
<property name="text">
<string>Colorize</string>
</property>
</widget>
</item>
</layout>
</item>
<item row="0" column="0" colspan="2">
<widget class="QCheckBox" name="checkBox_usestartoptions">
<property name="enabled">
<bool>true</bool>
</property>
<property name="whatsThis">
<string><html><head/><body><p>If checked the Start Up Options in the right hand pane will be enabled. Start up options set in this pane will be read and used next time the program starts. Start up options are also available as command line switches and an option provided on the command line will take precedence over an option set in the right hand pane. The options in this pane are provided as a convienence to avoid the necessity of editing a systemd service or other start up file. </p><p>Settings are stored in<span style=" font-family:'Courier New,courier';">: ~</span><span style=" font-family:'Courier New,courier'; font-weight:600;">/.config/cmst/cmst.conf </span><span style=" font-family:'Courier New,courier';"><br/>This is a standard ini type text file.</span></p></body></html></string>
</property>
<property name="text">
<string>Enable Start Options from GUI (right hand pane)</string>
</property>
<property name="checked">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="groupBox_systemtray">
<property name="whatsThis">
<string><html><head/><body><p>Preferences for the system tray are in this box.</p></body></html></string>
</property>
<property name="title">
<string>System Tray</string>
</property>
<layout class="QGridLayout" name="gridLayout">
<item row="1" column="0">
<widget class="QCheckBox" name="checkBox_hideIconAuto">
<property name="whatsThis">
<string><html><head/><body><p>Hide the CMST tray icon during normal operations. Normal operations are defined as having the Global state in an <span style=" font-weight:600;">Online</span> or <span style=" font-weight:600;">Ready</span> mode. Any other state will cause the icon to be displayed in the system tray. CMST is still running even if the icon is hidden.</p><p>If CMST is minimized while the icon is hiddden you will need to start another instance CMST to get the interface back. This second instance will restore interface from the first instance and then immediately abort. </p><p>If CMST is minimized while the tray icon is visible then simply clicking the tray icon will restore the interface. </p></body></html></string>
</property>
<property name="text">
<string>Hide Tray Icon Unless Needed</string>
</property>
</widget>
</item>
<item row="0" column="0">
<widget class="QCheckBox" name="checkBox_hideIconFull">
<property name="whatsThis">
<string><html><head/><body><p>If checked the CMST icon will be hidden in the system tray. CMST is still running even if the icon is hidden.</p><p>If CMST is minimized while the icon is hiddden you will need to start another instance CMST to get the interface back. This second instance will restore interface from the first instance and then immediately abort. </p><p>If CMST is minimized while the tray icon is visible then simply clicking the tray icon will restore the interface. </p></body></html></string>
</property>
<property name="text">
<string>Hide Tray Icon</string>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QCheckBox" name="checkBox_systemtraynotifications">
<property name="enabled">
<bool>true</bool>
</property>
<property name="whatsThis">
<string><html><head/><body><p>If checked the system tray will popup a notify message when a significant connman related event is received.</p><p>Notifications can be handled by the System Tray Icon, or by a Notify daemon if one is installed. Both can not be active at the same time.</p></body></html></string>
</property>
<property name="text">
<string>System Tray Notifications</string>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QCheckBox" name="checkBox_enablesystemtraytooltips">
<property name="whatsThis">
<string><html><head/><body><p>If checked the system tray icon will popup a status message when you hover the mouse over it.</p></body></html></string>
</property>
<property name="text">
<string>Enable System Tray Popups</string>
</property>
<property name="checked">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="groupBox_notifications">
<property name="enabled">
<bool>true</bool>
</property>
<property name="whatsThis">
<string><html><head/><body><p>If checked the system notification daemon will popup a notify message when a significant connman related event is received.</p><p>Notifications can be handled by the System Tray Icon, or by a Notify daemon if one is installed. Both can not be active at the same time.</p></body></html></string>
</property>
<property name="title">
<string>Notifications</string>
</property>
<layout class="QGridLayout" name="gridLayout_17">
<item row="1" column="0">
<widget class="QCheckBox" name="checkBox_notifydaemon">
<property name="enabled">
<bool>true</bool>
</property>
<property name="text">
<string>Notification Daemon</string>
</property>
</widget>
</item>
<item row="0" column="0">
<widget class="QLabel" name="label_serverstatus">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>1</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string>Server Status</string>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="groupBox_programcontrol">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="title">
<string>Program Control</string>
</property>
<layout class="QGridLayout" name="gridLayout_10">
<item row="2" column="0">
<widget class="QCheckBox" name="checkBox_killswitch">
<property name="whatsThis">
<string><html><head/><body><p>If checked CMST will implement an internet kill switch for VPN connections. If a VPN connection drops while the kill switch is enabled all technologies will be powered off.</p><p>The way this works is the service order is monitored. If the topmost service is of type VPN and then if it changes to something other than VPN and if the change was not initiated by the user (for instance by using the <span style=" font-weight:600;">Disconnect</span> button in the VPN tab), then CMST will cycle through all technologies powering each one down in turn. </p></body></html></string>
</property>
<property name="text">
<string>Enable VPN Internet Kill Switch</string>
</property>
</widget>
</item>
<item row="0" column="0" colspan="2">
<widget class="QCheckBox" name="checkBox_retryfailed">
<property name="whatsThis">
<string><html><head/><body><p>If a Connman service falls into the &quot;Failed&quot; state it will normally remain in that state.</p><p>If this box is checked CMST will try to automatically reconnect a WiFi service that enters the &quot;Failed&quot; state. </p></body></html></string>
</property>
<property name="text">
<string>Retry Failed Connection</string>
</property>
</widget>
</item>
<item row="1" column="0" colspan="2">
<widget class="QCheckBox" name="checkBox_runonstartup">
<property name="whatsThis">
<string><html><head/><body><p>If checked CMST will place an entry in the autostart directory for the current user, unchecking will remove said entry. This directory is typically: <span style=" font-weight:600;">${HOME}/.config/autostart</span>. </p><p>CMST only add or remove the .desktop file from the autostart directory. Autostarting is typically dependent upon your Desktop Environment and must be enabled from there.</p></body></html></string>
</property>
<property name="text">
<string>Enable Autostart</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>
</item>
<item>
<layout class="QVBoxLayout" name="verticalLayout_12">
<item>
<widget class="QGroupBox" name="groupBox_startoptions">
<property name="enabled">
<bool>true</bool>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="whatsThis">
<string><html><head/><body><p>These entries control various options for CMST at program start. Changing or setting these will only take effect at the next program start. </p><p>All of these options are available from the command line, and if a command line option is provided it will take precedence over these settings.</p></body></html></string>
</property>
<property name="title">
<string>Start Up Options</string>
</property>
<layout class="QGridLayout" name="gridLayout_9">
<item row="10" column="0">
<widget class="QCheckBox" name="checkBox_counterseconds">
<property name="toolTip">
<string/>
</property>
<property name="whatsThis">
<string><html><head/><body><pre style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New,courier';">Command Line Option: </span><span style=" font-family:'Courier New,courier'; font-weight:600;">--counter-update-rate</span></pre></body></html>
<html><head/><body><p>Specify the frequency in seconds between counter updates (default is 10 seconds). </p></body></html></string>
</property>
<property name="text">
<string>Counter Update Rate </string>
</property>
</widget>
</item>
<item row="6" column="0">
<widget class="QCheckBox" name="checkBox_disableminimized">
<property name="whatsThis">
<string><html><head/><body><pre style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New,courier';">Command Line Option: </span><span style=" font-family:'Courier New,courier'; font-weight:600;">-M</span><span style=" font-family:'Courier New,courier';"> or </span><span style=" font-family:'Courier New,courier'; font-weight:600;">--disable-minimized</span></pre><p>Disable the minimize button. Use when you want to have the window manager have sole control of minimizing the interface.</p></body></html></string>
</property>
<property name="text">
<string>Disable Minimized</string>
</property>
</widget>
</item>
<item row="9" column="1">
<widget class="QSpinBox" name="spinBox_counterkb">
<property name="enabled">
<bool>false</bool>
</property>
<property name="whatsThis">
<string><html><head/><body><p>Specify the amount of data in KB that must be transmitted before the counters update (default is 1024 KB).</p></body></html></string>
</property>
<property name="buttonSymbols">
<enum>QAbstractSpinBox::PlusMinus</enum>
</property>
<property name="minimum">
<number>256</number>
</property>
<property name="maximum">
<number>32768</number>
</property>
<property name="singleStep">
<number>64</number>
</property>
<property name="value">
<number>1024</number>
</property>
</widget>
</item>
<item row="5" column="0">
<widget class="QCheckBox" name="checkBox_startminimized">
<property name="toolTip">
<string/>
</property>
<property name="whatsThis">
<string><html><head/><body><pre style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New,courier';">Command Line Option: </span><span style=" font-family:'Courier New,courier'; font-weight:600;">-m</span><span style=" font-family:'Courier New,courier';"> or </span><span style=" font-family:'Courier New,courier'; font-weight:600;">--minimized</span></pre></body></html>
<html><head/><body><p>Start the GUI minimized in the system tray.</p></body></html></string>
</property>
<property name="text">
<string>Start Minimized</string>
</property>
</widget>
</item>
<item row="8" column="1">
<widget class="QSpinBox" name="spinBox_waittime">
<property name="enabled">
<bool>false</bool>
</property>
<property name="whatsThis">
<string><html><head/><body><p>Specify the wait time in seconds before starting the system tray icon (default is 0 seconds).</p></body></html></string>
</property>
<property name="buttonSymbols">
<enum>QAbstractSpinBox::PlusMinus</enum>
</property>
<property name="minimum">
<number>1</number>
</property>
<property name="maximum">
<number>60</number>
</property>
</widget>
</item>
<item row="4" column="1">
<widget class="QDoubleSpinBox" name="doubleSpinBox_iconscale">
<property name="enabled">
<bool>false</bool>
</property>
<property name="whatsThis">
<string><html><head/><body><p>Icon scale factor. If the box is disabled by clearing the checkbox at the left the value contained in this field will be ignored.</p><p>For High DPI monitors a factor of 2 has been found to be good. Valid values of scale factor are from 1.0 to 3.0. Default value is 1.</p></body></html></string>
</property>
<property name="minimum">
<double>1.000000000000000</double>
</property>
<property name="maximum">
<double>3.000000000000000</double>
</property>
<property name="singleStep">
<double>0.250000000000000</double>
</property>
</widget>
</item>
<item row="9" column="0">
<widget class="QCheckBox" name="checkBox_counterkb">
<property name="enabled">
<bool>false</bool>
</property>
<property name="toolTip">
<string><html><head/><body><p>Disabled because currently Connman will accept this option but will do nothing with it.</p></body></html></string>
</property>
<property name="whatsThis">
<string><html><head/><body><p>Specify the amount of data in KB that must be transmitted before the counters update (default is 1024 KB).</p><p>Connman will accept this entry, but according to a comment in the Connman code the actual feature still needs to be implemented and the selection is therefore disabled.</p></body></html></string>
</property>
<property name="text">
<string>Counter Update KB</string>
</property>
</widget>
</item>
<item row="8" column="0">
<widget class="QCheckBox" name="checkBox_waittime">
<property name="whatsThis">
<string><html><head/><body><pre style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New,courier';">Command Line Option: </span><span style=" font-family:'Courier New,courier'; font-weight:600;">-w</span><span style=" font-family:'Courier New,courier';"> or </span><span style=" font-family:'Courier New,courier'; font-weight:600;">--wait-time</span></pre><p>Specify the wait time in seconds before starting the system tray icon (default is 0 seconds).</p><p>If CMST is started and tries to create a tray icon before the system tray itself is created the proram will not be able to start minimized. This sometimes happens when the program is started automatically. If you know the tray will exist once the system is up you may specify a wait time and CMST will wait that number of seconds before trying to create the tray icon. This is to give the window manager or panel time to create the tray before we try to place the icon there.</p><p>If you plan to start with the main dialog shown on screen there is no reason to use this option. This is only intended to be used for starting minimized.</p><p><br/></p><p><br/></p></body></html></string>
</property>
<property name="text">
<string>Wait Time</string>
</property>
</widget>
</item>
<item row="11" column="0">
<widget class="QCheckBox" name="checkBox_faketransparency">
<property name="toolTip">
<string/>
</property>
<property name="whatsThis">
<string><html><head/><body><pre style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New,courier';">Command Line Option: </span><span style=" font-family:'Courier New,courier'; font-weight:600;">--fake-transparency</span></pre></body></html>
<html><head/><body><p>Used to work around a QT bug where system tray icons display with white or black backgrounds instead of being transparent.</p><p>You can specify the icon background color here. Format is a hex number in the form RRGGBB. If the spedified color matches the tray background we've effectively created fake transparency. </p></body></html></string>
</property>
<property name="text">
<string>Fake Transparency</string>
</property>
</widget>
</item>
<item row="0" column="0">
<widget class="QCheckBox" name="checkBox_enablecounters">
<property name="whatsThis">
<string><html><head/><body><pre style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'monospace';">Command Line Option: </span><span style=" font-family:'monospace'; font-weight:600;">-c</span><span style=" font-family:'monospace';"> or </span><span style=" font-family:'monospace'; font-weight:600;">--enable-counters</span></pre><p>Enable Connman RX and TX counters. Counters are experimental in Connman and enabling them will write a large amount of data to the system logs.</p><p>Counters are turned off by default, and is a change from the way it was originally. Up to and including version 2017.09.19 counters were enabled by default. All versions subsequent to that counters are disabled by default.</p></body></html></string>
</property>
<property name="text">
<string>Enable Counters</string>
</property>
</widget>
</item>
<item row="10" column="1">
<widget class="QSpinBox" name="spinBox_counterrate">
<property name="enabled">
<bool>false</bool>
</property>
<property name="whatsThis">
<string><html><head/><body><p>Specify the frequency in seconds between counter updates (default is 10 seconds). </p></body></html></string>
</property>
<property name="buttonSymbols">
<enum>QAbstractSpinBox::PlusMinus</enum>
</property>
<property name="minimum">
<number>5</number>
</property>
<property name="maximum">
<number>86400</number>
</property>
<property name="singleStep">
<number>10</number>
</property>
<property name="value">
<number>10</number>
</property>
</widget>
</item>
<item row="4" column="0">
<widget class="QCheckBox" name="checkBox_iconscale">
<property name="whatsThis">
<string><html><head/><body><p><span style=" font-family:'Courier New,courier';">Command Line Option: </span><span style=" font-family:'Courier New,courier'; font-weight:600;">-I</span><span style=" font-family:'Courier New,courier';"> or </span><span style=" font-family:'Courier New,courier'; font-weight:600;">--icon-scale</span></p><p>Scale icons and other artwork in CMST. For High DPI moitors it may be necessary to specify a scale factor on icons and other artwork in CMST. Default scale is 1.0. You may override the default using this option. </p><p>For High DPI monitors a factor of 2 has been found to be good. Valid values of scale factor are from 1.0 to 3.0.</p></body></html></string>
</property>
<property name="text">
<string>Icon Scale Factor</string>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QCheckBox" name="checkBox_disabletrayicon">
<property name="whatsThis">
<string><html><head/><body><pre style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New,courier';">Command Line Option: </span><span style=" font-family:'Courier New,courier'; font-weight:600;">-d</span><span style=" font-family:'Courier New,courier';"> or </span><span style=" font-family:'Courier New,courier'; font-weight:600;">--disable-tray-icon</span></pre></body></html>
<html><head/><body><p>Disable the system tray icon.</p><p>May be needed for system trays not compliant with the Freedesktop.org system tray specification.</p></body></html></string>
</property>
<property name="text">
<string>Disable Tray Icon</string>
</property>
</widget>
</item>
<item row="13" column="0" colspan="2">
<spacer name="verticalSpacer_3">
<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="3" column="1">
<widget class="QComboBox" name="comboBox_icontheme">
<property name="editable">
<bool>true</bool>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QCheckBox" name="checkBox_disablevpn">
<property name="whatsThis">
<string><html><head/><body><pre style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New,courier';">Command Line Option: </span><span style=" font-family:'Courier New,courier'; font-weight:600;">-n</span><span style=" font-family:'Courier New,courier';"> or </span><span style=" font-family:'Courier New,courier'; font-weight:600;">--disable-vpn</span></pre><p>Disable VPN. This will hide the VPN tab and will also skip trying to make a connection to connman-vpn. The later is useful if your Connman was built with the --disable-vpn feature.</p></body></html></string>
</property>
<property name="text">
<string>Disable VPN</string>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QCheckBox" name="checkBox_systemicontheme">
<property name="toolTip">
<string/>
</property>
<property name="whatsThis">
<string><html><head/><body><pre style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New,courier';">Command Line Option: </span><span style=" font-family:'Courier New,courier'; font-weight:600;">-i</span><span style=" font-family:'Courier New,courier';"> or </span><span style=" font-family:'Courier New,courier'; font-weight:600;">--icon-theme</span></pre><p>Use an icon theme from your system. You may specify the theme in the box at the right, or if the box is left blank CMST will try and use the system wide icon theme (if one is defined).</p></body></html></string>
</property>
<property name="text">
<string>Use Icon Theme</string>
</property>
</widget>
</item>
<item row="11" column="1">
<widget class="QLineEdit" name="lineEdit_faketransparency">
<property name="whatsThis">
<string><html><head/><body><p>Used to work around a QT bug where system tray icons display with white or black backgrounds instead of being transparent.</p><p>You can specify the icon background color here. Format is a hex number in the form RRGGBB. If the spedified color matches the tray background we've effectively created fake transparency.</p></body></html></string>
</property>
<property name="clearButtonEnabled">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="groupBox_process">
<property name="whatsThis">
<string><html><head/><body><p>Programs or processes to execute after various events occur.</p><p>If the program or process requires command line arguments provide them here just as if you were typing at a command line. Example:</p><p><span style=" font-weight:600;">/path/to/program arg1 arg2 arg3</span></p><p>Two events are checked. <span style=" font-weight:600;">Before Connecting</span> events are called after the Connect button is pressed in either the Wireless or VPN tabs. The program or process in the Execute box will only be executed prior to making a connection for the service shown in the Service box. It will not be called when connecting to any other service.</p><p>The program or process in the <span style=" font-weight:600;">After Connecting</span> box will be called after Connman enters the ready or online state.</p><p><br/></p></body></html></string>
</property>
<property name="title">
<string>External Programs</string>
</property>
<layout class="QGridLayout" name="gridLayout_11">
<item row="2" column="0" colspan="2">
<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>
<item row="0" column="0" colspan="2">
<widget class="QGroupBox" name="groupBox">
<property name="whatsThis">
<string><html><head/><body><p>This area is to specify a program or process to run after a wifi or vpn service button is pressed, but before the connect method is sent to ConnMan. This is mainly used to modify a .cmst.config file which seems useful to modify certain short lived entries for openConnect vpn connections.</p><p>The program or process in the <span style=" font-weight:600;">Execute</span> box will only be executed prior to making a connection for the single service shown in the <span style=" font-weight:600;">Service</span> box. It will not be called when connecting to any other service. If a .cmst.config file is to be modified a check must in the <span style=" font-weight:600;">Modify Service File</span> box and the path and name of the file to be modified must be provided.</p><p>To modify a .cmst.config file CMST will read stdout of the program or process being called. Program output should be individual lines in KEY=VALUE format. If KEY exists in the .cmst.config file it will be replaced by the new VALUE. If KEY does not exist it will be appended. </p></body></html></string>
</property>
<property name="title">
<string>Before Connecting</string>
</property>
<layout class="QGridLayout" name="gridLayout_4">
<item row="1" column="1" colspan="2">
<widget class="QLineEdit" name="lineEdit_beforeconnect">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Fixed">
<horstretch>1</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label_4">
<property name="whatsThis">
<string><html><head/><body><p>Enter the program or process to be executed before Connman initiates a connection to the service listed in the box above. If left blank no program or process will be executed.</p></body></html></string>
</property>
<property name="text">
<string>Execute:</string>
</property>
<property name="buddy">
<cstring>lineEdit_beforeconnect</cstring>
</property>
</widget>
</item>
<item row="0" column="1" colspan="2">
<widget class="QComboBox" name="comboBox_beforeconnectserviceslist">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
<horstretch>1</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
</widget>
</item>
<item row="0" column="0">
<widget class="QLabel" name="label_3">
<property name="whatsThis">
<string>Specify the service you are connecting to where you want a program or process to execute prior to initiating the connection.</string>
</property>
<property name="text">
<string>Service:</string>
</property>
<property name="buddy">
<cstring>comboBox_beforeconnectserviceslist</cstring>
</property>
</widget>
</item>
<item row="2" column="0" colspan="3">
<layout class="QVBoxLayout" name="verticalLayout_13">
<item>
<widget class="QCheckBox" name="checkBox_modifyservicefile">
<property name="whatsThis">
<string><html><head/><body><p>If checked the configuration file shown below will be modified by whatever output the program provides.</p></body></html></string>
</property>
<property name="text">
<string>Modify Service File</string>
</property>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout_10">
<item>
<widget class="QLabel" name="label_5">
<property name="whatsThis">
<string>Service configuration file to be modified by the program.</string>
</property>
<property name="text">
<string>FIle: </string>
</property>
<property name="buddy">
<cstring>comboBox_beforeconnectservicefile</cstring>
</property>
</widget>
</item>
<item>
<widget class="QComboBox" name="comboBox_beforeconnectservicefile">
<property name="enabled">
<bool>false</bool>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</item>
</layout>
</widget>
</item>
<item row="1" column="1">
<widget class="QLineEdit" name="lineEdit_afterconnect">
<property name="clearButtonEnabled">
<bool>true</bool>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label">
<property name="whatsThis">
<string><!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" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;">
<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Enter the program or process to be executed after Connman enters the <span style=" font-weight:600;">Ready</span> or <span style=" font-weight:600;">Online</span> state. If left blank no program or process will be executed.</p></body></html></string>
</property>
<property name="text">
<string>After Connecting</string>
</property>
<property name="buddy">
<cstring>lineEdit_afterconnect</cstring>
</property>
</widget>
</item>
</layout>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="Help">
<attribute name="title">
<string>&Help</string>
</attribute>
<layout class="QGridLayout" name="gridLayout_6">
<item row="0" column="0">
<widget class="QGroupBox" name="groupBox_about">
<property name="title">
<string>&About</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QPushButton" name="pushButton_aboutCMST">
<property name="whatsThis">
<string><html><head/><body><p>Display a dialog box containing information about this program. </p></body></html></string>
</property>
<property name="text">
<string>C&MST</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="pushButton_aboutIconSet">
<property name="whatsThis">
<string><html><head/><body><p>Display a dialog box containing information about the Icon set used in this program. </p></body></html></string>
</property>
<property name="text">
<string>Aw&Oken</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="pushButton_aboutOtherArt">
<property name="text">
<string>A&rtwork</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="pushButton_aboutQT">
<property name="whatsThis">
<string><html><head/><body><p>Display a dialog box containing information about the QT toolkit used to develop this program. </p></body></html></string>
</property>
<property name="text">
<string>&QT</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="pushButton_license">
<property name="whatsThis">
<string><html><head/><body><p>Use this button to view the program license.</p></body></html></string>
</property>
<property name="text">
<string>&License</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="pushButton_change_log">
<property name="whatsThis">
<string><html><head/><body><p>Use this button to view the change log of the program.</p></body></html></string>
</property>
<property name="text">
<string>ChangeLo&g</string>
</property>
</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>250</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
</item>
<item row="0" column="1">
<widget class="QScrollArea" name="scrollArea">
<property name="widgetResizable">
<bool>true</bool>
</property>
<widget class="QWidget" name="scrollAreaWidgetContents">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>708</width>
<height>778</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout_8">
<item>
<widget class="QLabel" name="label_help">
<property name="text">
<string><html><head/><body><p><span style=" font-weight:600;">Help</span></p><p>Program help is mainly provided by the &quot;What's This&quot; button in the lower left corner. Press the button and then click on an item you are interested in. &quot;What's This&quot; is also available via context menu by right clicking on a button, box or text area.</p></body></html></string>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
<property name="textInteractionFlags">
<set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse</set>
</property>
</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>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QToolButton" name="toolButton_whatsthis">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="toolTip">
<string><html><head/><body><p>What's This</p></body></html></string>
</property>
<property name="whatsThis">
<string><html><head/><body><p>Use this button to find information about an element in the GUI by entering &quot;What's This&quot; mode. </p><p>You may also right click on an element to show the &quot;What's This&quot; text for it.</p></body></html></string>
</property>
<property name="text">
<string/>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="pushButton_provisioning_editor">
<property name="whatsThis">
<string><html><head/><body><p>Open the provisioning editor to create or edit Connman configuration (provisioning) files.</p><p>These config files reside in /var/lib/connman which is owned by root:root. CMST will register a roothelper to allow reading and writing files in this directory. </p><p>To avoid abusing the root privileges the editor will only operate on files with names ending in <span style=" font-style:italic;">.cmst.config</span>. This file name ending will be added automatically during a file save and cannot be altered. </p><p>Using this editor it is not possible to edit or delete config files created by other means.</p></body></html></string>
</property>
<property name="text">
<string>Provisioning Editor</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="pushButton_vpn_editor">
<property name="whatsThis">
<string><html><head/><body><p>Open the VPN provisioning editor to create or edit Connman configuration (provisioning) files for VPN connections.</p><p>These config files reside in /var/lib/connman-vpn which is owned by root:root. CMST will register a roothelper to allow reading and writing files in this directory. </p><p>To avoid abusing the root privileges the editor will only operate on files with names ending in <span style=" font-style:italic;">.cmst.config</span>. This file name ending will be added automatically during a file save and cannot be altered. </p><p>Using this editor it is not possible to edit or delete config files created by other means.</p></body></html></string>
</property>
<property name="text">
<string>VPN Editor</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="pushButton_exit">
<property name="whatsThis">
<string><html><head/><body><p>Exit the program and remove the system tray icon. Connman will still be running as a daemon but will not be managed by this program.</p></body></html></string>
</property>
<property name="text">
<string>E&xit</string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_3">
<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="QPushButton" name="pushButton_minimize">
<property name="whatsThis">
<string><html><head/><body><p>Minimize the dialog. If you have the system tray Icon shown this dialog may be restored by right clicking on the tray icon. If the tray icon is hidden minimize will not be active.</p></body></html></string>
</property>
<property name="text">
<string>Mi&nimize</string>
</property>
</widget>
</item>
</layout>
</item>
</layout>
<action name="actionMove_Before">
<property name="text">
<string>Move Before</string>
</property>
</action>
<action name="actionMove_After">
<property name="text">
<string>Move After</string>
</property>
</action>
<action name="actionRescan">
<property name="text">
<string>Rescan</string>
</property>
</action>
<action name="actionOffline_Mode">
<property name="checkable">
<bool>true</bool>
</property>
<property name="text">
<string>Offline Mode</string>
</property>
</action>
<action name="actionIDPass">
<property name="text">
<string>IDPass</string>
</property>
<property name="toolTip">
<string>Set ID and Password for tethered wifi</string>
</property>
</action>
</widget>
<tabstops>
<tabstop>tabWidget</tabstop>
<tabstop>comboBox_service</tabstop>
<tabstop>pushButton_connect</tabstop>
<tabstop>pushButton_disconnect</tabstop>
<tabstop>pushButton_remove</tabstop>
<tabstop>tableWidget_wifi</tabstop>
<tabstop>scrollArea_home_counter</tabstop>
<tabstop>scrollArea_roaming_counter</tabstop>
<tabstop>pushButton_aboutCMST</tabstop>
<tabstop>pushButton_aboutIconSet</tabstop>
<tabstop>pushButton_aboutQT</tabstop>
<tabstop>pushButton_license</tabstop>
<tabstop>pushButton_change_log</tabstop>
<tabstop>scrollArea</tabstop>
<tabstop>toolButton_whatsthis</tabstop>
<tabstop>pushButton_exit</tabstop>
<tabstop>pushButton_minimize</tabstop>
</tabstops>
<resources>
<include location="../../../../../cmst.qrc"/>
</resources>
<connections>
<connection>
<sender>pushButton_rescanwifi01</sender>
<signal>clicked()</signal>
<receiver>actionRescan</receiver>
<slot>trigger()</slot>
<hints>
<hint type="sourcelabel">
<x>122</x>
<y>468</y>
</hint>
<hint type="destinationlabel">
<x>-1</x>
<y>-1</y>
</hint>
</hints>
</connection>
<connection>
<sender>pushButton_movebefore</sender>
<signal>clicked()</signal>
<receiver>actionMove_Before</receiver>
<slot>trigger()</slot>
<hints>
<hint type="sourcelabel">
<x>126</x>
<y>801</y>
</hint>
<hint type="destinationlabel">
<x>-1</x>
<y>-1</y>
</hint>
</hints>
</connection>
<connection>
<sender>pushButton_moveafter</sender>
<signal>clicked()</signal>
<receiver>actionMove_After</receiver>
<slot>trigger()</slot>
<hints>
<hint type="sourcelabel">
<x>212</x>
<y>801</y>
</hint>
<hint type="destinationlabel">
<x>-1</x>
<y>-1</y>
</hint>
</hints>
</connection>
<connection>
<sender>actionOffline_Mode</sender>
<signal>triggered(bool)</signal>
<receiver>checkBox_devicesoff</receiver>
<slot>setChecked(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>-1</x>
<y>-1</y>
</hint>
<hint type="destinationlabel">
<x>816</x>
<y>106</y>
</hint>
</hints>
</connection>
<connection>
<sender>pushButton_rescanwifi02</sender>
<signal>clicked()</signal>
<receiver>actionRescan</receiver>
<slot>trigger()</slot>
<hints>
<hint type="sourcelabel">
<x>455</x>
<y>97</y>
</hint>
<hint type="destinationlabel">
<x>-1</x>
<y>-1</y>
</hint>
</hints>
</connection>
<connection>
<sender>actionOffline_Mode</sender>
<signal>triggered(bool)</signal>
<receiver>toolButton_offlinemode</receiver>
<slot>setChecked(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>-1</x>
<y>-1</y>
</hint>
<hint type="destinationlabel">
<x>70</x>
<y>134</y>
</hint>
</hints>
</connection>
<connection>
<sender>checkBox_devicesoff</sender>
<signal>clicked(bool)</signal>
<receiver>actionOffline_Mode</receiver>
<slot>trigger()</slot>
<hints>
<hint type="sourcelabel">
<x>816</x>
<y>106</y>
</hint>
<hint type="destinationlabel">
<x>-1</x>
<y>-1</y>
</hint>
</hints>
</connection>
<connection>
<sender>toolButton_offlinemode</sender>
<signal>clicked(bool)</signal>
<receiver>actionOffline_Mode</receiver>
<slot>trigger()</slot>
<hints>
<hint type="sourcelabel">
<x>70</x>
<y>134</y>
</hint>
<hint type="destinationlabel">
<x>-1</x>
<y>-1</y>
</hint>
</hints>
</connection>
<connection>
<sender>checkBox_advanced</sender>
<signal>clicked(bool)</signal>
<receiver>groupBox_process</receiver>
<slot>setVisible(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>224</x>
<y>214</y>
</hint>
<hint type="destinationlabel">
<x>473</x>
<y>728</y>
</hint>
</hints>
</connection>
<connection>
<sender>checkBox_advanced</sender>
<signal>clicked(bool)</signal>
<receiver>pushButton_vpn_editor</receiver>
<slot>setVisible(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>219</x>
<y>205</y>
</hint>
<hint type="destinationlabel">
<x>245</x>
<y>865</y>
</hint>
</hints>
</connection>
<connection>
<sender>checkBox_advanced</sender>
<signal>clicked(bool)</signal>
<receiver>pushButton_provisioning_editor</receiver>
<slot>setVisible(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>143</x>
<y>204</y>
</hint>
<hint type="destinationlabel">
<x>159</x>
<y>865</y>
</hint>
</hints>
</connection>
<connection>
<sender>checkBox_usestartoptions</sender>
<signal>toggled(bool)</signal>
<receiver>groupBox_startoptions</receiver>
<slot>setEnabled(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>260</x>
<y>92</y>
</hint>
<hint type="destinationlabel">
<x>473</x>
<y>120</y>
</hint>
</hints>
</connection>
<connection>
<sender>checkBox_waittime</sender>
<signal>clicked(bool)</signal>
<receiver>spinBox_waittime</receiver>
<slot>setEnabled(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>485</x>
<y>301</y>
</hint>
<hint type="destinationlabel">
<x>816</x>
<y>303</y>
</hint>
</hints>
</connection>
<connection>
<sender>checkBox_counterkb</sender>
<signal>clicked(bool)</signal>
<receiver>spinBox_counterkb</receiver>
<slot>setEnabled(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>521</x>
<y>331</y>
</hint>
<hint type="destinationlabel">
<x>816</x>
<y>333</y>
</hint>
</hints>
</connection>
<connection>
<sender>checkBox_counterseconds</sender>
<signal>clicked(bool)</signal>
<receiver>spinBox_counterrate</receiver>
<slot>setEnabled(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>546</x>
<y>361</y>
</hint>
<hint type="destinationlabel">
<x>816</x>
<y>363</y>
</hint>
</hints>
</connection>
<connection>
<sender>checkBox_modifyservicefile</sender>
<signal>clicked(bool)</signal>
<receiver>comboBox_beforeconnectservicefile</receiver>
<slot>setEnabled(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>611</x>
<y>596</y>
</hint>
<hint type="destinationlabel">
<x>708</x>
<y>626</y>
</hint>
</hints>
</connection>
<connection>
<sender>checkBox_iconscale</sender>
<signal>clicked(bool)</signal>
<receiver>doubleSpinBox_iconscale</receiver>
<slot>setEnabled(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>538</x>
<y>206</y>
</hint>
<hint type="destinationlabel">
<x>639</x>
<y>210</y>
</hint>
</hints>
</connection>
<connection>
<sender>checkBox_systemicontheme</sender>
<signal>clicked(bool)</signal>
<receiver>comboBox_icontheme</receiver>
<slot>setEnabled(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>549</x>
<y>183</y>
</hint>
<hint type="destinationlabel">
<x>658</x>
<y>179</y>
</hint>
</hints>
</connection>
<connection>
<sender>checkBox_faketransparency</sender>
<signal>clicked(bool)</signal>
<receiver>lineEdit_faketransparency</receiver>
<slot>setEnabled(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>528</x>
<y>383</y>
</hint>
<hint type="destinationlabel">
<x>629</x>
<y>381</y>
</hint>
</hints>
</connection>
</connections>
</ui>
|