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 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594
|
*****************************************************************
*****************************************************************
*****************************************************************
NOTE:
This is the ChangeLog from before the gtk 2.10 consolidation.
*****************************************************************
*****************************************************************
*****************************************************************
2007-03-29 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* ./: Changing the license headers and all the licesing stuff to
LGPL version 2 OR LATER.
2007-03-29 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/Makefile.am:
* src/hildon-calendar-popup.c:
* src/hildon-calendar-private.h:
* src/hildon-calendar.c:
* src/hildon-calendar.h:
* src/hildon-date-editor.c:
* src/hildon.h: Adding the HildonCalendar based on Gtk Calendar. This
effectively changes the license to LGPL version 2 OR LATER.
* src/hildon-get-password-dialog.c:
* src/hildon-marshalers.list:
* src/hildon-number-editor.c:
* src/hildon-range-editor.c:
* src/hildon-time-editor.c:
* src/hildon-time-picker.c: Fixing some timeout issues and input-mode
issues (deprecated properties).
* doc/Makefile.am:
* doc/hildon-docs.sgml:
* doc/hildon.types:
* examples/Makefile.am:
* examples/hildon-date-editor-example.c: Example to test the new
HildonCalendar.
2007-03-27 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-helper.c:
* src/hildon-helper.h: Adding a hildon_helper_set_thumb_scrollbar
function to enable/disable a thumb scrollbar on a GtkScrolledWindow.
Note: requires a 'hildon-thumb-scrollbar' style defined in the theme.
* examples/Makefile.am:
* examples/hildon-thumb-scrollbar-example.c: Example that demoes the
thumb scrollbar functionality.
2007-03-26 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/Makefile.am: Actually take the libtool versioning into account.
2007-03-20 Tommi Komulainen <tommi.komulainen@nokia.com>
* doc/gtk-doc.make: Update from gtk-doc 1.7, and fix '*.sgml'
prerequisite with $(wildcard) to work in absence of any files.
* doc/Makefile.am (MAINTAINERCLEANFILES): Add 'tmpl/*.sgml' here, it
used to be handled in the modified gtk-doc.make
(HTML_IMAGES): Fix images locations by adding missing 'images/'
* doc/visual_index.xml: Remove extraneous 'html/' from image
references that were breaking the generated gallery page.
2007-03-20 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* debian/rules: Force link creation and do not complain if failed.
2007-03-13 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-banner.c: Use TYPE_HINT_NOTIFICATION instead of
TYPE_HINT_MESSAGE.
2007-03-09 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-helper.c: Remove guard for NULL message in
_set_insensitive_message. Passing NULL is accepted with the semantics
of removing any previous message.
2007-03-09 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-helper.c: Fixing a double free in
_set_insenstive_message. Fixes NB#52928.
2007-03-08 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/hildon-color-pop-example.c:
* src/hildon-color-button.c:
* src/hildon-color-button.h: Correcting the color button popup API as
suggested by Tommi to follow the GtkComboBox popup API. The propery
name is now 'popup-shown' and the force-function is _popdown.
2007-03-08 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* Makefile.am:
* configure.ac:
* doc/Makefile.am:
* po/Makefile.am:
* po/POTFILES.in:
* po/en_GB.po: Fixing the 'engineering english' translation and adding
it back to the build system. Prolly needs some more updates in the
future when we resync the 'real' translation package names.
2007-03-08 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-color-button-private.h:
* src/hildon-color-button.c:
* src/hildon-color-button.h: Adding a property 'is-popped' and some
functions to pop-up the color selection dialog.
* configure.ac:
* examples/Makefile.am:
* examples/hildon-color-pop-example.c: An example that pops-up the
dialog from another thread.
2007-03-07 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-caption.c:
* src/hildon-program.c:
* src/hildon-volumebar-range.h: A few more consolidation corrections.
2007-03-07 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-time-picker.c: Renaming gtk-timeout-update to
gtk-timeout-repeat.
2007-03-07 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/hildon-hvolumebar-example.c:
* examples/hildon-vvolumebar-example.c: Making the bars in examples
larger to see if theeming is correct.
* src/hildon-time-picker-private.h:
* src/hildon-time-picker.c: Do not pull the timeout settings in the
init function. Do it when needed.
2007-03-02 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-caption-example.c:
* examples/hildon-scrolled-window-example.c: Adding an example to
check scrolled window theming.
* src/hildon-caption.c:
* src/hildon-caption.h: Adding hildon_caption_set_label_markup to set
markup on the caption. Fixes NB#51736.
2007-03-01 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-banner.c: Small fix, check for NULL before comparing
strings.
2007-03-01 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-banner.c: Do not set the text on the label if it's
exactly same as the existing text. Fixes some wrapping problems. Fixes
NB#50496.
2007-02-28 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-window.c: When the window name is empty, don't put
extra dash there. Fixes NB#47989.
2007-02-28 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-color-button-example.c:
* examples/hildon-number-editor-example.c: Adding number editor
example.
* src/hildon-window.c: Free the list used to detach menus. Fixes the
MB#1065.
2007-02-19 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* doc/hildon.types:
* src/Makefile.am:
* src/hildon-input-mode-hint.h: Removing this file.
Now all the input-method related things are declared in gtkenums.h.
* src/hildon-number-editor.c:
* src/hildon-range-editor.c:
* src/hildon-time-editor.c:
* src/hildon.h:
* src/hildon-date-editor.c:
* src/hildon-get-password-dialog.c: Use the input-mode enums defined
in gtkenums.h
2007-02-16 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* debian/changelog:
* src/hildon-code-dialog.c:
* src/hildon-code-dialog.h: Adding the
hildon_code_dialog_set_input_sensitive function requested by Santtu
Lakkala to enable/disable the input on the code dialog.
2007-02-16 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* doc/Makefile.am:
* doc/hildon-docs.sgml:
* doc/visual_index.xml: Documentation fixes.
* src/hildon-banner-private.h:
* src/hildon-banner.c:
* src/hildon-banner.h: Adding Lucas patch to enable settable timeout
on the banners and settable icon.
* examples/hildon-banner-example.c: Set timeout manually.
2007-02-15 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-color-chooser-dialog.h:
* src/hildon-color-chooser.c:
* src/hildon-program.h: Doc fixes.
2007-02-15 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-time-editor.c: Check before freeing am/pm strings in
finalize.
* tests/check-hildon-caption.c:
* tests/check-hildon-controlbar.c:
* tests/check-hildon-date-editor.c:
* tests/check-hildon-font-selection-dialog.c:
* tests/check-hildon-note.c: Fixing the tests a little.
2007-02-14 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-lookup-example.c: Adding an example test program to
check icon-lookup functionality.
* src/hildon-caption.c:
* src/hildon-color-button.c:
* src/hildon-color-chooser-dialog.c:
* src/hildon-color-chooser.c:
* src/hildon-controlbar.c:
* src/hildon-date-editor.c:
* src/hildon-find-toolbar.c:
* src/hildon-font-selection-dialog.c:
* src/hildon-get-password-dialog.c:
* src/hildon-hvolumebar.c:
* src/hildon-login-dialog.c:
* src/hildon-note.c:
* src/hildon-number-editor.c:
* src/hildon-range-editor.c:
* src/hildon-seekbar.c:
* src/hildon-set-password-dialog.c:
* src/hildon-sort-dialog.c:
* src/hildon-sound.c:
* src/hildon-time-editor.c:
* src/hildon-time-picker.c:
* src/hildon-volumebar.c:
* src/hildon-vvolumebar.c:
* src/hildon-weekday-picker.c:
* src/hildon-wizard-dialog.c: Doc update.
2007-02-13 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-hvolumebar-example.c: A hvolumebar test program.
* src/hildon-code-dialog.c:
* src/hildon-code-dialog.h: Adding a patch by Santtu Lakkala that adds
an 'input' signal to the code dialog that is fired each time the user
presses any of the dialog input buttons.
* examples/hildon-code-dialog-example.c: Adding test case for the
new signal.
2007-02-12 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/hildon-window-example.c: Adding some title setting to check
the program/window naming.
2007-02-12 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* doc/Makefile.am:
* doc/hildon-docs.sgml:
* doc/visual_index.xml: Adding the widgets-gallery chapter. Works now.
* doc/images/colour-button.png:
* doc/images/colour-chooser-dialog.png:
* doc/images/colour-chooser.png: Removing not needed images.
2007-02-09 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* doc/images:
* doc/images/calendar-popup.png:
* doc/images/caption.png:
* doc/images/code-dialog.png:
* doc/images/color-button.png:
* doc/images/color-chooser-dialog.png:
* doc/images/color-chooser.png:
* doc/images/colour-button.png:
* doc/images/colour-chooser-dialog.png:
* doc/images/colour-chooser.png:
* doc/images/controlbar.png:
* doc/images/date-editor.png:
* doc/images/font-selection-dialog.png:
* doc/images/get-password-dialog.png:
* doc/images/hvolumebar.png:
* doc/images/login-dialog.png:
* doc/images/note.png:
* doc/images/number-editor.png:
* doc/images/range-editor.png:
* doc/images/seekbar.png:
* doc/images/set-password-dialog.png:
* doc/images/sort-dialog.png:
* doc/images/time-editor.png:
* doc/images/time-picker.png:
* doc/images/vvolumebar.png:
* doc/images/weekday-picker.png: Adding screenshots of widgets
generated by shooter.
* doc/Makefile.am:
* doc/hildon-docs.sgml:
* doc/visual_index.xml: Startup of the hildon widgets gallery. Not
ready yet.
* examples/Makefile.am:
* examples/hildon-code-dialog-example.c:
* src/hildon-code-dialog.c: Show the contents of the dialog box
vbox during creation.
* src/hildon-note.c:
* src/hildon-note.h: Fixing the enum.
2007-02-09 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-toolbar-example.c:
* src/hildon-window.c: Adding a toolbar example. Making the add/remove
toolbar documentation in HildonWindow a bit more verbose about
visibility and memory management.
2007-02-08 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-vvolumebar-example.c: Adding an exmaple for
HildonVVolumeBar.
2007-02-08 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-window-cmn-menu-example.c:
* examples/hildon-window-menu-example.c: Adding a common menu example
and a window menu example.
* src/hildon-program.c: Adding a note to the documentation about
HildonProgram reffing. Fixes MB#867.
* src/hildon-window.c: Fixing the menu ref counting problem. Now
applications are NOT supposed to take care about menu destroying since
the HildonWindow handles that. Adding this to the documentation. Fixes
NB#46434.
2007-02-07 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-program.c:
* src/hildon-window.c: Trap the X error instead of aborting. A patch
by Johan Bilien, fixes MB#900.
2007-02-07 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-number-editor.c:
* src/hildon-number-editor.h: Prefixing the number editor enums with
HILDON_NUMBER_EDITOR_ERROR_. Not sure why I haven't really noticed
this before.
2007-02-07 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-color-chooser-dialog.c:
* src/hildon-color-chooser.c: Small documentation fixes.
2007-02-06 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-get-password-dialog-example.c:
* examples/hildon-login-dialog-example.c:
* examples/hildon-set-password-dialog-example.c: Adding examples for
password dialogs.
* src/hildon-get-password-dialog.c: Doc fix.
* src/hildon-login-dialog.c: Do not show the username as hidden field.
2007-02-06 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* HACKING: Adding a HACKING file with some basic rules of styling and
code formatting.
2007-02-06 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-color-button.c:
* src/hildon-color-button.h: Updating documentation.
* src/hildon-helper.c: Correcting some formatting glitches.
2007-02-06 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-helper.c:
* src/hildon-helper.h:
Fix the insensitive message function to copy the string in the widget,
as it might not valid anymore when the banner needs to be displayed.
Also add a version with printf-like string formatting.
2007-02-06 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/hildon-insensitive-example.c: Correcting the example for
insensitive press to use HildonWindow. For strange reasons doesn't
work with Dialogs.
2007-02-05 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-insensitive-example.c: Example for the insensitive
message setting.
* src/hildon-helper.c: Insensitive implementation by Xan Lopez.
2007-02-05 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/hildon-controlbar-example.c:
* src/hildon-controlbar.c: Fixing the controlbar to behave as if
minimal-bars-visible (old 2.6 mod) was equal 1.
* src/hildon-banner-private.h:
* src/hildon-banner.c: Fixing the problem with two information banners
being spawned one after another.
2007-02-04 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-find-toolbar.c: Fixing the documentation for the
FindToolbar.
2007-02-02 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* doc/Makefile.am:
* doc/gtk-doc.make: EXTRA_DIST cleanup.
* src/hildon-defines.c:
* src/hildon-defines.h: Icon sizes fixture.
* examples/Makefile.am:
* examples/hildon-icon-sizes-example.c: Example for new icon defines.
* src/hildon-time-editor.c:
* src/hildon-wizard-dialog.c:
* src/hildon-date-editor.c: Fixes for new icon sizes.
2007-02-01 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-helper.c:
* src/hildon-helper.h: Adding the
hildon_helper_set_insensitive_message function. Implementation not
done yet.
2007-02-01 Johan Bilien <johan.bilien@nokia.com>
* src/hildon-window.c:
Fixed the check for which property changed in _notify
Removed unused static function. Fixes: MB#962
2007-02-01 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* doc/gtk-doc.make:
* doc/Makefile.am: Small adjustments to directory layout.
* examples/Makefile.am:
* examples/hildon-time-editor-example.c: A new example for time
editor.
2007-01-31 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/hildon-caption-example.c: Adding checkbutton to the caption
examples to see how things are looking.
* src/hildon-caption.c: Xan's fix for caption and checkbutton.
2007-01-31 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-color-chooser-dialog.c:
* src/hildon-color-chooser.c: Adding some documentation.
2007-01-31 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* configure.ac:
* pkgconfig/hildon.pc.in:
* src/hildon-seekbar.c: Xan's fixes for new gtk compilation.
2007-01-29 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* ./: More documentation fixes.
2007-01-29 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* doc/Makefile.am:
* src/hildon-hvolumebar.c:
* src/hildon-note.c:
* src/hildon-number-editor.c:
* src/hildon-program.c:
* src/hildon-range-editor.c: Moving thesgml documentation to code.
2007-01-29 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* doc/Makefile.am:
* src/hildon-calendar-popup.c:
* src/hildon-color-button.c:
* src/hildon-color-chooser-dialog.h:
* src/hildon-controlbar.c:
* src/hildon-date-editor.c:
* src/hildon-get-password-dialog.c:
* src/hildon-login-dialog.c:
* src/hildon-login-dialog.h:
* src/hildon-note.c:
* src/hildon-program.c:
* src/hildon-sort-dialog.c:
* src/hildon-time-editor.c:
* src/hildon-time-picker.c:
* src/hildon-vvolumebar.c:
* src/hildon-weekday-picker.c:
* src/hildon-window.c:
* src/hildon-wizard-dialog.c: Moving the sgml documentation to code.
2007-01-25 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* ./: Big documentation fix mess continued.
2007-01-25 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* ./: Big documentation fix mess.
2007-01-25 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-sort-dialog.c:
* src/hildon-sort-dialog.h:
* src/hildon-time-editor.c:
* src/hildon-time-picker.c:
* src/hildon-volumebar-range.c:
* src/hildon-volumebar.c:
* src/hildon-vvolumebar.c:
* src/hildon-weekday-picker.c:
* src/hildon-window.c:
* src/hildon-wizard-dialog.c: Cleaning up the documentation.
2007-01-24 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-program.c:
* src/hildon-program.h:
* src/hildon-range-editor.c:
* src/hildon-seekbar.c:
* src/hildon-set-password-dialog.c: Cleaing up the documentation.
2007-01-24 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-get-password-dialog.c:
* src/hildon-helper.c:
* src/hildon-hvolumebar.c:
* src/hildon-login-dialog.c:
* src/hildon-note.c:
* src/hildon-note.h:
* src/hildon-number-editor.c: Cleaning up the documentation.
2007-01-23 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-defines.h: Removing accidentaly left function prototypes.
* src/hildon-find-toolbar.c: Fixing documentation for
HildonFindToolbar.
* src/hildon-font-selection-dialog.c: Fixing documentation for
HildonfontSelectionDialog.
2007-01-23 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-date-editor.c: Fixing the documentation for
HildonTimeEditor. Removing the year limitations.
* src/hildon-defines.c:
* src/hildon-defines.h: Fixing the defines documentation.
2007-01-23 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-banner.c: Fixing documentation for HildonBanner.
* src/hildon-caption.c:
* src/hildon-caption.h: Fixing documentation for HildonCaption.
* src/hildon-code-dialog.c: Fixing documentation for HildonCodeDialog.
* src/hildon-controlbar.c: Fixing docuemtnation for HildonControlbar.
2007-01-23 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-banner.c:
* src/hildon-banner.h: Fixing documentation. Removing the n-lines
helper function.
* src/hildon-note.c: Removing the n-lines wrapping stuff.
2007-01-23 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* tests/Makefile.am: Missing MAINTAINERCLEAN files.
* tests/hildon-clock-widgets_tests.c:
* tests/hildon-widgets_tests.c: Removing, old outo stuff.
* tests/tc_banner_truncate.c: More info in header.
2007-01-23 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* tests/check-hildon-banner.c:
* tests/check-hildon-calendar-popup.c:
* tests/check-hildon-caption.c:
* tests/check-hildon-code-dialog.c:
* tests/check-hildon-color-button.c:
* tests/check-hildon-color-chooser.c:
* tests/check-hildon-controlbar.c:
* tests/check-hildon-date-editor.c:
* tests/check-hildon-dialoghelp.c:
* tests/check-hildon-find-toolbar.c:
* tests/check-hildon-font-selection-dialog.c:
* tests/check-hildon-get-password-dialog.c:
* tests/check-hildon-helper.c:
* tests/check-hildon-name-password-dialog.c:
* tests/check-hildon-note.c:
* tests/check-hildon-number-editor.c:
* tests/check-hildon-program.c:
* tests/check-hildon-range-editor.c:
* tests/check-hildon-scroll-area.c:
* tests/check-hildon-seekbar.c:
* tests/check-hildon-set-password-dialog.c:
* tests/check-hildon-sort-dialog.c:
* tests/check-hildon-system-sound.c:
* tests/check-hildon-time-editor.c:
* tests/check-hildon-time-picker.c:
* tests/check-hildon-volumebar-range.c:
* tests/check-hildon-volumebar.c:
* tests/check-hildon-weekday-picker.c:
* tests/check-hildon-window.c:
* tests/check-hildon-wizard-dialog.c:
* tests/check_test.c:
* tests/check_utils.c:
* tests/check_utils.h:
* tests/hildon-clock-widgets_tests.c:
* tests/hildon-widgets_tests.c:
* tests/tc_banner_truncate.c:
* tests/test_suites.h: Updating the copyright header.
2007-01-22 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* debian/libhildon1-dbg.install:
* debian/libhildon1-dev.docs:
* debian/libhildon1-dev.install:
* debian/libhildon1.install:
* configure.ac:
* debian/control:
* debian/rules: Updating deps, making hildon0 a hildon1.
* pkgconfig/hildon.pc.in: Fixing a dash expansion problem.
2007-01-22 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* debian/libhildon0-dbg.install:
* debian/libhildon0-dev.docs:
* debian/libhildon0-dev.install:
* debian/libhildon0.install:
* debian/changelog:
* debian/control: Adjusting package name to libhildon.
* debian/rules: Auto sh-libs generation.
2007-01-19 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-calendar-popup.c:
* src/hildon-caption.c:
* src/hildon-code-dialog.c:
* src/hildon-color-chooser-dialog.c:
* src/hildon-controlbar.c:
* src/hildon-date-editor.c:
* src/hildon-find-toolbar.c:
* src/hildon-font-selection-dialog.c:
* src/hildon-get-password-dialog.c:
* src/hildon-login-dialog.c:
* src/hildon-note.c:
* src/hildon-number-editor.c:
* src/hildon-range-editor.c:
* src/hildon-set-password-dialog.c:
* src/hildon-sort-dialog.c:
* src/hildon-time-editor.c:
* src/hildon-time-picker.c:
* src/hildon-wizard-dialog.c: For the time being changing the
tranlslation package from PACKAGE (hildon) to hildon-libs to force/get
the old translations.
2007-01-19 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-date-editor.c:
* src/hildon-time-editor.c:
* src/hildon-number-editor.c: Adding some missing bugfixes from
pre-consolidation from another branch.
* src/hildon-helper.c:
* src/hildon-helper.h: Adding the missing finger event recognition
helper.
* tests/test_suites.h: Fixing the test suite.
2007-01-18 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon.h:
* src/Makefile.am:
* src/hildon-defines.c:
* src/hildon-helper.c:
* src/hildon-helper.h: Introducing the hildon-helper and moving some
-defines functions there.
* tests/Makefile.am:
* tests/Makefile.in:
* tests/TEST-CASES.txt:
* tests/check-hildon-defines.c:
* tests/check_test.c: Modyfying tests for hildon helper.
2007-01-18 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-input-mode-hint.h: Cleaning up the
hildon-input-mode-hint.
2007-01-18 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-defines.c:
* src/hildon-defines.h: Cleaning up hildon-defines.
2007-01-18 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-find-toolbar.c:
* src/hildon-program.c:
* src/hildon-volumebar.c:
* src/hildon-vvolumebar.c: Adding the proper HAVE_CONFIG where needed.
2007-01-18 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-composite-widget.c:
* src/hildon-composite-widget.h:
* src/hildon-date-editor.c:
* src/hildon-number-editor.c:
* src/hildon-time-editor.c:
* src/hildon-weekday-picker.c:
* src/Makefile.am:
* src/hildon-private.c:
* src/hildon-private.h: Moving "composite widget" to private since
essentially it's just a handy private function.
* src/hildon.h: Removing it from exported headers.
* tests/Makefile.am:
* tests/Makefile.in:
* tests/TEST-CASES.txt:
* tests/check-hildon-composite-widget.c:
* tests/check_test.c: Removing the composite test case, since it's
external/not exported anymore.
2007-01-18 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* debian/changelog: Adding missing.
* src/hildon-banner.c: Modyfying to allow creation with null window.
* tests/check-hildon-calendar-popup.c:
* tests/check-hildon-color-button.c:
* tests/check-hildon-note.c: Fixing the unit tests.
2007-01-18 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* ChangeLog-hildon-lgpl: Moving to ChangeLog.1.
* ChangeLog.2: Creating from the ChangeLog. Will hold all changelogs
before consolidations.
* debian/changelog:
* debian/control:
* debian/hildon-dev.docs:
* debian/hildon-dev.install:
* debian/hildon-libs-dev.docs:
* debian/hildon-libs-dev.install:
* debian/hildon-libs0-dbg.install:
* debian/hildon-libs0.install:
* debian/hildon-libs0.links:
* debian/hildon0-dbg.install:
* debian/hildon0.install:
* debian/rules: Updating the debian stuff.
2007-01-17 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-login-dialog-example.c: Adding login dialog example.
2007-01-17 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/: Moving the examples out of the directory.
2007-01-17 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon.h: Changing from hildon-widgets.h
* examples/hildon-banner/hildon-banner-example.c:
* examples/hildon-caption/hildon-caption-example.c:
* examples/hildon-color-button/hildon-color-button-example.c:
* examples/hildon-color-chooser/hildon-color-chooser-example.c:
* examples/hildon-controlbar/hildon-controlbar-example.c:
* examples/hildon-note/hildon-note-example.c:
* examples/hildon-sort-dialog/hildon-sort-dialog-example.c:
* examples/hildon-time-picker/hildon-time-picker-example.c:
* examples/hildon-weekday-picker/hildon-weekday-picker-example.c:
* examples/hildon-window/hildon-window-example.c: Fixing the example
license header.
* src/Makefile.am: Fixing the noinst headers.
2007-01-17 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* ./: Upgrading the license headers, moving package name to "hildon"
etc.
2007-01-17 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-color-button:
* examples/hildon-color-button/hildon-color-button-example.c:
* examples/hildon-color-chooser:
* examples/hildon-color-chooser/hildon-color-chooser-example.c: Adding
the color button and color chooser examples.
* src/hildon-color-button.c:
* src/hildon-color-button.h:
* src/hildon-color-chooser-dialog.c:
* src/hildon-color-chooser.c: Fixing the color-returning functions.
* src/hildon-find-toolbar.c:
* src/hildon-font-selection-dialog.c: Adjusting to new color-returning
functions.
* tests/Makefile.am:
* tests/Makefile.in:
* tests/check-hildon-color-button.c:
* tests/check-hildon-color-popup.c:
* tests/check-hildon-color-selector.c:
* tests/check_test.c:
* tests/test_suites.h: Adding the tests for color button and color
chooser.
2007-01-15 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* Makefile.am:
* configure.ac:
* tests:
* tests/Makefile.am:
* tests/Makefile.in:
* tests/TEST-CASES.txt:
* tests/check-hildon-banner.c:
* tests/check-hildon-calendar-popup.c:
* tests/check-hildon-caption.c:
* tests/check-hildon-code-dialog.c:
* tests/check-hildon-color-button.c:
* tests/check-hildon-color-popup.c:
* tests/check-hildon-color-selector.c:
* tests/check-hildon-composite-widget.c:
* tests/check-hildon-controlbar.c:
* tests/check-hildon-date-editor.c:
* tests/check-hildon-defines.c:
* tests/check-hildon-dialoghelp.c:
* tests/check-hildon-find-toolbar.c:
* tests/check-hildon-font-selection-dialog.c:
* tests/check-hildon-get-password-dialog.c:
* tests/check-hildon-name-password-dialog.c:
* tests/check-hildon-note.c:
* tests/check-hildon-number-editor.c:
* tests/check-hildon-program.c:
* tests/check-hildon-range-editor.c:
* tests/check-hildon-scroll-area.c:
* tests/check-hildon-seekbar.c:
* tests/check-hildon-set-password-dialog.c:
* tests/check-hildon-sort-dialog.c:
* tests/check-hildon-system-sound.c:
* tests/check-hildon-time-editor.c:
* tests/check-hildon-time-picker.c:
* tests/check-hildon-volumebar-range.c:
* tests/check-hildon-volumebar.c:
* tests/check-hildon-weekday-picker.c:
* tests/check-hildon-window.c:
* tests/check-hildon-wizard-dialog.c:
* tests/check_test.c:
* tests/check_utils.c:
* tests/check_utils.h:
* tests/hildon-clock-widgets_tests.c:
* tests/hildon-widgets_tests.c:
* tests/run_tests:
* tests/tc_banner_truncate.c:
* tests/test_suites.h: Adding the test suite.
2007-01-15 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-time-picker:
* examples/hildon-time-picker/hildon-time-picker-example.c: Adding a
hildon-time-picker example.
2007-01-11 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* configure.ac:
* examples/Makefile.am: Adding the --with-examples and --with-asserts
configure options (defaulting to no ; no respectively).
2007-01-10 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-note:
* examples/hildon-note/hildon-note-example.c: Example for hildon note.
* src/hildon-note.c:
* src/hildon-note.h: Fixing buggy code in new object creation.
2007-01-10 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-controlbar:
* examples/hildon-controlbar/hildon-controlbar-example.c: Adding an
example for the HildonControlBar.
* src/hildon-banner.c: Fixing some refactoring bugs.
* src/hildon-defines.c:
* src/hildon-number-editor.c:
* src/hildon-time-editor.c:
* src/hildon-time-picker.c: Gtk 2.10 fixes.
2007-01-08 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-date-editor.c:
* src/hildon-date-editor.h:
* src/hildon-time-editor.c:
* src/hildon-time-editor.h: Cleaning up the enum name.
2007-01-08 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-wizard-dialog-private.h:
* src/hildon-wizard-dialog.c:
* src/hildon-wizard-dialog.h: Cleaning up the HildonWizardDialog.
2007-01-07 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-set-password-dialog-private.h:
* src/hildon-set-password-dialog.c:
* src/hildon-set-password-dialog.h: Cleaning up the
HildonSetPasswordDialog.
2007-01-07 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-get-password-dialog-private.h:
* src/hildon-get-password-dialog.c:
* src/hildon-get-password-dialog.h: Cleaning up the
HildonGetPasswordDialog.
2007-01-05 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-font-selection-dialog.c:
* src/hildon-font-selection-dialog.h:
* src/hildon-font-selection-dialog-private.h: Cleaning up the
HildonFontSelectionDialog.
2007-01-05 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-login-dialog.c:
* src/hildon-login-dialog.h:
* src/Makefile.am:
* src/hildon-login-dialog-private.h:
* src/hildon-widgets.h: Cleaning up the HildonNamePassword dialog and
renaming it to HildonLoginDialog.
2007-01-05 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-banner.c: Introducing static protos, removing the
macrofied GType init, full the parent_class with proper value.
2007-01-05 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-banner.c:
* src/hildon-banner.h:
* src/hildon-note.c:
* src/hildon-banner-private.h: Cleaning up the HildonBanner.
* src/hildon-color-chooser-dialog-private.h:
* src/hildon-color-chooser-dialog.c:
* src/hildon-color-chooser-dialog.h: Fixing build.
2007-01-04 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-note.c:
* src/hildon-note.h:
* src/hildon-note-private.h: Cleaning up the HildonNote.
2007-01-04 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-date-editor-private.h:
* src/hildon-date-editor.c:
* src/hildon-date-editor.h: Cleaning up the date editor.
2007-01-03 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-private.h: Removing. It was only holding one private
function which is now public (makes sense).
* src/hildon-time-editor-private.h:
* src/hildon-time-editor.c:
* src/hildon-time-editor.h:
* src/hildon-time-picker.c:
* src/hildon-widgets.h: Cleaning up the time editor.
2007-01-03 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-color-chooser-dialog.c:
* src/hildon-color-chooser-dialog.h:
* src/hildon-color-chooser.c:
* src/hildon-color-chooser.h: More color chooser stuff.
2007-01-03 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* plugins:
* plugins/Makefile.am:
* plugins/hildon-color-chooser-dialog-hsv.c:
* plugins/hildon-color-chooser-hsv.c:
* src/Makefile.am:
* src/hildon-plugin-widget.c:
* src/hildon-plugin-widget.h: Removing old plugin bits.
2007-01-03 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/Makefile.am:
* src/hildon-color-button-private.h:
* src/hildon-color-button.c:
* src/hildon-color-button.h:
* src/hildon-color-chooser-button.c:
* src/hildon-color-chooser-button.h:
* src/hildon-color-chooser-dialog-private.h:
* src/hildon-color-chooser-dialog.c:
* src/hildon-color-chooser-dialog.h:
* src/hildon-color-chooser-private.h:
* src/hildon-color-chooser.c:
* src/hildon-color-chooser.h:
* src/hildon-color-popup.c:
* src/hildon-color-popup.h:
* src/hildon-color-selector.c:
* src/hildon-color-selector.h:
* src/hildon-font-selection-dialog.c:
* src/hildon-widgets.h: Cleaning up the color-widgets stuff.
2006-12-20 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-seekbar.c: Fixing one missing include file.
* src/hildon-time-picker-private.h:
* src/hildon-time-picker.c:
* src/hildon-time-picker.h: Cleaning up the HildonTimePicker.
2006-12-20 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-seekbar-private.h:
* src/hildon-seekbar.c:
* src/hildon-seekbar.h: Cleaning up the HildonSeekbar.
2006-12-19 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-number-editor-private.h:
* src/hildon-number-editor.c:
* src/hildon-number-editor.h: Cleaning up the HildonNumberEditor.
2006-12-18 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-code-dialog-private.h:
* src/hildon-code-dialog.c:
* src/hildon-code-dialog.h: Cleaning up the HildonCodeDialog.
2006-12-18 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-caption-private.h:
* src/hildon-caption.c:
* src/hildon-caption.h: Cleaning up the HildonCaption.
2006-12-18 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-sort-dialog-private.h:
* src/hildon-sort-dialog.c:
* src/hildon-sort-dialog.h: Cleaning up the HildonSortDialog.
2006-12-16 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-weekday-picker-private.h:
* src/hildon-weekday-picker.c:
* src/hildon-weekday-picker.h: Cleaning up the HildonWeekdayPicker.
2006-12-16 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-calendar-popup-private.h:
* src/hildon-calendar-popup.c:
* src/hildon-calendar-popup.h: Cleaning up the HildonCalendarPopup.
2006-12-15 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-controlbar-private.h:
* src/hildon-controlbar.c:
* src/hildon-controlbar.h: Cleaning up the HildonControlBar.
2006-12-15 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-range-editor-private.h:
* src/hildon-range-editor.c:
* src/hildon-range-editor.h: Cleaning up HildonRangeEditor.
2006-12-14 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-sound.c:
* src/hildon-sound.h: Cleaning up.
2006-12-14 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* TODO: Removing.
* src/hildon-volumebar-range.c:
* src/hildon-volumebar-range.h: Cleaning up HildonVolumebarRange.
2006-12-14 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* TODO:
* src/hildon-find-toolbar-private.h:
* src/hildon-find-toolbar.c:
* src/hildon-find-toolbar.h: Cleaning up HildonFindToolbar.
2006-12-13 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* TODO:
* src/hildon-program-private.h:
* src/hildon-program.c:
* src/hildon-program.h: Cleaning up HildonProgram.
2006-12-12 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* TODO:
* src/hildon-hvolumebar.c:
* src/hildon-hvolumebar.h: Cleaning up.
* src/hildon-vvolumebar.c: Defines fixes.
2006-12-12 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* TODO: Removing cleaned stuff.
* src/hildon-volumebar.h: Cosmetic.
* src/hildon-vvolumebar.c:
* src/hildon-vvolumebar.h: Cleaning.
2006-12-12 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* TODO: Adding more TODO.
* src/hildon-volumebar-private.h:
* src/hildon-volumebar.c:
* src/hildon-volumebar.h: Cleaning up.
* src/hildon-hvolumebar.c:
* src/hildon-vvolumebar.c: Adjusting for changes in volumebar.
* src/hildon-window-private.h:
* src/hildon-window.c:
* src/hildon-window.h: Adding the G_GNUC_CONST keyword, some more
layouting tweaks.
2006-12-12 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* TODO: Adding a TODO file.
2006-12-11 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-window-private.h:
* src/hildon-window.c:
* src/hildon-window.h: Correcting the coding style. Correcting the
identing. Modyfying to use standard gobject set_private thingies.
Making the private API not exported to symbols.
2006-12-11 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* pkgconfig/hildon.pc.in:
* src/Makefile.am: Fixing the install directories.
2006-11-28 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* autogen.sh: Updated autogen not to complain when launched without
parameters in NOCONFIGURE mode.
2006-11-28 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-sort-dialog:
* examples/hildon-sort-dialog/hildon-sort-dialog-example.c: Adding the
example for HildonSortDialog.
2006-11-23 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* configure.ac: Fixing the build problem of the examples (missing _)
* examples/Makefile.am:
* examples/hildon-weekday-picker:
* examples/hildon-weekday-picker/hildon-weekday-picker-example.c:
Adding a weekday picker example.
* src/Makefile.am: Fixing the problem mis-ordered build.
2006-11-20 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* Makefile.am:
* configure.ac:
* m4/as-version.m4:
* pkgconfig/Makefile.am:
* pkgconfig/hildon-widgets.pc.in:
* src/Makefile.am: Changing the install dirs etc.
2006-11-20 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-banner.c:
* src/hildon-calendar-popup.c:
* src/hildon-caption.c:
* src/hildon-code-dialog.c:
* src/hildon-color-button.c:
* src/hildon-color-chooser-button.c:
* src/hildon-color-chooser-button.h:
* src/hildon-color-chooser-dialog.c:
* src/hildon-color-chooser-dialog.h:
* src/hildon-color-chooser.c:
* src/hildon-color-popup.c:
* src/hildon-color-selector.c:
* src/hildon-composite-widget.c:
* src/hildon-composite-widget.h:
* src/hildon-controlbar.c:
* src/hildon-date-editor.c:
* src/hildon-defines.c:
* src/hildon-find-toolbar.c:
* src/hildon-font-selection-dialog.c:
* src/hildon-get-password-dialog.c:
* src/hildon-hvolumebar.c:
* src/hildon-hvolumebar.h:
* src/hildon-name-password-dialog.c:
* src/hildon-note.c:
* src/hildon-number-editor.c:
* src/hildon-plugin-widget.c:
* src/hildon-plugin-widget.h:
* src/hildon-program.c:
* src/hildon-program.h:
* src/hildon-range-editor.c:
* src/hildon-seekbar.c:
* src/hildon-set-password-dialog.c:
* src/hildon-sort-dialog.c:
* src/hildon-sound.c:
* src/hildon-sound.h:
* src/hildon-time-editor.c:
* src/hildon-time-picker.c:
* src/hildon-volumebar-range.c:
* src/hildon-volumebar.c:
* src/hildon-vvolumebar.c:
* src/hildon-vvolumebar.h:
* src/hildon-weekday-picker.c:
* src/hildon-widgets.h:
* src/hildon-window.c:
* src/hildon-window.h:
* src/hildon-wizard-dialog.c: Fixing the include files.
2006-11-20 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-caption:
* examples/hildon-caption/hildon-caption-example.c: Adding the example
for hildon-caption.
2006-11-20 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-banner:
* examples/hildon-banner/hildon-banner-example.c: Adding a hildon-banner example.
* examples/hildon-window/hildon-window-example.c: Addin the quit
function.
2006-11-17 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* Makefile.am:
* configure.ac:
* examples:
* examples/Makefile.am:
* examples/hildon-program:
* examples/hildon-window:
* examples/hildon-window/hildon-window-example.c:
* src/Makefile.am:
* src/hildon-banner.c:
* src/hildon-banner.h:
* src/hildon-caption.c:
* src/hildon-code-dialog.c:
* src/hildon-color-button.c:
* src/hildon-color-chooser-button.c:
* src/hildon-color-chooser-button.h:
* src/hildon-color-chooser-dialog.c:
* src/hildon-color-chooser-dialog.h:
* src/hildon-date-editor.c:
* src/hildon-defines.c:
* src/hildon-find-toolbar.c:
* src/hildon-font-selection-dialog.c:
* src/hildon-get-password-dialog.c:
* src/hildon-note.c:
* src/hildon-number-editor.c:
* src/hildon-range-editor.c:
* src/hildon-set-password-dialog.c:
* src/hildon-sort-dialog.c:
* src/hildon-sort-dialog.h:
* src/hildon-sound.c:
* src/hildon-sound.h:
* src/hildon-time-editor.h:
* src/hildon-time-picker.c:
* src/hildon-widgets.h:
* src/hildon-window.c:
* src/hildon-wizard-dialog.c: Making the stuff compile with -Werror.
2006-11-16 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/Makefile.am:
* src/gtk-infoprint.c:
* src/gtk-infoprint.h: Removing the infoprints for good.
2006-11-16 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-date-editor.c:
* hildon-date-editor.h:
* hildon-time-editor.h: Switching to a common DateTime editor error
type.
2006-11-16 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-time-editor.c:
* src/hildon-time-editor.h: Switching to a common DateTime editor
error type.
2006-11-16 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-calendar-popup.h:
* src/hildon-caption.c:
* src/hildon-caption.h:
* src/hildon-date-editor.h:
* src/hildon-font-selection-dialog.c:
* src/hildon-font-selection-dialog.h:
* src/hildon-get-password-dialog.c:
* src/hildon-get-password-dialog.h:
* src/hildon-note.c:
* src/hildon-note.h:
* src/hildon-program.h:
* src/hildon-range-editor.h:
* src/hildon-time-editor.c:
* src/hildon-time-editor.h:
* src/hildon-volumebar-range.h:
* src/hildon-weekday-picker.h:
* src/hildon-wizard-dialog.h: Removing deprecated functions.
2006-11-15 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-caption.c:
* src/hildon-caption.h:
* src/hildon-note.c:
* src/hildon-note.h:
* src/hildon-window.h: Register all the unregistered enums as GEnums
to make it easier for the language bindings.
2006-11-15 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/Makefile.am:
* src/hildon-marshalers.c:
* src/hildon-marshalers.h: Fixing the marshalers rebuilding etc.
2006-11-15 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* ./: Making the source buildable again, fixing the mkenums thingy.
2006-11-14 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* ./: Removing the whole lot of deprecated components.
2006-11-14 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* ./: Some basic fixed to make the source actually buildable. Removing
the marshallers from the build system for a little while.
2006-11-14 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* configure.ac:
* pkgconfig/hildon-widgets.pc.in: Few more fixes for the pkgconfig
file.
2006-11-14 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* ./: Moving pkgconfig file to pkgconfig/.
2006-11-14 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* ./: Removing plugins and doc temporarily from the build process.
Upgrading the autogen.sh and configure.ac.
2006-11-14 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* ./: Removing the theme, ut and timer.
2006-11-14 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* ./: hildon-widgets => src . hildon-widgets-plugins => plugins.
Changing dir names etc.
2006-11-10 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.14.11-1 release]
* configure.ac:
* debian/changelog: Updating.
2006-11-09 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-date-editor.c:
* hildon-widgets/hildon-time-editor.c: Fixing the back logical string used.
2006-11-08 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.14.10-1 release]
* configure.ac:
* debian/changelog: Updating.
2006-11-08 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-libs.c:
Removed gtk_widget_grab_focus on entry_validate() and added
control on entry_changed() for moving the focus when validate returns
NO_ERROR. Also it's used skip_validation for not validating
twice when entering a valid date in each entry.
Fixes NB#41059 and NB#42579.
2006-11-01 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.14.8-1 release]
* configure.ac:
* debian/changelog: Updating.
* hildon-widgets/hildon-scroll-area.c: Fixing a silly compilation
breakage.
2006-10-31 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-scroll-area.c:
* hildon-widgets/hildon-scroll-area.h: When using a GtkTextView inside
the HildonScrollArea try to "compensete" the cursor position
scrolling. Fixes NB#20219.
2006-10-30 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-font-selection-dialog.c: Making the preview
dialog wider when being font sizes are being used. Fixes NB#41501.
2006-10-30 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-set-password-dialog.c: Removing
auto-capitalization from the entry used to verify the password. Fixes
NB#39585.
2006-10-24 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.14.7-1 release]
* configure.ac:
* debian/changelog: Updating.
* hildon-widgets/hildon-time-editor.c: Adding a "skipper" variable
that prevents us from doing validations from within validations. When
skipper == TRUE vallidation step is being skipped. A workaround.
Fixes NB#44610.
2006-10-24 Daniel Elstner <daniel.kitta@gmail.com>
* hildon-widgets/hildon-find-toolbar.h (search, close,
invalid_input, history_append): Remove the final user_data
parameter from the signal prototypes. The user_data pointer
is a generic feature of GLib signal handling and not supposed
to be declared explicitely. (MB#185)
2006-10-23 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-time-editor.c: Removing the extra focus grab,
missing patch from NB#42555.
2006-10-20 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-time-editor.c:
(hildon_time_editor_entry_keypress): Added check for not allowed keys.
Fixes NB#43926.
* hildon-widgets/hildon-time-editor.h:
Added INVALID_CHAR to HildonTimeEditorErrorType enumeration.
2006-10-20 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-find-toolbar.c: Do not grab focus but just
hide the IM context when the toolbar is being closed. Patch by Tomas
Ostman, fixes for good NB#34193.
2006-10-20 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-date-editor.c: Changing the error infobanner
displayed to ckct_ib_illegal_character (when user presses non-numeric
character in the date editor).
2006-10-19 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-date-editor.c:
(hildon_date_editor_keypress): Added check for not allowed keys.
(hildon_date_editor_date_error): Added banner message for not
allowed keys. Fixes NB#41049.
* hildon-widgets/hildon-date-editor.h:
Added INVALID_CHAR to HildonDateEditorErrorType enumeration.
2006-10-19 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-banner.c:
(force_to_wrap_truncated): Set label size request to its natural
size (it stands fixed after it's wrapped). Fixes NB#38598.
2006-10-18 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.14.6-1 release]
* configure.ac:
* debian/changelog: Updating.
2006-10-18 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets-plugins/hildon-color-chooser-hsv.c: Fixing the
clipping in the color selector. Fixes NB#43565.
2006-10-18 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-color-button.c: One more extra to actually fix
NB#39798.
2006-10-16 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-get-password-dialog.c: Making the password
text entry 20 characters long. Fixes NB#39586. A workaround.
2006-10-16 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-name-password-dialog.c: Fixing the
auto-capitalization issues in the name password dialog. Two things
accumulated here -- missing NULL in property set and the lack of
visibility re-set after input method hint setting (this should not be
needed BTW). Fixes NB#37467.
2006-10-16 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-color-button.c: Correctly fixing NB#39798 --
the expose event should draw it's bits according to widget's
allocation and not the expose area.
2006-10-16 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets-plugins/hildon-color-chooser-hsv.c: Changing the way the
dimmed elements of the dialog are being drawn -- fixes NB#41498.
Cache the pre-generated dimmed pixbuf to improve the performance. We could
cache the actual hsv plane too in a similiar way.
2006-10-11 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets-plugins/hildon-color-chooser-hsv.c: Adding the border
around the color selector. Fixes #NB42007.
2006-10-10 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-font-selection-dialog.c: Forcing the dialog to
be more wide. A slightly ugly fix, but fixes NB#41501. Will be fixed
properly once we solve all the label truncating/wrapping/ellipsizing
issues.
2006-10-10 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-date-editor.c: Remove the focus grab after
dialog execution. Fixes NB#42555.
2006-10-06 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-date-editor.c:
(hildon_date_editor_entry_validate): Set the stored date value
when it's validated with some entry empty. Fixes NB#42504.
2006-10-06 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.14.5-1 release]
* configure.ac:
* debian/changelog: Update.
* debian/hildon-libs-dev.install: Removing redundant .la/.a files.
2006-10-06 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* debian/copyright: One more license fix.
2006-10-06 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets-plugins/hildon-color-chooser-dialog-hsv.c:
* hildon-widgets-plugins/hildon-color-chooser-hsv.c:
* hildon-widgets/gtk-infoprint.c:
* hildon-widgets/gtk-infoprint.h:
* hildon-widgets/hildon-add-home-dialog.c:
* hildon-widgets/hildon-add-home-dialog.h:
* hildon-widgets/hildon-app-private.h:
* hildon-widgets/hildon-app.c:
* hildon-widgets/hildon-app.h:
* hildon-widgets/hildon-appview.c:
* hildon-widgets/hildon-appview.h:
* hildon-widgets/hildon-banner.c:
* hildon-widgets/hildon-banner.h:
* hildon-widgets/hildon-calendar-popup.c:
* hildon-widgets/hildon-calendar-popup.h:
* hildon-widgets/hildon-caption.c:
* hildon-widgets/hildon-caption.h:
* hildon-widgets/hildon-code-dialog.c:
* hildon-widgets/hildon-code-dialog.h:
* hildon-widgets/hildon-color-button.c:
* hildon-widgets/hildon-color-button.h:
* hildon-widgets/hildon-color-chooser-button.c:
* hildon-widgets/hildon-color-chooser-button.h:
* hildon-widgets/hildon-color-chooser-dialog.c:
* hildon-widgets/hildon-color-chooser-dialog.h:
* hildon-widgets/hildon-color-chooser.c:
* hildon-widgets/hildon-color-chooser.h:
* hildon-widgets/hildon-color-popup.c:
* hildon-widgets/hildon-color-popup.h:
* hildon-widgets/hildon-color-selector.c:
* hildon-widgets/hildon-color-selector.h:
* hildon-widgets/hildon-composite-widget.c:
* hildon-widgets/hildon-composite-widget.h:
* hildon-widgets/hildon-controlbar.c:
* hildon-widgets/hildon-controlbar.h:
* hildon-widgets/hildon-date-editor.c:
* hildon-widgets/hildon-date-editor.h:
* hildon-widgets/hildon-defines.c:
* hildon-widgets/hildon-defines.h:
* hildon-widgets/hildon-dialoghelp.c:
* hildon-widgets/hildon-dialoghelp.h:
* hildon-widgets/hildon-file-handling-note.c:
* hildon-widgets/hildon-file-handling-note.h:
* hildon-widgets/hildon-find-toolbar.c:
* hildon-widgets/hildon-find-toolbar.h:
* hildon-widgets/hildon-font-selection-dialog.c:
* hildon-widgets/hildon-font-selection-dialog.h:
* hildon-widgets/hildon-get-password-dialog.c:
* hildon-widgets/hildon-get-password-dialog.h:
* hildon-widgets/hildon-grid-item-private.h:
* hildon-widgets/hildon-grid-item.c:
* hildon-widgets/hildon-grid-item.h:
* hildon-widgets/hildon-grid.c:
* hildon-widgets/hildon-grid.h:
* hildon-widgets/hildon-hvolumebar.c:
* hildon-widgets/hildon-hvolumebar.h:
* hildon-widgets/hildon-input-mode-hint.h:
* hildon-widgets/hildon-name-password-dialog.c:
* hildon-widgets/hildon-name-password-dialog.h:
* hildon-widgets/hildon-note.c:
* hildon-widgets/hildon-note.h:
* hildon-widgets/hildon-number-editor.c:
* hildon-widgets/hildon-number-editor.h:
* hildon-widgets/hildon-plugin-widget.c:
* hildon-widgets/hildon-plugin-widget.h:
* hildon-widgets/hildon-private.h:
* hildon-widgets/hildon-program.c:
* hildon-widgets/hildon-program.h:
* hildon-widgets/hildon-range-editor.c:
* hildon-widgets/hildon-range-editor.h:
* hildon-widgets/hildon-scroll-area.c:
* hildon-widgets/hildon-scroll-area.h:
* hildon-widgets/hildon-seekbar.c:
* hildon-widgets/hildon-seekbar.h:
* hildon-widgets/hildon-set-password-dialog.c:
* hildon-widgets/hildon-set-password-dialog.h:
* hildon-widgets/hildon-sort-dialog.c:
* hildon-widgets/hildon-sort-dialog.h:
* hildon-widgets/hildon-system-sound.c:
* hildon-widgets/hildon-system-sound.h:
* hildon-widgets/hildon-telephone-editor.c:
* hildon-widgets/hildon-telephone-editor.h:
* hildon-widgets/hildon-time-editor.c:
* hildon-widgets/hildon-time-editor.h:
* hildon-widgets/hildon-time-picker.c:
* hildon-widgets/hildon-time-picker.h:
* hildon-widgets/hildon-volumebar-private.h:
* hildon-widgets/hildon-volumebar-range.c:
* hildon-widgets/hildon-volumebar-range.h:
* hildon-widgets/hildon-volumebar.c:
* hildon-widgets/hildon-volumebar.h:
* hildon-widgets/hildon-vvolumebar.c:
* hildon-widgets/hildon-vvolumebar.h:
* hildon-widgets/hildon-weekday-picker.c:
* hildon-widgets/hildon-weekday-picker.h:
* hildon-widgets/hildon-window-private.h:
* hildon-widgets/hildon-window.c:
* hildon-widgets/hildon-window.h:
* hildon-widgets/hildon-wizard-dialog.c:
* hildon-widgets/hildon-wizard-dialog.h:
* timer/timer.c:
* timer/timer.h:
* ut/hildon-clock-widgets_tests.c:
* ut/hildon-widgets_tests.c:
* ut/tc_banner_truncate.c: One again fixing the license headers...
NB#40228.
2006-10-05 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* common-rcfiles/gtk-2.0/ossomediaplayer: Changing the wizard dialog
enum to equal GTK_RESPONSE_CANCEL for automatic Escape key handling.
Fixes NB#41234.
2006-10-04 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-caption.c:
* hildon-widgets/hildon-caption.h: Adding a new property:
"icon-position" and helper set/get routine methods.
This propery controls the align/position of the icon in the caption.
The icon can be aligned left or right.
2006-10-04 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-wizard-dialog.c: Adding an "autotitle"
property that controls the way wizard handles window titles. If set to
TRUE (default) the wizard will automatically update window title when
changing wizard pages. If set to FALSE, no title handling is being
done, and the title can be overriden by the application developer.
2006-10-05 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-time-editor.c
(validated_conversion): Modifications to check the '-'
input and change value to the default min. Fixes NB#40059.
2006-10-04 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-set-password-dialog.c: Turning off the
auto-capitalization. Fixes NB#39585.
2006-10-03 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* debian/rules: Correcting debian debug package generation. Should
really fix NB#40532.
2006-10-02 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets-plugins/hildon-color-chooser-dialog-hsv.c: Make ok
the default response for the dialog. Fixes NB#39909.
2006-09-29 Tomas Junnonen <tomas.junnonen@nokia.com>
* hildon-font-selection-dialog.c: Remove extra space in font size
string. Fixes NB#41291.
2006-09-26 Iain Holmes <iain@openedhand.com>
* hildon-wizard-dialog.c: Show all created widgets so that a
gtk_widget_show is all that is required to display the dialog
correctly. Fixes MB#432.
2006-09-25 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-number-editor.c: Applying a patch by Fernando
Herrera to fix the number editor notification signals. Fixes MB#625.
2006-09-22 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.14.4-1 release]
* configure.ac:
* debian/changelog: Update.
2006-09-21 Tommi Komulainen <tommi.komulainen@nokia.com>
* hildon-widgets/hildon-find-toolbar.c
(hildon_find_toolbar_entry_activate): Stop 'activate' signal emission
to prevent focus from moving. NB#40936
2006-09-22 Tommi Komulainen <tommi.komulainen@nokia.com>
* hildon-widgets/hildon-volumebar.h (HildonVolumebarPrivate)
* hildon-widgets/hildon-volumebar.c (hildon_volumebar_size_allocate,
hildon_volumebar_realize, hildon_volumebar_unrealize,
hildon_volumebar_map, hildon_volumebar_unmap,
hildon_volumebar_notify, hildon_volumebar_class_init): Add a
input-only event window to catch button-press events anywhere in the
widget when the widget is insensitive. NB#6214
* hildon-widgets/hildon-hvolumebar.c (hildon_hvolumebar_size_allocate):
* hildon-widgets/hildon-vvolumebar.c (hildon_vvolumebar_size_allocate):
Chain to parent so that the event window is properly resized.
2006-09-22 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets-plugins/hildon-color-chooser-dialog-hsv.c:
* hildon-widgets-plugins/hildon-color-chooser-hsv.c: Changing the name
in witch the borders afre being draw around color selectors. Fixes
NB#40057.
Making the dimmed color bar/plane look a bit nicer.
* hildon-widgets/hildon-name-password-dialog.c: Changing the 'name'
property of the dialog to 'username'. Fixes #MB772.
2006-09-21 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-font-selection-dialog.c: Do not put the
"reference" text in the font preview dialog if the super/subscript
setting has not been selected. Fixes #NB40999.
2006-09-21 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-number-editor.c:
(hildon_number_editor_validate_value): Modified the condition
for checking if the inputted value is 0 when range minimun is
positive. Fixes #NB30734.
2006-09-21 Fernando Herrera <fernando.herrera-de-las-heras@nokia.com>
* hildon-widgets/hildon-get-password-dialog.c:
(hildon_get_password_get_property): Fix "numbers-only" getter.
Fix #MB769
2006-09-21 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets-plugins/hildon-color-chooser-dialog-hsv.c: Reverting
the hex -> color func (hsv not supported by the parse function).
Fixing a bug where last character is not appended to the color ->
ascii conversion. Fixes #NB40061.
2006-09-20 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-get-password-dialog.c: Fixing the way input
method is set. Fixes #NB37467.
* hildon-widgets/hildon-name-password-dialog.c: Fixing the way the
password entry is being accessed. Fixes #MB767. Using a patch by
Lorenzo Gil Sanchez.
2006-09-19 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-date-editor.c:
(hildon_date_editor_keypress): On left or right key pressed, it
first takes in consideration the current cursor position inside
the entries. If it's in an edge, focus moves to the widget on the
right or left. Fixes #NB40770.
2006-09-19 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets-plugins/hildon-color-chooser-dialog-hsv.c: Agh...
correcting silly mistake.
2006-09-19 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets-plugins/hildon-color-chooser-dialog-hsv.c:
Replacing a custom hex -> color with a stock gdk func.
* hildon-widgets/hildon-caption.c:
Ups... a momentary lapse of reason.
2006-09-19 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-time-editor.c:
(validated_conversion): Added default parameter -- if the field is
empty, sets this value.
(hildon_time_editor_real_validate): Gets current values to pass it
as the default values to forward validation. Fixes #NB39048.
2006-09-19 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-caption.c: Do not draw the focus border when
the label has no text set. Fixes #NB40649.
Also fixing some memory leaks in properties setting.
2006-09-19 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-time-editor.c:
(hildon_time_editor_entry_clicked): This function has been
removed. It is not needed any more.
(_hildon_time_editor_entry_select_all): Added in order to perform
the whole text selection into the entry with an idle call.
(hildon_time_editor_entry_focusin): Modified to just add the
function above to the idle queue.
Fixes #NB40665.
* hildon-widgets/hildon-caption.c (hildon_caption_button_press):
Added condition to return when the widget has already the focus.
Fixes #NB31086.
2006-09-19 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-color-button.c: Draw insensitive grid over the
color button widget if the widget is insensitive. Fixes #NB40329.
2006-09-18 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* debian/control:
* debian/rules: Fixing the debug symbols package. Fixes #NB40532.
2006-09-15 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.14.3-1 release]
* configure.ac:
* debian/changelog: Bumping version numbers, adding info about the
fixes.
2006-09-15 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-window.c: When a new menu is being attached to
the window, call show on the menu itself, not the whole window. Fixes
#NB40566.
2006-09-14 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-date-editor.c:
(hildon_date_editor_entry_released): Removed this function in order
to avoid the selection of the entry with the second click.
(hildon_date_editor_entry_focusin): Removed the test, now we want
to select the entry using the callback in all the situations.
Fixes #NB39612.
* hildon-widgets/hildon-number-editor.c: renamed {plus,minus}-button
widgets to ne-{plus,minus}-button in order to do the theming without
depending on the HildonNumberEditor widget name. Fixes #MB624. Will
work with new theme config.
2006-09-14 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-composite-widget.c: Changed the focus
handler -- with hildon-time-editor and hildon-date-editor, if we
are moving up or down, with the focus inside the widget, we return
false to force moving to the next widget outside. Fixes #NB36938.
2006-09-14 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-defines.c: Ensure the style before setting the
logical color. Fixes #NB40041.
2006-09-14 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-date-editor.c: Bring focus to date after the
date has been choosen in the calendar popup.
* hildon-widgets/hildon-time-editor.c: Bring focus to time after
time has been choosen in the time picker. Fixes #NB39565.
2006-09-13 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[Merging the atk-branch fixes]
* hildon-widgets/hildon-date-editor.c: Use button instead of event
box for the calendar icon.
* hildon-widgets/hildon-time-editor.c: Use button instead of the label
for the am/pm switcher. Fixes #NB25602, #NB24411.
2006-09-12 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* debian/copyright:
* hildon-widgets-plugins/hildon-color-chooser-dialog-hsv.c:
* hildon-widgets-plugins/hildon-color-chooser-hsv.c:
* hildon-widgets/gtk-infoprint.c:
* hildon-widgets/gtk-infoprint.h:
* hildon-widgets/hildon-add-home-dialog.c:
* hildon-widgets/hildon-add-home-dialog.h:
* hildon-widgets/hildon-app-private.h:
* hildon-widgets/hildon-app.c:
* hildon-widgets/hildon-app.h:
* hildon-widgets/hildon-appview.c:
* hildon-widgets/hildon-appview.h:
* hildon-widgets/hildon-banner.c:
* hildon-widgets/hildon-banner.h:
* hildon-widgets/hildon-calendar-popup.c:
* hildon-widgets/hildon-calendar-popup.h:
* hildon-widgets/hildon-caption.c:
* hildon-widgets/hildon-caption.h:
* hildon-widgets/hildon-code-dialog.c:
* hildon-widgets/hildon-code-dialog.h:
* hildon-widgets/hildon-color-button.c:
* hildon-widgets/hildon-color-button.h:
* hildon-widgets/hildon-color-chooser-button.c:
* hildon-widgets/hildon-color-chooser-button.h:
* hildon-widgets/hildon-color-chooser-dialog.c:
* hildon-widgets/hildon-color-chooser-dialog.h:
* hildon-widgets/hildon-color-chooser.c:
* hildon-widgets/hildon-color-chooser.h:
* hildon-widgets/hildon-color-popup.c:
* hildon-widgets/hildon-color-popup.h:
* hildon-widgets/hildon-color-selector.c:
* hildon-widgets/hildon-color-selector.h:
* hildon-widgets/hildon-composite-widget.c:
* hildon-widgets/hildon-composite-widget.h:
* hildon-widgets/hildon-controlbar.c:
* hildon-widgets/hildon-controlbar.h:
* hildon-widgets/hildon-date-editor.c:
* hildon-widgets/hildon-date-editor.h:
* hildon-widgets/hildon-defines.c:
* hildon-widgets/hildon-defines.h:
* hildon-widgets/hildon-dialoghelp.c:
* hildon-widgets/hildon-dialoghelp.h:
* hildon-widgets/hildon-file-handling-note.c:
* hildon-widgets/hildon-file-handling-note.h:
* hildon-widgets/hildon-find-toolbar.c:
* hildon-widgets/hildon-find-toolbar.h:
* hildon-widgets/hildon-font-selection-dialog.c:
* hildon-widgets/hildon-font-selection-dialog.h:
* hildon-widgets/hildon-get-password-dialog.c:
* hildon-widgets/hildon-get-password-dialog.h:
* hildon-widgets/hildon-grid-item-private.h:
* hildon-widgets/hildon-grid-item.c:
* hildon-widgets/hildon-grid-item.h:
* hildon-widgets/hildon-grid.c:
* hildon-widgets/hildon-grid.h:
* hildon-widgets/hildon-hvolumebar.c:
* hildon-widgets/hildon-hvolumebar.h:
* hildon-widgets/hildon-input-mode-hint.h:
* hildon-widgets/hildon-name-password-dialog.c:
* hildon-widgets/hildon-name-password-dialog.h:
* hildon-widgets/hildon-note.c:
* hildon-widgets/hildon-note.h:
* hildon-widgets/hildon-number-editor.c:
* hildon-widgets/hildon-number-editor.h:
* hildon-widgets/hildon-plugin-widget.c:
* hildon-widgets/hildon-plugin-widget.h:
* hildon-widgets/hildon-private.h:
* hildon-widgets/hildon-program.c:
* hildon-widgets/hildon-program.h:
* hildon-widgets/hildon-range-editor.c:
* hildon-widgets/hildon-range-editor.h:
* hildon-widgets/hildon-scroll-area.c:
* hildon-widgets/hildon-scroll-area.h:
* hildon-widgets/hildon-seekbar.c:
* hildon-widgets/hildon-seekbar.h:
* hildon-widgets/hildon-set-password-dialog.c:
* hildon-widgets/hildon-set-password-dialog.h:
* hildon-widgets/hildon-sort-dialog.c:
* hildon-widgets/hildon-sort-dialog.h:
* hildon-widgets/hildon-system-sound.c:
* hildon-widgets/hildon-system-sound.h:
* hildon-widgets/hildon-telephone-editor.c:
* hildon-widgets/hildon-telephone-editor.h:
* hildon-widgets/hildon-time-editor.c:
* hildon-widgets/hildon-time-editor.h:
* hildon-widgets/hildon-time-picker.c:
* hildon-widgets/hildon-time-picker.h:
* hildon-widgets/hildon-volumebar-private.h:
* hildon-widgets/hildon-volumebar-range.c:
* hildon-widgets/hildon-volumebar-range.h:
* hildon-widgets/hildon-volumebar.c:
* hildon-widgets/hildon-volumebar.h:
* hildon-widgets/hildon-vvolumebar.c:
* hildon-widgets/hildon-vvolumebar.h:
* hildon-widgets/hildon-weekday-picker.c:
* hildon-widgets/hildon-weekday-picker.h:
* hildon-widgets/hildon-window-private.h:
* hildon-widgets/hildon-window.c:
* hildon-widgets/hildon-window.h:
* hildon-widgets/hildon-wizard-dialog.c:
* hildon-widgets/hildon-wizard-dialog.h:
* po/en_GB.po:
* timer/timer.c:
* timer/timer.h:
* ut/hildon-clock-widgets_tests.c:
* ut/hildon-widgets_tests.c:
* ut/tc_banner_truncate.c: Fixing the copyright headers.
* hildon-widgets/hildon-defines.c: Making the disposing of style data
more secure/null-proof.
2006-09-11 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-app.h:
* hildon-widgets/hildon-defines.h: Reverting back to old key mapping.
2006-09-11 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-time-editor.c: When user clicked the clock
button, before launching the time picker try to validate the entered
values. Fixes #NB40055.
2006-09-11 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.14.2-1 release]
* configure.ac:
* debian/changelog: Bumping version numbers, adding details about the
fixes.
2006-09-11 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-time-editor.c: Do an extra validity check when
switching to another field. Fixes #NB40054.
2006-09-08 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-window.c: Call the
hildon_window_is_topmost_notify before firing the g-object
notification signal. Fixes #NB39202.
2006-09-07 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.14.1-2 release]
* debian/changelog: Bumping version numbers.
2006-09-07 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-app.h:
* hildon-widgets/hildon-defines.h: Once again reverting the Johan's
patch for new key handling.
2006-09-07 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-find-toolbar.c: Move focus to the parent
widget when the toolbar is closed. Fixes #NB34193.
2006-09-07 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-defines.c: Fixing the recursive call in
_set_recursive_from_ld. The container for_each call was missing a
parameter and effectively passing NULL as data. So amateurish. Fixes
#NB39181.
2006-09-07 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-defines.h: Adding gdkkeysyms.h to includes.
Fixes #NB39714.
2006-09-06 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-color-button.c: Redraw the button if cancel
was pressed in the color selection dialog. Fixes #NB39778 but I think
the real cause of the bug lies at a different level.
2006-09-06 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.14.1-1 release]
* configure.ac: Version bump. Display version string during configure
stage.
* debian/changelog: Adding release details.
2006-09-06 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-font-selection-dialog.c: Adding a comment
about the new property introduced. Once we have property documentation
we need to mark it with a "Since: 0.14.1" keyword ("font-scaling").
2006-09-06 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* Makefile.am:
* configure.ac: Removing the unit tests (ut/outo) from the build
system. They're introducing an additionall dependency and need to be
fixed/arranged differently anyways.
2006-09-06 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-app.h:
* hildon-widgets/hildon-defines.h: Applying Johan's new key mapping
patch back again. WARNING: This breaks compatibility with IT-2006.
* hildon-widgets/hildon-caption.c: Add specific behaviour for
containers when press button event occurs. Fixes #NB36843.
* hildon-widgets/hildon-program.c:
* hildon-widgets/hildon-window.c: Adding a patch to fix occassional
BadWindow X errors. Fixes #NB39679.
2006-09-06 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-sort-dialog.c: Adding a function to add
reversed sort keys. Reversed sort keys present Descending/Ascending
selection instead of Ascending/Descending default. Fixes #NB32544.
2006-09-05 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-note.c: Fixing the behaviour of
hildon_note_new_confirmation_with_icon_stock. Fixes #NB22825.
2006-09-05 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-font-selection-dialog.c: Adding a
"font-scaling" property that allows to customize the output of the
Preview dialog during font selection. By default font-scaling equals
1.0 = no change. Applications/clients should apply here the
font-scaling they use for user-output/visualization. Fixes #NB19001.
2006-09-05 Tomas Junnonen <tomas.junnonen@nokia.com>
* src/hildon-widgets/hildon-find-toolbar.c: Start search on "activate"
entry signal instead of only KP_Enter.
2006-09-04 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-banner.c: Aling the stock images to 0.0
position, not to the center. Fixes #NB31168.
2006-09-04 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-color-selector.c:
* hildon-widgets/hildon-time-picker.c: Applying a small patch by
Tamminen Eero to save some bytes of ram. Fixes #NB22965.
2006-09-04 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* hildon-widgets/hildon-font-selection-dialog.c: Excluding some more
hardcoded fonts from the font selection dialog. We need a flexible API
to do that in future, but currently introducing it wouldn't be
feasible. Fixes #NB30530.
2006-09-01 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* debian/changelog: Small ver. fix.
2006-09-01 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.14.0-1 release]
2006-09-01 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* debian/changelog: Adding info about bugs fixed: #NB16830, #NB38487,
#NB36938, #NB34642, #NB32772, #NB38598.
* doc/design/abstract_vs_modular_plugin_widgets.dia:
* doc/design/abstract_vs_modular_plugin_widgets.png: Adding the
missing design schemes.
2006-09-01 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* po/POTFILES.in:
* po/en_GB.po: Rebuilding & updating the PO files.
2006-08-31 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* changelog: Adding one more bug fix from the mergedown. Fixes
#NB38565.
2006-08-31 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* debian/changelog:
* hildon-widgets/hildon-defines.c: Disconnect the signal before
attaching a new one -- prevents signals from being emitted two times,
fixes a memory leak. Fixes #NB26114.
2006-08-31 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* debian/changelog:
* hildon-widgets/hildon-wizard-dialog.c: Changing the orded of the
buttons in the wizard dialog to be: finish, previous, next, cancel.
Fixes #NB34613.
2006-08-31 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* debian/changelog:
* hildon-widgets/hildon-name-password-dialog.c: Applying a patch by
Fernando to fix the autocaptialization for username/password entries.
Fixes #NB37467.
2006-08-30 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[Merging 0.13.1 => TRUNK]
* ./: Merging the experimental color selector branch. Fixes: #NB37010,
#NB38559, #NB33217, #NB37172.
Maintainer change:
Michael Dominic Kostrzewa
<michael.kostrzewa@nokia.com>
* configure.ac: Bumping the version number to 0.14.0.
2006-08-30 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.13.1 branch]
* ./: Cosmetics.
2006-08-30 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.13.1 branch]
* AUTHORS: Adding an AUTHORS file with maintainer/contact information.
* debian/control:
* debian/copyright:
* hildon-widgets-plugins/hildon-color-chooser-dialog-hsv.c:
* hildon-widgets-plugins/hildon-color-chooser-hsv.c:
* hildon-widgets/gtk-infoprint.c:
* hildon-widgets/gtk-infoprint.h:
* hildon-widgets/hildon-add-home-dialog.c:
* hildon-widgets/hildon-add-home-dialog.h:
* hildon-widgets/hildon-app-private.h:
* hildon-widgets/hildon-app.c:
* hildon-widgets/hildon-app.h:
* hildon-widgets/hildon-appview.c:
* hildon-widgets/hildon-appview.h:
* hildon-widgets/hildon-banner.c:
* hildon-widgets/hildon-banner.h:
* hildon-widgets/hildon-calendar-popup.c:
* hildon-widgets/hildon-calendar-popup.h:
* hildon-widgets/hildon-caption.c:
* hildon-widgets/hildon-caption.h:
* hildon-widgets/hildon-code-dialog.c:
* hildon-widgets/hildon-code-dialog.h:
* hildon-widgets/hildon-color-button.c:
* hildon-widgets/hildon-color-button.h:
* hildon-widgets/hildon-color-chooser-button.c:
* hildon-widgets/hildon-color-chooser-button.h:
* hildon-widgets/hildon-color-chooser-dialog.c:
* hildon-widgets/hildon-color-chooser-dialog.h:
* hildon-widgets/hildon-color-chooser.c:
* hildon-widgets/hildon-color-chooser.h:
* hildon-widgets/hildon-color-popup.c:
* hildon-widgets/hildon-color-popup.h:
* hildon-widgets/hildon-color-selector.c:
* hildon-widgets/hildon-color-selector.h:
* hildon-widgets/hildon-composite-widget.c:
* hildon-widgets/hildon-composite-widget.h:
* hildon-widgets/hildon-controlbar.c:
* hildon-widgets/hildon-controlbar.h:
* hildon-widgets/hildon-date-editor.c:
* hildon-widgets/hildon-date-editor.h:
* hildon-widgets/hildon-defines.c:
* hildon-widgets/hildon-defines.h:
* hildon-widgets/hildon-dialoghelp.c:
* hildon-widgets/hildon-dialoghelp.h:
* hildon-widgets/hildon-file-handling-note.c:
* hildon-widgets/hildon-file-handling-note.h:
* hildon-widgets/hildon-find-toolbar.c:
* hildon-widgets/hildon-find-toolbar.h:
* hildon-widgets/hildon-font-selection-dialog.c:
* hildon-widgets/hildon-font-selection-dialog.h:
* hildon-widgets/hildon-get-password-dialog.c:
* hildon-widgets/hildon-get-password-dialog.h:
* hildon-widgets/hildon-grid-item-private.h:
* hildon-widgets/hildon-grid-item.c:
* hildon-widgets/hildon-grid-item.h:
* hildon-widgets/hildon-grid.c:
* hildon-widgets/hildon-grid.h:
* hildon-widgets/hildon-hvolumebar.c:
* hildon-widgets/hildon-hvolumebar.h:
* hildon-widgets/hildon-input-mode-hint.h:
* hildon-widgets/hildon-name-password-dialog.c:
* hildon-widgets/hildon-name-password-dialog.h:
* hildon-widgets/hildon-note.c:
* hildon-widgets/hildon-note.h:
* hildon-widgets/hildon-number-editor.c:
* hildon-widgets/hildon-number-editor.h:
* hildon-widgets/hildon-plugin-widget.c:
* hildon-widgets/hildon-plugin-widget.h:
* hildon-widgets/hildon-private.h:
* hildon-widgets/hildon-program.c:
* hildon-widgets/hildon-program.h:
* hildon-widgets/hildon-range-editor.c:
* hildon-widgets/hildon-range-editor.h:
* hildon-widgets/hildon-scroll-area.c:
* hildon-widgets/hildon-scroll-area.h:
* hildon-widgets/hildon-seekbar.c:
* hildon-widgets/hildon-seekbar.h:
* hildon-widgets/hildon-set-password-dialog.c:
* hildon-widgets/hildon-set-password-dialog.h:
* hildon-widgets/hildon-sort-dialog.c:
* hildon-widgets/hildon-sort-dialog.h:
* hildon-widgets/hildon-system-sound.c:
* hildon-widgets/hildon-system-sound.h:
* hildon-widgets/hildon-telephone-editor.c:
* hildon-widgets/hildon-telephone-editor.h:
* hildon-widgets/hildon-time-editor.c:
* hildon-widgets/hildon-time-editor.h:
* hildon-widgets/hildon-time-picker.c:
* hildon-widgets/hildon-time-picker.h:
* hildon-widgets/hildon-volumebar-private.h:
* hildon-widgets/hildon-volumebar-range.c:
* hildon-widgets/hildon-volumebar-range.h:
* hildon-widgets/hildon-volumebar.c:
* hildon-widgets/hildon-volumebar.h:
* hildon-widgets/hildon-vvolumebar.c:
* hildon-widgets/hildon-vvolumebar.h:
* hildon-widgets/hildon-weekday-picker.c:
* hildon-widgets/hildon-weekday-picker.h:
* hildon-widgets/hildon-window-private.h:
* hildon-widgets/hildon-window.c:
* hildon-widgets/hildon-window.h:
* hildon-widgets/hildon-wizard-dialog.c:
* hildon-widgets/hildon-wizard-dialog.h:
* timer/timer.c:
* timer/timer.h:
* ut/hildon-clock-widgets_tests.c:
* ut/hildon-widgets_tests.c:
* ut/tc_banner_truncate.c: Adding myself as the contact
person/maintainer. FIxing copyright notices to include 2006 as new things
were added this year.
2006-08-30 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.13.1 branch]
* hildon-widgets/hildon-app.h:
* hildon-widgets/hildon-defines.h: Undoing the Johan's new
key-handling changes from 2006-08-10. That requires a fix at a
different level, waiting for Daniel Stone.
2006-08-30 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.13.1 branch]
* debian==/changelog: Adding some missing entries about bugs being
fixed.
* debian/copyright: Adding information about the license version of
the package.
2006-08-29 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.13.1 branch]
* hildon-widgets/hildon-window.c: Properly ref the attached menus,
allow NULL to be passed to the attach function to remove the existing
menu. Fixes NB#32845.
2006-08-29 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.13.1 branch]
* debian/control: Removing unnecessary manual dependencies, fixes
NB#34225.
2006-08-29 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.13.1 branch]
* hildon-widgets-plugins/Makefile.am:
* hildon-widgets-plugins/hildon-color-chooser-dialog_hsv.c:
* hildon-widgets-plugins/hildon-color-chooser_hsv.c:
* hildon-widgets-plugins/hildoncolorchooser_hsv.c:
* hildon-widgets-plugins/hildoncolorchooserdialog_hsv.c: Removing
left overs from the old color selector code, making the file names
more sane.
2006-08-29 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.13.1 branch]
* hildon-widgets-plugins/hildon-color-chooser-dialog_hsv.c:
* hildon-widgets-plugins/hildon-color-chooser_hsv.c:
* hildon-widgets-plugins/hildoncolorchooser_hsv.c:
* hildon-widgets/gtk-infoprint.c:
* hildon-widgets/gtk-infoprint.h:
* hildon-widgets/hildon-add-home-dialog.c:
* hildon-widgets/hildon-add-home-dialog.h:
* hildon-widgets/hildon-app-private.h:
* hildon-widgets/hildon-app.c:
* hildon-widgets/hildon-app.h:
* hildon-widgets/hildon-appview.c:
* hildon-widgets/hildon-appview.h:
* hildon-widgets/hildon-banner.c:
* hildon-widgets/hildon-banner.h:
* hildon-widgets/hildon-calendar-popup.c:
* hildon-widgets/hildon-calendar-popup.h:
* hildon-widgets/hildon-caption.c:
* hildon-widgets/hildon-caption.h:
* hildon-widgets/hildon-code-dialog.c:
* hildon-widgets/hildon-code-dialog.h:
* hildon-widgets/hildon-color-button.c:
* hildon-widgets/hildon-color-button.h:
* hildon-widgets/hildon-color-chooser-button.c:
* hildon-widgets/hildon-color-chooser-button.h:
* hildon-widgets/hildon-color-chooser-dialog.c:
* hildon-widgets/hildon-color-chooser-dialog.h:
* hildon-widgets/hildon-color-chooser.h:
* hildon-widgets/hildon-color-popup.c:
* hildon-widgets/hildon-color-popup.h:
* hildon-widgets/hildon-color-selector.c:
* hildon-widgets/hildon-color-selector.h:
* hildon-widgets/hildon-composite-widget.c:
* hildon-widgets/hildon-composite-widget.h:
* hildon-widgets/hildon-controlbar.c:
* hildon-widgets/hildon-controlbar.h:
* hildon-widgets/hildon-date-editor.c:
* hildon-widgets/hildon-date-editor.h:
* hildon-widgets/hildon-defines.c:
* hildon-widgets/hildon-defines.h:
* hildon-widgets/hildon-dialoghelp.c:
* hildon-widgets/hildon-dialoghelp.h:
* hildon-widgets/hildon-file-handling-note.c:
* hildon-widgets/hildon-file-handling-note.h:
* hildon-widgets/hildon-find-toolbar.c:
* hildon-widgets/hildon-find-toolbar.h:
* hildon-widgets/hildon-font-selection-dialog.c:
* hildon-widgets/hildon-font-selection-dialog.h:
* hildon-widgets/hildon-get-password-dialog.c:
* hildon-widgets/hildon-get-password-dialog.h:
* hildon-widgets/hildon-grid-item-private.h:
* hildon-widgets/hildon-grid-item.c:
* hildon-widgets/hildon-grid-item.h:
* hildon-widgets/hildon-grid.c:
* hildon-widgets/hildon-grid.h:
* hildon-widgets/hildon-hvolumebar.c:
* hildon-widgets/hildon-hvolumebar.h:
* hildon-widgets/hildon-input-mode-hint.h:
* hildon-widgets/hildon-name-password-dialog.c:
* hildon-widgets/hildon-name-password-dialog.h:
* hildon-widgets/hildon-note.c:
* hildon-widgets/hildon-note.h:
* hildon-widgets/hildon-number-editor.c:
* hildon-widgets/hildon-number-editor.h:
* hildon-widgets/hildon-plugin-widget.c:
* hildon-widgets/hildon-private.h:
* hildon-widgets/hildon-program.c:
* hildon-widgets/hildon-program.h:
* hildon-widgets/hildon-range-editor.c:
* hildon-widgets/hildon-range-editor.h:
* hildon-widgets/hildon-scroll-area.c:
* hildon-widgets/hildon-scroll-area.h:
* hildon-widgets/hildon-seekbar.c:
* hildon-widgets/hildon-seekbar.h:
* hildon-widgets/hildon-set-password-dialog.c:
* hildon-widgets/hildon-set-password-dialog.h:
* hildon-widgets/hildon-sort-dialog.c:
* hildon-widgets/hildon-sort-dialog.h:
* hildon-widgets/hildon-system-sound.c:
* hildon-widgets/hildon-system-sound.h:
* hildon-widgets/hildon-telephone-editor.c:
* hildon-widgets/hildon-telephone-editor.h:
* hildon-widgets/hildon-time-editor.c:
* hildon-widgets/hildon-time-editor.h:
* hildon-widgets/hildon-time-picker.c:
* hildon-widgets/hildon-time-picker.h:
* hildon-widgets/hildon-volumebar-private.h:
* hildon-widgets/hildon-volumebar-range.c:
* hildon-widgets/hildon-volumebar-range.h:
* hildon-widgets/hildon-volumebar.c:
* hildon-widgets/hildon-volumebar.h:
* hildon-widgets/hildon-vvolumebar.c:
* hildon-widgets/hildon-vvolumebar.h:
* hildon-widgets/hildon-weekday-picker.c:
* hildon-widgets/hildon-weekday-picker.h:
* hildon-widgets/hildon-window-private.h:
* hildon-widgets/hildon-window.c:
* hildon-widgets/hildon-window.h:
* hildon-widgets/hildon-wizard-dialog.c:
* hildon-widgets/hildon-wizard-dialog.h:
* timer/timer.c:
* timer/timer.h:
* ut/hildon-clock-widgets_tests.c:
* ut/hildon-widgets_tests.c:
* ut/tc_banner_truncate.c: Fixing the license banners (adding them
if missing, correcting "... version 2 or any later version" to "version
2."
2006-08-29 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.13.1 branch]
* hildon-widgets/hildon-window.c: Put extra ref on the GdkWindow
before emitting the signal so that we don't lose it in event free
function. Fixes NB#38996.
2006-08-28 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.13.1 branch]
* configure.ac: Bumping the version number to 0.13.1.6.
* hildon-widgets-plugins/Makefile.am: Adding the proper symlinks for
default plugin targets during installation. Fixes a crasher bug in the
selector.
* hildon-widgets/hildon-color-button.c:
* hildon-widgets/hildon-color-chooser-dialog.c:
* hildon-widgets/hildon-plugin-widget.c: Adding some basic sanity checks.
2006-08-24 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.13.1 branch]
* ./: Merging with the 0.13.1-1_pluged-in-color-selector branch.
2006-08-24 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.13.1 branch]
* hildon-widgets/hildon-number-editor.c: When a range error occurs,
set the correct value before calling the range-error signal, so that
the widget consumer has a chance to actually adjust the value to it's
liking in the signal. Fixes NB#33260.
2006-08-24 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.13.1 branch]
* hildon-widgets/hildon-wizard-dialog.c: Fixing a small compilation
whoops.
2006-08-24 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.13.1 branch]
* hildon-widgets/hildon-time-picker.c: Fixing
NB#37489.
2006-08-23 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.13.1 branch]
* hildon-widgets/hildon-wizard-dialog.c:
* hildon-widgets/hildon-wizard-dialog.h: Cleaning up, fixing some
bugs.
2006-08-22 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.13.1 branch]
* hildon-widgets/hildon-add-home-dialog.h:
* hildon-widgets/hildon-app.h:
* hildon-widgets/hildon-appview.h:
* hildon-widgets/hildon-calendar-popup.h:
* hildon-widgets/hildon-code-dialog.h:
* hildon-widgets/hildon-color-button.h:
* hildon-widgets/hildon-color-selector.h:
* hildon-widgets/hildon-controlbar.h:
* hildon-widgets/hildon-date-editor.h:
* hildon-widgets/hildon-file-handling-note.h:
* hildon-widgets/hildon-find-toolbar.h:
* hildon-widgets/hildon-grid-item-private.h:
* hildon-widgets/hildon-grid-item.h:
* hildon-widgets/hildon-grid.h:
* hildon-widgets/hildon-input-mode-hint.h:
* hildon-widgets/hildon-marshalers.h:
* hildon-widgets/hildon-name-password-dialog.h:
* hildon-widgets/hildon-private.h:
* hildon-widgets/hildon-program.h:
* hildon-widgets/hildon-range-editor.h:
* hildon-widgets/hildon-scroll-area.h:
* hildon-widgets/hildon-seekbar.h:
* hildon-widgets/hildon-sort-dialog.h:
* hildon-widgets/hildon-telephone-editor.h:
* hildon-widgets/hildon-time-picker.h:
* hildon-widgets/hildon-weekday-picker.h:
* hildon-widgets/hildon-window-private.h:
* hildon-widgets/hildon-window.h:
* hildon-widgets/hildon-wizard-dialog.h:
* timer/timer.h: Just cosmetic cleanups in defines for consistency.
* COPYING: Removing the executable bit from the text file.
2006-08-22 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[0.13.1 branch]
* Makefile.am:
* doc/Makefile.am:
* hildon-widgets-plugins/Makefile.am:
* hildon-widgets/Makefile.am:
* po/Makefile.am:
* timer/Makefile.am:
* ut/Makefile.am: Fixing the build system so that `make
maintainer-clean` can be used safely.
2006-08-22 Kuisma Salonen <kuisma.salonen@nokia.com>
[0.13.1 branch]
* hildon-widgets-plugins/hildoncolorchooser_hsv.c:
Grayscale dimming re-enabled.
2006-08-16 Johan Bilien <johan.bilien@nokia.com>
[0.13.1 branch]
* hildon-widgets/hildon-app.c:
(hildon_app_switch_to_desktop): Removed unused function
(hildon_app_key_snooper): Removed handling of the Home hardware key
NB#35076
* configure.ac: 0.13.1.4
2006-08-11 Fernando Herrera <fernando.herrera-de-las-heras@nokia.com>
[0.13.1 branch]
* hildon-widgets/hildon-plugin-widget.c
(ascii_decapitalize_without_dashes): Fixed.
2006-08-10 Johan Bilien <johan.bilien@nokia.com>
[0.13.1 branch]
* hildon-widgets/hildon-{app.h,defines.h}:
switched HILDON_MENU_KEY to now match GDK_F10
WARNING: This breaks compatibility with IT-2006
* configure.ac: 0.13.1.3
2006-08-08 Luc Pionchon <luc.pionchon@nokia.com>
[0.13.1 branch]
* configure.ac: 0.13.1.2
2006-08-07 Johan Bilien <johan.bilien@nokia.com>
* hildon-widgets/hildon-program.c
(hildon_program_common_toolbar_topmost_window): Added this
function, it is an internal function created to notify the topmost
window of the topmost program that it has a new common toolbar, it
is supposed to be used inside a foreach call.
(hildon_program_set_common_toolbar): Added a foreach call in case
the program is the topmost in order to notify the topmost window
it should take the common toolbar. Fixed a problem with unparent
call it causes the vbox disappears in some cases, now we are using
container_remove.
NB#22808
2006-08-01 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: 0.12.22
2006-07-31 Johan Bilien <johan.bilien@nokia.com>
* hildon-widgets/hildon-code-dialog.c
(hildon_code_dialog_insert_text):
- Use hildon_banner_show_info instead of deprecated gtk_info_print
- Localize the string in the applet
NB#36309
2006-07-26 Kuisma Salonen <kuisma.salonen@nokia.com>
[0.13.1 branch]
Added plugged-in color chooser,
-- Plugin infrastructure:
* hildon-widgets/hildon-plugin-widget.[ch]: API to help loading
widgets from plugins.
* hildon-widgets-plugins/: directory containing widget
implementations which are going to be built into separate shared
object files (plugins)
* hildon-widgets-plugins/Makefile.am: automake file for the plugins.
* doc/design/abstract_vs_modular_plugin_widgets.dia:
* doc/design/hildon-plugin-widget.txt: design doc
-- ColorChooser plugin:
* hildon-widgets-plugins/hildoncolorchooser_hsv.c: Implementation of a
HildonColorChooser, HSV based one.
* hildon-widgets-plugins/hildoncolorchooserdialog_hsv.c: HSV based
implementation of color chooser dialog.
-- Uses the plugin infrastructure:
* hildon-widgets/hildon-color-chooser.[ch] : An abstract class for
color chooser widget. The _new function utilizes plugin widget
helper functions to initialize the widget.
* hildon-widgets/hildon-color-chooser-dialog.[ch] : Same as color
chooser, but a dialog widget to choose a color.
* hildon-widgets/hildon-color-button.c: HildonColorButton uses now
HildonColorChooserDialog instead of HildonColorSelector.
2006-07-25 Fernando Herrera <fernando.herrera-de-las-heras@nokia.com>
* configure.ac: 0.12.21
2006-07-25 Fernando Herrera <fernando.herrera-de-las-heras@nokia.com>
* hildon-widgets/hildon-number-editor.c: Revert previous patch here
until we get a new release of themes stuff. (M#624)
2006-07-25 Johan Bilien <johan.bilien@nokia.com>
* hildon-widgets/hildon-window.c:
(hildon_window_toggle_menu): free the GList returned by
gtk_container_get_children
NB#34340
2006-07-18 Fernando Herrera <fernando.herrera-de-las-heras@nokia.com>
* hildon-widgets/hildon-number-editor.c:
renamed {plus,minus}-button widgets to ne-{plus,minus}-button in
order to do the theming without depending on the HildonNumberEditor
widget name. Fixes maemo M#624
2006-06-13 Luc Pionchon <luc.pionchon@nokia.com>
[0.13.1 branch]
* configure.ac: 0.13.1.1
2006-06-13 Luc Pionchon <luc.pionchon@nokia.com>
[0.13.1 branch]
* added experimental plugged-in color selector
2006-06-13 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: 0.12.20
2006-06-12 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-color-button.c
(hildon_color_button_key_pressed):
return FALSE when no key was handled.
NB#32302
2006-06-12 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-banner.c:
(force_to_wrap_truncated): Modified size request of the label
when it is wider than the maximum allowed, using the pango
layout extension instead of the maximum allowed width.
NB#31256
2006-06-05 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: 0.12.19
2006-06-05 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-color-button.c
(hildon_color_button_init): Moved key handling from key release
event to key press event.
(hildon_color_button_key_released): Renamed to _key_pressed
(hildon_color_button_key_pressed) : new name from _key_released
NB#31604
2006-06-05 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-time-editor.c
(validated_conversion): return the minimum allowed value for the
entry when the user types an empty text into an entry and moves
the focus, instead of returning -1. This change implies that the
minimum allowed value for the entry is set into the entry instead
of leaving it empty.
NB#30937
2006-06-05 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-grid.c (hildon_grid_class_init): do not
use accumulator for "popup-context-menu"
NB#29888 / M#483
2006-06-05 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-window.c
(hildon_window_toggle_menu): Changed the hide condition of the
menu, now we are using GTK_WIDGET_MAPPED instead of
GTK_WIDGET_VISIBLE, because the menu can be visible but not mapped
in some situations, like the one described in this bug.
NB#28836
2006-06-02 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-app.c (hildon_app_key_snooper): Add code
to control if there is a combobox activated when the menu key is
pressed and stop the menu drawing, this is a new case that happens
when the application is avoiding the focus can go to the combobox.
NB#26383 (bis)
2006-06-02 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-time-editor.c
(hildon_time_editor_validate): removed the assinment of the
error_widget, now just the highlight_callback can do it when it
finished with it. Control that if we are already managing an error
we don't start working in other.
(hildon_time_editor_inserted_text): added a control to stop insert
handle if we are already managing an error, we have also blocked
the focusout event before que grab focus to avoid another
validation of the field.
NB#30955
* hildon-widgets/hildon-time-editor.c
(highlight_callback): Removed the return in the middle of the
function, now that situation is imposible. It was causing the
interlock.
2006-05-31 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-banner.c
(HILDON_BANNER_LABEL_MAX_PROGRESS): increase even more 320 -> 375
to satisfy NB#31099. (actually info and anim banners should have
375 px width and only progress banners should have 265 px)
NB#31099 (workaround)
2006-05-30 Luc Pionchon <luc.pionchon@nokia.com>
[0.13.1 branch]
* configure.ac: 0.13.1 unstable branch
2006-05-30 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-libs.pc.in (Description): updated description
2006-05-29 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: 0.12.18
2006-05-29 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-app.c
(hildon_app_key_snooper): Add code to control if there is a
combobox activated when the menu key is pressed and prevent the
menu drawing.
NB#26383
2006-05-29 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-banner.c
(hildon_banner_set_property): Set max_width hint to -1 instead of
HILDON_BANNER_LABEL_MAX_TIMED when banner is timed to avoid. This
has been done to ensure that the size of the banner will be the
requisition size and avoid the size problem when reusing the
banner window. See NB#24339.
(hildon_banner_set_text): Removed useless gtk_window_resize after
changing the label text. The size requisition of the banner is
updated when the label text is modified, so there is no need to do
a resize of the window to the requisition size.
(hildon_banner_set_markup): Likewise.
(hildon_banner_check_position): Added cast to widget argument in
call to force_to_wrap_truncated in order to avoid a compilation
warning.
2006-05-29 Luc Pionchon <luc.pionchon@nokia.com>
Added time-error signal - NB#22155
* hildon-widgets/hildon-time-editor.c:
(hildon_time_editor_class_init): added time-error signal
(validated_conversion): added 'error_code' output parameter.
(hildon_time_editor_real_validate): use 'error_code' and trigger
'time-error' signal when apprpriate.
(highlight_callback): avoid revalidation
* hildon-widgets/hildon-time-editor.h (HildonTimeEditorErrorType):
new enumerative type for error types
(_HildonTimeEditorClass): added time_error signal
* hildon-widgets/Makefile.am (hildon-libs-enum-types.c): added time-editor.h
2006-05-23 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: 0.12.17
2006-05-23 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/gtk-infoprint.c
(gtk_confirmation_banner_with_icon_name): wooops, use _with_markup
variant to process markup string. NB#28370 (ter)
2006-05-22 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: 0.12.16
2006-05-22 Johan Bilien <johan.bilien@nokia.com>
* hildon-widgets/hildon-window.c
(hildon_window_vbox_expose_event): This function has been
removed, now the window has the responsability of painting the
toolbar, because it has that space allocated.
(hildon_window_init): we do not have to connect the
hildon_window_vbox_expose_event function to the expose event of
the toolbar vbox anymore.
(hildon_window_expose): Added the call to paint_toolbar, as we can
see in the allocation function the toolbar decorators are
responsability of the window, and gdk was not sending the proper
events to the vbox because that space is not its responsability.
(hildon_window_remove_toolbar): We don't need a queue_draw here
because we have another call in the expose function when the size
of the container has been changed.
NB#29461
2006-05-21 Luc Pionchon <luc.pionchon@nokia.com>
Removed hildon-insert-object-dialog NB#8015
* hildon-widgets/hildon-insert-object-dialog.[ch]: removed
* doc/tmpl/hildon-insert-object-dialog.sgml: removed
* ut/hildon-widgets_tests.c (test27a, test27b, test27c): removed
* hildon-widgets/Makefile.am (hildonwidgetsincludeinst_DATA)
* hildon-widgets/Makefile.am (libhildonwidgets_la_SOURCES)
* doc/hildon-libs-docs.sgml:
* po/POTFILES.in: : removed reference
* configure.ac: removed check for gnome-vfs
* hildon-widgets/Makefile.am: removed gnome-vfs flags
* doc/Makefile.am: likewise
* ut/Makefile.am: likewise
2006-05-21 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/gtk-infoprint.c
(gtk_confirmation_banner_with_icon_name):
added bold markup for backward compatibility. NB#28370 (bis)
2006-05-21 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-grid.c (get_child_index_by_coord): returns
if empty grid. NB#29883
2006-05-21 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/gtk-intoprint.c (find_banner_for_parent): Added
check for "is-timed" property. NB#26546
2006-05-21 Johan Bilien <johan.bilien@nokia.com>
* hildon-widgets/hildon-window.c
(hildon_window_remove_toolbar)
(hildon_window_size_expose): Removed the
gtk_widget_queue_draw_area call from this functions, because
sometimes the event is not managed in the proper order.
(hildon_window_size_allocate): Added the
gtk_widget_queue_draw_area call in case the number of the toolbars
has changed, this way we insure an expose event for the proper
region will come after the change of the toolbars.
NB#26366
2006-05-21 Johan Bilien <johan.bilien@nokia.com>
* hildon-widgets/hildon-window.c:
(hildon_window_size_allocate): Now the window uses all the space
when its state is fullscreen, we avoid to subtract the top and
bottom borders if the window state is fullscreen.
NB#28925
2006-05-18 Tapani Palli <tapani.palli@nokia.com>
* hildon-widgets/hildon-time-editor.c: block signal handler for
hildon_time_editor_inserted_text, null check for entry widget in
highlight_callback. Fixes NB#28679
2006-05-16 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/gtk-infoprint.c (gtk_confirmation_banner): added
bold markup for backward compatibility. NB#28370
2006-05-15 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: 0.12.15
2006-05-15 Johan Bilien <johan.bilien@nokia.com>
* hildon-widgets/hildon-window.[ch]:
- Added clipboad_operation signal used by osso-browser to receive
clipborad operations from hildon-input-method
- Trigger this signal when we receive an clipboard X message
from HIM. related to NB#25502
2006-05-11 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-caption.c
(hildon_caption_set_label_alignment)
(hildon_caption_get_label_alignment): added gtk-doc "Since" marker
* doc/hildon-libs-docs.sgml: added index for 0.12.0 new symbols
2006-05-10 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-time-editor.c:
(hildon_time_editor_set_ticks) removed block signal handler for
hildon_time_editor_inserted_text. Added block and unblock signal
handler for hildon_time_editor_entry_focusout.
NB#28027
2006-05-10 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-caption.c:
(hildon_caption_size_allocate): add a margin to the start position
of the caption_area (HILDON_CAPTION_SPACING), leaving this way the
space required to the left of the caption.
(hildon_caption_expose): allocation, subtract the left margin
which we have added to the children widgets when we paint the
selection box.
NB#28483
3006-05-10 Tapani Palli <tapani.palli@nokia.com>
* hildon-widgets/hildon-time-editor.c:
block signal handler for hildon_time_editor_inserted_text
NB#28679
2006-05-09 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-time-editor.c:
(_hildon_time_editor_get_time_separators) renamed from
_get_time_separator(). Refactored to return h-m and m-s
separators. Now it is independent of the time editor priv
structure and receives two labels that can be NULL.
(_HildonTimeEditorPrivate): removed hm_sep_symbol and ms_sep_symbol
members: not used anymore.
(hildon_time_editor_init): removed ref to above members.
(hildon_time_editor_finalize): likewise
(hildon_time_editor_check_locale): use
_hildon_time_editor_get_time_separators()
* hildon-widgets/hildon-private.h: new file. To be used to use
private functions from other widgets inside the library.
(_hildon_time_editor_get_time_separators): added.
* hildon-widgets/Makefile.am:
added hildon-private.h to the source list.
* hildon-widgets/hildon-time-picker.c (hildon_time_picker_init):
Use _hildon_time_editor_get_time_separators() to get the h-m
separator from the locale (and not from a .po file)
N#28654
2006-05-09 Marius Vollmer <marius.vollmer@nokia.com>
* hildon-widgets/hildon-find-toolbar.c
(hildon_find_toolbar_class_init): Reverted change from 2006-04-15:
The "search", "close", "invalid_input", "history_append" signals
have always been correctly registered: you don't include the last
'user data' parameter in the list of argument types passed to
g_signal_new et al. Thanks to Jorn from OpenedHand!
N#28807
2006-05-08 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: 0.12.14
2006-05-04 Luc Pionchon <luc.pionchon@nokia.com>
gtk-doc config bits...
* autogen.sh: call aclocal first
* configure.ac: enable GTK_DOC_CHECK
* doc/Makefile.am: really "include". "-include" is not followed by
automake, as a result gtk-doc.make would not be processed.
2006-05-03 Luc Pionchon <luc.pionchon@nokia.com>
N#27000 (additional fixes to patch from 2006-05-01)
* hildon-widgets/hildon-banner.c (force_to_wrap_truncated): do not
hardcode pixel scaling factor ("/1000"), use PANGO_PIXELS instead
which deals with rounding (and uses the right factor: 1024).
Thanks Michael Natterer <mitch@imendio.com>
Force label size also when width_text == width_max.
2006-05-03 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: 0.12.13
2006-05-03 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-font-selection-dialog.c:
(is_internal_font): new function. Tells if a font family is internal.
(filter_out_internal_fonts): new function. Filters out inernal fonts.
(hildon_font_selection_dialog_show_available_fonts): call filter_out_internal_fonts
Fixes N#21854
2006-05-01 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-libs/hildon-widgets/hildon-time-editor.c
* hildon-libs/hildon-widgets/hildon-time-picker.c
* hildon-libs/hildon-widgets/hildon-wizard-dialog.h:
added comments to anonymous enums
2006-05-01 Luc Pionchon <luc.pionchon@nokia.com>
Hildon banner truncations,
* hildon-widgets/hildon-banner.c
(force_to_wrap_truncated): new function. Force to wrap truncated
label by setting explicit size request. See N#27000 and G#329646
(hildon_banner_check_position): call force_to_wrap_truncated()
fixes N#27000, N#25305, N#26203
* hildon-widgets/hildon-banner.c
(HILDON_BANNER_LABEL_MAX_PROGRESS): increase value 265 -> 320 to
satisfy N#26624, N#26161, N#27875
* ut/tc_banner_truncate.c: new file. Test cases for banner truncations.
2006-05-01 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-banner.[ch]: code cleanup.
2006-04-29 Johan Bilien <johan.bilien@nokia.com>
* hildon-widgets/hildon-window.c:
- removed connection to self, replaced with overridding virtual
methods
- removed gtk_widget_set_event in init, legacy from HildonApp
- use gtk_widget_get_child_requisition() instead of
gtk_widget_size_request() in _allocation
- don't allocate space for the child if it is not visible
2006-04-28 Johan Bilien <johan.bilien@nokia.com>
* hildon-widgets/hildon-window.c:
- forgot to reinitialize convenience pointers to borders after they
are reinitialised
- replaced a g_return_if_fail with a g_return_val_if_fail now
that toggle_menu returns a g_boolean
2006-04-28 Johan Bilien <johan.bilien@nokia.com>
N#28176
* hildon-widgets/hildon-window.c: Free the borders structure
when the window is destroyed.
2006-04-27 Tapani Palli <tapani.palli@nokia.com>
* hildon-widgets/hildon-caption.c : check if ancestor
(still) exists in set-focus handler, fixes N#25501
2006-04-27 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-time-editor.c
(hildon_time_editor_check_locale): do not force lower case for
AM/PM symbols. Use the string as it is given by the locale. Makes
it coherent with hildon time picker. Fixes N#27963
2006-04-26 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-set-password-dialog.c
(c_): new macro, calls dgettext on "hildon-common-strings" domain.
(hildon_set_password_response_set): use c_ for common strings
(hildon_set_password_response_change): likewise.
Fixes N#27749
* hildon-widgets/hildon-set-password-dialog.h: indent cleanup
2006-04-26 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-file-handling-note.c (gettext macro): use
"hildon-fm" as textual domain. Fixes N#27702
2006-04-26 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: 0.12.12
* Makefile.am (clean-all): brutal target to cleanup the
folder. Will do this properly later.
2006-04-25 Luc Pionchon <luc.pionchon@nokia.com>
* doc/Makefile.am: use "-include" for gtk-doc.make (ignore
included Makefile if missing).
* configure.ac: temporarily disable GTK_DOC_CHECK (problem in
integration environement)
* configure.ac: print configuration summary after processing
2006-04-24 Marius Vollmer <marius.vollmer@nokia.com>
From Murray Cumming <murrayc@murrayc.com>, M#183.
* hildon-widgets/hildon-calendar-popup.c:
(hildon_calendar_popup_new): Use only g_object_new(), passing
it properties, so that language bindings can do the same.
(hildon_calendar_popup_set_date): Veryify the date here,
instead of only in the _new() function.
(hildon_calendar_popup_set_property): Use get/set_date() to
verify the new date and to select it.
(hildon_calendar_popup_get_property): Remove unused variables.
* ut/hildon-widgets_tests.c (test45): New.
* hildon-widgets/hildon-add-home-dialog.c:
(hildon_add_home_dialog_new): Move code into
hildon_add_home_dialog_init(),
hildon_add_home_dialog_set_old_name(), and
hildon_add_home_dialog_set_new_name(). Supply parameters as
properties values to g_object_new() instead, so that language
bindings can do the same.
(hildon_add_home_dialog_class_init): Added name and new_name
properties.
(hildon_add_home_dialog_init): Create always-needed widgets.
(hildon_add_home_dialog_get_property),
(hildon_add_home_dialog_set_property): Get/Set the name and
new_name properties, recreating widgets if necessary, using new
static helper function.
* ut/hildon-widgets_tests.c (test46): New.
* hildon-widgets/hildon-grid-item.c
(hildon_grid_item_set_property), (hildon_grid_item_get_property),
(hildon_grid_item_class_init): Add icon-basename property.
(hildon_grid_item_new, hildon_grid_item_new_with_label): Move code
from here to hildon_grid_item_init(), so we can just call
g_object_new().
(hildon_grid_item_set_label): Convert NULL label to empty string.
Bug fix: don't cast the label widget to a string and compare it
against the new label text, use gtk_label_get_label instead.
Expect priv->label to always be non-NULL.
(update_icon): Don't pass NULL icon name to
gtk_icon_theme_load_icon, use default icon instead in that case.
* hildon-widgets/hildon-grid-item.h: Make
_hildon_grid_item_set_label into public
hildon_grid_item_set_label(), so that language bindings can use
it.
* ut/hildon-widgets_tests.c (VALID_ICON): Use existing icon.
(test33a2, test33b4, test33b4): Expect them to succeed now that a
HildonGridItem can handle NULL icons.
2006-04-21 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: 0.12.11
2006-04-19 Tapani Palli <tapani.palli@nokia.com>
* thread safety (N#24348), fixed timeout and idle callbacks :
hildon-widgets/hildon-window.c : hildon_window_escape_timeout()
hildon-widgets/hildon-time-picker.c : hildon_time_picker_key_repeat_timeout()
hildon-widgets/hildon-number-editor.c : do_mouse_timeout(),hildon_number_editor_select_all()
hildon-widgets/hildon-banner.c : hildon_banner_timeout()
hildon-widgets/hildon-app.c : hildon_app_escape_timeout()
hildon-widgets/hildon-time-editor.c : highlight_callback()
hildon-widgets/hildon-date-editor.c : _hildon_date_editor_entry_select_all()
2006-04-19 Tapani Palli <tapani.palli@nokia.com>
* hildon-widgets/hildon-app.c (hildon_app_key_release): send
correct state for fullscreen, fixes N#26611
2006-04-19 Johan Bilien <johan.bilien@nokia.com>
N#22909
* hildon-widgets/hildon-window.c:
- hildon_window_toggle_menu now returns whether or not something was
done
- hildon_window_key_press_event(): when handling the menu hard key,
return TRUE if we actually handled it
* hildon-widgets/hildon-appview.c: _hildon_appview_toggle_menu()
now returns if something was done
* hildon-widgets/hildon-app.c: hildon_app_key_snooper(): return TRUE
if we actually handled the menu hard key.
2006-04-19 Johan Bilien <johan.bilien@nokia.com>
* hildon-widgets/hildon-window.c: Fixed a bug in child size allocation
in fullscreen.
2006-04-19 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: 0.12.10
2006-04-17 Luc Pionchon <luc.pionchon@nokia.com>
* doc/hildon-libs-docs.sgml: added index for new symbols.
2006-04-17 Luc Pionchon <luc.pionchon@nokia.com>
* doc/Makefile.am (version.xml): generates version.xml
* doc/hildon-libs-docs.sgml: added &version; entity, and display
the version number in the doc title.
2006-04-17 Luc Pionchon <luc.pionchon@nokia.com>
Minor changes for gtk-doc
* hildon-note.c
* hildon-weekday-picker.h
* hildon-name-password-dialog.c
* hildon-calendar-popup.h
* hildon-range-editor.h
* hildon-volumebar-range.h
* hildon-banner.c
* hildon-app.c
* hildon-time-editor.c
* gtk-infoprint.c
* hildon-date-editor.h
2006-04-16 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-time-editor.c
(hildon_time_editor_set_show_hours)
(hildon_time_editor_get_show_hours): added gtk-doc tag 'Since:'
2006-04-15 Luc Pionchon <luc.pionchon@nokia.com>
N#22557
* hildon-widgets/hildon-time-editor.c
(hildon_time_editor_entry_keypress): use
hildon_gtk_button_set_depressed, provided by osso-GTK, since
2.6.10-1.osso4, instead of GTK private symbol
_gtk_button_set_depressed
2006-04-15 Marius Vollmer <marius.vollmer@nokia.com>
From Murray Cummings (M#185 M#283), with slight changes:
* configure.ac: Add a --rebuilds option, defaulting to yes, so we
can disable the regeneration of hildon-libs-enum-types.[h|c], also
based on the gnome-vfs build.
* hildon-widgets/Makefile.am: Use glib-mkenums to generate
hildon-libs-enum-types.[h|c], and build them, based on the
gnome-vfs build. This adds GTypes for the enums, needed for
accurate signal registration, needed by bindings.
* hildon-widgets/hildon-number-editor.h: Rename the error_handler
default signal handler to range_error, so it has the same name as
the signal, as expected by bindings.
* hildon-widgets/hildon-marshalers.list: Change to the now-used
marshallers.
* hildon-widgets/hildon-note.h (HildonNodeType): Marked as 'skip'.
since hildon_note_type_get_type is defined manually and
glib-mkenums should ignore this enum.
* hildon-widgets/hildon-app.h (HildonZoomLevel): Likewise.
* hildon-widgets/hildon-caption.h (HildonCaptionStatus): Likewise.
Correct the signal registration for:
* hildon-widgets/hildon-app.c
(hildon_app_class_init):
"switch_to",
"clipboard_copy",
"clipboard_cut",
"clipboard_paste"
* hildon-widgets/hildon-date-editor.c
(hildon_date_editor_class_init):
"date_error"
* hildon-widgets/hildon-find-toolbar.c
(hildon_find_toolbar_class_init):
"search",
"close",
"invalid_input",
"history_append signals"
* hildon-widgets/hildon-grid.c
(hildon_grid_class_init):
"popup_context_menu"
* hildon-widgets/hildon-number-editor.c
(hildon_number_editor_class_init):
"range_error".
2006-04-13 Luc Pionchon <luc.pionchon@nokia.com>
M#90 - Use standard GLib macro names.
Based on a patch from Osvaldo Santana <osvaldo.santana@indt.org.br>
Deprecate HILDON_*_TYPE, replace by HILDON_TYPE_*,
* hildon-widgets/hildon-calendar-popup.h:
* hildon-widgets/hildon-date-editor.h:
* hildon-widgets/hildon-range-editor.h:
* hildon-widgets/hildon-weekday-picker.h:
* hildon-widgets/hildon-volumebar-range.h:
Updated macro name,
* hildon-widgets/hildon-calendar-popup.c:
* hildon-widgets/hildon-date-editor.c:
* hildon-widgets/hildon-range-editor.c:
* hildon-widgets/hildon-volumebar-range.c:
* hildon-widgets/hildon-weekday-picker.c:
2006-04-13 Johan Bilien <johan.bilien@nokia.com>
* hildon-widgets/hildon-code-dialog.c: Fixed L10n logical ids
for Ok and Cancel buttons.
2006-04-13 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: 0.12.9
2006-04-13 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-color-button.c
(INNER_BORDER_THICKNESS, COLOR_BUTTON_WIDTH, COLOR_BUTTON_HEIGHT):
updated dimensions.
2006-04-13 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-time-editor.c
(convert_to_12h): removed m and s paramters (useless)
(convert_to_24h): likewise.
2006-04-13 Luc Pionchon <luc.pionchon@nokia.com>
Automatic focus movement for HildonTimeEditor (IMP-13)
* hildon-widgets/hildon-time-editor.c
(hildon_time_editor_init): connect after signal "insert_text"
(hildon_time_editor_inserted_text): new function.
On inserted text, if entry has two digits, jumps to the next field.
2006-04-13 Luc Pionchon <luc.pionchon@nokia.com>
Pops up the color selector on 'select' hardkey (IMP-15)
* hildon-widgets/hildon-color-button.c
(hildon_color_button_init): connect "key-release-event"
(hildon_color_button_key_released): new function.
Pops up the color selector on 'select' hardkey release
2006-04-13 Luc Pionchon <luc.pionchon@nokia.com>
Hildon grid, set items to be focus-and-activate instead of single
tap activation (IMP-14)
* hildon-widgets/hildon-grid.c (hildon_grid_button_pressed): do not set focus.
* hildon-widgets/hildon-grid.c (hildon_grid_button_released): activate selected item.
2006-04-13 Luc Pionchon <luc.pionchon@nokia.com>
Fetch hours/minutes/seconds separators from current locale (IMP-8)
N#19061
* hildon-widgets/hildon-time-editor.c
(struct _HildonTimeEditorPrivate): added 'hm_sep_symbol' and 'ms_sep_symbol'
(hildon_time_editor_init): do not get separator labels from i18n, but from locale
(hildon_time_editor_finalize): free separator symbols
(get_time_separators): new function. Get time separators from locale.
(hildon_time_editor_check_locale): call get_time_separators.
2006-04-13 Luc Pionchon <luc.pionchon@nokia.com>
Removed icon for mandatory fields (IMP-3).
Note: the logic and API to specify mandatory fields is preserved.
* hildon-widgets/hildon-caption.c (HILDON_CAPTION_MANDATORY_ICON): removed.
(struct _HildonCaptionPrivate): removed 'mandatory_icon' field.
(hildon_caption_set_property): case PROP_STATUS, removed related code.
(hildon_caption_set_label_alignment): removed related code.
2006-04-07 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: 0.12.8
2006-04-07 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-banner.c: added gtk-doc Since markers.
2006-04-07 Tomas Junnonen <tomas.junnonen@nokia.com>
- Added support for Pango markup
Added hildon_banner_show_information_with_markup
- Removed hildon_banner_show_confirmation
- Re-position the banner when its content changes
- Banner now doesn't truncate strings nor insert linebreaks
- fixes N#24339 - Information banners do not resize
* hildon-widgets/hildon-banner.[ch]
(hildon_banner_show_information_with_markup): new function. Adds
pango markup support for information banners.
(hildon_banner_show_confirmation): removed. 'confirmation' was
used only for the taask navigator (at most). It should use
_show_information_with_markup with appropriate markup.
(hildon_banner_set_markup): new function.
(hildon_banner_check_position): new function. Factor code from
hildon_banner_realize(), and update position calculation.
(struct _HildonBannerPrivate): removed max_lines.
Uses as much lines as needed.
(hildon_banner_init): set banner label to wrap lines.
(hildon_banner_set_text): do not truncate. Update banner's position.
(hildon_banner_set_markup): new function.
Set banner's text with Pango markup.
(_hildon_gtk_label_set_text_n_lines): marked as deprecated.
* hildon-widgets/gtk-infoprint.c
(gtk_confirmation_banner): use hildon_banner_show_information
instead of _show_confirmation.
(gtk_confirmation_banner_with_icon_name): likewise.
2006-04-07 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-color-button.c
(hildon_color_field_expose_event): correct parameter order.
2006-04-07 Johan Bilien <johan.bilien@nokia.com>
* hildon-widgets/hildon-window.c:
- Fixed a potential infinite loop when detaching the menus
from the window widget (Closes N#26033)
2006-04-06 Johan Bilien <johan.bilien@nokia.com>
* hildon-widgets/hildon-window.c:
- Fixed a bug that made window fullscreen state tracking fail
- Apply correct theming to menus so that they get placed
correctly (Fixes N#24325)
- Redraw the window borders if the size of the toolbar vbox changes
- Reset the program to NULL in hildon_window_destroy
- Stop the ESC key-press timeout when the window loses the focus
- Small cleanups
* hildon-widgets/hildon-program.c:
- Reset the common toolbar to NULL when the program is finalised
2006-04-04 Marius Vollmer <marius.vollmer@nokia.com>
* hildon-widgets/hildon-get-password-dialog.h,
hildon-widgets/hildon-get-password-dialog.c
(hildon_get_password_dialog_new,
hildon_get_password_dialog_new_with_default): Renamed
get_old_password_title parameter to "get_old" to correspond with
the property name. This helps the C++ bindings.
* ut/hildon-widgets_tests.c (test43, test44): New.
2006-04-03 Marius Vollmer <marius.vollmer@nokia.com>
* ut/hildon-widgets_tests.c: Disabled unimplemented testcases:
test20a, test20b, test20c, test20d, test36a, test36b, test36c,
test36d.
From Murray Cumming.
* hildon-libs/hildon-caption.c:
(hildon_caption_init): Do the hildon_caption_set_child_expand()
here.
(hildon_caption_new): Use the child property from GtkContainer
instead of calling gtk_container_add(), because _new() functions
should just use g_object_new(), so that language-bindings can do
the same.
* ut/hildon-widgets_tests.c: Added test42 for hildon_caption_new.
2006-03-30 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: 0.12.7
2006-03-29 Luc Pionchon <luc.pionchon@nokia.com>
Fixes N#20917
* hildon-widgets/hildon-font-selection-dialog.c
(REFERENCE_LINE): removed
(hildon_font_selection_dialog_show_preview): added l10n support
for the reference string (use to differentiate sub/super script in
font preview)
(hildon_font_selection_dialog_show_preview): likewise
2006-03-28 Luc Pionchon <luc.pionchon@nokia.com>
* po/en_GB.po: update
2006-03-28 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-add-home-dialog.c
(hildon_add_home_dialog_init): removed i18n support (deprecated
widget. Hinder logical ID processing)
(hildon_add_home_dialog_new): likewise.
* hildon-widgets/hildon-insert-object-dialog.c
(hildon_insert_object_dialog_init): likewise.
2006-03-28 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-font-selection-dialog.c
(hildon_font_selection_dialog_construct_notebook): logical ID typo
2006-03-27 Johan Bilien <johan.bilien@nokia.com>
* hildon-widgets/hildon-window.[ch]:
- update the title when the window is realized
- added support for long press on the ESC key. Fixes N#24620
2006-03-26 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-time-editor.h: indent, improve readability.
2006-03-26 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-seekbar.c
(hildon_seekbar_button_press_event): use if statement instead of 's?a:b'
2006-03-24 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: 0.12.6
2006-03-23 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-defines.h (HILDON_HARDKEY_LEFT):
fixed typo GKD_Left -> GDK_Left, N#24042
2006-03-22 Luc Pionchon <luc.pionchon@nokia.com>
Fixed i18n issues:
Updated logical id to lower case: Ckct_ -> ckct_
* hildon-widgets/hildon-date-editor.c (hildon_date_editor_date_error):
* hildon-widgets/hildon-number-editor.c (hildon_number_editor_error_handler):
* hildon-widgets/hildon-range-editor.c (hildon_range_editor_class_init)
(hildon_range_editor_init, hildon_range_editor_entry_validate)
(hildon_range_editor_entry_validate):
* hildon-widgets/hildon-time-editor.c (validated_conversion)
(validated_conversion, hildon_time_editor_real_validate):
* hildon-widgets/hildon-grid.c (hildon_grid_class_init)
(hildon_grid_init):
Updated logical id to lower case: Ecdg_ -> ecdg_
* hildon-widgets/hildon-time-editor.c (hildon_time_editor_init):
* hildon-widgets/hildon-time-picker.c (hildon_time_picker_init):
* hildon-widgets/hildon-calendar-popup.c (hildon_calendar_popup_init):
* hildon-widgets/hildon-color-popup.c (hildon_color_popup_new)
* hildon-widgets/hildon-wizard-dialog.c (hildon_wizard_dialog_init)
(hildon_wizard_dialog_create_title):
* hildon-widgets/hildon-find-toolbar.c (hildon_find_toolbar_class_init):
(hildon_find_toolbar_init):
* hildon-widgets/hildon-note.c (hildon_note_rebuild)
(hildon_note_rebuild, hildon_note_set_button_text):
Removed i18n support for property description,
* hildon-widgets/hildon-time-picker.c (hildon_time_picker_class_init):
2006-03-21 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: 0.12.5
2006-03-21 Tommi Komulainen <tommi.komulainen@nokia.com>
* doc/hildon-libs-docs.sgml: Move HildonWizardDialog in Dialogs
* hildon-widgets/hildon-caption.c: Fix erroneous gtk-doc comment
blocks, again.
2006-03-20 Johan Bilien <johan.bilien@nokia.com>
* hildon-widgets/hildon-grid.c: added missing include hildon-app.h for
HILDON_IS_APP
2006-03-20 Johan Bilien <johan.bilien@nokia.com>
Cleanup wizard dialog,
* hildon-widgets/hildon-wizard-dialog.c
(struct HildonWizardDialogPrivate): removed 'previous_button'
and 'next_button' (obsolete)
(hildon_wizard_dialog_response): new private function. Handles the
'response' signal and replaces direction_button_clicked() in
taking care of notebook page changes and button dimming.
(hildon_wizard_dialog_init): 'previous' and 'next' buttons are now
added to the dialog as response buttons. This enables the usage of
GtkDialog API for setting their sensitiveness.
(dimming/undimming): Connected hildon_wizard_dialog_response to
"resonse" signal. Removed useless title creation because it
depends on the notebook which is not yet created.
(hildon_wizard_dialog_set_property): minor code cleanup
(hildon_wizard_dialog_create_title): removed useless else-if
statement.
* hildon-widgets/hildon-wizard-dialog.h
(hildon_wizard_dialog_get_type): added G_GNUC_CONST
* hildon-widgets/hildon-wizard-dialog.[ch]: Reverted the patch
adding the page_change signal, as the application can now track
the response signal instead.
2006-03-17 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: 0.12.4
2006-03-16 Luc Pionchon <luc.pionchon@nokia.com>
* doc/tmpl/*
* hildon-widgets/*
moved widget descriptions to respective source file (*.c)
+ minor doc updates
2006-03-15 Luc Pionchon <luc.pionchon@nokia.com>
Cleanup color button
* hildon-widgets/hildon-color-button.c:
- removed unused #include
- removed unused gettext macro
(COLOR_FIELD_WIDTH) : renamed to COLOR_FILLED_WIDTH
(COLOR_FIELD_HEIGHT): renamed to COLOR_FILLED_HEIGHT
+ value updated to match specifications
(struct _HildonColorButtonPrivate):
removed 'drawing_area' and 'pixbuf' members (unused)
(hildon_color_button_init):
use drawing_area directly, update COLOR_FILLED_ macro names
(hildon_color_button_unrealize): new function.
(hildon_color_button_class_init): register unrealize function
(hildon_color_button_finalize): free allocated GC in unrealize
handler instead of in finalize.
(hildon_color_button_recolor_pixbuf): removed. (use
gdk_draw_rectangle() instead)
(hildon_color_button_draw_pixbuf_borders): likewise
(hildon_color_field_expose_event): use gdk_draw_rectangle() to
draw the button
(hildon_color_button_set_property): queue the drawing - instead of
calling recolor_pixbuf
(hildon_color_button_clicked): renamed variable 'csd' to 'cs_dialog'
2006-03-15 Luc Pionchon <luc.pionchon@nokia.com>
More cleanup for range editor,
* hildon-widgets/hildon-range-editor.[ch]
- removed useless includes
(hildon_range_editor_new_with_separator): set char parameter 'const'
* hildon-widgets/hildon-range-editor.c
- removed useless includes
- rewritten a lot of functions because code was inefficient.
- removed useless g_return_if_fail calls from various functions.
(hildon_range_editor_init): Romoved unneeded casts, added composite names.
(hildon_range_editor_entry_keypress): rewritten
(hildon_range_editor_entry_focus_out): rewritten
(hildon_range_editor_refresh_widths): New function
(hildon_range_editor_set_range): Make sure that the values are in
correct order
(hildon_range_editor_set_lower): rewritten.
(hildon_range_editor_set_higher): rewritten.
(hildon_range_editor_set_min): rewritten.
(hildon_range_editor_set_max): rewritten.
(hildon_range_editor_entry_validate): New validator function
(hildon_range_editor_entry_changed): New signal handler for
"changed" for entries, this will now validate whenever entry changes.
(hildon_range_editor_entry_focus_out): Added g_assert for
editor. Removed call to hildon_range_editor_apply_current_range().
Added call to the new function hildon_range_editor_entry_validate()
for validation.
(hildon_range_editor_init): connected
hildon_range_editor_entry_changed to "changed" for entries.
2006-03-15 Luc Pionchon <luc.pionchon@nokia.com>
Major cleanup for time editor
* hildon-widgets/hildon-time-editor.c
- removed unused #includes.
- Removed useless g_return_if_fail(editor) calls
(HILDON_IS_TIME_EDITOR does this check as well for us).
(hildon_time_editor_add_style): removed, obsolete.
(hildon_time_editor_mnemonic_activate): removed, obsolete
(hildon_time_editor_get_max_values): removed, obsolete.
(validated_conversion): New helper function
(hildon_time_editor_entry_changed): New function, now the widget
interactively validates the inputted contents (not requiring focus
move).
(ticks_to_time): rewritten, using less arithmetic operations.
(hildon_time_editor_validate): rewritten
(hildon_time_editor_set_ticks): rewritten
(hildon_time_editor_set_duration_mode): rewritten
(hildon_time_editor_entry_keypress): rewritten
* hildon-widgets/hildon-time-editor.[ch]
(hildon_time_editor_set_show_hours)
(hildon_time_editor_get_show_hours) new functions to show/hide hours
2006-03-15 Luc Pionchon <luc.pionchon@nokia.com>
Cleanup number editor
* hildon-widgets/hildon-number-editor.c:
(SPACE_BORDER): removed
(hildon_number_editor_size_request):
(hildon_number_editor_size_allocate): updated to use hildondefines
(hildon_number_editor_mnemonic_activate): function removed,
mnemonic are not used
(hildon_number_editor_stop_repeat_timer): new function, to avoid
duplicated code
(hildon_number_editor_button_release):
(hildon_number_editor_finalize): updated to use new function
(hildon_number_editor_entry_keypress): completely rewritten
(change_numbers): likewise
(do_mouse_timeout): likewise
(hildon_number_editor_set_range): likewise
(hildon_number_editor_validate_value): new function, used for all
validation
(hildon_number_editor_focus_out):
(hildon_number_editor_entry_changed): updated to use previous.
(hildon_number_editor_real_set_value): new function that formats
given int to field. Used by change_numbers and set_value
(integer_to_string): removed, we now have one place that
converts numbers and that uses buffer from stack.
(hildon_number_editor_set_value): changed to use new format function.
2006-03-15 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-time-picker.c:
reorganized how the widgets are stored to reduce code
(HildonTimePickerWidgetGroup): new struct
(struct _HildonTimePickerPrivate): added member 'widgets' as an array of HildonTimePickerWidgetGroup
(hildon_time_picker_init)
(hildon_time_picker_arrow_press)
(hildon_time_picker_event_box_key_press)
(hildon_time_picker_change_time)
(hildon_time_picker_map)
(hildon_time_picker_event_box_key_release): use new widget organization
(hildon_time_picker_init): return value from nl_timeinfo() is
valid only until it's called again, so g_strdup() the value when
storing it.
(MINS_IN_1H, MINS_IN_24H, MINS_IN_12H): defines hardcoded values
(HILDON_TIME_PICKER_LABEL_X_PADDING)
(HILDON_TIME_PICKER_LABEL_Y_PADDING): defines hardcoded values
(hildon_time_picker_set_time):
(hildon_time_picker_get_time):
(hildon_time_picker_ampm_release): used the new defines
(struct _HildonTimePickerPrivate)
(hildon_time_picker_init)
(hildon_time_picker_event_box_key_press)
(hildon_time_picker_change_time):
- c12h renamed to show_ampm,
- ampo_pos renamed to ampm_left.
(hildon_time_picker_timeout): renamed to
hildon_time_picker_key_repeat_timeout(),
and renamed parameter to 'hildon_time_picker'
(hildon_time_picker_event_box_press): renamed to
hildon_time_picker_event_box_button_press()
(hildon_time_picker_finalize): Added finalizer to make sure the
key repeat timeout handler gets removed.
(hildon_time_picker_arrow_press): Placed multipliers into
button_multipliers[] array to avoid multiple if/then/else
blocks.
2006-03-15 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-libs/hildon-find-toolbar.c (hildon_find_toolbar_filter):
calculates correctly which items will be visible. Fixes N#16991.
2006-03-15 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-find-toolbar.c
(hildon_find_toolbar_history_append): set "column" property only
after model has been set.
2006-03-15 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-app.c (hildon_app_escape_timeout): rename
the parameter more descriptively
2006-03-15 Luc Pionchon <luc.pionchon@nokia.com>
Cleanup HildonApp,
* hildon-widgets/hildon-app-private.h: use G_*_DECLS
* hildon-widgets/hildon-app.[ch]
(hildon_zoom_level_get_type): removed G_CONST_RETURN
* hildon-widgets/hildon-app.c:
- removed HILDON_DISABLE_DEPRECATED flags
- added g_assert'ions to internal functions
- more code comments
(hildon_app_button): Move the fixed define to the function itself,
add simple autodetection, clean up comments.
(hildon_app_key_release): Remove bogus argument to signal emission
(not needed), emit the "fullscreen_state_change" directly instead
of calling set_fullscreen.
(hildon_app_construct_title): removed dead code
(hildon_app_register_view_with_id): do not call g_slist_nth() to
get the first element...
2006-03-15 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-appview.c:
(hildon_appview_init): indented comments properly
(paint_toolbar): indented comments properly
(hildon_appview_expose): indented code properly
(hildon_appview_toolbar_toggle_request): removed dead code
2006-03-15 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-caption.c
(hildon_caption_expose): use g_assert instead of g_return_val_if_fail
(hildon_caption_size_allocate): likewise.
(hildon_caption_forall): likewise.
2006-03-15 Luc Pionchon <luc.pionchon@nokia.com>
Cleanup Find toolbar,
* hildon-widgets/hildon-find-toolbar.[ch]
(hildon_find_toolbar_new): set 'label' parameter const.
(hildon_find_toolbar_new_with_model): likewise.
* hildon-widgets/hildon-find-toolbar.c
(struct _HildonFindToolbarPrivate):
changed entry_combo_box type to GtkComboBoxEntry*
(hildon_find_toolbar_get_list_model): new function, to factor
member access and casting
(hildon_find_toolbar_get_entry): likewise.
(hildon_find_toolbar_apply_filter): removed set_column parameter
since it was used by only one caller, and made the caller do it
instead. Removed unnecessary casts.
(hildon_find_toolbar_find_string): new function.
(hildon_find_toolbar_history_append): code cleanup. use
hildon_find_toolbar_find_string.
(hildon_find_toolbar_get_property)
(hildon_find_toolbar_get_entry)
(hildon_find_toolbar_init)
(hildon_find_toolbar_new)
(hildon_find_toolbar_new_with_model)
(hildon_find_toolbar_highlight_entry): Removed unnecessary casts
and changed some of them to use the new convenience functions
instead.
(hildon_find_toolbar_highlight_entry): use g_return_if_fail()
instead of if-check to validate parameter.
2006-03-15 Luc Pionchon <luc.pionchon@nokia.com>
Cleanup hildon-defines,
* hildon-widgets/hildon-defines.c (hildon_icon_sizes_init)
(hildon_change_style_recursive_from_ld): use G_GNUC_EXTENSION macro instead of #ifdef
(hildon_logical_data_free): new function. Free logical data.
(hildon_gtk_widget_set_logical_font): store logicalfontstring g_strdup()ed.
(hildon_gtk_widget_set_logical_color): store logicalcolorstring g_strdup()ed.
* hildon-widgets/hildon-defines.[ch]
(hildon_gtk_widget_set_logical_font): use const gchar*
(hildon_gtk_widget_set_logical_color): likewise.
* hildon-widgets/hildon-defines.c:
(hildoniconsizes): set const
(hildoninternaliconsizes): set static, renamed 'iis'
2006-03-14 Luc Pionchon <luc.pionchon@nokia.com>
Cleanup Caption widget,
* hildon-libs/hildon-caption.[ch]
(hildon_caption_status_get_type, hildon_caption_get_type):
G_CONST_RETURN removed, G_GNUC_CONST added
* hildon-widgets/hildon-caption.c
(struct _HildonCaptionPrivate): removed 'activate_block' member; not used anymore.
(hildon_caption_set_property): removed useless code.
(hildon_caption_button_press): simplified greatly by removing the
unnecessary recursion to locate the first focusable child of a
container - simple gtk_widget_grab_focus achieves the same
(get_first_focusable_child): removed (not used anymore)
(hildon_caption_set_focus): uses gtk_widget_is_ancestor instead of reinventing it
(hildon_caption_set_focus_child): removed (not used anymore)
(hildon_caption_class_init): remove ref to hildon_caption_set_focus_child()
(hildon_caption_hierarchy_changed): type check added
(hildon_caption_forall): callback null check added
(hildon_caption_set_status): type check added
(hildon_caption_set_icon_image): type check added
(hildon_caption_activate): activate_block kludge removed as outdated
(hildon_caption_get_child_expand): argument declared const
(hildon_caption_set_label_text): g_return_if_fail changed to
g_assert since this is not a public function;
Duplicate separator check now uses correct localized separator
instead of assuming ':'
2006-03-14 Luc Pionchon <luc.pionchon@nokia.com>
Cleanup AppView,
* hildon-libs/hildon-appview-c:
(hildon_app_view_init): Fixed a problem that prevented to set an
arbitrary value for TOOLBAR_MIDDLE (the distance, in pixel,
between toolbars). This fix involves a change in the default gtkrc
file, ie. the modification of the 'border' value of the
"toolbar-frame-middle" image in the osso-appview-background style.
(hildon_appview_add_with_scrollbar): pack in a scrolled window all
widget supporting adjustements, not only viewports.
(visible_toolbar): use proper parameter names
(find_findtoolbar_index): likewise.
(find_findtoolbar): likewise.
(find_findtoolbar): use g_assert for internal functions instead of g_return_if_fail
(hildon_appview_finalize): likewise.
(hildon_appview_signal_marshal): likewise.
(hildon_appview_forall): likewise.
(hildon_appview_switched_to): likewise.
(hildon_appview_real_fullscreen_state_change): likewise.
2006-03-14 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-date-editor.c
(hildon_date_editor_entry_validate): Now, if an invalid date is
entered, date-editor reverts to previous date, instead of setting
the maximum allowed days.
2006-03-14 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-date-editor.h
(enum HildonDateEditorErrorType): added NO_ERROR entry.
* hildon-widgets/hildon-date-editor.c
(hildon_date_editor_entry_validate): initialize error_code to NO_ERROR.
(hildon_date_editor_entry_validate): check error_code against NO_ERROR
2006-03-14 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-get-password-dialog.c:
(hildon_get_password_dialog_set_title): Removed the deprecation
#ifdefs from the .c file.
* hildon-widgets/hildon-file-handling-note.c: likewise.
2006-03-14 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-color-selector.c: Removed unused defines.
* hildon-widgets/hildon-color-selector.c
(struct _HildonColorSelectorPriv): split 'index' into 'selected_index' and 'focus_index'
(hildon_color_selector_expose)
(hildon_color_selector_get_color)
(hildon_color_selector_set_color)
(key_pressed)
(select_color)
(modify_focused): Separate selected color and focused color.
Focused color now draws a different colored border around it.
Renamed modify_selected() to modify_focused().
* hildon-widgets/hildon-color-selector.c
(hildon_color_selector_expose)
(select_color): Changed the logic in how the box positions are
calculated. The old logic was wrong, but just happened to work
with those specific values.
* hildon-widgets/hildon-color-selector.c
(hildon_color_selector_expose): Draw the selected-border using
ImageBorderColor color instead of hardcoded black.
2006-03-13 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-color-popup.c (hildon_color_popup_new):
removed current_color; use initial_color directly.
Disabled select-hardkey from activating to OK-button by default.
2006-03-13 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-date-editor.c
(hildon_date_editor_keypress): removed the unnecessary check for
the position of the cursor in the text-field which was hindering
the Left key from working as expected.
2006-03-13 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-date-editor.c: connect 'toggled' signal
after setting the toggle_button active. Prevents GLIB_CRITICALs.
2006-03-13 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-dialoghelp.c: minor cleanups
2006-03-13 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-font-selection-dialog.c
(hildon_font_selection_dialog_show_preview): set line wrap for
preview label.
2006-03-13 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-date-editor.c
(hildon_child_forall): cast 'container'
(hildon_date_editor_size_allocate): adjusted height allocation.
2006-03-13 Luc Pionchon <luc.pionchon@nokia.com>
Cleanup calendar popup,
* hildon-widgets/hildon-calendar-popup.c:
- updated 'longdesc' comment.
- removed gtk-infoprint.h from included headers (unused).
(struct HildonCalendarPopupPrivate): removed member
'can_exit' (useless).
(hildon_calendar_day_selected): removed (useless).
(hildon_calendar_allow_exit): likewise.
(hildon_calendar_deny_exit): likewise.
(hildon_calendar_selected_date): new function. replaces
hildon_calendar_allow_exit()
(hildon_calendar_popup_init):
- Removed initialization for 'can_exit'.
- Removed connection to removed useless functions.
- Connect "selected_date" to hildon_calendar_selected_date().
- Do not grab the focus (useless)
(hildon_key_pressed): just handle ESC and Return keys.
(hildon_calendar_popup_get_property): removed unused variables.
2006-03-13 Tommi Komulainen <tommi.komulainen@nokia.com>
* hildon-widgets/hildon-caption.c
* hildon-widgets/hildon-composite-widget.h
* hildon-widgets/hildon-get-password-dialog.c
* hildon-widgets/hildon-grid.h
* hildon-widgets/hildon-grid-item.h
* hildon-widgets/hildon-volumebar-range.c
* hildon-widgets/hildon-vvolumebar.c: Fix erroneous gtk-doc comment
blocks.
(hildon_controlbar_get_type): likewise.
2006-03-13 Tommi Komulainen <tommi.komulainen@nokia.com>
* doc/hildon-libs.types: Add missing types
* doc/hildon-libs-docs.sgml: Add missing links and some organization
* doc/tmpl/*: Regenerate and add new files
2006-03-13 Tommi Komulainen <tommi.komulainen@nokia.com>
* doc/Makefile.am:
* doc/hildon-libs-docs.xml: rename to hildon-libs-docs.sgml
2006-03-13 Tommi Komulainen <tommi.komulainen@nokia.com>
* doc/tmpl/hildon-wizard-dialog.sgml: Fix unmatching tags
* doc/Makefile.am: Ignore right files with IGNORE_HFILES
2006-03-13 Tommi Komulainen <tommi.komulainen@nokia.com>
* autogen.sh
* configure.ac
* doc/Makefile.am: Update gtk-doc framework bits
* gtk-doc.make (commit generated file)
* doc/hildon-libs-overrides.txt (add empty file for gtk-doc 1.1)
2006-03-13 Johan Bilien <johan.bilien@nokia.com>
* hildon-widgets/hildon-code-dialog.c:
- Add default title
- Fix l10n
2006-03-07 Johan Bilien <johan.bilien@nokia.com>
* hildon-widgets/hildon-window.c: propagate key-press event to the
parent class (Closes N#23400)
* configure.ac: 0.12.3
2006-03-06 Johan Bilien <johan.bilien@nokia.com>
* hildon-wizard-dialog.[ch]: Add page_change signal. Patch courtesy
of Artem Garmash
* configure.ac: 0.12.2
2006-03-03 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-color-selector.c (key_pressed): use
g_assert instead of g_return_val_if_fail
+ indent changes
2006-03-03 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-get-password-dialog.[ch]:
(hildon_get_password_dialog_set_title) marked deprecated.
+ cleanup header coding style
2006-03-03 Luc Pionchon <luc.pionchon@nokia.com>
Cleanup font selection dialog
* hildon-widgets/hildon-font-selection-dialog.c
(hildon_font_selection_dialog_construct_notebook): removed dummy
label
(color_modified_cb): renamed argument 'data' to 'fsd_priv'
(hildon_font_selection_dialog_preview_key_press): Renamed argument
'data' to 'unused'. Replaced g_return_val_if_fail with g_assert.
(toggle_clicked): renamed argument 'data' to 'unused'
(hildon_font_selection_dialog_set_preview_text): added proper
argument checking
2006-03-03 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-system-sound.c (hildon_play_system_sound):
removed console messages.
2006-03-03 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-sort-dialog.c: removed unused #include
(struct _HildonSortDialogPrivate):
- removed okButton, cancelButton
- removed sort_by_value, sort_order_type
- removed index_first
- renamed combo1 to combo_key
- renamed caption1 to caption_key
- renamed combo2 to combo_order
- renamed caption2 to cpation_order
(hildon_sort_dialog_init): removed init of unused fields.
use new field names.
(hildon_sort_dialog_get_sort_key): likewise.
(hildon_sort_dialog_get_sort_order): likewise.
(hildon_sort_dialog_set_sort_key): likewise.
(hildon_sort_dialog_set_sort_order): likewise.
(hildon_sort_dialog_add_sort_key): likewise.
2006-03-03 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-date-editor.c
(hildon_child_forall): use g_assert instead of g_return_if_fail
(hildon_date_editor_entry_validate): likewise.
2006-03-03 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-controlbar.c
(hildon_controlbar_change_value): commented function.
* hildon-widgets/hildon-wizard-dialog.c
(hildon_wizard_dialog_get_property): likewise.
2006-03-03 Luc Pionchon <luc.pionchon@nokia.com>
Cleanup weekday picker,
* hildon-widgets/hildon-weekday-picker.c
(_): removed unused gettext macro
(button_toggle): use meaningful parameter name
(hildon_weekday_picker_forall): use g_asserts instead of g_return_if_fail
(hildon_weekday_picker_size_allocate): likewise.
(button_toggle): likewise.
2006-03-03 Luc Pionchon <luc.pionchon@nokia.com>
Cleanup time editor,
* hildon-widgets/hildon-time-editor.c
(HILDON_TIME_EDITOR_GET_PRIVATE): moved up in the file.
(ENTRY_BORDER, ICON_WIDTH, ICON_HEIGHT): removed hardcoded pixel sizes.
(HILDON_TIME_EDITOR_TIME_LOWER_VALUE): removed (unused)
(HILDON_TIME_EDITOR_TIME_UPPER_VALUE): removed (unused)
(struct _HildonTimeEditorPrivate):
- h_entry, m_entry, s_entry replaced by entries[],
allows to remove a lot of code.
- label renamed to hm_label
- label2 renamed to sec_label
- ampm renamed to ampm_label
- show_s renamed to show_seconds
- removed fields: icon, valid_value, validated
+ moved up in the file.
(enum HildonValidation): removed unused field 'VALIDATION_ERROR'
(ENTRY_HOURS, ENTRY_MINS, ENTRY_SECS): added (enum)
(set_widget_allocation): removed
(hildon_time_editor_entry_changed): removed
(hildon_time_editor_forall): use g_asserts instead of g_return_if_fails
(hildon_time_editor_forall): removed unnecessary code
(hildon_time_editor_destroy): likewise.
(hildon_time_editor_class_init): use MIN_DURATION and MAX_DURATION
(hildon_time_editor_tap_and_hold_setup): loop on 'entries[]'
(hildon_time_editor_set_to_current_time): new function. (factorise code)
(hildon_time_editor_init): loop on 'entries[]' (simplifies the code),
use new variable names,
use hildon_time_editor_set_to_current_time
(hildon_time_editor_mnemonic_activate): uses 'entries[]'
(hildon_time_editor_set_ticks): use g_assert instead of
g_return_if_fails, use
'entries[]', removed dead code
(hildon_time_editor_set_show_seconds): use 'entries[]' and new variable names
(hildon_time_editor_validate): use 'entries[]', removed dead code
(hildon_time_editor_get_max_values): use 'entries[]'
(hildon_time_editor_get_show_seconds): use new variable names
(hildon_time_editor_set_duration_mode): likewise.
(hildon_time_editor_check_locale): do not g_strdup (fix memory leak)
(hildon_time_editor_ampm_clicked): use g_asserts instead of g_return_if_fails
removed dead code
(hildon_time_editor_icon_clicked): use g_asserts instead of g_return_if_fails
(hildon_time_editor_size_request): cleaned up, removed hardcoded sizes.
(set_widget_allocation): removed (unused)
(hildon_time_editor_entry_changed): removed (unused)
(IS_VALID_KEYPRESS): new macro
(hildon_time_editor_entry_keypress): use g_asserts instead of g_return_if_fails
deleate dead/unnecessary code
use 'entries[]'
use IS_VALID_KEYPRESS
(hildon_time_editor_validate_duration): use g_asserts instead of g_return_if_fails
(hildon_time_editor_validate_time): removed 'editor' parameter (unused)
(hildon_time_editor_size_allocate): cleanup
(convert_to_12h): cleanup code style
(hildon_time_editor_show_seconds): removed deprecation flag
(hildon_time_editor_enable_duration_mode): likewise.
2006-03-02 Luc Pionchon <luc.pionchon@nokia.com>
Cleanup volume bars,
* hildon-widgets/hildon-volumebar.h: removed unused #include
+ coding style cleanup
* hildon-widgets/hildon-volumebar.c
(_hildon_volumebar_mute_toggled): new function. Sends mute-toggled
signal to widget.
(hildon_child_forall): use g_assert instead of g_return_if_fail
* hildon-widgets/hildon-volumebar-range.h: removed unused #include
+ coding style cleanup
* hildon-widgets/hildon-volumebar-private.h:
added missing #include.
added _hildon_volumebar_mute_toggled.
(struct _HildonVolumebarPrivate): removed 'orientation' field (unused)
* hildon-widgets/hildon-vvolumebar.h: removed unused #include
+ coding style cleanup
* hildon-widgets/hildon-vvolumebar.c
(hildon_vvolumebar_size_request)
(hildon_vvolumebar_size_allocate)
(hildon_vvolumebar_expose): use g_assert instead of g_return_if_fail
* hildon-widgets/hildon-vvolumebar.c (hildon_vvolumebar_mute): removed (unused).
* hildon-widgets/hildon-vvolumebar.c: removed unused #include
(vvolumebar_class_init): renamed to hildon_vvolumebar_class_init
(vvolumebar_init): renamed to hildon_vvolumebar_init
(hildon_vvolumebar_init): removed unused 'orientation'
initialisation. Use _hildon_volumebar_mute_toggled instead of
removed hildon_vvolumebar_mute.
* hildon-widgets/hildon-hvolumebar.h: removed unused #include
* hildon-widgets/hildon-hvolumebar.c (hvolumebar_class_init):
renamed to hildon_hvolumebar_class_init
* hildon-widgets/hildon-hvolumebar.c (hvolumebar_init): renamed to
hildon_hvolumebar_init
* hildon-widgets/hildon-hvolumebar.c (hildon_hvolumebar_mute):
removed (unused).
* hildon-widgets/hildon-hvolumebar.c (hildon_hvolumebar_init):
removed unused 'orientation' initialisation.
* hildon-widgets/hildon-hvolumebar.c (hildon_hvolumebar_init): use
_hildon_volumebar_mute_toggled instead of removed
hildon_hvolumebar_mute.
2006-03-02 Luc Pionchon <luc.pionchon@nokia.com>
More cleanup,
* hildon-widgets/hildon-dialoghelp.h: use G_BEGIN_DECLS +
coding style cleanup
* hildon-widgets/hildon-color-popup.h: likewise.
* hildon-widgets/hildon-color-popup.[ch] (hildon_color_popup_new):
use const parameter
* hildon-widgets/hildon-color-selector.c
(hildon_color_selector_new): use g_return_val_if_fail instead of
g_assert.
(select_color): use g_assert instead of g_return_if_fail
* hildon-widgets/hildon-calendar-popup.c
(hildon_calendar_allow_exit): use g_assert instead of g_return_if_fail.
2006-03-02 Johan Bilien <johan.bilien@nokia.com>
* hildon-widgets/hildon-code-dialog.[ch], hildon-widgets/Makefile.am:
added HildonCodeDialog widget
2006-03-02 Johan Bilien <johan.bilien@nokia.com>
* hildon-widgets/hildon-window.c:
- set the toolbar height explicitely
- use show instead of show_all on the common_toolbar
- add the toolbars bottom-up instead of top-down
* hildon-widgets/hildon-program.c:
- don't assume that a window was realized when added to
the program
2006-03-01 Luc Pionchon <luc.pionchon@nokia.com>
Cleanup font selection dialog,
* hildon-widgets/hildon-font-selection-dialog.h: use G_BEGIN_DECLS
+ coding style cleanup
* hildon-widgets/hildon-font-selection-dialog.c
(hildon_font_selection_dialog_finalize): use g_return_if_fail
instead of g_assert.
* hildon-widgets/hildon-font-selection-dialog.c
(hildon_font_selection_dialog_get_text_tag)
(hildon_font_selection_dialog_set_buffer)
(hildon_font_selection_dialog_get_font)
(hildon_font_selection_dialog_set_font): Removed deprecation #ifdef.
2006-03-01 Luc Pionchon <luc.pionchon@nokia.com>
Cleanup range editor,
* hildon-widgets/hildon-range-editor.c
(hildon_range_editor_calss_init):Removed
widget_calss->mnemonic_activate init
* hildon-widgets/hildon-range-editor.c
(hildon_range_editor_mnemonic_activate): Removed static function
hildon_range_mnemonic_activate and FIXME. It is useless even
through it is overriding function for
GtkWidgetClass->mnemonic_activate. The activation and keyboard
focus will be realized based on different applications.
* hildon-widgets/hildon-range-editor.c
(is_valid_keyvalue_for_entry_keypress): new function.
* hildon-widgets/hildon-range-editor.c
(hildon_range_editor_entry_keypress): uses
is_valid_keyvalue_for_entry_keypress
* hildon-widgets/hildon-range-editor.c
(hildon_range_editor_forall): use g_return_if_fail instead of
g_assert
* hildon-widgets/hildon-range-editor.cvn
(hildon_range_editor_mnemonic_activate): removed. (unused)
2006-03-01 Luc Pionchon <luc.pionchon@nokia.com>
Cleanup hildon-note,
* hildon-widgets/hildon-note.[ch]
(hildon_note_five_line_truncate): removed.
(hildon_note_one_line_truncate): removed.
(hildon_note_set_property): use _hildon_gtk_label_set_text_n_lines
instead of _{one|five}_line_truncate() functions.
(hildon_note_new_information_with_icon_theme): Deprecated. Turned
into wrapper of "hildon_note_new_information_with_icon_name".
(hildon_note_new_confirmation_with_icon_stock): Deprecated (broken)
(hildon_note_new_information_with_icon_stock): Deprecated (broken)
- removed some unnessecary includes.
- Merged hildon_note_create & hildon_note_create_form and rewrote
the combination as hildon_note_rebuild
- Added missing g_return_* into public functions.
- Acquire real references to children which are packed/unpacked,
so we do not need to bother about refcounting while changing the
layout.
2006-03-01 Luc Pionchon <luc.pionchon@nokia.com>
More cleanup:
* hildon-widgets/hildon-number-editor.c
(set_widget_allocation): use const parameter.
(hildon_number_editor_forall): use g_assert instead of g_return_if_fail
(struct _HildonNumberEditorPrivate): removed unused member 'negative'
(hildon_number_editor_set_range): removed 'negative'
* hildon-widgets/hildon-sort-dialog.c (hildon_sort_dialog_init):
use g_assert instead of g_return_if_fail
* hildon-widgets/hildon-time-picker.c:
- in several places, replace 1440 by 24*60
(PROP_AMPM): removed, unused.
(hildon_time_picker_timeout): use significant parameter name,
removed dead code
(hildon_time_picker_init): removed useless call to _change_time()
2006-03-01 Luc Pionchon <luc.pionchon@nokia.com>
Cleanup Seekbar,
* hildon-widgets/hildon-seekbar.c
(_): Removed dgettext macro definition.
(HildonSeekbarPrivate): Removed 'label' and 'draw_value'. (unused).
(hildon_seekbar_finalize): removed. not needed.
(hildon_seekbar_class_init): Removed hildon_seekbar_finalize.
(hildon_seekbar_size_request): indent cleanup.
(hildon_seekbar_size_allocate): simplified function.
(hildon_seekbar_button_press_event): Removed unused variables.
(hildon_seekbar_button_release_event): likewise.
2006-03-01 Luc Pionchon <luc.pionchon@nokia.com>
Cleanup date editor,
* hildon-widgets/hildon-date-editor.c
(BUTTON_SPACING): removed. Use HILDON_MARGIN_DEFAULT
(MAX_DATE_LEN): removed. Specify buffer lenght in code.
(hildon_date_editor_get_font_width): removed (legacy static
function), use gtk_entry_set_width_chars instead.
(hildon_date_editor_mnemonic_activate): removed mnemonic
activation handler, since it's no more used by HildonCaption.
- Removed some meaningless code (if (somewidget != NULL)) from
size allocate.
- HEAVILY modified key_press, completely removed if/grab_focus
spaghetti by gtk_widget_child_focus
- Removed input validation from keypress (that would not work
anyway, since our input method do not generate presses). => This
allows to change default return value to FALSE and remove all cases
that just returned FALSE for some keys.
- Merged all *_entry_changed callbacks to use the same
function. Again using gtk_widget_child_focus, but now with return
value as well to detect last field.
- Changed that calendar button is no more implemented through
changing widget hierarchy (old implementation caused critical
issues when you used both stylus and hardkeys at the same time to
popup. => finalize method no longer contained anything => removed
- Locale type is no longer needed after initial setup.
- Changed idle_popup to popup_calendar_dialog. Idle was a legacy
hack from the days of background dimming (it was important to
process background updates before the dimming was done).
- Changed the field order/delimeters to be correcly derived form
the locale.
- Rewrote validation function, combined it with validation done in
focus_out (since both are now called at the same time).
- Changed set_date function to set all components at one go
without doing any validation there between (before setting each
component).
2006-03-01 Luc Pionchon <luc.pionchon@nokia.com>
Cleanup set-password dialog
* hildon-widgets/hildon-set-password-dialog.[ch]
(hildon_set_password_dialog_set_domain): gchar * param is const
(hildon_set_password_dialog_new_with_default): likewise.
* hildon-widgets/hildon-set-password-dialog.c
(hildon_set_password_set_property): setting 'modify-protection'
now creates the UI
(hildon_set_password_get_property): fixed broken 'domain' (missing
break statement!) and 'modify-protection' (was a null operation)
properties; code simplified.
(hildon_set_password_dialog_constructor),
(create_contents),
(hildon_set_password_dialog_class_init),
(hildon_set_password_dialog_init):
hildon_set_password_dialog_constructor removed as weird and
obsolete and replaced with new function create_contents; fixed
leaking group variable; removed some unused, outdated code that
was already commented out.
(hildon_set_password_response_change),
(hildon_set_password_response_set): GtkWindow *parent arguments
changed to gpointer unused; cleaned up unnecessary strcmp's
(hildon_checkbox_toggled): fixed typo in function name (checbox ->
checkbox). gpointer renamed to be more descriptive; Code simplified
(hildon_set_password_dialog_get_type): empty function argument
list replaced with void keyword.
(hildon_set_password_dialog_new),
(hildon_set_password_dialow_new_with_default): simplified by
having the simpler constructor call the more complex one, not vice
versa; moved callback connects to create_contents since they
depend on the status of 'modify-protection' property
(hildon_set_password_dialog_get_password): type check added
(hildon_set_password_dialog_get_protected): likewise
(hildon_set_password_dialog_set_domain): likewise
2006-03-01 Luc Pionchon <luc.pionchon@nokia.com>
Cleanup name-password dialog:
* hildon-widgets/hildon-name-password-dialog.[ch]
(HildonNamePasswordDialogPrivate): nameEntry and passwordEntry
types changed from *HildonCaption to *GtkEntry
(hildon_name_password_dialog_set_property): layout fixes;
duplicated code replaced with calls to relevant public functions
(hildon_name_password_dialog_get_property): layout fixes;
duplicated code replaced with calls to relevant public functions
(hildon_name_password_dialog_init): fixed leaking group variable;
reworked to have captions as local variables and captioned entries
in the private struct
(hildon_name_password_dialog_new_with_default): name and password
arguments declared const
(hildon_name_password_dialog_get_name): type check added + cleanup
(hildon_name_password_dialog_get_password): likewise.
(hildon_name_password_dialog_set_domain): domain argument declared
const; type check added + cleanup
2006-03-01 Luc Pionchon <luc.pionchon@nokia.com>
Cleanup get-password dialog:
* hildon-widgets/hildon-get-password-dialog.[ch]
(HildonGetPasswordDialogPrivate): gboolean get_old added
(hildon_get_password_set_property): fixed broken 'numbers-only'
and 'max-characters' cases; 'get-old' property added
(hildon_get_password_get_property): added support for reading
'numbers-only' properties; added missing break to 'domain' case.
added 'get-old' property
(hildon_get_password_dialog_class_init): 'domain' and
'numbers-only' properties are now readable; 'get-old' property
added
(hildon_get_password_dialog_init, create_contents): everything
that depends on the type of the dialog (i.e. 'get-old' property)
is now done in create_contents after properties are initialized;
fixed leaking group variable
(hildon_get_password_dialog_get_type): empty function argument
list replaced with void keyword
(hildon_get_password_dialog_new): moved setting the labels of the
get password dialog to init where it should be done; 'get-old'
property set upon construction to achieve this
(hildon_get_password_dialog_new_with_default): password argument
declared const
(hildon_get_password_dialog_get_password): type check added
(hildon_get_password_dialog_set_domain): type check added; domain
argument declared const; duplicate function declaration removed
(hildon_get_password_dialog_set_title): type check added;
new_title argument declared const
(hildon_get_password_dialog_set_caption): type check added;
new_caption argument declared const
(hildon_get_password_dialog_set_max_characters): broken type check fixed
(_invalid_input): gpointer data argument renamed unused
2006-02-28 Luc Pionchon <luc.pionchon@nokia.com>
(*_get_type): declared G_GNUC_CONST
* hildon-widgets/hildon-app.h:
* hildon-widgets/hildon-appview.h:
* hildon-widgets/hildon-calendar-popup.h:
* hildon-widgets/hildon-color-selector.h:
* hildon-widgets/hildon-date-editor.h:
* hildon-widgets/hildon-find-toolbar.h:
* hildon-widgets/hildon-get-password-dialog.h:
* hildon-widgets/hildon-name-password-dialog.h:
* hildon-widgets/hildon-number-editor.h:
* hildon-widgets/hildon-seekbar.h:
* hildon-widgets/hildon-set-password-dialog.h:
* hildon-widgets/hildon-sort-dialog.h:
* hildon-widgets/hildon-time-editor.h:
* hildon-widgets/hildon-weekday-picker.h:
* hildon-widgets/hildon-wizard-dialog.h:
2006-02-28 Luc Pionchon <luc.pionchon@nokia.com>
Volume bars cleanup
* hildon-widgets/hildon-volumebar.c
(hildon_volumebar_class_init): object class casts cleaned up
(hildon_child_forall): removed unnecessary variable vbar; type check added
(hildon_volumebar_set_property): removed unnecessary variable vbar
(hildon_volumebar_set_level): type check added
(hildon_volumebar_get_level): type check added
(hildon_volumebar_set_mute): type check added
(hildon_volumebar_get_mute): type check added
(hildon_volumebar_get_adjustment): type check added
(hildon_volumebar_key_press): removed unnecessary g_return_if_fail
* hildon-widgets/hildon-volumebar.h
(hildon_volumebar_get_type): declared G_GNUC_CONST
* hildon-widgets/hildon-volumebar-private.h:
- G_BEGIN_DECLS/G_END_DECLS added
- ownorientation removed from private struct
* hildon-widgets/hildon-volumebar-range.c
(hildon_volumebar_range_init): vacuous return statement removed
(hildon_volumebar_range_set_level): removed unnecessary clamping
kludge that violated object oriented principles only to provide an
extremely minor, unnecessary optimization; type check added
(hildon_volumebar_range_get_level): now accesses adjustment value
with appropriate functions instead of reading it directly from the
struct, which is bad OOP; type check added
(hildon_volumebar_range_button_press_event): Added more descriptive comments
(hildon_volumebar_range_button_release_event): Added more descriptive comments
* hildon-widgets/hildon-volumebar-range.h
(hildon_volumebar_range_get_type): declared G_GNUC_CONST
* hildon-widgets/hildon-hvolumebar.c
(hvolumebar_init): priv->ownorientation and v_ptr removed;
completely removed the gtk_widget_show() call that was already
commented out
(hildon_hvolumebar_new): empty function parameter list replaced
with void keyword
(hildon_hvolumebar_map): vbar variable removed; type check added
(hildon_hvolumebar_expose): type check added
(hildon_hvolumebar_size_request): type check added
(hildon_hvolumebar_size_allocate): vbar variable removed; type check added
* hildon-widgets/hildon-hvolumebar.h
(hildon_hvolumebar_get_type): declared G_GNUC_CONST
* hildon-widgets/hildon-vvolumebar.c
(vvolumebar_init): priv->ownorientation and v_ptr removed
(hildon_vvolumebar_new): empty function parameter list replaced with void keyword
(hildon_vvolumebar_expose): type check added
(hildon_vvolumebar_size_request): type check added
(hildon_vvolumebar_size_allocate): vbar variable removed; type check added
* hildon-widgets/hildon-vvolumebar.h
(hildon_vvolumebar_get_type): declared G_GNUC_CONST
2006-02-28 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-weekday-picker.c
(_HildonWeekdayPickerPrivate): Removed members: dayorder, days,
last_index; added day_order_buttons
* (hildon_weekday_picker_mnemonic_activate): removed.
mnemonics are no longer used.
* (hildon_weekday_picker_class_init): Removed mnemonic_activate
function. Rewritten creation of buttons. Unref'ed size group.
* (button_toggle): Removed bit mask checking, simplified function
* (hildon_weekday_picker_set_day):
* (hildon_weekday_picker_unset_day): Removed bit mask checking, date
adjustment, unecessary for loop
* (hildon_weekday_picker_toggle_day): Removed date adjustment and
unecessary for loop. Simplified button toggling
* (hildon_weekday_picker_set_all):
* (hildon_weekday_picker_unset_all): Removed bit mask checking and
simplified for loop
(hildon_weekday_picker_isset_day): Removed date adjustment and
unecessary for loop;
2006-02-21 Luc Pionchon <luc.pionchon@nokia.com>
Added hildon-banner, as a clean replacement for gtk-infoprint
* hildon-widgets/hildon-banner.[ch]: implementation and header
* hildon-widgets/Makefile.am: reference new files
* hildon-widgets/gtk-infoprint.c: removed implementation, now just
a compatibility wrapper to hildon-banner
2006-02-21 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-color-button.c: added comments
* hildon-widgets/hildon-controlbar.c: Likewise.
* hildon-widgets/hildon-composite-widget.c: Likewise.
* hildon-widgets/hildon-calendar-popup.c: Likewise.
2006-02-21 Luc Pionchon <luc.pionchon@nokia.com>
* ChangeLog-hildon-lgpl: copied from old hildon-lgpl/ChangeLog for
reference
2006-02-21 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: 0.12.1
2006-02-21 Johan Bilien <johan.bilien@nokia.com>
* doc/tmpl/hildon-program.sgml: added from hildon-lgpl HW branch
* doc/tmpl/hildon-window.sgml: likewise.
* hildon-widgets/hildon-program.[ch]: likewise.
* hildon-widgets/hildon-window.[ch]: likewise.
* hildon-widgets/hildon-window-private.h: likewise.
* hildon-widgets/Makefile.am: Added these new files to the build
and distribution.
2006-02-14 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: 0.12.0
Merged hildon-lgpl into hildon-libs (and hildon-fm)
* doc/tmpl/hildon-system-sound.sgml: added from hildon-lgpl
* doc/tmpl/hildon-appview.sgml: likewise.
* doc/tmpl/hildon-color-popup.sgml: likewise.
* doc/tmpl/hildon-find-toolbar.sgml: likewise.
* doc/tmpl/hildon-app.sgml: likewise.
* doc/tmpl/hildon-input-mode-hint.sgml: likewise.
* doc/tmpl/hildon-caption.sgml: likewise.
* doc/tmpl/hildon-marshalers.sgml: likewise.
* doc/tmpl/hildon-add-home-dialog.sgml: likewise.
* doc/tmpl/hildon-defines.sgml: likewise.
* doc/tmpl/gtk-infoprint.sgml: likewise.
* doc/tmpl/hildon-composite-widget.sgml: likewise.
* hildon-widgets/gtk-infoprint.[ch]: added from hildon-lgpl
* hildon-widgets/hildon-app.[ch]:likewise.
* hildon-widgets/hildon-app-private.h:likewise.
* hildon-widgets/hildon-appview.[ch]:likewise.
* hildon-widgets/hildon-caption.[ch]:likewise.
* hildon-widgets/hildon-defines.[ch]:likewise.
* hildon-widgets/hildon-find-toolbar.[ch]:likewise.
* hildon-widgets/hildon-input-mode-hint.h:likewise.
* hildon-widgets/Makefile.am (libhildonwidgets_la_SOURCES):
removed hildon-file-details-dialog.[ch] (moved to hildon-fm)
added,
gtk-infoprint.[ch]
hildon-app.[ch]
hildon-app-private.h
hildon-appview.[ch]
hildon-caption.[ch]
hildon-defines.[ch]
hildon-find-toolbar.[ch]
hildon-input-mode-hint.h
* hildon-widgets/hildon-get-password-dialog.c: corrected #include
path for gtk-infoprint.h and hildon-input-mode-hint.h
* po/en_GB.po: merged msgstr from hildon-lgpl
* timer/*: added from hildon-lgpl
Moved hildon-file-details-dialog from hildon-libs to hildon-fm
* hildon-widgets/hildon-file-details-dialog.[ch]: moved to
hildon-fm
* ut/hildon-widgets_tests.c (test41a): removed test case for
hildon_file_details_dialog
* doc/hildon-libs.types: likewise.
* doc/hildon-libs-docs.xml: likewise.
Update build files
* hildon-libs.pc.in (Libs): do not requires hildon-lgpl anymore
nor hildon-fm
* Makefile.am (SUBDIRS): added timer/
* configure.ac: do not depend anymore on hildon-lgpl nor
hildon-fm, check for libmb, added Makefile output for timer/
2006-01-18 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: 0.10.2
2006-01-18 Luc Pionchon <luc.pionchon@nokia.com>
N#22240 CP: Tapping outside the scroll bar invoke the applet.
* hildon-widgets/hildon-grid.c (adjust_scrollbar_height):
hildon-apps scroll-control property is now handled.
(get_child_index_by_coord): ignores events not matching a grid
item.
2006-01-11 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: 0.10.1
2006-01-11 Luc Pionchon <luc.pionchon@nokia.com>
Missing/Buggy documentation from,
N#11566 make password dialog customizable (messages)
* hildon-widgets/hildon-get-password-dialog.c
(hildon_get_password_dialog_set_title): typo in gtkdoc function
name
* doc/tmpl/xxx.sgml: updated.
2006-01-11 Luc Pionchon <luc.pionchon@nokia.com>
N#19369 TRUE Scketch does not show colour change when using white color
Color button needs inner border white, and outer border black.
* hildon-widgets/hildon-color-button.c
(hildon_color_button_draw_pixbuf_borders): new function. Paint the
border
* hildon-widgets/hildon-color-button.c (hildon_color_button_init):
(hildon_color_button_realize): call the above function
2006-01-11 Luc Pionchon <luc.pionchon@nokia.com>
N#21063 hildon_note_new_confirmation_add_buttons has misleading docs
* hildon-widgets/hildon-note.c:
(hildon_note_new_confirmation_add_buttons): updated doc
(hildon_note_set_button_texts): likewise.
2006-01-11 Luc Pionchon <luc.pionchon@nokia.com>
N#21884 Cannot select read-only by using the center of the scroll key
* hildon-widgets/hildon-file-details-dialog.c
(hildon_file_details_dialog_init): Removed dialog default response.
2006-01-11 Luc Pionchon <luc.pionchon@nokia.com>
N#8094 5-bit color selector: wrong margins and pixel measurements
M#59 HildonColorSelector needs more space
* hildon-widgets/hildon-color-popup.c (HILDON_COLOR_COL_SPACING)
(hildon_color_popup_new): add space between the control bars and
the color preview area.
2006-01-03 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-calendar-popup.c
* hildon-widgets/hildon-color-button.c
* hildon-widgets/hildon-color-popup.c
* hildon-widgets/hildon-color-selector.c
* hildon-widgets/hildon-composite-widget.c
* hildon-widgets/hildon-controlbar.c
* hildon-widgets/hildon-date-editor.c
* hildon-widgets/hildon-dialoghelp.c
* hildon-widgets/hildon-file-details-dialog.c
* hildon-widgets/hildon-font-selection-dialog.c
* hildon-widgets/hildon-get-password-dialog.c
* hildon-widgets/hildon-grid-item.c
* hildon-widgets/hildon-grid.c
* hildon-widgets/hildon-hvolumebar.c
* hildon-widgets/hildon-name-password-dialog.c
* hildon-widgets/hildon-note.c
* hildon-widgets/hildon-number-editor.c
* hildon-widgets/hildon-range-editor.c
* hildon-widgets/hildon-scroll-area.c
* hildon-widgets/hildon-seekbar.c
* hildon-widgets/hildon-set-password-dialog.c
* hildon-widgets/hildon-sort-dialog.c
* hildon-widgets/hildon-time-editor.c
* hildon-widgets/hildon-time-picker.c
* hildon-widgets/hildon-volumebar-private.h
* hildon-widgets/hildon-volumebar-range.c
* hildon-widgets/hildon-volumebar.c
* hildon-widgets/hildon-vvolumebar.c
* hildon-widgets/hildon-weekday-picker.c
* hildon-widgets/hildon-wizard-dialog.c
commented code
2005-12-28 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: 0.10.0
2005-12-12 Luc Pionchon <luc.pionchon@nokia.com>
Some more properties for Gazpacho support,
* hildon-widgets/hildon-calendar-popup.c: "day", "month", "year"
* hildon-widgets/hildon-color-selector.c: "color"
* hildon-widgets/hildon-color-selector.[ch]
(hildon_color_selector_get_color): return const pointer to the
color (not a copy).
2005-11-18 Luc Pionchon <luc.pionchon@nokia.com>
Gazpacho support, added the following properties:
* hildon-widgets/hildon-insert-object-dialog.c: "name", "mimetype"
* hildon-widgets/hildon-seekbar.c: "position", "fraction"
* hildon-widgets/hildon-grid-item.c: "emblem-type"
* hildon-widgets/hildon-sort-dialog.c: "sort-key", "sort-order"
* hildon-widgets/hildon-grid.c: "style", "scrollbar-pos"
* hildon-widgets/hildon-font-selection-dialog.c: "preview-text"
* hildon-widgets/hildon-get-password-dialog.c: "caption-label", "max-characters"
* hildon-widgets/hildon-telephone-editor.c: "border", "plus" (obsolet widget)
* hildon-widgets/hildon-number-editor.c: "value"
* hildon-widgets/hildon-color-button.c: minor cleanup
2005-11-18 Luc Pionchon <luc.pionchon@nokia.com>
Started new development
(branche for maintenance continues with versions 0.9.x)
2005-11-03 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: 0.9.53
2005-10-31 Luc Pionchon <luc.pionchon@nokia.com>
same fix for,
N#19283 Control panel - The values entered are not saved.
N#19648 Hildon Date Editor widget detects values too high
(note: complete fix include also fixes in GTk+)
* hildon-widgets/hildon-calendar-popup.c
(hildon_calendar_popup_set_property),
(hildon_calendar_popup_class_init),
(init_dmy): Added 'min-year', 'max-year' properties for passing
the information through from HildonDateEditor to GtkCalendar
* hildon-widgets/hildon-date-editor.c:
(hildon_date_editor_class_init),
(hildon_date_editor_init),
(hildon_date_editor_set_property),
(hildon_date_editor_get_property),
(idle_popup),
(hildon_date_editor_entry_validate),
(hildon_date_editor_date_error): Added 'min-year', 'max-year'
properties and replaced hardcoded constants with them
* hildon-widgets/hildon-date-editor.c
(hildon_date_editor_d_entry_changed),
(hildon_date_editor_m_entry_changed),
(hildon_date_editor_d_entry_changed): new functions to ensure that
the fields are validated and the focus is moved when maximum
number of characters has been entered.
2005-10-13 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: 0.9.52
2005-10-12 Luc Pionchon <luc.pionchon@nokia.com>
N#19140 System alerts still audible despite being turned off
* hildon-widgets/hildon-note.c (sound_handling):
* hildon-system-sound.[ch]: New files, implements hildon_play_system_sound.
* hildon-note.c (sound_handling): Changed to use new
hildon_play_system_sound.
(hildon_note_init): Signal handler id is changed to be in private
structure, not in global variable.
* hildon-note.c: Removed unused defines etc.
* Makefile.am: Appended new files to build rules.
2005-10-05 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: 0.9.51
2005-10-05 Luc Pionchon <luc.pionchon@nokia.com>
N#20027 PDF Reader crashes on selecting read only option in the
details dialog box.
* hildon-widgets/hildon-file-details-dialog.c:
(change_state): Fixed assertion that was causing problems
(check_validity): New function: We now automatically close the
dialog if the displayed file is removed.
(handle_focus): Callback removed:
(init): Now using correct gtk way to bind container and adjustment
together. Not the previous callback.
(set_property): Connecting/disconnecting new handlers (for
change_state).
(finalize): disconnecting new handler.
2005-10-05 Luc Pionchon <luc.pionchon@nokia.com>
N#17918 Volumebar widget background image doesn't change when
widget goes into mute state,
* hildon-vvolumebar.c (hildon_volumebar_set_mute): queued widget
for drawing
* hildon-hvolumebar.c (hildon_hvolumebar_expose): paint background
using the state of the internal volumebar, not the whole container
* hildon-vvolumebar.c (hildon_vvolumebar_expose): paint background
using the state of the internal volumebar, not the whole container
2005-09-19 Tapani Palli <tapani.palli@nokia.com>
* hildon-widgets/hildon-dialoghelp.[ch]: added
gtk_dialog_help_disable and fixed bug N#19468
2005-09-14 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: Release 0.9.50
2005-09-13 Luc Pionchon <luc.pionchon@nokia.com>
Part of N#11129,
* po/en_GB.po: Added "Ckct_wi_grid_no_items"
* hildon-widgets/hildon-grid.c
(hildon_grid_class_init, hildon_grid_init): Replaced default empty
label by logical name "Ckct_wi_grid_no_items"
2005-08-31 Luc Pionchon <luc.pionchon@nokia.com>
* po/en_GB.po (ecdg_ti_verify_password): translation update.
2005-08-30 Tommi Komulainen <tommi.komulainen@nokia.com>
* configure.ac: Release 0.9.49
2005-08-30 Tommi Komulainen <tommi.komulainen@nokia.com>
* hildon-widgets/hildon-number-editor.c (add_select_all_idle,
hildon_number_editor_finalize, hildon_number_editor_entry_changed):
Save the id of the idle callback and remove it when the widget is
destroyed to avoid crashing. N#18096
2005-08-30 Tommi Komulainen <tommi.komulainen@nokia.com>
* hildon-widgets/hildon-number-editor.c (button_event_id): GSource
id's are unsigned and undefined at zero (instead of signed and -1)
2005-08-30 Tommi Komulainen <tommi.komulainen@nokia.com>
* hildon-widgets/hildon-time-editor.c (convert_to_12h): Removed a hack
that was not working. N#16805
2005-08-22 Tommi Komulainen <tommi.komulainen@nokia.com>
* configure.ac: Release 0.9.48
2005-08-22 Tommi Komulainen <tommi.komulainen@nokia.com>
* hildon-widgets/hildon-grid.c (hildon_grid_set_num_columns): Never
allow area_rows to be 0 (ie. before widget is visible), otherwise the
initial jump_scrollbar_to_focused() scrolls wrong. N#17152
2005-08-22 Tommi Komulainen <tommi.komulainen@nokia.com>
* hildon-widgets/hildon-calendar-popup.c (hildon_calendar_popup_init):
Do not override the week-start property of GtkCalendar according to
the hildon-libs PO file, it is automatically determined from locale
data. N#12176
2005-08-17 Tommi Komulainen <tommi.komulainen@nokia.com>
* configure.ac: Release 0.9.47
2005-08-17 Tommi Komulainen <tommi.komulainen@nokia.com>
* hildon-widgets/hildon-get-password-dialog.c: Add "numbers_only"
property for setting the password entry accept only numeric values.
N#15212
2005-08-17 Tommi Komulainen <tommi.komulainen@nokia.com>
* hildon-widgets/hildon-calendar-popup.c (MAX_YEAR, MIN_YEAR):
* hildon-widgets/hildon-note.c (ELLIPSATION_STRING, BOX_SPAXING):
* hildon-widgets/hildon-volumebar-range.c (CHANGE_THRESHOLD):
Use defines rather than magic numbers in the code.
2005-08-17 Tommi Komulainen <tommi.komulainen@nokia.com>
Update to new l10n packaging style. po-files (inside this package)
are not used for now, the message catalogs come from separate packages
and including them here would conflict.
* Makefile.am (SUBDIRS): stop including po-files
* Makefile.am (EXTRA_DIST):
* debian/hildon-libs-l10n-engb.install:
* debian/hildon-libs-l10n-src.install:
* po/debian/*: Removed
2005-08-09 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-file-details-dialog.c: Added read only
checks to cover gateway content as well.
* hildon-widgets/hildon-time-editor.c:
(hildon_time_editor_validate): Replace solid numbers with defined
values
(convert_to_12h): Remove "work-around" for the broken 12h timespec
2005-08-05 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-color-selector.c (modify_selected): fix
invalid cast from `GdkWindow' to `GtkWindow'
* hildon-widgets/hildon-color-popup.c
(hildon_popup_palette_expose): removed debug printing
2005-08-03 Luc Pionchon <luc.pionchon@nokia.com>
* doc/tmpl/hildon-note.sgml: code example, use slightly less funny
string examples.
* hildon-widgets/hildon-scroll-area.c
(hildon_scroll_area_destroy): one-instruction function:
removed. Call g_free directly.
+ minor cleanup
(hildon_scroll_area_size_allocate):When a scrollbar appears to the
right edge of window, size of the child is also shrinked. 'fixed'
does not automatically update this data -> Doing it manually.
* hildon-widgets/hildon-date-editor.h: added
HildonDateEditorErrorType error enumeration type, removed signal
"validate-date" virtual function, added signal "date-error"
virtual function.
* hildon-widgets/hildon-date-editor.c (hildon_date_editor_date_error):
added custom info prints.
(hildon_date_editor_validate_date): removed
(hildon_date_editor_entry_validate): validate maximum and minimum
limits on each field.
(hildon_date_editor_entry_focus_out): check the date validation
in simpler manner, don't put content if field is empty (spec
doesn't say if there should be anything placed in the entry if
it is empty).
(hildon_date_editor_get_date),
(hildon_date_editor_get_month),
(hildon_date_editor_get_year),
(hildon_date_editor_get_day): use direct entry content, so that 0
indicates empty entry, and information is more accurate.
2005-08-01 Luc Pionchon <luc.pionchon@nokia.com>
* configure.ac: Adjusted CFLAGS and removed -Werror due to the
glib-2.0 flaw. See
http://bugzilla.gnome.org/show_bug.cgi?id=310175 and
http://bugzilla.gnome.org/show_bug.cgi?id=310216
2005-07-29 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-controlbar.h: added missing signal when end reached
2005-07-26 Luc Pionchon <luc.pionchon@nokia.com>
* hildon-widgets/hildon-number-editor.c:
(hildon_number_editor_select_all): new function, selects all
the text in the entry.
* hildon-widgets/hildon-number-editor.c: added several calls to
hildon_number_editor_select_all with g_idle_add.
* hildon-controlbar.c : add signal when end reached
* hildon-time-editor.c : fixed: Time chooser widget displays am/pm and time separator indicators badly alligned.
* hildon-time-picker.c : displays valid date at 12:00 am/pm.
2005-07-25 Luc Pionchon <luc.pionchon@nokia.com>
Fixed incorrect values in <Filetype> Details Dialog
Fixed help button usage in dialogs
* hildon-dialoghelp.c: Added more documentation about the
help signal
* hildon-file-details-dialog.c: Updated to match
'File Management in OSSO' version 3.0
* Fixed application hang after calling gtk_main_quit
* hildon-date-editor.c: Fixed HildonDateEditor that caught
ESC presses needlessly
* hildon-time-editor.c: Fixed memory corruption
|