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
|
2008-12-12 Claudio Saavedra <csaavedra@igalia.com>
Patch contributed by Iván Gómez (igomez@igalia.com)
* src/hildon-check-button.c:
* src/hildon-date-button.c:
* src/hildon-date-selector.c:
* src/hildon-dialog.c:
* src/hildon-edit-toolbar.c:
* src/hildon-entry.c:
* src/hildon-picker-button.c:
* src/hildon-program.c:
* src/hildon-text-view.c:
* src/hildon-time-button.c:
* src/hildon-touch-selector-entry.c:
* src/hildon-window-stack.c:
Add more "since" tags to the new API.
2008-12-12 Claudio Saavedra <csaavedra@igalia.com>
* doc/hildon-sections.txt: Add below method.
* src/hildon-gtk.c: (+hildon_gtk_vscale_new): New vertical
version for the hildonized scale.
* src/hildon-gtk.h: Add the definition.
Fixes: NB#93744 (Tapping should jump to location on GtkScale)
2008-12-12 Claudio Saavedra <csaavedra@igalia.com>
* doc/hildon-sections.txt: Add missing entries for new methods.
2008-12-12 Alejandro G. Castro <alex@igalia.com>
Added API to pannable are in order to get its adjustments. We
added two properties to manage the values we had in the private
structure.
* src/hildon-pannable-area.c:
(hildon_pannable_area_class_init): Added hadjustment and
vadjustment properties in order to expose horizontal and vertical
adjustment.
(hildon_pannable_area_get_property),
(hildon_pannable_area_set_property): Added code to handle the new
properties
(hildon_pannable_area_get_hadjustment),
(hildon_pannable_area_get_vadjustment): API functions to get the
adjustments
* src/hildon-pannable-area.h:
(hildon_pannable_area_get_hadjustment),
(hildon_pannable_area_get_vadjustment): API functions to get the
adjustments
2008-12-12 Alejandro G. Castro <alex@igalia.com>
Fixed some leaks, after valgrinding.
* src/hildon-touch-selector.c:
(_default_print_func): Fixed a leak.
(hildon_touch_selector_append_column): Fixed a leak.
* src/hildon-date-button.c:
(hildon_date_button_init): Fixed a leak.
* src/hildon-date-selector.c
(hildon_date_selector_finalize): Fixed a leak.
2008-12-12 Claudio Saavedra <csaavedra@igalia.com>
Based on a patch by Christian Dywan (christian@imendio.com)
* src/hildon-gtk.c: (+hildon_gtk_hscale_new): Create a hildonized style
GtkHScale.
* src/hildon-gtk.h: Add definition.
Fixes: NB#93744 (Tapping should jump to location on GtkScale)
2008-12-11 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-picker-button.c: (hildon_picker_button_init),
(hildon_picker_button_new): Set the HildonButton::style property
in the init method, to propagate the value to the derived classes.
2008-12-11 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-button.c: (hildon_button_class_init): Do not make
the "style" property a construct property.
2008-12-11 Alberto Garcia <agarcia@igalia.com>
* src/hildon-wizard-dialog.h
* src/hildon-wizard-dialog.c
(hildon_wizard_dialog_set_forward_page_func)
* src/hildon-pannable-area.h
* src/hildon-pannable-area.c
(hildon_pannable_area_set_size_request_policy):
Documentation fixes.
2008-12-11 Alberto Garcia <agarcia@igalia.com>
* doc/hildon-sections.txt: Fixed warning about unused symbols.
2008-12-11 Alberto Garcia <agarcia@igalia.com>
* doc/hildon-sections.txt: Added sections file.
2008-12-11 Claudio Saavedra <csaavedra@igalia.com>
* AUTHORS: Updates.
* src/*.[ch]: Updates.
2008-12-10 Thomas Thurman <thomas.thurman@collabora.co.uk>
* examples/hildon-progress-indicator-example.c: new file
* examples/Makefile.am: include the new example program
2008-12-10 Alberto Garcia <agarcia@igalia.com>
* src/hildon-wizard-dialog.c (destroy): Fix compilation warning
2008-12-09 Claudio Saavedra <csaavedra@igalia.com>
* configure.ac: post release version bump
* debian/changelog: version bump
2008-12-09 Claudio Saavedra <csaavedra@igalia.com>
[Release 2.1.28]
* NEWS: updates
* configure.ac: bump version
* debian/changelog: updates
* debian/control: bump gtk+ dependency
2008-12-09 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-dialog.c: Mark as deprecated.
* src/hildon-dialog.h: Mark as deprecated.
* src/hildon-picker-dialog.h: Allow HildonPickerDialog to derive
from HildonDialog and still work, even if
HILDON_DISABLE_DEPRECATED is defined. This is required as we can't currently
break the ABI and simply make HildonPickerDialog derive from GtkDialog.
Fixes: NB#90867 (Deprecate HildonDialog and use GtkDialog (with
maemo changes) instead)
2008-12-09 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable_area.h:
* src/hildon-pannable_area.c:
(hildon_pannable_area_class_init),
(hildon_pannable_area_set_property),
(hildon_pannable_area_get_property),
(hildon_pannable_area_size_request),
(hildon_pannable_area_get_size_request_policy),
(hildon_pannable_area_set_size_request_policy): Added new API
allowing applications to control the request policy. Now they can
choose to use the minimum (HILDON_MOVEMENT_MINIMUM) size or the
children allocation (HILDON_MOVEMENT_CHILDREN).
2008-12-09 Alberto Garcia <agarcia@igalia.com>
* src/hildon-gtk.h
* src/hildon-gtk.c
(hildon_gtk_tree_view_set_ui_mode)
(hildon_gtk_icon_view_set_ui_mode): New functions to change the UI
mode of treeviews and iconviews.
2008-12-09 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-touch-selector-entry.c:
(hildon_touch_selector_entry_init): Use a HildonEntry instead
of a GtkEntry to get proper theming.
Fixes: NB#94972 (Hildon Picker with Entry should use HildonEntry
widget, not GtkEntry)
2008-12-09 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-wizard-dialog.c: (response): Move forward if there is
no HildonWizardDialogPageFunc.
2008-12-09 Claudio Saavedra <csaavedra@igalia.com>
Patch contributed by Iván Gómez (igomez@igalia.com)
* src/hildon-app-menu.c:
* src/hildon-button.c:
* src/hildon-picker-dialog.c: (hildon_picker_dialog_class_init):
* src/hildon-stackable-window.c:
* src/hildon-time-selector.c:
* src/hildon-touch-selector.c:
* src/hildon-window.c:
Add more "since" tags to the new API in hildon 2.2.
2008-12-05 Tim Janik <timj@imendio.com>
Patch contributed by Christian Dywan (christian@imendio.com)
* src/hildon-gtk.h: removed hildon_gtk_widget_set_theme_size() and
HildonSizeType, which are supplied by Gtk+ now.
* src/hildon-dialog.c: leave theming and sizing of buttons to GtkDialog.
Partially fixes NB#90867 (Deprecate HildonDialog and use GtkDialog
(with maemo changes) instead)
2008-12-05 Claudio Saavedra <csaavedra@igalia.com>
Patch contributed by Iván Gómez (igomez@igalia.com)
* src/hildon-pannable-area.c: Add "since" tags to the new API in
hildon 2.2.
2008-12-05 Claudio Saavedra <csaavedra@igalia.com>
* examples/hildon-wizard-dialog-example.c: (on_page_switch),
(some_page_func), (main): Update the example to use a
HildonWizardDialogPageFunc function.
* src/hildon-wizard-dialog-private.h: Add private data for
the HildonWizardDialogPageFunc function usage.
* src/hildon-wizard-dialog.c: (hildon_wizard_dialog_class_init),
(destroy), (hildon_wizard_dialog_init), (response),
(hildon_wizard_dialog_set_forward_page_func):
* src/hildon-wizard-dialog.h: Add a HildonWizardDialogPageFunc function,
that applications can use to stop a HildonWizardDialog to jump to
the next page.
Fixes: NB#94214 (No way to stop HildonWizardDialog from going to
next page)
2008-12-04 Alberto Garcia <agarcia@igalia.com>
* src/hildon-program.h
* src/hildon-program-private.h
* src/hildon-program.c (hildon_program_init)
(hildon_program_set_common_app_menu)
(hildon_program_get_common_app_menu):
New API for setting a common HildonAppMenu for all
HildonStackableWindows registered with the HildonProgram.
* src/hildon-stackable-window.c
(hildon_stackable_window_toggle_menu):
Use the common HildonAppMenu if a window doesn't have a specific
one.
* src/hildon-app-menu-private.h
* src/hildon-app-menu.c
(hildon_app_menu_get_parent_window):
Function to obtain the window a HildonAppMenu is attached to.
(hildon_app_menu_set_parent_window):
Hide the menu if the parent window is set to NULL.
2008-12-04 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-gtk.c: (hildon_gtk_tree_view_new): Explicitly
set GtkTreeView::enable-search to FALSE, to avoid the interactive
search widget to popup.
2008-12-03 Claudio Saavedra <csaavedra@igalia.com>
* configure.ac: post release version bump
* debian/changelog: version bump
2008-12-03 Claudio Saavedra <csaavedra@igalia.com>
[Release 2.1.26]
* NEWS: updates
* configure.ac: bump version
* debian/changelog: updates
2008-12-02 Alberto Garcia <agarcia@igalia.com>
Based on a patch by Adam Endrodi (adam.endrodi@blumsoft.eu)
* src/hildon-window-stack.c (hildon_window_stack_get_leader_window)
(hildon_window_stack_window_realized)
(hildon_window_stack_remove, _hildon_window_stack_do_push):
Set the leader GdkWindow when a window is stacked and realized,
unset it when it's unstacked.
(hildon_window_stack_finalize): Destroy the leader GdkWindow.
Fixes: NB#94350 (HildonWindowStack:s have the same X Window group)
2008-12-02 Alberto Garcia <agarcia@igalia.com>
* src/hildon-stackable-window.h
* src/hildon-window-stack.h:
Protect definition of HildonWindowStack using the preprocessor.
2008-12-02 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu.c (hildon_app_menu_repack_items):
Fix warning if all menu items are hidden.
2008-12-02 Claudio Saavedra <csaavedra@igalia.com>
Patch contributed by Daniel Borgmann (danielb@openismus.com)
* src/hildon-controlbar.c:
* src/hildon-hvolumebar.c:
* src/hildon-vvolumebar.c: (hildon_vvolumebar_size_allocate):
Multiple scale size defines updates.
Fixes: NB#94322 (Scale Updates)
2008-12-02 Alberto Garcia <agarcia@igalia.com>
* examples/hildon-app-menu-example.c (create_menu)
Show items after adding them to the menu, as in the future the
menu will no longer call gtk_widget_show() on the added items.
* src/hildon-app-menu.c:
Update example as explained above.
2008-12-02 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu.c
(hildon_app_menu_insert, hildon_app_menu_add_filter):
Make sure that all menu items have finger height.
2008-12-01 Alejandro Pinheiro <apinheiro@igalia.com>
* src/hildon-picker-dialog.c:
(_on_dialog_response), (_save_current_selection),
(_restore_current_selection), (_clean_current_selection),
(hildon_picker_dialog_finalize), (hildon_picker_dialog_show)
Defined new functions in order to save the current internal selector
selection previous open the dialog, in case that the use cancel the
interaction, so the widget restores the previous selection.
Fixes: NB#92032 (In calendar application, date values in 'new event'
are not proper)
(requires_done_button): use of macro HILDON_TOUCH_SELECTOR_HEIGHT
2008-11-28 Alberto Garcia <agarcia@igalia.com>
* src/hildon-button.c: Add a reference to the button examples in
hildon-button-example.c
* examples/hildon-button-example.c: Added examples of the most
common button layouts.
2008-11-28 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu.c (hildon_app_menu_show)
(hildon_app_menu_class_init): Don't show the menu if it's empty.
Fixes: NB#93890 (Empty HildonAppMenu is pop-up)
>>>>>>> .r33194
2008-11-27 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-picker-dialog.c:
(hildon_picker_dialog_init): Initialize the signal id for
HildonTouchSelector::columns-changed.
(+on_selector_columns_changed): Set up the interaction mode everytime a
column is added or removed from the HildonTouchSelector.
(_hildon_picker_dialog_set_selector): Connect to
HildonTouchSelector::columns-changed and keep track of it.
Make sure to update the interaction mode of the dialog everytime a
column is added or removed in the HildonTouchSelector.
Fixes: NB#93228 (Done button is not shown always in listpicker)
2008-11-27 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-touch-selector.c: (hildon_touch_selector_class_init): Add
a new ::columns-changed signal.
(hildon_touch_selector_append_column): Emit ::columns-changed.
(hildon_touch_selector_remove_column): Emit ::columns-changed.
Add a ::columns-changed signal, emitted when the number of columns in a
HildonTouchSelector changes.
2008-11-27 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-picker-dialog.c: (+setup_interaction_mode),
(_hildon_picker_dialog_set_selector): Factor out the code
to set up the dialog interaction mode.
2008-11-27 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-picker-dialog.c: (hildon_picker_dialog_init),
(_hildon_picker_dialog_set_selector): Rename signal_id private variable
to signal_changed_id.
2008-11-27 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-touch-selector.c: (hildon_touch_selector_class_init):
Minor doc. fixes.
2008-11-27 Alejandro Pinheiro <apinheiro@igalia.com>
* src/hildon-time-selector.c: (_custom_print_func), (_create_ampm_model)
Updated the logical ids related to ampm format, as now it is required to
show it correctly localized even on languages with no default
abbreviations for am or pm
(_check_am_pm_format): check correctly the 24h format gconf property
Fixes: NB#93680 (HildonTimePicker need fully localized am/pm)
2008-11-27 Alberto Garcia <agarcia@igalia.com>
* src/hildon-button.c: Documentation updates.
2008-11-27 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-marshalers.list: Add BOOLEAN:VOID.
* src/hildon-caption.c: (hildon_caption_class_init):
* src/hildon-color-button.c: (hildon_color_button_class_init):
* src/hildon-find-toolbar.c: (hildon_find_toolbar_class_init):
* src/hildon-touch-selector.c: (hildon_touch_selector_class_init):
* src/hildon-volumebar.c: (hildon_volumebar_class_init):
* src/hildon-weekday-picker.c: (hildon_weekday_picker_class_init):
Remove deprecated GTK+ marshalers and replace them with the ones
provided by GLib, for those available, add a marshaler for
BOOLEAN:VOID, which is not available in GLib, and use it.
2008-11-27 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-touch-selector.c: (_default_print_func): Do not reuse
the text from the previous column if there is no
HildonTouchSelectorColumn::text-property set.
2008-11-27 Alberto Garcia <agarcia@igalia.com>
* src/hildon-button.h
* src/hildon-button.c (hildon_button_set_property)
(hildon_button_get_property, hildon_button_class_init)
(hildon_button_set_style, hildon_button_get_style):
New "style" property to change the visual appearance of the
button.
* src/hildon-picker-button.c (hildon_picker_button_new):
Set the new "style" property to HILDON_BUTTON_STYLE_PICKER.
Fixes: NB#93281 (new API: hildon_button_set_picker_style() to set
HildonButton look like PickerButton)
2008-11-27 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-touch-selector.c: (_default_print_func): Get the correct
column while building the default string.
2008-11-25 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-touch-selector.c: (_create_new_column): Do not disable the
scroll indicator by default.
Fixes: NB#92230 (Scroll indication not visible in HildonTouchSelector)
2008-11-25 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-main.c: Fix the documentation for hildon_init()
2008-11-25 Alberto Garcia <agarcia@igalia.com>
* doc/hildon-docs.sgml
* doc/hildon.types
* src/Makefile.am
* src/hildon.h
* src/hildon-window-stack-private.h
* src/hildon-window-stack.h
* src/hildon-window-stack.c:
New HildonWindowStack object, that adds support for multiple
stacks of windows per process.
* src/hildon-stackable-window-private.h
* src/hildon-stackable-window.h
* src/hildon-stackable-window.c (hildon_stackable_window_set_stack)
(hildon_stackable_window_get_stack, hildon_stackable_window_map)
(hildon_stackable_window_show, hildon_stackable_window_hide)
(hildon_stackable_window_class_init)
(hildon_stackable_window_init):
Use HildonWindowStack for stack management.
* src/hildon-program.c (hildon_program_pop_window_stack)
(hildon_program_peek_window_stack)
(hildon_program_go_to_root_window):
Add a fallback implementation to the deprecated functions using
HildonWindowStack.
* examples/hildon-stackable-window-example.c:
Use the new HildonWindowStack API.
2008-11-25 Alberto Garcia <agarcia@igalia.com>
* src/hildon-stackable-window-private.h
* src/hildon-stackable-window.c (hildon_stackable_window_show)
(hildon_stackable_window_hide, hildon_stackable_window_init):
Remove all window stack management.
* src/hildon-program-private.h
* src/hildon-program.h
* src/hildon-program.c (hildon_program_init)
(hildon_program_pop_window_stack)
(hildon_program_peek_window_stack)
(hildon_program_go_to_root_window):
Remove all window stack management and mark functions as
deprecated.
2008-11-25 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu.c (hildon_app_menu_realize):
Use the XA_ATOM type for the _NET_WM_WINDOW_TYPE property.
2008-11-24 Claudio Saavedra <csaavedra@igalia.com>
* configure.ac: post release version bump
* debian/changelog: version bump
2008-11-24 Claudio Saavedra <csaavedra@igalia.com>
[Release 2.1.24]
* NEWS: updates
* configure.ac: bump version
* debian/changelog: updates
2008-11-24 Claudio Saavedra <csaavedra@igalia.com>
Based on initial code by Christian Dywan (christian@imendio.com)
* doc/hildon-docs.sgml: Add section for hildon-main.
* examples/*.c: (main): Replace gtk_main() calls with hildon_gtk_main().
* src/Makefile.am: Add new hildon-main.[ch]
* src/hildon-defines.h: Update the icon sizes.
* src/hildon-main.c: (+hildon_init), (+hildon_gtk_init): Add
new library initialization files and register icon sizes.
* src/hildon-main.h: New declarations.
* src/hildon.h: Include hildon-main.h
Add new initialization functions to the library. These methods
will register the hildon specific icon sizes and can be used in the
future for other hildon specific bits.
Fixes: NB#92476 (Update icon size constants to Fremantle (hildon-defines.h))
2008-11-21 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-window.c: (hildon_window_realize),
(hildon_window_notify), (-hildon_window_update_title): Do not set
the application name in the window title.
Fixes: NB#89754 (Applications shouldn't display their names in the
window title)
2008-11-21 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-note-private.h:
* src/hildon-note.c: (hildon_note_set_property),
(hildon_note_get_property), (hildon_note_class_init),
(hildon_note_init), (hildon_note_finalize),
(hildon_note_new_confirmation_with_icon_name),
(hildon_note_new_information_with_icon_name):
No need to mark as deprecated the actual code. Revert
to avoid missing symbols in widgets using deprecated API.
2008-11-20 Alberto Garcia <agarcia@igalia.com>
Based on a patch by Claudio Saavedra (csaavedra@igalia.com)
* src/hildon-volumebar.h
* src/hildon-volumebar.c (hildon_volumebar_set_range_insensitive_message)
(hildon_volumebar_set_range_insensitive_messagef): Mark as deprecated.
* src/hildon-helper.h
* src/hildon-helper.c (hildon_helper_set_insensitive_message)
(hildon_helper_set_insensitive_messagef): Mark as deprecated.
* examples/Makefile.am:
Deprecate hildon-insensitive-example
Fixes: NB#92664 (Deprecate hildon_helper_set_insensitive_message)
2008-11-20 Alberto Garcia <agarcia@igalia.com>
* examples/hildon-pannable-area-buttons-scroll-example.c:
Make all buttons finger height
2008-11-19 Alejandro Pinheiro <apinheiro@igalia.com>
* src/hildon-touch-selector.c: updated the HildonTouchSelector::changed
documentation
* src/hildon-date-selector.c: (_update_day_model): Modified in order to
update the day model only if it is really required, and to avoid the
full-reconstruction aproach. Now it only add or remove the required days.
The purpose of this is avoid superfluous HildonTouchSelector::changed
signals
Fixes: NB#92744 (HildonDateSelector emits multiple "changed" singal
with strange parameters)
2008-11-19 Claudio Saavedra <csaavedra@igalia.com>
Patch contributed by Adam Endrodi (adam.endrodi@blumsoft.eu)
* src/hildon-note.c: (hildon_note_init), (hildon_note_realize): Set properly
the WINDOW_TYPE property.
Fixes: NB#92897 (HildonNotes have incorrect WINDOW_TYPE)
2008-11-19 Alberto Garcia <agarcia@igalia.com>
* doc/gtk-doc.make:
Fix dependency to allow parallel compilation with make -jX
2008-11-18 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-color-chooser-dialog.c: Use theme colors for the selected
color frame and some minor tweaks to make it more consistent with
current theming.
Fixes: NB#91769 (HildonColorChooserDialog's selected colour is
highlighted but not visible)
2008-11-14 Alejandro G. Castro <alex@igalia.com>
* examples/Makefile.am: Fixed typo in the Makefile.am.
2008-11-14 Alejandro G. Castro <alex@igalia.com>
Reviewed the use of MAEMO_GTK define, now we add the define in the
compilation line, and we also add it to the pc file.
* configure.ac: Added MAEMO_GTK define to the compilation command
and removed it from the config.h.
* pkgconfig/hildon.pc.in: Added MAEMO_GTK, that way applications
do not have to take care about this define if the library was
compiled with it.
* src/hildon-gtk.c:
* src/hildon-gtk.h: Replaced MAEMO_CHANGES with MAEMO_GTK.
2008-11-14 Alejandro G. Castro <alex@igalia.com>
* examples/Makefile.am,
* examples/hildon-pannable-area-buttons-scroll-example.c,
* examples/hildon-pannable-area-gesture-signals-example.c,
* examples/hildon-pannable-area-scroll-jump-example.c,
* examples/hildon-pannable-area-tree-view-example.c:
Renamed the pannable area examples, now they have more meaningful
names.
2008-11-13 Alejandro Pinheiro <apinheiro@igalia.com>
* src/hildon-touch-selector.c:
(hildon_touch_selector_set_column_selection_mode): Used of
GTK_SELECTION_BROWSE instead of GTK_SELECTION_SINGLE gtk tree selection
mode setting HILDON_TOUCH_SELECTOR_SELECTION_MODE_SINGLE. Added a check
to avoid re-seting the same selection mode.
Fixes: NB#91863 (hildon_touch_selector_set_column_selection_mode()
breaks HildonPickerDialog)
2008-11-13 Alejandro G. Castro <alex@igalia.com>
* examples/Makefile.am: Fixed problem with the USE_MAEMO_GTK
conditional in the Makefile.am
2008-11-12 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-window.c (-find_findtoolbar_index), (-find_findtoolbar):
Remove unused methods.
2008-11-12 Alberto Garcia <agarcia@igalia.com>
* src/hildon-button.c (hildon_button_init):
Make button images center-aligned by default
2008-11-12 Alejandro G. Castro <alex@igalia.com>
* src/hildon-gtk.c:
* src/hildon-gtk.h: Fixed compilation problem with MAEMO_CHANGES
activated, we have to think about how to deal with both defines
MAEMO_GTK and MAEMO_CHANGES.
2008-11-12 Alberto Garcia <agarcia@igalia.com>
* examples/hildon-app-menu-example.c (create_menu): Make all
buttons finger size.
2008-11-11 Alejandro G. Castro <alex@igalia.com>
Fixed the compilation without maemo gtk adding ifdefs with
MAEMO_GTK define to the code, we have to check this version more
carefully.
* examples/Makefile.am: Added control to avoid some examples that
just make sense with maemo gtk.
* src/hildon-gtk.c:
* src/hildon-gtk.h: Remove some functions that use the maemo gtk
hildon modes with the define.
* examples/hildon-edit-toolbar-example.c,
(create_icon_view): Create the icon view without hildon-gtk
helpers if we are not using maemo gtk.
* src/hildon-touch-selector.c,
(_create_new_column): Create the treeview without hildon-gtk
helpers if we are not using maemo gtk.
2008-11-11 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pnnable-area.c,
(hildon_pannable_area_dispose),
(hildon_pannable_area_button_press_cb),
(hildon_pannable_area_child_mapped),
(hildon_pannable_area_add),
(hildon_pannable_area_remove): Added code to control the position
of the event_window when adding and removing children from the
pannable. We have to raise the event window when the child is
mapped.
Fixes: NB#89811 (Not able to select first image thumbnail in multi
selection mode using custom widget inside pannable)
2008-11-11 Claudio Saavedra <csaavedra@igalia.com>
* configure.ac: post release version bump
* debian/changelog: version bump
2008-11-11 Claudio Saavedra <csaavedra@igalia.com>
[Release 2.1.22]
* NEWS: updates
* configure.ac: bump version
* debian/changelog: updates
2008-11-10 Alejandro Pinheiro <apinheiro@igalia.com>
* src/hildon-touch-selector.c: (_create_new_column): Disable treeview
search mode, in order to avoid lose the focus on the treeview when
a hw key (like enter) is pressed.
Fixes: NB#91995 (Calendar is crashing after pressing 'Enter' HW key
in HildonDateSelector dialog)
2008-11-06 Alejandro Pinheiro <apinheiro@igalia.com>
* debian/rules: Added --enable-maintainer-mode
* Makefile.am: Added ACLOCAL_AMFLAGS
This allows to properly regenerate the Makefiles if you modify the
configure.ac or any Makefile.am.
2008-11-06 Claudio Saavedra <csaavedra@igalia.com>
* examples/hildon-app-menu-example.c: (main): Do not set RC style
properties, not needed at all.
2008-11-06 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-note-private.h: Add strings for the icon and stock_icon
properties.
* src/hildon-note.c: (hildon_note_set_property),
(hildon_note_get_property), (hildon_note_class_init),
(hildon_note_init), (hildon_note_finalize), (hildon_note_rebuild),
(hildon_note_new_confirmation_add_buttons): Remove icons.
(hildon_note_new_confirmation_with_icon_name): Deprecate.
(hildon_note_new_information_with_icon_name): Deprecate.
(hildon_note_new_confirmation): Act directly, without calling
the deprecated constructor.
(hildon_note_new_information): Act directly, without calling
the deprecated constructor.
* src/hildon-note.h: Mark deprecate methods as such.
* tests/check-hildon-note.c: (create_hildon_note_suite): Do
not run tests on the deprecated methods if built with deprecation
disabled.
Fixes: NB#91688 (Never show icons in information notes/confirmation
notes)
2008-11-06 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-app-menu.c: (hildon_app_menu_set_parent_window),
(hildon_app_menu_key_press): Remove leftover usage of the
private structure in HildonAppMenu struct.
* src/hildon-app-menu.h: Remove leftover private structure
from the HildonAppMenu struct.
Fixes a crasher when using the HildonAppMenu.
2008-11-05 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-picker-dialog.c: Use appropriate logical id
for the default "Done" text.
2008-11-05 Claudio Saavedra <csaavedra@igalia.com>
* configure.ac: post release version bump
* debian/changelog: version bump
2008-11-05 Alejandro Pinheiro <apinheiro@igalia.com>
Modified the way to scroll to the current selection just when the touch
selector is shown on the screen, avoiding a g_idle. Added too a property
to configure this behaviour. See hildon_pannable_area_jump_to_child
documentation for more information.
* src/hildon-touch-selector.c
Removed unused CENTER_ON_SELECTED_ITEM_DELAY macro
Added 'initial-scroll' property
(hildon_touch_selector_set_property): Added
(hildon_touch_selector_map): Removed as not required anymore
(_hildon_touch_selector_on_selected_items): Modified in order to manage
only a concrete column, instead of iterate along all the columns
2008-11-04 Claudio Saavedra <csaavedra@igalia.com>
[Release 2.1.20]
* NEWS: updates
* configure.ac: bump version
* debian/changelog: updates
2008-11-04 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-button.c: (hildon_button_set_arrangement): Fix some
compilation time warnings.
2008-11-04 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-pannable-area.c: (hildon_pannable_area_class_init): Set
the default value for HildonPannableArea::mov-mode to
HILDON_PANNABLE_AREA_MODE_VERT.
Fixes: NB#91385 (Hildon Touch List panning should be ALWAYS vertical only)
2008-11-04 Claudio Saavedra <csaavedra@igalia.com>
Reverting following commit:
2008-10-13 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu-private.h
* src/hildon-app-menu.[ch]
* src/hildon-button.[ch]
* src/hildon-check-button.[ch]
* src/hildon-entry.[ch]
* src/hildon-pannable-area.[ch]
* src/hildon-text-view.[ch]:
Added private field to the object's structure.
because it causes an ABI breakage. We will need to introduce these
changes later at some point. See NB#91636 for an extensive
explanation and status.
2008-11-04 Claudio Saavedra <csaavedra@igalia.com>
Patch contributed by Daniel Borgmann (danielb@openismus.com)
* src/hildon-window.c: (paint_toolbar): Update toolbar sizes and
remove special cases that are no longer necessary.
Fixes: NB#91016 (Change toolbar sizes, simplification)
2008-11-03 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-note.c: (hildon_note_rebuild): Make sure the cancel button
is shown in the cancel note.
2008-11-03 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-controlbar.c: (hildon_controlbar_init): Remove steppers.
* src/hildon-seekbar.c: (hildon_seekbar_class_init),
(hildon_seekbar_init): Remove steppers, remove expose event.
* src/hildon-volumebar-range.c: (hildon_volumebar_range_init): Remove steppers.
Fixes: NB#91104 (Remove stepper buttons from legacy hildon widgets)
2008-10-31 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-button.c: (hildon_button_set_arrangement): Set the value
label font to "SmallSystemFont" for vertically arranged buttons.
Fixes: NB#90662 (HildonButton "value" and "detail" text is
unformatted)
2008-10-31 Alberto Garcia <agarcia@igalia.com>
* src/hildon-check-button.c
(hildon_check_button_set_active, hildon_check_button_clicked):
Don't access private parts directly, use getters instead.
2008-10-31 Alberto Garcia <agarcia@igalia.com>
* src/hildon-check-button.c (hildon_check_button_new):
Align the contents of the check button to the left.
2008-10-30 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c,
(hildon_pannable_area_scroll_to),
(hildon_pannable_area_jump_to),
(hildon_pannable_area_scroll_to_child),
(hildon_pannable_area_jump_to_child): Replace the mapped
precondition of these functions with the realized, it is the
correct state of the widget in this case. Changed the
documentation according to this modification.
2008-10-30 Alejandro G. Castro <alex@igalia.com>
Added a new EXTRA_CFLAGS option to add the deprecated define to
the compilation command. This way we can avoid using the define in
the documentation compilation.
* configure.ac: Defined EXTRA_CFLAGS.
* examples/Makefile.am:
* src/Makefile.am:
* tests/Makefile.am: Included EXTRA_CFLAGS in the compilation.
2008-10-30 Alejandro Pinheiro <apinheiro@igalia.com>
* src/hildon-picker-dialog.c:
Defined a utility macro with the desired touch selector height
Removed currently unused separator, and title_label variables from
private structure.
(hildon_picker_dialog_init): Removed code related to the creation
of unused private variables title_label and separator.
(_hildon_picker_dialog_set_selector): Added gtk_widget_set_size_request
to ensure correct visualization of the touch selector inside the dialog.
* src/hildon-touch-selector.c
(hildon_touch_selector_init): Removed a gtk_widget_set_size_request to
ensure a concrete height of the widget.
2008-10-30 Claudio Saavedra <csaavedra@igalia.com>
* src/Makefile.am:
* tests/Makefile.am:
Remove spurious whitespaces.
2008-10-30 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-code-dialog.c: (hildon_code_dialog_init): Fix a
compilation warning after the cancel button removal.
2008-10-30 Alejandro G. Castro <alex@igalia.com>
Fremantle deprecated widgets marked, HILDON_DISABLE_DEPRECATED
* configure.ac: Added an AM_CONDITIONAL in order to use in the
Makefile.am, that way we can choose not to compile some examples
and tests of the deprecated widgets.
* examples/Makefile.am: Divided the sources in deprecated and
non-deprecated.
* src/Makefile.am: Added undef statement of the deprecated
symbol to the enums file generation process.
* src/hildon-color-chooser-dialog.c
* src/hildon-color-chooser-dialog.h
* src/hildon-color-button.c
* src/hildon-color-button.h
* src/hildon-color-chooser.c
* src/hildon-color-chooser.h
* src/hildon-controlbar.c
* src/hildon-controlbar.h
* src/hildon-date-editor.c
* src/hildon-date-editor.h
* src/hildon-hvolumebar.c
* src/hildon-hvolumebar.h
* src/hildon-private.c
* src/hildon-private.h
* src/hildon-range-editor.c
* src/hildon-range-editor.h
* src/hildon-seekbar.c
* src/hildon-seekbar.h
* src/hildon-time-editor.c
* src/hildon-time-editor.h
* src/hildon-time-picker.c
* src/hildon-time-picker.h
* src/hildon-volumebar.c
* src/hildon-volumebar.h
* src/hildon-vvolumebar.c
* src/hildon-vvolumebar.h
* src/hildon-bread-crumb-trail.h
* src/hildon-bread-crumb-trail.c
* src/hildon-calendar-popup.c
* src/hildon-calendar-popup.h
* src/hildon-weekday-picker.c:
* src/hildon-weekday-picker.h:
* src/hildon-bread-crumb-widget.c:
* src/hildon-bread-crumb-widget.h:
* src/hildon-bread-crumb.c:
* src/hildon-bread-crumb.h:
* src/hildon-calendar.c:
* src/hildon-calendar.h:
* src/hildon-caption.c:
* src/hildon-code-dialog.c:
* src/hildon-code-dialog.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-login-dialog.c:
* src/hildon-login-dialog.h:
* src/hildon-number-editor.c:
* src/hildon-number-editor.h:
* src/hildon-set-password-dialog.c:
* src/hildon-set-password-dialog.h:
* src/hildon-sort-dialog.c:
* src/hildon-sort-dialog.h: This is the list of deprecated
widgets.
* src/hildon-touch-selector.c:
* src/hildon-window.c: Added undef statement to avoid compilation
warnings
* tests/Makefile.am: Divided the sources in deprecated and
non-deprecated.
* tests/check_test.c,
(configure_tests): Marked the deprecated code that was adding
suites with deprecated tests.
Fixes: NB#91135 (Deprecate legacy hildon widgets)
2008-10-30 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-touch-selector.c: (_default_print_func): Do not
duplicate a string returned by gtk_tree_model_get(), it is already
allocated for us.
Fixes: NB#91192 (Memory leak in HildonTouchSelector default print
function)
2008-10-28 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c
(hildon_pannable_area_add_with_viewport): Reviewed the complete
method, it had problems when adding a widget with viewport the
second time. Now checks if it already has a viewport and uses it.
Fixes: NB#90994 (HildonPannableArea does not connect "destroyed"
on child)
2008-10-28 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c,
(hildon_pannable_area_scroll_to),
(hildon_pannable_area_jump_to),
(hildon_pannable_area_scroll_to_child),
(hildon_pannable_area_jump_to_child): Added a precondition to the
scroll and jump to functions: the widget must be mapped before we
can safely call these functions. We have also added documentation
to the functions to explain how to use them in this situation.
2008-10-28 Alejandro G. Castro <alex@igalia.com>
Reviewed the threading handling of the pannable widget, we have
used the gdk_threads_add_timeout function instead of the usual
glib handlers. This avoids some problems with the threads.
* src/hildon-pannable-area.c (hildon_pannable_area_grab_notify),
(hildon_pannable_area_initial_effect),
(hildon_pannable_area_scroll_indicator_fade),
(hildon_pannable_area_button_press_cb),
(hildon_pannable_area_timeout),
(hildon_pannable_area_motion_notify_cb),
(hildon_pannable_area_button_release_cb),
(hildon_pannable_area_scroll_cb),
(hildon_pannable_area_scroll_to): Removed the
GDK_THREAD_ENTER/LEAVE and replaced g_timeout_add with
gdk_threads_add_timeout.
Fixes: NB#89541 (Crash in pannable area when closing picker dialog)
2008-10-27 Claudio Saavedra <csaavedra@igalia.com>
[Release 2.1.18]
* NEWS: updates
* configure.ac: bump version
* debian/changelog: updates
2008-10-27 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-calendar-popup.c: (hildon_calendar_popup_init):
* src/hildon-code-dialog.c: (hildon_code_dialog_init):
* src/hildon-color-chooser-dialog.c:
(hildon_color_chooser_dialog_init):
* src/hildon-font-selection-dialog.c:
(hildon_font_selection_dialog_init):
* src/hildon-login-dialog.c: (hildon_login_dialog_init):
Remove all cancel/close-like dialogs, as these are not going to be
displayed at all.
2008-10-27 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-note.c: (hildon_note_rebuild),
(hildon_note_new_confirmation_add_buttons): Explicitely show the buttons
when needed.
Fixes: NB#90661 (Delete dialog is displayed without NO button)
2008-10-27 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-note.c: (hildon_note_new_confirmation_add_buttons): Make
sure all buttons are shown, even the Cancel/Close-like ones.
Fixes: NB#90861 (Custom Confirmation dialogs should be
protected from cancel button removal)
2008-10-23 Alejandro Pinheiro <apinheiro@igalia.com>
* debian/control: Change libhildon1-examples dependency from libhildon1
to libhildon1-dev
* debian/libhildon1-examples.install
* debian/rules
* Makefile.am: Modified the final install directory for the examples on
package libhildon1-examples
* Makefile.static: Update clean target in order to remove all the binary
examples
Changes suggested by Claudio after review new libhildon1-examples package
2008-10-23 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-touch-selector-entry.c: Fix some gtk-doc warnings.
* src/hildon-touch-selector.c: Ditto.
2008-10-23 Alejandro Pinheiro <apinheiro@igalia.com>
* debian/control: Added new package libhildon1-examples, in order to pack
the current hildon examples as documentation
* debian/rules: Not to compress .c files, modify some includes on the
examples (as normally are compiled locally, but when installed it will
require to include the installed libhildon1 library), and rename
Makefile.static
* examples/Makefile.am: Added examplesdir and examples_DATA, in order to
install all the example files on the new example package
* examples/Makefile.static: Added static makefile that can be used to
compile the examples, once installed the new example package
* examples: Most of the examples were modified in order to grant that
all use only '#include "hildon.h"', in order to be easy to prepare
it on the example package
2008-10-23 Alberto Garcia <agarcia@igalia.com>
* debian/control
* debian/libhildon1-dev.install
* debian/libhildon1-doc.install:
Move all gtk-doc files to a separate libhildon1-doc package.
2008-10-23 Daniel Borgmann <danielb@openismus.com>
reviewed by: Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-gtk.c (hildon_gtk_menu_new): Change capitalization
2008-10-22 Alejandro Pinheiro <apinheiro@igalia.com>
* debian/rules: Fixed a error in order to avoid unnecessary calls
to autogen.sh on package building
2008-10-22 Alberto Garcia <agarcia@igalia.com>
* examples/hildon-app-menu-example.c: Add keyboard accelerator.
2008-10-21 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-picker-dialog.h: Add missing HildonTouchSelector
header include.
2008-10-21 Alberto Garcia <agarcia@igalia.com>
* src/hildon-picker-button.c
(hildon_picker_button_finalize):
Free priv->done_button_text
* src/hildon-time-button.c
(hildon_time_button_set_time)
* src/hildon-picker-button.c
(hildon_picker_button_clicked)
(hildon_picker_button_selector_selection_changed)
(hildon_picker_button_set_selector)
* src/hildon-date-button.c
(hildon_date_button_set_date):
Free strings returned by hildon_touch_selector_get_current_text()
* src/hildon-button.c (hildon_button_construct_child):
Fix leaks in priv->image and priv->label_box
Fixes: NB#90535 (Memory leak in picker button)
2008-10-21 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-button.c: (hildon_button_get_property): Do not access
private elements directly, use getters instead.
2008-10-20 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu-private.h
* src/hildon-app-menu.c
(hildon_app_menu_init, hildon_app_menu_set_parent_window):
Store the menu's parent window.
* src/hildon-stackable-window.c
(hildon_stackable_window_toggle_menu)
(hildon_stackable_window_finalize):
Set the menu's parent window when the menu is shown, unset it when
it is destroyed.
* src/hildon-app-menu.c
(hildon_app_menu_hide_idle, hildon_app_menu_key_press)
(hildon_app_menu_class_init):
Send unhandled keyboard accelerators to the parent window.
2008-10-20 Alberto Garcia <agarcia@igalia.com>
* src/hildon-stackable-window.c
(hildon_stackable_window_finalize): Unref the menu, don't destroy it
2008-10-20 Claudio Saavedra <csaavedra@igalia.com>
* configure.ac: post release version bump
2008-10-20 Claudio Saavedra <csaavedra@igalia.com>
* NEWS: Updates
* configure.ac: Bump version
* debian/changelog: Updates
* debian/rules: Set PKG_CONFIG_PATH to make docs build with
gtk-doc 1.10.
2008-10-20 Alberto Garcia <agarcia@igalia.com>
Patch contributed by Daniel Borgmann (danielb@openismus.com)
* src/hildon-gtk.h
* src/hildon-gtk.c (hildon_gtk_menu_new): New function to create a
GtkMenu with Hildon style.
2008-10-20 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-picker-button.c:
(hildon_picker_button_set_done_button_text): Set the dialog's
done button text here as well.
Fixes: NB#90232 (Picker button does not set the label on done button
for the second time)
2008-10-20 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-picker-button.c: (hildon_picker_button_clicked): Update
warning message.
2008-10-16 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu.c (hildon_app_menu_insert)
(hildon_app_menu_add_filter, can_activate_accel): Allow items in
the HildonAppMenu to be activatable using keyboard accelerators
when the menu is not being shown.
Fixes: NB#89935 (Shortcuts for menu buttons are not working)
2008-10-16 Alberto Garcia <agarcia@igalia.com>
* src/hildon-stackable-window.c
(hildon_stackable_window_show):
Don't hide old windows automatically when new windows are shown:
this is now a task for the window manager.
(hildon_stackable_window_class_init)
(hildon_stackable_window_hide):
Remove windows from the stack everytime they're hidden.
(hildon_stackable_window_realize):
Don't change the _NET_WM_WINDOW_TYPE property. Use
_HILDON_STACKABLE_WINDOW instead for the window manager to manage
it as a stackable window.
* src/hildon-program.c
(hildon_program_pop_window_stack):
Just hide the window to remove it from the stack.
(hildon_program_go_to_root_window):
Don't call gtk_widget_show(), this is now a task for the window
manager.
Fixes: NB#89411 (Window Manager locks caused by HildonStackableWindow)
2008-10-15 Alberto Garcia <agarcia@igalia.com>
* src/hildon-button.c
(hildon_button_construct_child):
Don't pack anything in the button until text or image are
set. This allows adding a custom child after creating the button
with hildon_button_new().
(hildon_button_finalize, hildon_button_class_init)
(hildon_button_init, hildon_button_set_arrangement): Destroy the
alignment and the label box even when they're not packed in the
button.
2008-10-14 Alejandro Pinheiro <apinheiro@igalia.com>
* src/hildon-touch-selector.h:
Set parent_instance and parent_class as GtkVBox and GtkVboxClass, as
currently the type definition was using GTK_TYPE_VBOX
* src/hildon-touch-selector.c:
Added some implementation notes in order to clarify that any other widget
added without the column related API will not be included on the
selection logic, and how the widget is freed, as some people ask about
it.
(hildon_touch_selector_remove): Reimplemented in order to free properly
the column related data when you remove the private hbox.
* doc/hildon.types: Added the type hildon_touch_selector_column, in order
to get a proper HildonTouchSelectorColumn documentation
2008-10-13 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-touch-selector-entry.c:
(hildon_touch_selector_entry_print_func): Return NULL if there is no
text in the GtkEntry and there is no item selected. Fixes a
potential crasher.
2008-10-13 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu-private.h
* src/hildon-app-menu.[ch]
* src/hildon-button.[ch]
* src/hildon-check-button.[ch]
* src/hildon-entry.[ch]
* src/hildon-pannable-area.[ch]
* src/hildon-text-view.[ch]:
Added private field to the object's structure.
2008-10-13 Claudio Saavedra <csaavedra@igalia.com>
* configure.ac: post-release version bump
2008-10-10 Claudio Saavedra <csaavedra@igalia.com>
[Release 2.1.14]
* configure.ac: pre-release version bump
* NEWS: updates.
* debian/changelog: updates.
2008-10-10 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-picker-button.c: (hildon_picker_button_finalize):
Disconnect the handler for HildonTouchSelector::changed.
(hildon_picker_button_selector_selection_changed): Update the button
value if the selection change was not triggered by the
HildonPickerDialog.
(hildon_picker_button_set_selector): connect to
HildonTouchSelector::changed.
Fixes: NB#89650 (Picker button is not updated, when selection in
selector has changed)
2008-10-09 Alejandro Pinheiro <apinheiro@igalia.com>
* src/hildon-picker-dialog.c
(hildon_picker_dialog_realize): Removed as not required
(hildon_picker_dialog_class_init): Avoid to redefine widget->realize
* src/hildon-picker-button.c
(_current_selector_empty): New function, checks if the selector is empty
(hildon_picker_button_clicked): Now it checks (using _current_selector_empty)
if the current selector is empty, in order to avoid to show the dialog
close the dialog in this case (and shows a g_warning).
Fixes: NB#88946 (Hildon Picker button should disable itself if there are no values)
2008-10-09 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c,
(hildon_pannable_area_scroll): Added clause to stop movement when
the child of pannable is smaller than one page.
(hildon_pannable_area_scroll_to): Added conditions to avoid
starting the scrolling movement if the child is smaller than one
page, the complete child is in the screen, we do not have to move.
Fixes: NB#89632 (Picker button selection doesn't change on first click)
2008-10-09 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu.c: Removed the 'columns' property, as now
this is managed automatically by the widget when the size of the
screen changes.
2008-10-09 Alberto Garcia <agarcia@igalia.com>
* src/hildon-picker-button.c
(hildon_picker_button_set_done_button_text): Make a copy of the
text, and free the previous value.
2008-10-09 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-touch-selector-entry.c:
(hildon_touch_selector_entry_print_func): Return the selected row's
text if the entry is empty.
Fixes: NB#89651 (HildonTouchSelectorEntry title is <unnamed>, when
entry is empty)
2008-10-09 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-touch-selector-entry.c: Minor docs fixes.
2008-10-09 Alberto Garcia <agarcia@igalia.com>
* doc/hildon.types
* src/hildon-check-button.h
* src/hildon-check-button.c
* examples/hildon-check-button-example.c:
HildonCheckButton is now a new widget. 'toggled' signal added.
2008-10-08 Alberto Garcia <agarcia@igalia.com>
* src/hildon-program-private.h
* src/hildon-program.c (hildon_program_init)
(hildon_program_finalize): Removed unused variables group_leader
and name from HildonProgramPrivate.
2008-10-08 Alberto Garcia <agarcia@igalia.com>
* src/hildon-check-button.c (hildon_check_button_set_active)
(hildon_check_button_get_active, hildon_check_button_new): Use
g_object_[gs]et_qdata() instead of g_object_[gs]et_data().
2008-10-08 Alejandro Pinheiro <apinheiro@igalia.com>
* src/hildon-touch-selector.h
(hildon_touch_selector_set_column_attributes): added deprecation
guard HILDON_DISABLE_DEPRECATED
* src/hildon-time-selector.c
(hildon_time_selector_set_time)
(hildon_time_selector_get_time): Fixed a typo on documentation
* src/hildon-touch-selector.c: update HildonTouchSelector and
HildonTouchSelectorColumn documentation
* src/hildon-touch-selector-entry.c: update "text-column" property
documentation
* doc/hildon-docs.sgml: added hildon-touch-selector-column in order
to be added to the general documentation.
2008-10-08 Alejandro G. Castro <alex@igalia.com>
* examples/hildon-pannable-area-example-4.c,
(main),
* examples/hildon-pannable-area-example.c,
(main): Modified the code in order to use the container add, with
viewport treeviews could have problems if they are really big.
2008-10-06 Alejandro G. Castro <alex@igalia.com>
* src/hildon-weekday-picker.c,
* src/hildon-weekday-picker.h: Removed the deprecated symbols after
the agreement regarding deprecation in the library.
2008-10-06 Claudio Saavedra <csaavedra@igalia.com>
* examples/hildon-picker-button-multicolumn-example.c:
(main): Use custom "done" button text.
* src/hildon-picker-button.c: (hildon_picker_button_get_property),
(hildon_picker_button_set_property),
(hildon_picker_button_clicked), (hildon_picker_button_class_init),
(hildon_picker_button_init),
(+hildon_picker_button_get_done_button_text),
(+hildon_picker_button_set_done_button_text): New methods to customize
the "done" button label in the launched HildonPickerDialog. Also,
make it a property.
* src/hildon-picker-button.h: add the public API.
2008-10-06 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-date-selector.h:
* src/hildon-picker-dialog.h:
* src/hildon-time-selector.h:
* src/hildon-touch-selector-column.h:
* src/hildon-touch-selector.h:
Set the G_GNUC_CONST macro properly in the hildon_*_get_type()
declarations. Fixes gtk-doc warnings.
2008-10-06 Alberto Garcia <agarcia@igalia.com>
* src/hildon-picker-dialog.h
* src/hildon-picker-dialog.c (hildon_picker_dialog_init):
Make HildonPickerDialog derive from HildonDialog, not GtkDialog
Fixes: NB#89329 (selectors in picker dialog are not visible when a
long text is set as label for done button)
2008-10-06 Alberto Garcia <agarcia@igalia.com>
* src/hildon-dialog.c (hildon_dialog_add_button):
Set fixed width to all buttons in the HildonDialog.
2008-10-06 Alberto Garcia <agarcia@igalia.com>
Patch contributed by Daniel Borgmann (danielb@openismus.com)
* src/hildon-gtk.c (hildon_gtk_widget_set_theme_size):
Set widget name using class name plus "-finger" or "-thumb".
2008-10-03 Alberto Garcia <agarcia@igalia.com>
* src/hildon-check-button.c (hildon_check_button_set_active): Emit
'clicked' when the state of the button is manually changed.
2008-10-02 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu.c (hildon_app_menu_realize)
(hildon_app_menu_unrealize, hildon_app_menu_init)
(hildon_app_menu_class_init, item_visibility_changed):
Change the menu layout when the size of the screen changes.
(hildon_app_menu_set_columns, hildon_app_menu_set_property):
Show warning only when changing the number of colums using the
property.
2008-10-02 Claudio Saavedra <csaavedra@igalia.com>
* debian/compat: Set to 5
* debian/control: Update dependencies.
* debian/libhildon1-dbg.install: Remove.
* debian/libhildon1-dev.install: Update according to cdbs paths.
* debian/libhildon1.install: Update according to cdbs paths.
* debian/rules: Switch to cdbs.
2008-10-01 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu.c (hildon_app_menu_repack_filters):
'item' variable renamed to 'filter'
2008-10-01 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu.c (hildon_app_menu_insert)
(hildon_app_menu_add_filter, remove_item_from_list)
(hildon_app_menu_repack_filters, hildon_app_menu_finalize):
Don't leak hidden items when the menu is destroyed.
2008-10-01 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu.c (hildon_app_menu_insert)
(hildon_app_menu_reorder_child, hildon_app_menu_add_filter)
(hildon_app_menu_set_columns, item_visibility_changed)
(filter_visibility_changed, hildon_app_menu_repack_filters)
(hildon_app_menu_repack_items):
Repack items and filters separately.
Don't repack all items, change only the ones that are needed to
update the layout.
2008-10-01 Alejandro Pinheiro <apinheiro@igalia.com>
* src/Makefile.am: added hildon-touch-selector-column.h
2008-10-01 Alejandro Pinheiro <apinheiro@igalia.com>
* src/hildon-touch-selector.c: added the property "text-column" to the
class HildonTouchSelectorColumn, and related get/set functions
(_default_printf_func): updated to use "text-column" property
* src/hildon-touch-selector-entry.c: mark as deprecated the property
"text-column" in his documentation, as this is now included on
HildonTouchSelectorColumn. The get/set_property can still be used,
working as a wrapper to the concrete column "text-column" property
(_text_column_modified): callback added in order to handle the signal
"notify::text-column" of the concrete HildonTouchSelectorColumn
(hildon_touch_selector_entry_get_text_column)
(hildon_touch_selector_entry_set_text_column): Added documentation, and
modified in order to use the HildonTouchSelectorColumn "text-column"
property
* src/hildon-time-selector.c:
* src/hildon-date-selector.c:
* examples/hildon-touch-selector-example.c
* examples/hildon-touch-selector-multi-cells-example.c
* examples/hildon-picker-button-multicolumn-example.c
Set the right value to "text-column" property on the creation of a new
column using hildon_touch_selector_append_column()
Fixes: NB#88644 (Hardcoded first column of the model as text column)
2008-09-30 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu.c
(hildon_app_menu_construct_child, hildon_app_menu_init): When
updating the layout of the menu, don't create all widgets again,
just repack the items in their new places.
2008-09-30 Alejandro Pinheiro <apinheiro@igalia.com>
* src/hildon-time-selector.c
(hildon_time_selector_get_time)
(hildon_time_selector_set_time)
Added documentation of these public methods
* src/hildon-date-button.h
* src/hildon-touch-selector-column.h
* src/hildon-time-button.h
* src/hildon-picker-dialog.h
* src/hildon-time-selector.h
* src/hildon-picker-button.h
* src/hildon-touch-selector.h
* src/hildon-time-picker.h
* src/hildon-date-selector.h
* src/hildon-touch-selector-entry.h
Modified in order to use hildon-widgets code style
2008-09-30 Alejandro G. Castro <alex@igalia.com>
Added deprecated support to the compilation process using
HILDON_DISABLE_DEPRECATED
* configure.ac: Added the --disable-deprecated to the configure
script
* src/hildon-weekday-picker.c:
* src/hildon-weekday-picker.h: Deprecated widget, example of how
to use the deprecated support. We will update the other deprecated
widgets status in a new patch.
2008-09-30 Alejandro G. Castro <alex@igalia.com>
* configure.ac: Fixed typo with fatal warnings support, the
variable name was not correct
2008-09-29 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu.c
* src/hildon-program.c: Update documentation.
2008-09-29 Claudio Saavedra <csaavedra@igalia.com>
* configure.ac: Post-release version bump.
2008-09-29 Claudio Saavedra <csaavedra@igalia.com>
[Release 2.1.12]
* NEWS: Update.
* configure.ac: Pre-release version bump.
* debian/changelog: Updates.
2008-09-29 Claudio Saavedra <csaavedra@igalia.com>
* NEWS: Update news for previous releases.
2008-09-26 Claudio Saavedra <csaavedra@igalia.com>
* examples/hildon-touch-selector-multi-cells-example.c:
(create_selector): Update the example to use
hildon_touch_selector_append_column() with a NULL renderer and set
the renderers later.
* src/hildon-touch-selector.c: (_create_new_column): Do not warn if
passed a NULL renderer. This is documented behavior now.
Allow passing a NULL renderer to hildon_touch_selector_append_column().
This must be used if the developer wants full control on the layout of
the renderers to be added to the column.
Fixes: NB#88680 (Limiting API in HildonTouchSelector)
2008-09-26 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-touch-selector.c: Documentation fixes.
2008-09-26 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-wizard-dialog-private.h: Remove image and box.
* src/hildon-wizard-dialog.c: (hildon_wizard_dialog_init),
(hildon_wizard_dialog_set_property), (response): Completely remove
image/icon support, and the containers required for the layout.
Fixes: NB#88927 (Hildon Wizard should not use icons anymore)
2008-09-25 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu.c: Updated documentation.
* src/hildon-stackable-window.c
(hildon_stackable_window_set_main_menu): Unref the old menu after
ref'ing the new one.
2008-09-25 Alberto Garcia <agarcia@igalia.com>
* src/hildon-stackable-window.c
(hildon_stackable_window_set_main_menu): Unref the previous menu
instead of destroying it.
* src/hildon-app-menu.c (hildon_app_menu_init): Re-enforce the
floating reference and set has_user_ref_count to FALSE to make
HildonAppMenu act like a normal ref-counted widget and not a
toplevel widget.
Fixes: NB#88923 (Semantics of hildon_stackable_window_set_main_menu()
changed)
2008-09-25 Alejandro Pinheiro <apinheiro@igalia.com>
* src/hildon-touch-selector-column.h: new file
* src/hildon-touch-selector.h
* src/hildon-touch-selector.c
Implemented GtkCellLayout interface, in order to allow to configure
the cell layout on each individual selector column
(hildon_touch_selector_set_column_attributes): marked as deprecated
* examples/hildon-touch-selector-multi-cells-example.c
Example of how to use the GtkCellLayout interface on the selector
Fixes: NB#88680 (Limiting API in HildonTouchSelector)
2008-09-24 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu.h
* src/hildon-app-menu.c
(hildon_app_menu_insert, hildon_app_menu_reorder_child)
(hildon_app_menu_append, hildon_app_menu_prepend):
New methods to prepend, insert and move items in the menu.
2008-09-24 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-wizard-dialog.c:
(hildon_wizard_dialog_init): Update logical IDs and remove cancel
button.
(create_title): Update logical IDs and related code.
(response): No need to handle HILDON_WIZARD_DIALOG_CANCEL.
* src/hildon-wizard-dialog.h: Note that
HILDON_WIZARD_DIALOG_CANCEL should be marked as deprecated at some
point, as it is not used anymore.
Fixes: NB#88887 (Hildon Wizard changes for Hildon2.2)
2008-09-24 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-note.c:
(hildon_note_rebuild): Update logical IDs. Ensure "Cancel" button is
shown. Do not display an icon in confirmation notes nor information
notes.
(hildon_note_set_button_text): Update logical ID for cancel button.
Fixes: NB#88850 (Update HildonNote button strings + signals)
2008-09-24 Alberto Garcia <agarcia@igalia.com>
* src/hildon-stackable-window.c
(hildon_stackable_window_set_main_menu): Fix compilation warning.
2008-09-24 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu-private.h
* src/hildon-app-menu.c (hildon_app_menu_set_columns)
(hildon_app_menu_set_property, hildon_app_menu_construct_child)
(hildon_app_menu_init, hildon_app_menu_class_init): Added
temporary property 'columns' to change the number of columns.
2008-09-24 Claudio Saavedra <csaavedra@igalia.com>
Patch contributed by Kimmo Hämäläinen (kimmo.hamalainen@nokia.com)
* examples/hildon-note-example.c: (on_information_clicked),
(on_confirmation_clicked), (on_progress_clicked), (main): Add
debugging information.
* src/hildon-note-private.h: Remove close_if_pressed_outside,
not needed anymore.
* src/hildon-note.c: (hildon_note_class_init), (hildon_note_init),
(hildon_note_rebuild): Remove special handling of tapping outside/inside
in order to close: this will be handled by the WM from now on.
Fixes: NB#88891 (Allow WM to handle properly close-on-tap-outside behavior)
2008-09-24 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu-private.h
* src/hildon-app-menu.c
(hildon_app_menu_append, hildon_app_menu_add_filter)
(button_visibility_changed, hildon_app_menu_apply_style)
(hildon_app_menu_style_set, hildon_app_menu_construct_child)
(hildon_app_menu_init, hildon_app_menu_finalize): Update the
layout everytime a button (item or filter) is shown or hidden.
* src/hildon-stackable-window.c
(hildon_stackable_window_set_main_menu): Destroy the old menu when
setting a new one.
2008-09-22 Alejandro Pinheiro <apinheiro@igalia.com>
* src/hildon-touch-selector.c:
(hildon_touch_selector_class_init): added gtkrc bits in order to ensure
that the treeview inside the touch selector is in fremantle hildon mode
* examples/hildon-date-button-example.c
* examples/hildon-picker-button-multicolumn-example.c
* examples/hildon-touch-selector-entry-example.c
* examples/hildon-touch-selector-example.c
* examples/hildon-time-button-example.c
* examples/hildon-picker-button-example.c:
(main): Remove the gtkrc bits, now hadled by hildon-touch-selector.c
2008-09-22 Claudio Saavedra <csaavedra@igalia.com>
* examples/hildon-text-view-example.c: (main): Remove the
gtkrc bits, now handled by the theme.
2008-09-22 Alberto Garcia <agarcia@igalia.com>
* src/hildon-picker-button.c (hildon_picker_button_set_active):
Fix memory leak
2008-09-19 Claudio Saavedra <csaavedra@igalia.com>
* po/Makefile.am: Install properly the mo files.
* po/en_GB.po: Update translation, to ease testing purposes.
2008-09-19 Claudio Saavedra <csaavedra@igalia.com>
* examples/hildon-picker-button-example.c: (main): Select an item
in the selector before setting it to the button.
2008-09-19 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-picker-button.c: (hildon_picker_button_set_selector):
Update button's value if the selector has an item active.
Fixes: NB#88718 (HildonPickerButton not synchronizing its initial
'value' with the selector)
2008-09-19 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-picker-button.c: (+hildon_picker_button_finalize): unref
the HildonTouchSelector and destroy the underlying HildonPickerDialog.
(hildon_picker_button_class_init): Plug the finalize method.
(hildon_picker_button_set_selector): If there's a previously set
selector, unref'it before setting a new one.
Fixes: NB#88720 (HildonPickerButton leaks a reference to the
HildonTouchSelector)
2008-09-16 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-touch-selector-entry.c:
(hildon_touch_selector_entry_changed): Check if there is no text
selected before setting the entry text.
Fixes: NB#88576
2008-09-15 Alberto Garcia <agarcia@igalia.com>
* src/hildon-touch-selector.h
* src/hildon-touch-selector.c
(hildon_touch_selector_get_active)
(hildon_touch_selector_set_active): New methods to set/get the
index of the selected item.
* src/hildon-picker-button.h
* src/hildon-picker-button.c
(hildon_picker_button_get_active)
(hildon_picker_button_set_active): New methods to set/get the
index of the selected item.
2008-09-15 Claudio Saavedra <csaavedra@igalia.com>
* configure.ac: post-release version bump.
2008-09-15 Claudio Saavedra <csaavedra@igalia.com>
Release 2.1.10-1.
* configure.ac: Pre-release version bump.
* debian/changelog: Updates.
* debian/control: Add myself as maintainer and depend on l10n
packages.
2008-09-15 Alberto Garcia <agarcia@igalia.com>
* src/hildon-window.c
(hildon_window_set_main_menu)
* src/hildon-stackable-window.c
(hildon_stackable_window_set_main_menu):
Updated documentation.
2008-09-15 Alberto Garcia <agarcia@igalia.com>
* src/hildon-date-selector.c (hildon_date_selector_finalize):
Don't free selector->priv manually.
Fixes: NB#88414
2008-09-12 Alejandro G. Castro <alex@igalia.com>
* src/hildon-gtk.c,
(hildon_gtk_window_set_progress_indicator):
* src/hildon-gtk.h: Added the new API
hildon_gtk_window_set_progress_indicator, it changes the state of
the window progress hint.
2008-09-12 Alberto Garcia <agarcia@igalia.com>
* src/hildon-button.c
* src/hildon-stackable-window.c: Minor documentation updates.
2008-09-12 Alberto Garcia <agarcia@igalia.com>
* src/hildon-stackable-window.c: Updated documentation.
2008-09-12 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-defines.h: Update margins definitions
to the Fremantle sizes.
Fixes: NB#88364
2008-09-12 Alejandro G. Castro <alex@igalia.com>
* src/hildon-touch-selector.c,
(_hildon_touch_selector_set_model): Cleaning the code after
review, removed g_print and #if 0 from the code.
2008-09-11 Alberto Garcia <agarcia@igalia.com>
* src/hildon-edit-toolbar.c: Update documentation.
2008-09-11 Alberto Garcia <agarcia@igalia.com>
* src/hildon-check-button.h
* src/hildon-check-button.c
(hildon_check_button_set_label, hildon_check_button_get_label)
* examples/hildon-check-button-example.c
(button_clicked_cb):
Removed deprecated methods.
2008-09-11 Alberto Garcia <agarcia@igalia.com>
* src/hildon-text-view.c:
Add sample code to the documentation.
* src/hildon-entry.h
* src/hildon-text-view.h:
Minor cosmetic changes.
* src/hildon-entry.c:
Add sample code to the documentation.
(hildon_entry_init, hildon_entry_refresh_contents):
Don't allow NULL values in the placeholder.
2008-09-10 Alberto Garcia <agarcia@igalia.com>
* doc/hildon-docs.sgml
* doc/hildon.types
* examples/Makefile.am
* examples/hildon-text-view-example.c
* src/Makefile.am
* src/hildon-text-view.c
* src/hildon-text-view.h
* src/hildon.h:
New HildonTextView widget, with example.
2008-09-10 Claudio Saavedra <csaavedra@igalia.com>
* po/POTFILES.in: Add missing files with translatable strings.
Partially fixes NB#88287.
2008-09-10 Claudio Saavedra <csaavedra@igalia.com>
* examples/hildon-pannable-area-example-2.c: (main): No need to
set the cellrenderer height inside hildon touch lists, the theme does
that for us.
2008-09-10 Claudio Saavedra <csaavedra@igalia.com>
* examples/hildon-entry-example.c: (main): Remove the gtkrc bits, now
they are integrated in the theme.
2008-09-09 Alberto Garcia <agarcia@igalia.com>
* examples/hildon-entry-example.c: Update the example adding
widgets to modify the text and the placeholder of the HildonEntry.
* src/hildon-entry.c: Show the placeholder everytime the widget
is empty and loses the focus.
2008-09-09 Alejandro G. Castro <alex@igalia.com>
Patch contributed by Daniil Ivanov (ext-danil.ivanoc@nokia.com)
* src/hildon-pannable-area.c,
(hildon_pannable_area_size_request): Fixed bug in height
requisition, avoid increasing size and add border twice.
2008-09-09 Claudio Saavedra <csaavedra@igalia.com>
* configure.ac: postrelease version bump.
2008-09-09 Claudio Saavedra <csaavedra@igalia.com>
Release 2.1.8-1.
* configure.ac: Prerelease version bump.
* debian/changelog: update.
* debian/rules: make -dbg package contain useful debugging symbols.
2008-09-08 Alberto Garcia <agarcia@igalia.com>
* src/hildon-dialog.h
* src/hildon-dialog.c
(hildon_dialog_add_button, hildon_dialog_add_buttons):
New methods to add buttons with finger size.
(hildon_dialog_new_with_buttons):
Create buttons with finger size.
* examples/hildon-dialog-example.c (main): Use HildonDialog
methods to add buttons.
2008-09-08 Alberto Garcia <agarcia@igalia.com>
* src/hildon-entry.c: Updated HildonButton documentation.
2008-09-08 Alberto Garcia <agarcia@igalia.com>
* src/hildon-button.c (hildon_button_set_arrangement): Pack the
button value label with (FALSE, FALSE) to prevent NB#88126 from
being triggered.
2008-09-08 Alejandro G. Castro <alex@igalia.com>
* examples/hildon-pannable-area-example.c,
(main): Removed examples panning a vbox inside a pannable
area. Check bug NB#87965
2008-09-08 Alejandro G. Castro <alex@igalia.com>
Patch contributed by Kris Rietveld (kris@imendio.com)
* src/hildon-pannable-area.c,
(hildon_pannable_area_get_topmost): replaced the get_geometry with
get_size and get_position, this saves an X server roundtrip.
2008-09-05 Alberto Garcia <agarcia@igalia.com>
* doc/hildon-docs.sgml
* doc/hildon.types
* examples/Makefile.am
* examples/hildon-entry-example.c
* src/Makefile.am
* src/hildon-entry.c
* src/hildon-entry.h
* src/hildon.h:
New HildonEntry widget, with example.
2008-09-05 Alberto Garcia <agarcia@igalia.com>
* src/hildon-button.c (hildon_button_construct_child): Pack the
image with expand == fill == FALSE. This is a workaround for a bug
in GtkBox.
2008-09-05 Claudio Saavedra <csaavedra@igalia.com>
* examples/hildon-pannable-area-example-2.c: (main): Use the stock
labels for the text column, to make it more look more dynamic.
2008-09-04 Alejandro Pinheiro <apinheiro@igalia.com>
* src/hildon-time-selector.c
Define gettext auxiliar macro N_
(_create_minutes_model)
(_create_hours_model)
(_create_ampm_model): use of strftime in order to fill the model
* src/hildon-date-selector.c
(hildon_date_selector_finalize):
(_locales_init): remove the logic related to get the name of the months
using nl_langinfo, as it is not required anymore
(_create_day_model)
(_create_year_model)
(_create_month_model)
(_update_day_model): use of strftime in order to fill the model properly
2008-09-04 Alberto Garcia <agarcia@igalia.com>
* src/hildon-button.h
* src/hildon-button.c (hildon_button_get_image): New method to
retrieve the image.
2008-09-04 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-touch-selector.c:
(hildon_touch_selector_remove_column): Remove from the correct parent
and also remove the list element and free it.
Fixes: NB#88049
2008-09-04 Alejandro Pinheiro <apinheiro@igalia.com>
* src/hildon-time-selector.c
(_create_hours_model): change the range on 12h ampm format in order to use
a 12-11 range instead of previous 01-12 range
(hildon_time_selector_set_time): change the way to select the current time
on 12h ampm format, due the change on the range
(hildon_time_selector_get_time): fix the hour returned on 12 ampm format
Fixes: NB#88036
2008-09-03 Alejandro Pinheiro <apinheiro@igalia.com>
* src/hildon-touch-selector.c
(hildon_date_touch_selector_get_selected): fix the selection mode check,
in order to allow use this function on multiple row selection mode if
the column is different that the first one
Fixes: NB#88047
2008-09-03 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-time-selector.c: (_custom_print_func): Change the logical ids
to "wdgt_va_12h_time" and "wdgt_va_24h_time". Fixes NB#88045.
2008-09-02 Alejandro Pinheiro <apinheiro@igalia.com>
* src/hildon-date-selector.h: clean some comments, now on the .c
* src/hildon-date-selector.c
(hildon_date_selector_select_month): first implementation
(hildon_date_selector_select_day): added documentation, reimplemented
using hildon_date_selector_select_current_date to avoid repeat code
Fixes: NB#88027
2008-09-02 Alejandro G. Castro <alex@igalia.com>
Reviewed interaction logic based on device experiences, refactored
code.
* src/hildon-pannable-area.c,
(hildon_pannable_area_class_init): Updated default vmax speed.
(hildon_pannable_area_calculate_velocity): Added this function, it
avoids duplicate valocity calculation. Adjusted calculation to
avoid problems with zero dist events.
(hildon_pannable_area_motion_notify_cb): Now we use the
calculate_velocity function.
2008-09-02 Alejandro Pinheiro <apinheiro@igalia.com>
* src/hildon-date-selector.c
(hildon_date_selector_select_current_date): fix the day range check
as it failed using the last day of the current month
Fixes NB#88023
2008-09-02 Alejandro Pinheiro <apinheiro@igalia.com>
* src/hildon-touch-selector.c
(hildon_touch_selector_get_num_columns): added a parameter validation
Fixes: NB#88022
2008-08-29 Alberto Garcia <agarcia@igalia.com>
* examples/Makefile.am
* examples/hildon-edit-toolbar-example.c: Example of the
HildonEditToolbar widget.
2008-08-29 Claudio Saavedra <csaavedra@igalia.com>
* configure.ac: postrelease version bump.
2008-08-29 Claudio Saavedra <csaavedra@igalia.com>
Release 2.1.6-1.
* configure.ac: prerelease version bump.
* debian/changelog: update.
2008-08-29 Claudio Saavedra <csaavedra@igalia.com>
* examples/hildon-pannable-area-example-2.c: (main): Add a pixbuf
renderer to display stock icons in the touch list. Also, set the sizes
to the recommended in the style guide.
2008-08-28 Alejandro Pinheiro <apinheiro@igalia.com>
* src/hildon-touch-selector.h
(hildon_touch_selector_set_active_iter): renamed, now is
hildon_touch_selector_select_iter
(hildon_touch_selector_get_active_iter): renamed, now is
hildon_touch_selector_get_selected
(hildon_touch_selector_unselect_iter): added
* src/hildon-touch-selector.c
Update after API modification (methods renamed)
(hildon_touch_selector_select_iter): remove gtk_tree_view_set_cursor in
order to avoid problems selecting multiple elements on the column
(hildon_touch_selector_unselect_iter): added the implementation
* src/hildon-time-selector.c
* src/hildon-date-selector.c
* src/hildon-touch-selector-entry.c
Update methods calls after hildon-touch-selector.h API modification (methods
renamed)
2008-08-29 Alberto Garcia <agarcia@igalia.com>
* src/hildon-stackable-window.c
(hildon_stackable_window_finalize): Call the parent class's finalize.
2008-08-29 Claudio Saavedra <csaavedra@igalia.com>
* examples/hildon-touch-selector-example.c: (create_selector): Use
gtk_cell_renderer_set_fixed_size() instead of a GValue to set the
cell height.
2008-08-29 Claudio Saavedra <csaavedra@igalia.com>
* examples/hildon-touch-selector-example.c: (create_selector): Do not
set a cell background color, to respect theming.
2008-08-28 Alberto Garcia <agarcia@igalia.com>
* doc/hildon-docs.sgml
* doc/hildon.types
* src/Makefile.am
* src/hildon-edit-toolbar.c
* src/hildon-edit-toolbar.h
* src/hildon.h: New HildonEditToolbar widget.
2008-08-28 Claudio Saavedra <csaavedra@igalia.com>
* examples/hildon-pannable-area-example-4.c: (main): Remove unneeded
extra GtkVBox.
2008-08-28 Alejandro Pinheiro <apinheiro@igalia.com>
* src/hildon-touch-selector.c
(_create_new_column): use g_object_set instead of two g_object_set_property
2008-08-28 Alejandro Pinheiro <apinheiro@igalia.com>
* src/hildon-touch-selector.c
(_create_new_column): use of hildon_gtk_tree_view_new to create
the treeview, instead of use directly g_object_new
(_create_new_column): update the property name "vindicator-mode" for the
new one "vscrollbar-policy"
* examples/hildon-date-button-example.c
* examples/hildon-picker-button-multicolumn-example.c
* examples/hildon-touch-selector-entry-example.c
* examples/hildon-touch-selector-example.c
* examples/hildon-time-button-example.c
* examples/hildon-picker-button-example.c
Add a gtk_rc_parse_string in order to set the hildon-mode to HILDON_FREMANTLE
to all the treeviews inside a pannable area.
2008-08-27 Alberto Garcia <agarcia@igalia.com>
* src/hildon-button.h
* src/hildon-button.c (hildon_button_init)
(hildon_button_set_arrangement, hildon_button_set_alignment)
(hildon_button_set_title_alignment)
(hildon_button_set_value_alignment)
(hildon_button_set_image_alignment)
(hildon_button_construct_child): New methods to set the alignment
of the individual components of the button (title, value,
image). Also, new method to alter the xscale and yscale properties
of the GtkAlignment inside the button, so more complex layouts can
be created.
2008-08-27 Alberto Garcia <agarcia@igalia.com>
* src/hildon-button.c (hildon_button_style_set)
(hildon_button_class_init, hildon_button_set_arrangement)
(hildon_button_construct_child): Apply style properties
correctly. Use the 'image-spacing' style property too.
2008-08-26 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu.c (hildon_app_menu_style_set)
(hildon_app_menu_init, hildon_app_menu_class_init): Set style
correctly.
2008-08-26 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c,
(hildon_pannable_area_size_request): Fixed problem with
pannable-area size_request.
2008-08-26 Alejandro G. Castro <alex@igalia.com>
Added management for the grab-focus to a child widget, like a
range, we need to fade out the scrollbar when releasing.
* src/hildon-pannable-area.c,
(hildon_pannable_area_init): Connected the grab-focus signal to
the callback.
(hildon_pannable_area_grab_notify): Added this function in order
to manage the situation when the grab-focus ends. We have to
fade-out the scrollbar.
2008-08-25 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu.c: Minor documentation update.
2008-08-25 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu.c
* examples/hildon-app-menu-example.c (create_menu): Update
examples and documentation to explain how to connect callbacks.
2008-08-25 Alejandro Pinheiro <apinheiro@igalia.com>
* examples/hildon-button-example.c
(vertical_buttons_window) (horizontal_buttons_window) (main): use of
hildon_stackable_window_new instead of gtk_window_new
2008-08-22 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c (hildon_pannable_area_class_init),
(hildon_pannable_area_init), (hildon_pannable_area_get_property),
(hildon_pannable_area_set_property),
(hildon_pannable_area_dispose), (hildon_pannable_area_realize),
(hildon_pannable_area_unrealize),
(hildon_pannable_area_size_request),
(hildon_pannable_area_size_allocate),
(hildon_pannable_area_style_set), (hildon_pannable_area_map),
(hildon_pannable_area_unmap), (rgb_from_gdkcolor),
(hildon_pannable_draw_vscroll), (hildon_pannable_draw_hscroll),
(hildon_pannable_area_initial_effect),
(hildon_pannable_area_redraw),
(hildon_pannable_area_scroll_indicator_fade),
(hildon_pannable_area_expose_event),
(hildon_pannable_area_get_topmost), (synth_crossing),
(hildon_pannable_area_button_press_cb),
(hildon_pannable_area_refresh), (hildon_pannable_axis_scroll),
(hildon_pannable_area_scroll), (hildon_pannable_area_timeout),
(hildon_pannable_area_motion_notify_cb),
(hildon_pannable_area_button_release_cb),
(hildon_pannable_area_scroll_cb), (hildon_pannable_area_add),
(hildon_pannable_area_remove),
(hildon_pannable_calculate_vel_factor): Widget refactorization,
chage the code layout to a more GtkWidget like. Review the use of
variables.
2008-08-21 Alejandro G. Castro <alex@igalia.com>
* examples/hildon-pannable-area-example-4.c,
(main): Modified the name of the hindicator_mode to
hscrollbar_visible
* src/hildon-pannable-area.c,
(hildon_pannable_area_class_init),
(hildon_pannable_area_motion_notify_cb),
(hildon_pannable_area_size_allocate): Reviewed the drawing logic,
we have reduced the amount of signals and managed reviewed its
rationale. Changed the default decelerate value.
(hildon_pannable_area_add),
(hildon_pannable_area_redraw): Refactored functions.
(hildon_pannable_area_init),
(hildon_pannable_area_get_property),
(hildon_pannable_area_set_property):
(hildon_pannable_draw_vscroll),
(hildon_pannable_draw_hscroll),
(hildon_pannable_area_initial_effect),
(hildon_pannable_area_expose_event),
(hildon_pannable_area_scroll),
(hildon_pannable_area_button_press_cb),
(hildon_pannable_area_realize): Replaced the names hindicator_mode
and vindicator_mode with hscrollbar_policy and
vscrollbar_policy. Replaced hscroll and vscroll with
hscroll_visible and vscroll_visible.
(hildon_pannable_area_refresh): Refactor the function, remove
variables and check the calls to this function, added resize
conditions in case the children change their layout.
(hildon_pannable_area_size_request): Added more detailed
size_request calculation.
2008-08-21 Alejandro Pinheiro <apinheiro@igalia.com>
* src/hildon-color-chooser.c
(init_borders): use the correct gtk_border_free instead of g_free, to
avoid a crash when this widget is used (ie: the three color selection
examples)
2008-08-20 Alejandro G. Castro <alex@igalia.com>
* src/hildon-check-button.c,
(hildon_check_button_set_active): Fixed problem when setting the
active value, the widget was not redrawn.
2008-08-20 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c,
(hildon_pannable_area_refresh),
(hildon_pannable_area_scroll),
(hildon_pannable_area_motion_notify_cb): Small code style change.
(hildon_pannable_area_class_init): Default initial_hint set to
FALSE, it is not in the specs.
(hildon_pannable_area_initial_effect),
(hildon_pannable_area_expose_event),
(hildon_pannable_area_map),
(hildon_pannable_area_init): Moved the launching point of the
initial effect, it was in map but the sizes where not correct in
that method so we do not know if we have the reproduce it. Now it
is placed in the expose_event method and uses a variable to
reproduce it just once.
2008-08-19 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c,
(hildon_pannable_draw_vscroll),
(hildon_pannable_draw_hscroll): Fix error calculating the maximum
position allowed for the scrollbars.
(hildon_pannable_area_size_allocate): Small style change.
2008-08-19 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c,
(hildon_pannable_area_scroll_indicator_fade),
(hildon_pannable_area_button_press_cb),
(hildon_pannable_area_button_release_cb),
(hildon_pannable_area_scroll_cb),
(hildon_pannable_area_expose_event),
(hildon_pannable_area_init): Added the define parameter
SCROLLBAR_FADE_DELAY to control the fade effect of the scrollbars
and refactor the fade variable.
2008-08-19 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c,
(hildon_pannable_area_redraw),
(hildon_pannable_area_scroll_indicator_fade): Refactored redraw
lines, we were reimplemeting the redraw code.
2008-08-18 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c,
(hildon_pannable_area_scroll_cb),
(hildon_pannable_area_realize),
(hildon_pannable_area_class_init): Added scroll_event management
for pannable area, now we can scroll the usual desktop method.
(hildon_pannable_area_jump_to): Fixed the logic of the method, the
initialization of the parameters should depend on idle_id.
(hildon_pannable_area_init),
(hildon_pannable_area_map): Small code style modifications
2008-08-18 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c
(hildon_pannable_area_button_press_cb),
(hildon_pannable_area_motion_notify_cb),
(hildon_pannable_area_button_release_cb),
(hildon_pannable_area_size_allocate),
(hildon_pannable_area_scroll_to): Improved the timeouts
management, we avoid creating them each time.
2008-08-14 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c:
(hildon_pannable_area_refresh),
(hildon_pannable_area_motion_notify_cb),
(hildon_pannable_area_class_init):
* src/hildon-pannable-area.h:
* src/hildon-touch-selector.c
(_create_new_column):
* examples/hildon-pannable-area-example-4.c:
(horizontal_movement),
(vertical_movement),
(main):
Replaced the names of enums in the HildonPannableArea:
- HILDON_PANNABLE_AREA_MOV_MODE_* ->
HILDON_MOVEMENT_MODE_*
- HILDON_PANNABLE_AREA_MOV_* ->
HILDON_MOVEMENT_*
- Removed HildonPannableAreaIndicatorMode, now we
use GtkPolicyType
2008-08-14 Alberto Garcia <agarcia@igalia.com>
* examples/hildon-pannable-area-touch-grid-example.c
* examples/hildon-pannable-area-touch-list-example.c: Fix
compilation warnings.
2008-08-14 Alberto Garcia <agarcia@igalia.com>
* src/hildon-gtk.c (hildon_gtk_button_new)
(hildon_gtk_toggle_button_new, hildon_gtk_radio_button_new)
(hildon_gtk_radio_button_new_from_widget): Make buttons show their
images overriding the value of the "gtk-button-images" setting.
2008-08-14 Alberto Garcia <agarcia@igalia.com>
* src/hildon-check-button.c (hildon_check_button_new):
Instead of using a custom container, display the label and the
checkbox using the standard GtkButton API.
* examples/hildon-check-button-example.c (main): Don't use
hildon_check_button_set_label() anymore
* src/hildon-check-button.h
* src/hildon-check-button.c
(hildon_check_button_set_label, hildon_check_button_get_label):
Set as deprecated, now we're using gtk_button_{get,set}_label()
2008-08-14 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c,
(hildon_pannable_area_get_topmost): Fixed bug with click in the
GtkTreeview first line we detected it after the inclusion of the
GtkWindowImpl in gtk+. We now check if the window is visible, not
just if the pointer is over the window.
(hildon_pannable_axis_scroll),
(hildon_pannable_area_expose_event): Small style changes.
2008-08-13 Alberto Garcia <agarcia@igalia.com>
* src/hildon-button.c: Update documentation.
2008-08-13 Alberto Garcia <agarcia@igalia.com>
* examples/hildon-button-example.c: Add a switch to show images in
the buttons.
2008-08-12 Claudio Saavedra <csaavedra@igalia.com>
* doc/hildon-docs.sgml: Some docs reorganization.
2008-08-12 Alberto Garcia <agarcia@igalia.com>
* examples/hildon-pannable-area-touch-list-example.c
(create_tree_view)
* examples/hildon-pannable-area-touch-grid-example.c
(create_icon_view): Use gtk_{tree,icon}_view_new() and
hildon_gtk_{tree,icon}_view_new() instead of g_object_new().
Fix memory leak when setting the tree model.
2008-08-12 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Released 2.1.4
2008-08-12 Claudio Saavedra <csaavedra@igalia.com>
* doc/hildon.types: Remove duplicated hildon_window_get_type
* src/hildon-window.c: (hildon_window_class_init): Remove duplicated
documentation comment.
2008-08-12 Alberto Garcia <agarcia@igalia.com>
* doc/Makefile.am: Complete list of private headers.
2008-08-12 Alberto Garcia <agarcia@igalia.com>
* doc/hildon-docs.sgml
* src/hildon-app-menu.c
* src/hildon-bread-crumb.c
* src/hildon-button.c
* src/hildon-gtk.c
* src/hildon-program.c
* src/hildon-stackable-window.c
* src/hildon-window.c: Lots of documentation updates.
2008-08-12 Alberto Garcia <agarcia@igalia.com>
* debian/control: Depend on Gtk 2:2.12.9-0osso3
* configure.ac: Require Gtk+ 2.12.9 at least
2008-08-12 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c
(hildon_pannable_area_scroll_indicator_fade),
(hildon_pannable_area_timeout): Added the GDK_THREADS_LEAVE macro
to protect the return of this timeout callbacks, avoiding deadlocks.
2008-08-12 Christian Dywan <christian@imendio.com>
* src/hildon-*.c
* src/hildon-*.h: Ensure a consistent include order,
include <gtk/gtk.h> instead of particular files and
only include the topmost header in the gtk stack. See NB #39857
2008-08-12 Christian Dywan <christian@imendio.com>
* src/hildon-picker-dialog.c
* src/hildon-touch-selector.c: Fix warnings about unused and
uninitialized variables.
2008-08-11 Alberto Garcia <agarcia@igalia.com>
* examples/Makefile.am
* examples/hildon-check-button-example.c: Example of the hildon
check button.
2008-08-11 Alberto Garcia <agarcia@igalia.com>
* src/hildon-window.h
* src/hildon-window.c (hildon_window_class_init)
(hildon_window_unset_program): Don't make
hildon_window_unset_program a virtual function anymore.
* src/hildon-stackable-window.c: Update documentation
2008-08-11 Alberto Garcia <agarcia@igalia.com>
* doc/Makefile.am
* doc/hildon-docs.sgml
* doc/visual_index.xml
* src/hildon-defines.c
* src/hildon-gtk.c
* src/hildon-helper.c
* src/hildon-range-editor.c: Lots of documentation fixes.
2008-08-11 Alberto Garcia <agarcia@igalia.com>
* examples/hildon-picker-button-multicolumn-example.c
(create_touch_selector): Fix compilation warning.
2008-08-11 Alberto Garcia <agarcia@igalia.com>
* src/hildon-pannable-area.c (hildon_pannable_area_button_press_cb)
(hildon_pannable_area_button_release_cb)
(hildon_pannable_get_child_widget_at): Fix compilation warnings.
2008-08-11 Alberto Garcia <agarcia@igalia.com>
* src/hildon-button.c (hildon_button_add_image_size_group): Fix
assertion.
2008-08-11 Alberto Garcia <agarcia@igalia.com>
* src/hildon-bread-crumb-trail.h
* src/hildon-date-editor.c
* src/hildon-date-selector.c
* src/hildon-pannable-area.c
* src/hildon-picker-dialog.c
* src/hildon-time-selector.c
* src/hildon-touch-selector-entry.c
* src/hildon-touch-selector.c
* src/hildon-touch-selector.h: Misc documentation fixes
2008-08-11 Alberto Garcia <agarcia@igalia.com>
* examples/hildon-date-editor-example.c (main): Updated date
editor example.
* examples/hildon-note-example.c (on_confirmation_clicked):
Updated confirmation note example.
* src/hildon-date-editor.c
* src/hildon-note.c: Updated sample programs in documentation.
Fixes: NB#87437
2008-08-08 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-date-button.h:
* src/hildon-picker-button.h:
* src/hildon-time-button.c:
* src/hildon-time-button.h:
Some declarations changes to allow gtk-doc to document the widgets
properly.
2008-08-08 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-date-button.c: Document the widget.
* src/hildon-time-button.c: Document the widget.
2008-08-08 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-picker-button.c: Document the widget.
* src/hildon-touch-selector-entry.c: Document the widget.
2008-08-08 Alberto Garcia <agarcia@igalia.com>
* doc/hildon-docs.sgml
* src/Makefile.am
* src/hildon.h
* src/hildon-check-button.h
* src/hildon-check-button.c: New functions to create the Hildon
Touch Checkbox.
* src/hildon-gtk.h
* src/hildon-gtk.c (hildon_gtk_check_button_new): Removed.
2008-08-08 Alberto Garcia <agarcia@igalia.com>
* src/hildon-button.h
* src/hildon-button.c
(hildon_button_add_title_size_group)
(hildon_button_add_value_size_group)
(hildon_button_add_image_size_group)
(hildon_button_add_size_groups): New functions to set size groups
for the button labels and image.
(hildon_button_new_full): Removed
2008-08-08 Alejandro Pinheiro <apinheiro@igalia.com>
* src/hildon-time-selector.c
(_check_ampm_format): use of g_warning instead of g_error with a gconf error
in order to avoid a crash if gconf is not available
2008-08-08 Alberto Garcia <agarcia@igalia.com>
* src/hildon-button.c (hildon_button_set_arrangement)
(hildon_button_construct_child): Don't construct the button child
before setting the arrangement.
2008-08-08 Alberto Garcia <agarcia@igalia.com>
* src/hildon-program-private.h
* src/hildon-program.c
* src/hildon-program.h
(_hildon_program_remove_from_stack, _hildon_program_add_to_stack)
(hildon_program_peek_window_stack)
(hildon_program_pop_window_stack)
(hildon_program_go_to_root_window): HildonProgram now has a
separate list for stackable windows. Functions are provided to
manage that list with a stack-like API.
* src/hildon-stackable-window.c: Stackable window management is
now much simpler with the new HildonProgram API. Windows no
longer need to be manually added to the program, they're
automatically pushed to the top of the stack when shown.
* examples/hildon-stackable-window-example.c: Updated example to
reflect the API changes.
2008-08-07 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-touch-selector.c: Comment out unimplemented
hildon_touch_selector_insert_column() to avoid a compile warning.
2008-08-07 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-touch-selector.c: (hildon_touch_selector_class_init),
(hildon_touch_selector_new), (hildon_touch_selector_remove_column),
(hildon_touch_selector_set_column_selection_mode),
(_hildon_touch_selector_set_model),
(hildon_touch_selector_set_model):
Complete review of HildonTouchSelector documentation.
2008-08-08 Alberto Garcia <agarcia@igalia.com>
* doc/hildon-docs.sgml
* src/Makefile.am
* src/hildon.h
* src/hildon-gtk.h
* src/hildon-gtk.c: Convenience functions for standard Gtk
widgets, used to easily perform frequent operations.
* src/hildon-button-helpers.h
* src/hildon-button-helpers.c: Removed in favour of hildon-gtk.[ch]
* src/hildon-helper.h
* src/hildon-helper.c (hildon_helper_set_theme_size): Renamed to
hildon_gtk_widget_set_theme_size and moved to hildon-gtk.h
* src/hildon-button.h
* src/hildon-button.c: Use the new hildon-gtk.[ch] functions.
2008-08-07 Alberto Garcia <agarcia@igalia.com>
* src/hildon-button.c (hildon_button_init)
(hildon_button_set_arrangement, hildon_button_construct_child):
Pack the image and the labels inside the same GtkAlignment so
gtk_button_set_alignment() can be used
2008-08-07 Alberto Garcia <agarcia@igalia.com>
* src/hildon-button.h
* src/hildon-button.c
(hildon_button_init, hildon_button_set_image)
(hildon_button_set_image_position)
(hildon_button_construct_child): New functions to add an image to
the HildonButton.
2008-08-07 Alberto Garcia <agarcia@igalia.com>
* src/hildon-date-button.c
* src/hildon-picker-button.c
* src/hildon-time-button.c
* src/hildon-button.c:
(hildon_button_class_init): "size-flags" renamed to "size"
(hildon_button_set_title): Hide the title label if set to NULL.
2008-08-07 Alberto Garcia <agarcia@igalia.com>
HildonButtonFlags split into HildonButtonArrangement (to set the
button layout) and HildonSizeType (which can be used for any
widget).
* src/hildon-button.h
* src/hildon-button.c
(hildon_button_class_init)
(hildon_button_set_arrangement)
(hildon_button_set_property): New "size-flags"
property. "arrangement-flags" renamed to "arrangement".
(hildon_button_new, hildon_button_new_with_text)
(hildon_button_new_full): Constructors updated to reflect type changes.
* src/hildon-helper.h
* src/hildon-helper.c (hildon_helper_set_theme_size): New function
to set the size of a widget.
* src/Makefile.am
* src/hildon.h
* src/hildon-button-helpers.c
* src/hildon-button-helpers.h: New hildon-button-helpers module.
* src/hildon-date-button.c
* src/hildon-date-button.h
* src/hildon-picker-button.c
* src/hildon-picker-button.h
* src/hildon-time-button.c
* src/hildon-time-button.h: Updated widgets to reflect
HildonButton API changes.
* examples/hildon-button-example.c
* examples/hildon-date-button-example.c
* examples/hildon-picker-button-example.c
* examples/hildon-picker-button-multicolumn-example.c
* examples/hildon-time-button-example.c
* examples/hildon-touch-selector-entry-example.c
* examples/hildon-touch-selector-example.c: Updated examples to
reflect HildonButton API changes.
2008-08-06 Claudio Saavedra <csaavedra@igalia.com>
* doc/hildon-docs.sgml:
* doc/hildon.types:
* examples/Makefile.am:
* examples/hildon-touch-selector-entry-example.c:
* src/Makefile.am:
* src/hildon-touch-selector-entry.c:
* src/hildon-touch-selector-entry.h:
* src/hildon.h:
Moved HildonTouchSelectorEntry from sandbox. Added its
documentation and examples.
2008-08-06 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-touch-selector.h:
* examples/hildon-picker-button-multicolumn-example.c:
(hildon_touch_selector_append_text_column): Add a gboolean
parameter to determine if text must be centered in the column.
* src/hildon-date-selector.c: (hildon_date_selector_init):
* src/hildon-time-selector.c: (hildon_time_selector_init):
* src/hildon-touch-selector.c: (hildon_touch_selector_new_text),
(create_touch_selector): Update widgets and example to reflect
the API change.
2008-08-06 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-touch-selector.c:
(hildon_touch_selector_set_active_iter): Set also the cursor in
the active row.
2008-08-06 Alberto Garcia <agarcia@igalia.com>
* doc/hildon-docs.sgml
* doc/hildon.types
* src/Makefile.am
* src/hildon-toggle-button.c
* src/hildon-toggle-button.h
* src/hildon.h: Removed HildonToggleButton widget, a derived
class is not necessary for this.
2008-08-06 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c,
(hildon_pannable_area_realize),
(hildon_pannable_area_size_allocate): Code refactoring, add tests
for negative sizes.
2008-08-05 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-picker-dialog.c: (hildon_picker_dialog_init): Make the
"done" button the default widget for the dialog.
2008-08-04 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-touch-selector.c:
(hildon_touch_selector_class_init),
(hildon_touch_selector_get_property),
(_hildon_touch_selector_set_model),
(_hildon_touch_selector_has_multiple_selection),
(hildon_touch_selector_has_multiple_selection):
Add a "has-multiple-selection" property with a virtual
has_multiple_selection() method to allow derived classes to
override the default value for it. See the method and property
documentation for details.
* src/hildon-touch-selector.h: Add the new API.
* src/hildon-picker-dialog.c: (requires_done_button): Call
hildon_touch_selector_has_multiple_selection() instead of
determining the need for a button itself.
2008-08-04 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-touch-selector.c: (hildon_touch_selector_class_init),
(_hildon_touch_selector_set_model),
(hildon_touch_selector_set_model): Move working code to
_hildon_touch_selector_set_mode(). Call the class method instead.
* src/hildon-touch-selector.h: Add (*set_model) to
HildonTouchSelectorClass.
Make hildon_touch_selector_set_model() a virtual method, so that
derived classes can extend it and do fancy stuff with the model.
2008-08-04 Claudio Saavedra <csaavedra@igalia.com>
* configure.ac: Set back the tarname in AC_INIT to hildon.
2008-08-04 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Release 2.1.3
* src/hildon-sound.c (hildon_play_system_sound): Use libcanberra
instead of libesd (NB#86876). Volume handling is still an open issue.
* configure.ac, src/Makefile.am: Replace esd with libcanberra. Some
cleanups.
2008-08-01 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-touch-selector.c: (hildon_touch_selector_init),
(hildon_touch_selector_append_column): Make the widget a GtkVBox
derived class to ease placement of an entry widget in
HildonTouchSelectorEntry. Added a private GtkHBox, packed at the
end, where the selector columns are packed now.
2008-08-01 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-picker-button.c: Removed the simple _text() API.
* src/hildon-picker-button.h: Likewise.
* src/hildon-touch-selector.h:
* src/hildon-touch-selector.c:
(hildon_touch_selector_new_text),
(hildon_touch_selector_append_text),
(hildon_touch_selector_prepend_text),
(hildon_touch_selector_insert_text):
Moved the simple _text() API from HildonPickerButton to
HildonTouchPicker, to provide better escalability and not to tie
that API to HildonPickerButton.
* examples/hildon-picker-button-example.c: (main): Example updated.
2008-07-31 Alberto Garcia <agarcia@igalia.com>
* src/hildon-button.c: Updated documentation.
* examples/hildon-button-example.c: Add the posibility to create
the buttons using horizontal layout for title and value.
2008-07-31 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu-private.h
* src/hildon-app-menu.c (hildon_app_menu_add_filter)
(hildon_app_menu_init, hildon_app_menu_finalize): Don't use a
GtkSizeGroup for the filters, use the 'homogeneous' property of
the box instead.
2008-07-31 Alberto Garcia <agarcia@igalia.com>
* examples/hildon-button-example.c: Updated example.
2008-07-30 Claudio Saavedra <csaavedra@igalia.com>
* doc/hildon-docs.sgml:
* doc/hildon.types:
Update documentation.
* examples/Makefile.am: Update renamed examples.
* examples/hildon-picker-button-multicolumn-example.c:
(create_touch_selector), (main): Update after the rename.
* examples/hildon-touch-picker-example.c: Removed.
* examples/hildon-touch-selector-example.c: (value_changed),
(create_selector), (get_visible_content), (main): Renamed from
hildon-touch-picker-example.c
* src/Makefile.am: Updated renamed files.
* src/hildon-date-button.c: (hildon_date_button_init),
(hildon_date_button_get_date), (hildon_date_button_set_date):
* src/hildon-date-selector.c: (hildon_date_selector_init),
(_custom_print_func), (_update_day_model),
(_manage_selector_change_cb),
(hildon_date_selector_select_current_date),
(hildon_date_selector_get_date), (hildon_date_selector_select_day):
* src/hildon-date-selector.h:
* src/hildon-picker-button.c: (hildon_picker_button_get_property),
(hildon_picker_button_set_property),
(hildon_picker_button_clicked), (hildon_picker_button_class_init),
(hildon_picker_button_init), (hildon_picker_button_new_text),
(hildon_picker_button_append_text),
(hildon_picker_button_prepend_text),
(hildon_picker_button_insert_text),
(hildon_picker_button_set_selector),
(hildon_picker_button_get_selector):
* src/hildon-picker-button.h:
* src/hildon-picker-dialog.c: (hildon_picker_dialog_class_init),
(hildon_picker_dialog_init), (_select_on_selector_changed_cb),
(_update_title_on_selector_changed_cb), (requires_done_button),
(_hildon_picker_dialog_set_selector),
(hildon_picker_dialog_set_selector),
(hildon_picker_dialog_get_selector):
* src/hildon-picker-dialog.h:
* src/hildon-time-button.c: (hildon_time_button_init),
(hildon_time_button_get_time), (hildon_time_button_set_time):
* src/hildon-time-selector.c: (hildon_time_selector_init),
(_custom_print_func), (_manage_ampm_selection_cb), (_set_pm),
(hildon_time_selector_set_time), (hildon_time_selector_get_time):
* src/hildon-time-selector.h:
* src/hildon.h:
Massive code updates after the rename.
* src/hildon-touch-picker.c: Removed.
* src/hildon-touch-picker.h: Removed.
* src/hildon-touch-selector.c: (hildon_touch_selector_class_init),
(hildon_touch_selector_init), (hildon_touch_selector_map),
(hildon_touch_selector_remove), (_default_print_func),
(_selection_changed_cb), (_create_new_column),
(hildon_touch_selector_new), (hildon_touch_selector_append_column),
(hildon_touch_selector_append_text_column),
(hildon_touch_selector_remove_column),
(hildon_touch_selector_set_column_attributes),
(hildon_touch_selector_insert_column),
(hildon_touch_selector_get_num_columns),
(hildon_touch_selector_get_column_selection_mode),
(hildon_touch_selector_set_column_selection_mode),
(hildon_touch_selector_set_print_func),
(hildon_touch_selector_get_print_func),
(hildon_touch_selector_get_active_iter),
(hildon_touch_selector_set_active_iter),
(hildon_touch_selector_get_selected_rows),
(hildon_touch_selector_get_model),
(hildon_touch_selector_set_model),
(hildon_touch_selector_get_current_text),
(_hildon_touch_selector_center_on_selected_items):
* src/hildon-touch-selector.h: Renamed from
hildon-touch-picker.[ch]
Rename HildonTouchPicker to HildonTouchSelector. Updated all the
references, code examples, and related documentation.
2008-07-30 Alberto Garcia <agarcia@igalia.com>
* doc/hildon-docs.sgml
* doc/hildon.types
* src/Makefile.am
* src/hildon-toggle-button.c
* src/hildon-toggle-button.h
* src/hildon.h: New HildonToggleButton widget.
2008-07-30 Alberto Garcia <agarcia@igalia.com>
* src/hildon-button.c: Add API documentation.
(hildon_button_set_size_groups): Check input parameters
2008-07-30 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c
(hildon_pannable_area_motion_notify_cb): Avoid the first jumpy
effect after reaching the movement thredshold. This way we start
using the distance after passing the thredshold.
2008-07-29 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-button.c: (hildon_button_set_property): Use the
appropriate g_value_get_flags() method.
2008-07-29 Claudio Saavedra <csaavedra@igalia.com>
* doc/hildon-docs.sgml:
* doc/hildon.types:
Add the touch pickers, picker dialogs, and picker button widgets
to the documentation.
2008-07-29 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-button.c: (hildon_button_set_property),
(hildon_button_class_init): Make "arrangement-flags" a proper
G_TYPE_FLAGS derived property.
2008-07-29 Claudio Saavedra <csaavedra@igalia.com>
* examples/Makefile.am: Add below examples.
* examples/hildon-date-button-example.c:
* examples/hildon-picker-button-example.c:
* examples/hildon-picker-button-multicolumn-example.c:
* examples/hildon-time-button-example.c:
* examples/hildon-touch-picker-example.c:
Add examples for the recently added touch pickers,
picker dialogs, and picker button widgets.
2008-07-29 Alberto Garcia <agarcia@igalia.com>
* src/hildon-button.c: Add some API documentation
2008-07-29 Alberto Garcia <agarcia@igalia.com>
* src/hildon-button.h
* src/hildon-button.c
(hildon_button_new)
(hildon_button_new_with_text): New constructor to create a button
with no text at all.
(hildon_button_init, hildon_button_set_arrangement)
(hildon_button_set_title, hildon_button_set_value)
(hildon_button_set_text)
(hildon_button_construct_child): Hide the value when it's not used
so the rest of the text is properly aligned.
Allow creating buttons with arbitrary widgets inside (not just
title/value labels).
* examples/hildon-button-example.c (vertical_buttons_window)
(horizontal_buttons_window): Update example to use new API.
2008-07-29 Claudio Saavedra <csaavedra@igalia.com>
* src/Makefile.am: Added HildonTimeButton.
* src/hildon-time-button.c: Added missing LGPL header.
* src/hildon-time-button.h: Added missing LGPL header.
* src/hildon.h: Add hildon-time-button.h
Copied HildonTimeButton from sandbox to trunk. Future work on this
widget must take place in trunk.
2008-07-29 Claudio Saavedra <csaavedra@igalia.com>
* src/Makefile.am: Added HildonDateButton.
* src/hildon-date-button.c: Update includes.
* src/hildon.h: Add hildon-date-button.h
Copied HildonDateButton from sandbox to trunk. Future work on this
widget must take place in trunk.
2008-07-29 Claudio Saavedra <csaavedra@igalia.com>
* src/Makefile.am: Added HildonPickerButton.
* src/hildon-picker-button.h: Update includes.
* src/hildon.h: Add hildon-picker-button.h
Copied HildonPickerButton from sandbox to trunk. Future work on
this widget must take place in trunk.
2008-07-29 Claudio Saavedra <csaavedra@igalia.com>
* src/Makefile.am: Added HildonPickerDialog.
* src/hildon-picker-dialog.c: Update includes.
* src/hildon.h: Add hildon-picker-dialog.h
Copied HildonPickerDialog from sandbox to trunk. Future work
on this widget must take place in trunk.
2008-07-29 Claudio Saavedra <csaavedra@igalia.com>
* src/Makefile.am: Added HildonTimeSelector.
* src/hildon.h: Add hildon-time-selector.h
Copied HildonTimeSelector widget from sandbox to trunk. Future
work on this widget must happen in trunk.
2008-07-29 Claudio Saavedra <csaavedra@igalia.com>
* src/Makefile.am: Added HildonDateSelector.
* src/hildon.h: Add hildon-date-selector.h
Copied HildonDateSelector widget from sandbox to trunk. Future
work on this widget must happen in trunk.
2008-07-29 Claudio Saavedra <csaavedra@igalia.com>
* src/Makefile.am: Added HildonTouchPicker.
* src/hildon-touch-picker.c: Update includes.
* src/hildon.h: Add hildon-touch-picker.h
Copied HildonTouchPicker widget from sandbox to trunk. Future work
on this widget must happen in trunk.
2008-07-29 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-pannable-area.c:
(hildon_pannable_area_motion_notify_cb): Fix a typo.
2008-07-29 Alberto Garcia <agarcia@igalia.com>
* examples/hildon-app-menu-example.c (main): Let the window
destroy the menu.
2008-07-29 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c
(hildon_pannable_area_class_init): Set the min value of the
overshoot properties to zero, which points out that not
overshooting allowed.
2008-07-29 Alejandro G. Castro <alex@igalia.com>
Modified the procedure to get the widget at a point inside the
pannable area when using the movement type signals. Now the user
has to call a function to get the child, that way we just
calculate the child in case the user really want to use it and not
all the time.
* src/hildon-marshalers.list: Modified the marshallers, now we do
not have the widget as a parameter.
* src/hildon-pannable-area.c
(hildon_pannable_area_motion_notify_cb),
(hildon_pannable_area_class_init),
(hildon_pannable_get_child_widget_at): Removed the widget
parameter from the signal callback. We have also refactored the
emission of the signals.
* src/hildon-pannable-area.h: Added a new method to the API to
calculate a widget at a point inside the pannable area,
hildon_pannable_get_child_widget_at.
* examples/hildon-pannable-area-example-4.c
(horizontal_movement): Modified the example to use the new API,
added condition to control which widget is under the event. This
way we can avoid scrolling laterally over other widgets.
2008-07-29 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c
(hildon_pannable_area_motion_notify_cb): Fixed bug handling the
modes, we stop getting the pointer events due to returning the
callback without properly calling the get pointer again. Fixed
also an error using the hscroll and vscroll.
2008-07-28 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu-private.h
* src/hildon-app-menu.c (hildon_app_menu_button_press)
(hildon_app_menu_button_release, hildon_app_menu_init)
(hildon_app_menu_class_init): Don't hide the menu on button
release if the user didn't press outside first.
* src/hildon-window.h
* src/hildon-window.c (hildon_window_toggle_menu)
(hildon_window_toggle_menu_real, hildon_window_class_init): Make
hildon_window_toggle_menu a virtual function for the stackable
window to override it.
* src/hildon-stackable-window.h
* src/hildon-stackable-window-private.h
* src/hildon-stackable-window.c
(hildon_stackable_window_realize)
(hildon_stackable_window_finalize)
(hildon_stackable_window_class_init)
(hildon_stackable_window_init)
(hildon_stackable_window_set_main_menu): New function to set the
app menu of a HildonStackableWindow.
* examples/hildon-app-menu-example.c: Remove the button to show
the app menu, now it'll be shown when clicking on the title bar
instead.
2008-07-22 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-button.c: (hildon_button_set_arrangement): Do not
set the widget name if the arrangement flags do not specify
a particular size.
2008-07-22 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-button.c: (hildon_button_set_property),
(hildon_button_class_init), (hildon_button_new_full),
(hildon_button_set_arrangement): Added "arrangement-flags"
property.
Make the HildonButtonFlags a construction-only property, to allow
subclasses to set them properly.
2008-07-21 Tim Janik <timj@imendio.com>
* src/hildon-code-dialog.c (hildon_code_dialog_backspace): fixed up
insertion position after backspace, so additional digits are appended,
fixes Bug #85874.
2008-07-17 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c,
(hildon_pannable_area_get_topmost): Cleaned the code, removed the
TODO list, it was complete and removed the g_debug and g_print
lines.
2008-07-17 Alejandro G. Castro <alex@igalia.com>
Added the movement modes to the hildon-pannable-area, with this
modes the developers can control in which directions the widget
can scroll. They can also connect to signals in order to do
something when that happens, allowing applications scroll. There
is an example uploaded showing how to use it.
* examples/Makefile.am:
* examples/hildon-pannable-area-example-4.c: Added this example of
an application using the modes.
* src/hildon-marshalers.list: Added a new marshaller for the new
signals.
* src/hildon-pannable-area.h: Added new enumerations and flags in
order to control the movement modes and the new signals to warn
about the movements in the area.
* src/hildon-pannable-area.c:
(hildon_pannable_axis_scroll),
(hildon_pannable_area_scroll),
(hildon_pannable_area_motion_notify_cb),
(hildon_pannable_area_get_property),
(hildon_pannable_area_set_property),
(hildon_pannable_area_map),
(hildon_pannable_area_class_init),
(hildon_pannable_area_init),
(hildon_pannable_area_jump_to): Added the modes to control the
movement in the widget. We have added properties to control it,
signals to warn about the movements and refactored some code.
2008-07-15 Alejandro G. Castro <alex@igalia.com>
Changes required in order to allow vfast_factor set to zero to
work properly.
* src/hildon-pannable-area.c:
(hildon_pannable_area_button_press_cb): Changed the condition, it
is required for not allowing click when vfast_factor is zero.
(hildon_pannable_area_timeout): Initialized velocity variables
when we stop moving, it was less than 1 but not zero and we need
to check zero in some situations.
(hildon_pannable_area_class_init): Changed the default value of
the speed factor, now the button_press is just sent in case the
speed is 2 per cent of the max speed.
(hildon_pannable_area_init): Initialization with 0.
2008-07-04 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c,
(hildon_pannable_area_get_topmost): replaced
gdk_window_get_children with gdk_window_peek_children, this way we
do not have to free the list because it is not a copy.
(hildon_pannable_axis_scroll),
(hildon_pannable_area_scroll),
(hildon_pannable_area_timeout),
(hildon_pannable_area_motion_notify_cb): Code refactoring, removed
two parameters that were only used inside the
hildon_pannable_area_scroll function.
* examples/hildon-pannable-area-example.c,
(get_sawtooth_label): Fixed small memory leak.
2008-07-03 Alejandro G. Castro <alex@igalia.com>
More checks for the case where the overshoot is bigger than the
size of the widget.
* src/hildon-pannable-area.c:
(hildon_pannable_draw_vscroll),
(hildon_pannable_draw_hscroll): with this new calculation we avoid
to draw the slider of the scrollbar under the other scrollbar.
(hildon_pannable_area_expose_event): added new checks to control
the drawing of the overshooting area rectangle, in case it is too
big for the area of the widget.
(hildon_pannable_area_size_allocate): add more checks to avoid
setting a position to the child widget outside the area.
2008-07-03 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c
(hildon_pannable_area_size_allocate): Added conditions to control
when overshooting is bigger than the allocated space for the
children, this avoids negative allocations.
2008-07-02 Alberto Garcia <agarcia@igalia.com>
* doc/hildon-docs.sgml
* doc/hildon.types
* examples/Makefile.am
* examples/hildon-button-example.c
* src/Makefile.am
* src/hildon-button.c
* src/hildon-button.h
* src/hildon.h: Initial version of the new HildonButton widget,
with examples.
2008-07-02 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-pannable-area.c:
(hildon_pannable_area_button_press_cb),
(hildon_pannable_area_refresh), (hildon_pannable_area_scroll),
(hildon_pannable_area_motion_notify_cb),
(hildon_pannable_area_button_release_cb),
(hildon_pannable_area_expose_event), (hildon_pannable_area_remove),
(hildon_pannable_area_jump_to_child):
Use gtk_bin_get_child() instead of accessing GtkBin.child directly.
2008-07-01 Alberto Garcia <agarcia@igalia.com>
* examples/Makefile.am
* examples/hildon-pannable-area-touch-grid-example.c
* examples/hildon-pannable-area-touch-list-example.c: Examples of
the Hildon Touch List and Hildon Touch Grid using the
HildonPannableArea widget.
2008-06-27 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c,
(hildon_pannable_area_button_press_cb),
(hildon_pannable_area_refresh),
(hildon_pannable_area_scroll),
(hildon_pannable_area_motion_notify_cb),
(hildon_pannable_area_button_release_cb),
(hildon_pannable_area_expose_event),
(hildon_pannable_area_add),
(hildon_pannable_area_remove),
(hildon_pannable_area_realize),
(hildon_pannable_area_size_allocate),
(hildon_pannable_area_class_init),
(hildon_pannable_area_init),
(hildon_pannable_area_scroll_to_child),
(hildon_pannable_area_jump_to_child): Fixed the problem of
removing the child from the GtkBin, we have rearranged the widget
hierarchy, now there is no GtkAlignment which was not doing
anything interesting but breaking some of the assumptions of
GtkContainer. Now developers if they want to add a GtkAlignment
they could, but it is not inside the area.
We had to review the whole allocation/expose process, now it is
improved and we save at least three signals which would be saving
some time when rendering the widget. The allocation of the
scrollbars is now made in the allocate method as usual.
We have also added some conditions in order to control when there
is no child of the pannable area. Maybe we will need more work
here.
2008-06-27 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c,
(hildon_pannable_area_dispose): Released the fade-out timeout when
disposing the widget.
2008-06-27 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c: Fixed problem when overshoot_max is
zero, we are going to use that property in order to deactivate the
overshooting
(hildon_pannable_axis_scroll),
(hildon_pannable_area_size_allocate): Added conditions to control
when overshoot_max is zero. Moved the gtk_adjustment_set_value
call, now it is called in all situations and we can remove calls
in the allocate method.
(hildon_pannable_area_map): Control the situation when
overshoot_max is zero, we do not need the timeout.
(hildon_pannable_area_class_init): Added documentation in order to
point out that setting zero to overshoot_max means deactivate
overshooting.
NOTE: removed trailing whitespaces from my previous comments of
the Changelog.
2008-06-26 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-pannable-area.c
(hildon_pannable_area_get_property),
(hildon_pannable_area_set_property),
(hildon_pannable_area_map),
(hildon_pannable_area_class_init),
(hildon_pannable_area_init): Add a boolean "initial-hint" property
to cause the widget give a hint about its panning abilities upon
realization.
2008-06-26 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-pannable-area.c: Several documentation improvements.
2008-06-26 Alberto Garcia <agarcia@igalia.com>
* src/hildon-program.c
* src/hildon-stackable-window.c: Update documentation.
2008-06-26 Alberto Garcia <agarcia@igalia.com>
* src/hildon-stackable-window.c (get_previous_window_if_last):
Renamed get_last_window()
(hildon_stackable_window_map, hildon_stackable_window_unmap)
(hildon_stackable_window_unset_program):
Simplified code.
(get_previous_window_if_last):
Detect if the window hasn't been added to a HildonProgram.
2008-06-26 Alejandro G. Castro <alex@igalia.com>
contributed and reviewed by: Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-pannable-area.c
(hildon_pannable_area_button_press_cb),
(hildon_pannable_axis_scroll),
(hildon_pannable_area_scroll),
(hildon_pannable_area_timeout),
(hildon_pannable_calculate_vel_factor),
(hildon_pannable_area_get_property),
(hildon_pannable_area_set_property),
(hildon_pannable_area_class_init),
(hildon_pannable_area_init),
(hildon_pannable_area_scroll_to),
(hildon_pannable_area_jump_to),
(hildon_pannable_area_scroll_to_child),
(hildon_pannable_area_jump_to_child):
* src/hildon-pannable-area.h: Added the new API functions:
hildon_pannable_area_scroll_to, hildon_pannable_area_jump_to,
hildon_pannable_area_scroll_to_child,
hildon_pannable_area_jump_to_child
* examples/Makefile.am
* examples/hildon-pannable-area-example-2.c
* examples/hildon-pannable-area-example-3.c: Added these two new
examples in order to test and show how the new APIs work.
2008-06-25 Alberto Garcia <agarcia@igalia.com>
* examples/hildon-stackable-window-example.c (new_window):
* src/Makefile.am (noinst_HEADERS):
* src/hildon-program.c (hildon_program_go_to_root_window):
* src/hildon-program.h:
* src/hildon-stackable-window-private.h:
* src/hildon-stackable-window.c:
* src/hildon-stackable-window.h:
Create hildon-stackable-window-private.h
Move hildon_stackable_window_go_to_root_window() to HildonProgram
* examples/hildon-app-menu-example.c (create_menu):
* examples/hildon-hvolumebar-insensitive-example.c (main):
* examples/hildon-hvolumebar-timer-example.c (on_idle):
* examples/hildon-toolbar-seekbar-example.c (main):
* src/hildon-app-menu.c (hildon_app_menu_add_filter):
* src/hildon-banner.c (hildon_banner_set_property):
* src/hildon-dialog.c (hildon_dialog_new_with_buttons):
Fix compilation warnings
* src/hildon-window.c:
Fix typo in doc
2008-06-24 Alberto Garcia <agarcia@igalia.com>
* src/hildon-stackable-window.c
(hildon_stackable_window_unset_program):
Calculate correctly whether to show the previous window if the
last one is removed from the stack.
(hildon_stackable_window_go_to_root_window):
Send delete events starting from the topmost window.
Stop if one of the windows is not destroyed.
Update doc.
(hildon_stackable_window_delete_event)
(hildon_stackable_window_class_init):
Ignore the delete event if the window is not the topmost one.
2008-06-24 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c
(hildon_pannable_area_expose_event): Fixed a problem when
selecting the background color of the scrollbars.
2008-06-23 Alberto Garcia <agarcia@igalia.com>
* examples/hildon-stackable-window-example.c
* src/hildon-stackable-window.c
* src/hildon-stackable-window.h
hildon_stackable_window_go_home() renamed to
hildon_stackable_window_go_to_root_window()
Send delete events to windows rather than closing them with
gtk_widget_destroy()
2008-06-19 Alberto Garcia <agarcia@igalia.com>
* src/hildon-pannable-area.c
(hildon_pannable_area_button_release_cb): Fix overshooting in
accel mode.
2008-06-19 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-pannable-area.c
(hildon_pannable_area_init): Initially show the scroll indicators.
(hildon_pannable_area_map): Fade the scroll indicators out upon mapping.
Add initial effect showing the widget is pannable.
2008-06-19 Alberto Garcia <agarcia@igalia.com>
* src/hildon-pannable-area.c
(hildon_pannable_area_class_init)
(hildon_pannable_area_set_property)
(hildon_pannable_area_get_property)
(hildon_pannable_area_button_press_cb):
New 'velocity_fast_factor' property to decide which velocity is
considered fast.
2008-06-19 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-pannable-area.c
(hildon_pannable_draw_hscroll)
(hildon_pannable_draw_vscroll):
Use float variables to calculate the size of the scrollbars to
avoid error propagation and resizing during scrolling.
2008-06-19 Alberto Garcia <agarcia@igalia.com>
* src/hildon-pannable-area.c
(hildon_pannable_draw_vscroll)
(hildon_pannable_draw_hscroll):
Define a minimum size for the scroll bars
* src/hildon-stackable-window.c
(hildon_stackable_window_go_home): Fix compilation warning
(get_last_window): Minor optimizations
(hildon_stackable_window_class_init): Fix initialization of
private structure.
2008-06-18 Alberto Garcia <agarcia@igalia.com>
* src/hildon-stackable-window.c: Fixed typos in doc
2008-06-18 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-pannable-area.c
(hildon_pannable_area_scroll):
Calculate here whether we need to scroll instead of using the booleans
that tell us whether to /draw/ the scrolling bars.
2008-06-17 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-app-menu.h
Update API.
* src/hildon-app-menu.c
(hildon_app_menu_init, hildon_app_menu_class_init): Remove
multiple filter groups related code and API. Now we support only
one filter group.
* examples/hildon-app-menu-example.c:
(create_menu):
Update to reflect API changes.
2008-06-16 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-stackable-window.c
(hildon_stackable_window_class_init):
Add hildon_stackable_window_realize.
(hildon_stackable_window_realize):
Append the window type _HILDON_WM_WINDOW_TYPE_STACKABLE to
the _NET_WM_WINDOW_TYPE hint. Window managers should use this type
to apply theming and behavior specific to HildonStackableWindow
windows.
2008-06-12 Alberto Garcia <agarcia@igalia.com>
* src/hildon-note.c (hildon_note_button_release):
Close information notes also when tapping on them
2008-06-12 Alejandro G. Castro <alex@igalia.com>
Added BOUNCE_STEPS define to control the overshoot effect. Removed
ELASTICITY, refactor and review, fix some issues with drawing
scrollbars.
* src/hildon-pannable-area.c:
(hildon_pannable_area_button_press_cb): removed the conditions to
avoid clicks when overshooting. It is not required
(hildon_pannable_axis_scroll): Added BOUNCE_STEPS
define. Refatored and reviewed the code, now we do not need to
manage velocity in motion_notify.
(hildon_pannable_area_motion_notify_cb): We have moved the code
that controls the area_scroll to the axis_scroll function and get
rid of duplicated code.
(hildon_pannable_area_scroll): Remove the ELASTICITY define.
(hildon_pannable_area_button_release_cb): Added BOUNCE_STEPS.
(hildon_pannable_draw_vscroll),
(hildon_pannable_draw_hscroll): Fixed the problems with the
scrollbar drawing, now we do not use two surfaces, it is easier
and saves resources.
(hildon_pannable_area_get_property): Style modification.
(hildon_pannable_area_class_init): Changed some default values.
2008-06-12 Claudio Saavedra <csaavedra@igalia.com>
* src/hildon-stackable-window.c: Fix some typos in the
documentation.
2008-06-12 Alberto Garcia <agarcia@igalia.com>
* src/hildon-dialog.c:
Change indentation style
* src/hildon-note.c
(hildon_note_button_release):
Use root coordinates to check if the release event happened
outside the widget.
* src/hildon-app-menu.c
(hildon_app_menu_button_release):
Remove unnecessary check
* examples/hildon-app-menu-example.c
(button_clicked):
Add cast to fix warning
* src/hildon-app-menu.c
(hildon_app_menu_class_init):
New inner-border style property.
Set all default spacings to 16
(hildon_app_menu_init):
Use vertical-spacing to set the space between filter buttons and
regular menu buttons.
Set the default container border using the inner-border value.
* examples/hildon-app-menu-example.c
(create_menu):
Don't set the menu border explicitly, now we have the inner-border
style property for that.
2008-06-11 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu.c (hildon_app_menu_init):
Make the window modal
* src/hildon-note.c (hildon_note_map)
* src/hildon-app-menu.c (hildon_app_menu_map):
Destroy the grab window if we're unable to grab the pointer
* src/hildon-app-menu-private.h
* src/hildon-app-menu.c
(hildon_app_menu_init, hildon_app_menu_finalize)
(hildon_app_menu_map, hildon_app_menu_unmap)
(hildon_app_menu_button_release)
(grab_transfer_window_get):
Bring back the grab window
(hildon_app_menu_realize):
Decorate the window, set WM hint for Matchbox
* src/hildon-note.c (hildon_note_realize):
* src/hildon-banner.c (hildon_banner_realize):
Add WM hints for Matchbox
2008-06-10 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu-private.h
* src/hildon-app-menu.c
(hildon_app_menu_init, hildon_app_menu_finalize)
(hildon_app_menu_map, hildon_app_menu_unmap)
(hildon_app_menu_button_release):
Remove the grab window, it's not needed anymore
* src/hildon-program.c
Fixed typo in documentation
* src/hildon-app-menu.h
* src/hildon-app-menu.c
* examples/hildon-app-menu-example.c
Remove hildon_app_menu_popup(), use gtk_widget_show() instead
2008-06-09 Alberto Garcia <agarcia@igalia.com>
* src/hildon-note.c
Added new transfer_window and close_if_pressed_outside private
attributes.
(hildon_note_rebuild):
Don't add a cancel button to the information note. It will be
closed when tapping outside
Remove the comment about the OK button in the documentation
(hildon_note_realize):
Set the notification type hint
(hildon_note_map, hildon_note_unmap, grab_transfer_window_get):
Grab/ungrab pointer and keyboard if the note has to be closed when
tapping outside
(hildon_note_button_release):
Close the note when tapping outside (if applicable)
* src/hildon-app-menu.c
Grab/ungrab pointer and keyboard on map/unmap
(hildon_app_menu_button_release, hildon_app_menu_class_init):
Close the menu on button release, not button press
* src/hildon-banner.c
(hildon_banner_set_property)
(hildon_banner_check_position):
Make the banner use the full width of the screen
(hildon_banner_show_information)
(hildon_banner_show_information_with_markup):
Don't display an icon by default
2008-06-09 Alejandro G. Castro <alex@igalia.com>
Added fading scrollbars and adapted all the overshooting code to
horizontal scrolling. We have also fixed bugs with overshooting
and current fading implementation.
* src/hildon-pannable-area.c
(hildon_pannable_area_scroll_indicator_fade): Time out function
used to change the transparency of the scrollbars.
(hildon_pannable_area_button_press_cb): Added horizontal overshot
control and fixed a problem with fading, we now remove the fade
timeout before adding a new one.
(hildon_pannable_axis_scroll):
(hildon_pannable_area_scroll):
(hildon_pannable_area_timeout): Added this functions so we can use
the scroll code both for vertical and horizontal.
(hildon_pannable_area_motion_notify_cb):
(hildon_pannable_area_button_release_cb): Added the horizontal
scrolling control, fixed a problem with the overshooting timeout.
(rgb_from_gdkcolor): Added this function, it is used in the cairo
painting of the scrolls.
(hildon_pannable_draw_vscroll):
(hildon_pannable_draw_hscroll):
(hildon_pannable_area_expose_event):
Draw both scrollbars and rectangles in the overshooting area.
(hildon_pannable_area_get_property):
(hildon_pannable_area_set_property):
Modified the overshoot property to overshoot_max
(hildon_pannable_area_map):
Replaced the comments symbols.
(hildon_pannable_area_size_allocate):
(hildon_pannable_area_class_init):
(hildon_pannable_area_init): Added horizontal scroll, fading
effect properties, fixed a problem when overshooting in the bottom
of the widget.
* examples/hildon-pannable-area-example.c:
(get_sawtooth_label): Now we use smaller sawtooths, the effect
looks better in the example.
2008-06-03 Alberto Garcia <agarcia@igalia.com>
* src/hildon-window.c
* src/hildon-window.h
(hildon_window_class_init)
(hildon_window_unset_program)
(hildon_window_unset_program_real):
Make unset_program a virtual function
* src/hildon-stackable-window.c
* src/hildon-stackable-window.h
Added hildon_stackable_window_go_home()
* examples/Makefile.am
* examples/hildon-stackable-window-example.c
HildonStackableWindow example
2008-06-03 Alejandro G. Castro <alex@igalia.com>
* hildon-pannable-area.c: Added the overshoot property and removed
the OVERSHOOT define. Fixed an indent style error.
(hildon_pannable_area_motion_notify_cb):
(hildon_pannable_area_get_property):
(hildon_pannable_area_set_property): Add overshoot property.
(hildon_pannable_area_scroll): replaced OVERSHOOT define with
overshoot property.
(hildon_pannable_area_class_init): Installed the new property.
* hildon-pannable-area-example.c: Added a sawtooth function, this
way it is easier to check the movement in the pannable.
(get_sawtooth_label): Added this function.
(main): Now we get the labels from the new get_sawtooth_label
function.
2008-05-26 Alberto Garcia <agarcia@igalia.com>
* src/hildon-app-menu.h
* src/hildon-app-menu.c
Renamed API variables for consistency
(hildon_app_menu_popup): Use also the default window size to
decide where to place the menu
(hildon_app_menu_init, hildon_app_menu_class_init): New
external-border style property
2008-05-26 Michael Natterer <mitch@imendio.com>
* src/hildon-time-editor.c (hildon_time_editor_class_init): The
widget_class->tap_and_hold_setup signal slot doesn't exist any
longer, stop overriding it.
(hildon_time_editor_init): g_signal_connect() to the
tap-and-hold-setup signal instead.
(hildon_time_editor_entry_keypress): add cast to fix warning.
2008-05-23 Alberto Garcia <agarcia@igalia.com>
* doc/hildon-docs.sgml
* doc/hildon.types
* examples/Makefile.am
* examples/hildon-app-menu-example.c
* src/Makefile.am
* src/hildon-app-menu-private.h
* src/hildon-app-menu.c
* src/hildon-app-menu.h
* src/hildon.h
New HildonAppMenu widget
2008-05-21 Alejandro G. Castro <alex@igalia.com>
Rearranged the inheritance of the pannable area, now it inherits
from GtkBin. This will allow us to control the event_window and
the allocation process of the widget, required for some effects.
* src/hildon-pannable-area.h: Replaced GtkEventBox structures with
GtkBin structures. * src/hildon-pannable-area.c: Added the
event_window variable.
(hildon_pannable_area_button_press_cb):
(hildon_pannable_area_button_release_cb):
(hildon_pannable_area_motion_notify_cb):
Changed the signature of the method, now we override the event
callback instead of connecting to the signal.
(hildon_pannable_area_realize):
(hildon_pannable_area_unrealize):
(hildon_pannable_area_map):
(hildon_pannable_area_unmap):
(hildon_pannable_area_size_allocate):
Added functions to control the widget construction. We add a
INPUT_ONLY window and we put it over the widgets inside the
container, this event_window handles the events.
(hildon_pannable_area_class_init):
Replaced the signal connections with overrides of the event
callbacks.
2008-05-20 Alejandro G. Castro <alex@igalia.com>
Bouncing effect added when touching the borders, you can change
the elasticity of the border changing the ELASTICITY define.
* src/hildon-pannable-area.c: Added ELASTICITY define.
(hildon_pannable_area_timeout): Added inverse velocity when
touching the border of the child widget, that causes a bounce.
2008-05-20 Alejandro G. Castro <alex@igalia.com>
Improved performance, we now do not go to the X server in order to
get the list of window children. Apparently the effect is the
same, we have to be careful and check if this breaks something in
any corner case.
* src/hildon-pannable-area.c:
(get_ordered_children): Removed this function.
(hildon_pannable_area_get_topmost): Replaced the ad-hoc search of
the children windows function with gdk_window_get_children.
2008-05-20 Alejandro G. Castro <alex@igalia.com>
* src/hildon-pannable-area.c:
(hildon_pannable_area_dispose): Fixed a crash when closing the
window and kinetics is activated.
2008-05-19 Alberto Garcia <agarcia@igalia.com>
* src/hildon-pannable-area.h
* src/hildon-pannable-area.c
Changed indentation style to meet the one used in Hildon
2008-05-19 Alejandro G. Castro <alex@igalia.com>
Reviewed the interaction of the AUTO mode, now we use the time
attribute of the events and calculate the velocity in the motion,
doing a gimp like calculation. The velocity is calculated in each
motion event using the last velocity and the current one, the
SMOOTH_FACTOR controls the percentage of the new velocity we use.
* src/hildon-pannable-area.c: Replaced the time based algorithm
for the AUTO mode.
(hildon_pannable_area_motion_notify_cb): now we do not launch the
timeout for the AUTO mode when we are still moving the cursor. We
added also the velocity calculation in this function.
(hildon_pannable_area_button_release_cb): launch the timeout in
case we are in AUTO mode. There are still some constants here that
come from the old implementation that should be reviewed and
handled properly.
2008-05-15 Alberto Garcia <agarcia@igalia.com>
* doc/hildon-docs.sgml
* doc/hildon.types
* src/Makefile.am
* src/hildon-stackable-window.c
* src/hildon-stackable-window.h
* src/hildon.h
New HildonStackableWindow widget
* examples/hildon-dialog-example.c
* examples/hildon-pannable-area-example.c
Updated copyright
2008-05-14 Alberto Garcia <agarcia@igalia.com>
* src/hildon-dialog.c
(hildon_dialog_new_with_buttons): New constructor.
* examples/hildon-dialog-example.c
(main): Update the example to use the new
hildon_dialog_new_with_buttons().
* examples/hildon-pannable-area-example.c
(main): Update example.
2008-05-13 Alberto Garcia <agarcia@igalia.com>
* doc/hildon-docs.sgml
* doc/hildon.types
Added HildonPannableArea to the documentation.
2008-05-13 Victor Jaquez <vjaquez@igalia.com>
* doc/visual_index.xml
Fix reference to HildonLoginDialog in documentation
* doc/hildon-docs.sgml
* doc/hildon.types
* examples/Makefile.am
* examples/hildon-dialog-example.c
* src/Makefile.am
* src/hildon-dialog.c
* src/hildon-dialog.h
* src/hildon.h
New HildonDialog widget.
2008-05-09 Alberto Garcia <agarcia@igalia.com>
* src/hildon-pannable-area.c
Merge latest changes (r4318, r4342) from libmokoui trunk
2008-05-09 Alberto Garcia <agarcia@igalia.com>
* examples/Makefile.am
* examples/hildon-pannable-area-example.c
* src/Makefile.am
* src/hildon-pannable-area.c
* src/hildon-pannable-area.h
* src/hildon.h
New HildonPannableArea widget.
2008-04-15 18:05:19 <timj@imendio.com>
* src/hildon-banner.c: revert the recent change, that introduced
gtk_window_present() calls. this reopens:
Bug 78481 - [freetest] information banners are hidden under browser menu
But resolves another variant of:
Bug 83953 - Lock dialog is not visible when device is locked for the first time after flash
2008-04-15 13:21:13 <timj@imendio.com>
* src/hildon-banner.c: refetch layout pointer after GtkLabel possibly
recreated its layout, spotted by Kris. this fixes all remaining
artefacts and stability issues with the banner code. in particular:
Bug 83953 - Lock dialog is not visible when device is locked for the first time after flash
2008-04-14 16:52:59 <timj@imendio.com>
* src/hildon-banner.c: guard force_to_wrap_truncated() against
operating on unrealized widgets, fixes:
Bug 83953 - Lock dialog is not visible when device is locked for the first time after flash
* src/hildon-banner-private.h: coalesce boolean fields into bitfield.
2008-04-09 Kristian Rietveld <kris@imendio.com>
Fixes: NB#77775: Media Player, Save Now playing list, too long name
makes banner disappear.
Fixes: NB#79182: info banner flickering with certain message lengts.
* src/hildon-banner.c (hildon_banner_constructor),
(hildon_banner_init), (hildon_banner_set_text),
(hildon_banner_set_markup): call hildon_banner_reset_wrap_state(),
(hildon_banner_reset_wrap_state): new function: reset wrap flags to
FALSE, reset size requests of label and banner,
(force_to_wrap_truncated): when the text is too wide, always enforce
the maximum possible width instead of recalculating it from the
layout; enforce the maximum banner height of 3 lines,
(hildon_banner_init): set WORD_CHAR wrapping, this will result in
nicer wrapping and no truncated chars if space gets tight.
* src/hildon-banner-private.h: add has_been_wrapped and
has_been_truncated fields.
2008-04-07 Sven Herzberg <sven@imendio.com>
Fixes: NB#78896: libhildon code inspection/coverity: uninitialised
local values in hildon_date_editor_size_allocate
* src/hildon-date-editor.c: moved the real allocation code into the
if() branch
2008-04-07 Sven Herzberg <sven@imendio.com>
Prepares: NB#78896: libhildon code inspection/coverity: uninitialised
local values in hildon_date_editor_size_allocate
* src/hildon-date-editor.c: merged the two if() branches together
2008-04-07 Sven Herzberg <sven@imendio.com>
Prepares: NB#78896: libhildon code inspection/coverity: uninitialised
local values in hildon_date_editor_size_allocate
* src/hildon-date-editor.c: changed the arguments of the if()
conditions
2008-04-07 Sven Herzberg <sven@imendio.com>
Prepares: NB#78896: libhildon code inspection/coverity: uninitialised
local values in hildon_date_editor_size_allocate
* src/hildon-date-editor.c: split the calculation of the allocation
from the real allocation
2008-03-27 Michael Natterer <mitch@imendio.com>
Fixes: NB#81696: The passcode is not overwritten even after
selecting
* src/hildon-code-dialog.c
(hildon_code_dialog_button_clicked)
(hildon_code_dialog_im_commit): don't use gtk_entry_append_text()
because that doesn't overwrite selected text. Instead, emit the
"commit" signal on the entry's im_context so the entry's normal
insert logic is triggered. Set the cursor to the end of the entry
after each insert operation so that we *only* insert in the middle
of the text if something was selected.
2008-03-27 Michael Natterer <mitch@imendio.com>
Enable fixing: NB#79916 and NB#79918: The help topic for Color
selector cannot be opened
* src/hildon-color-button.c: add signal "setup-dialog" and emit it
when the popup color selector is created. Please connect to this
signal in order to set the dialog's help ID.
2008-03-25 Sven Herzberg <sven@imendio.com>
Fixes: MB#1212: Hide info banners (infoprints) on click
* src/hildon-banner.c: (simulate_close), (hildon_banner_timeout):
extracted the close event simulation into an extra function
(hildon_banner_button_press_event): simulate a close event and destroy
the widget if the event wasn't handled
(hildon_banner_class_init): added the button_press_event handler
(hildon_banner_init): added button-press events to the widget
2008-03-25 Sven Herzberg <sven@imendio.com>
Fixes: MB:#924: Hildon widgets doesn't support RTL mode
Patch from: Mohammad Anwari <mdamt@maemo.org>
* src/hildon-banner.c: let the HildonBanners pop up on the left side
instead of the right in RTL mode
* src/hildon-bread-crumb-trail.c: mirror the appearance of the
breadcrumb button list in RTL mode
* src/hildon-caption.c: mirror the appearance of the caption widget in
RTL mode
* src/hildon-date-editor.c: mirror appearance of the date editor in
RTL mode
* src/hildon-time-editor.c: mirror appearance of the time editor in
RTL mode
* src/hildon-window.c: fix the position of the popup in RTL mode
2008-03-25 Sven Herzberg <sven@imendio.com>
Amendment to the fix of NB#22072. Fix compilation.
* src/hildon-banner.c: (hildon_banner_timeout): fix compilation
2008-03-19 Sven Herzberg <sven@imendio.com>
Fixes: NB#22072: Revisiting fix for "Implement robust timer handling
in Info Banner" bug
* src/hildon-banner.c: (hildon_banner_timeout): reset the current
timeout id properly when the timeout will disappear this leaves no
artifacts around in the destroy(); there will only be the timeout
created by hildon_banner_ensure_timeout() and adding a new timeout
will also work if the timeout gets removed because the timeout_handler
returned FALSE
2008-03-19 Michael Natterer <mitch@imendio.com>
Fixes: NB#79791: Cannot set focus to Master volume using stylus
* src/hildon-volumebar.c
* src/hildon-vvolumebar.c
* src/hildon-hvolumebar.c (init): remove UNSET_FLAGS(CAN_FOCUS) so
the widget becomes focussable at all.
* src/hildon-volumebar.c: implement GtkWidget::grab_focus() and
set the focus to wither the mute button or the volumebar.
Remove own "can-focus" property and instead listen to
notify::can-focus in order to update the widget's state.
Implement GtkWidget::focus() and make sure we can also *leave* the
widget, not only enter it, depending on volumebar orientation and
requested focus direction.
Clean up set_mute() to cooperate nicely with all the above.
2008-03-04 Michael Natterer <mitch@imendio.com>
Fixes: NB#78481: information banners are hidden under browser menu
* src/hildon-banner.c: call gtk_window_present() on the banners so
they are risen if they are already visible.
2008-03-03 Sven Herzberg <sven@imendio.com>
Fixes: MB#1220: HildonWindow should take GtkMenu accel_group into account
* examples/hildon-window-menu-example.c: (main): extended the window
menu example to serve as a testcase for automatically added
accelerator groups, too
* src/hildon-window.c: (hildon_window_add_accel_group),
(hildon_window_set_menu): added patch by Tommi Komulainen
2008-03-03 Sven Herzberg <sven@imendio.com>
Fixes: MB#1276: wrong allocators used in hildon_window_get_borders
* src/hildon-window.c: (hildon_window_get_borders): don't imply any
knowledge about the border allocators used within GTK+
2008-02-26 Sven Herzberg <sven@imendio.com>
Fixes: MB#2981: Build with asserts broken
* src/hildon-date-editor.c,
* src/hildon-number-editor.c,
* src/hildon-time-editor.c,
* src/hildon-weekday-picker.c: replace HILDON_IS_EDITOR_EDITOR by a
the proper GType instance check
2008-02-25 Sven Herzberg <sven@imendio.com>
Fixed: MB#1221: HildonWindow shouldn't call show_all for GtkMenu
* doc/Makefile.am: tell gtk-doc about HILDON_DISABLE_DEPRECATED
* examples/hildon-window-menu-example.c: (main): explicitly show
the menu item
* src/hildon-window.c:
(hildon_window_set_main_menu): moved most of the code from set_menu()
to this place; skipped the call to gtk_widget_show_all(); also didn't
introduce gtk_widget_show() as gtk_menu_popup() will call that anyways
(hildon_window_set_menu): removed most of the code, just keep the
questionable gtk_widget_show_all()
* src/hildon-window.h: added the new function and deprecate the old
one
2008-01-10 Xan Lopez <xan.lopez@nokia.com>
[2.0.1-1 release]
* NEWS:
* configure.ac:
* debian/changelog: Updating.
2008-01-10 Xan Lopez <xan.lopez@nokia.com>
* configure.ac:
* pkgconfig/Makefile.am:
* pkgconfig/hildon.pc.in:
* src/Makefile.am:
Do not use PACKAGE_VERSION_MAJOR as the API revision,
use newly created API_MAJOR_VERSION.
2008-01-09 Xan Lopez <xan.lopez@nokia.com>
[2.0.0-1 release]
* NEWS:
* configure.ac:
* debian/changelog: Updating.
2008-01-09 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-color-chooser.c (hildon_color_chooser_class_init):
Add outer_border style property, we use it but don't define it (!).
Fixes NB#75310
2007-12-21 Xan Lopez <xan.lopez@nokia.com>
* examples/hildon-bread-crumb-trail-example.c (main):
Add clear button.
* src/hildon-bread-crumb-trail.c (hildon_bread_crumb_trail_remove):
Fix logic for the bread crumb trail node removal.
Fixes: NB#78616
2007-12-14 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[1.99.1-1 release]
* NEWS:
* configure.ac:
* debian/changelog: Updating.
2007-11-08 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
Patch by Alejandro to get/set passwords dialogs accesibility.
* hildon-1/src/hildon-get-password-dialog.c:
* hildon-1/src/hildon-set-password-dialog.c:
Set atk_set_name to the passwd entries in order to allow
accessibility by name on this entries.
2007-10-11 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[1.99.0-2 release]
* debian/changelog:
* debian/control: Updating gtk dep.
2007-10-10 Mohammad Anwari <Mohammad.Anwari@nokia.com>
* configure.ac, pkgconfig/hildon-1.pc: Turn on -DMAEMO_CHANGES only if
USE_MAEMO_GTK is enabled.
2007-10-10 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-code-dialog.c (hildon_code_dialog_init): check for
MAEMO_GTK or GTK+ > 2.11 before using GTK_BUTTONBOX_CENTER mode.
2007-10-10 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[1.99.0-1 release]
* NEWS:
* configure.ac:
* debian/changelog: Updating.
2007-10-10 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-logical-color-example.c:
* src/hildon-helper.c: Fixing the way logical colors/fonts are being
applied + adding a test case. Fixes: NB#71660.
2007-10-08 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-window.c (hildon_window_map): only map the vbox if it's supposed
to be visible, fixes warning on map for windows without toolbars.
2007-10-02 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-seekbar.c: gtk_range_get_fill_level is available in GTK+ since
2.11.0, add a check for that besides the MAEMO_GTK check.
2007-09-28 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[1.0.17-1 release]
* NEWS:
* configure.ac:
* debian/changelog: Updating.
2007-09-26 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-window.c: Applying patches by Xan to fix the toolbar
visibility. Fixes: NB#70842 and MB#615.
2007-09-25 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-bread-crumb-widget.c (hildon_bread_crumb_widget_constructor):
set the separator as no-show-all so it doesn't unintentionally appear when
someone does a show_all.
2007-09-25 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-bread-crumb-trail.c (hildon_bread_crumb_trail_push_text)
(hildon_bread_crumb_trail_push_icon): Do not show the separator for the
toplevel item. Fixes: NB#62031
2007-09-24 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-bread-crumb-trail.c (hildon_bread_crumb_trail_push_icon):
fix the name of the function in the docs.
2007-09-21 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[1.0.16-1 release]
* NEWS:
* configure.ac:
* debian/changelog: Updating.
2007-09-21 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/hildon-banner-long-example.c: Adding a test-case for long
hildon banner.
* src/hildon-find-toolbar.c: Fixing the get_last_index function.
2007-09-21 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-color-chooser-dialog.c:
* src/hildon-color-chooser.c:
* src/hildon-font-selection-dialog.c: Adding two patches by Tommi to fix
memory leaks in font selector and color selector. Fixes: NB#70499 and
NB#70474.
2007-09-20 Johan Bilien <johan.bilien@nokia.com>
* src/hildon-helper.c: Fixed the leak of the a GList. Fixes: NB#70273.
2007-09-18 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-code-dialog.c: Making the hardcoded WIDTH/HEIGHT values a
little bit bigger. Fixes: #NB63694.
2007-09-17 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[1.0.15-1 release]
* NEWS:
* configure.ac:
* debian/changelog: Updating.
2007-09-14 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* doc/Makefile.am:
* doc/hildon-docs.sgml:
* doc/images/bread-crumb-trail.png:
* 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/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 the new generated widget shots.
Adding the bread-crumb-trial and helpers to the documentation.
2007-09-14 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/hildon-find-toolbar-example.c:
* src/hildon-find-toolbar.c:
* src/hildon-find-toolbar.h: FIxing the default history-append handler to
actually continue firing the other handlers if connected. Adding a new
function:
hildon_find_toolbar_get_last_index that gets the index of the most
recently added (last) item. Fixes: NB#52301.
2007-09-10 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-caption.c: Applying a patch by Tommi to fix the focus
behaviour. Fixes: NB#68610.
2007-09-10 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-banner.c: Actually reverting the previous change. It somehow
looks a bit worse.
2007-09-06 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-banner.c: Changing the infobanner background pixmap to NULL
when realizing the banner. Should make the infonbanner effect a bit more
bearable.
2007-09-05 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-volumebar.c:
* src/hildon-volumebar.h: Changing the GtkWidget to HildonVolumebar in
hildon_volumebar_set_range_insensitive_message and
hildon_volumebar_set_range_insensitive_messagef. Fixes MB#1848.
2007-09-05 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-window.c: Fixing the border freeing on destroy.
2007-09-05 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-code-dialog-private.h:
* src/hildon-code-dialog.c: Adding a patch by Tomas Junnonen to fix the
kw keyboard support in HildonCodeDialog.
2007-08-24 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[1.0.14-1 release]
* NEWS:
* configure.ac:
* debian/changelog: Updating.
2007-08-24 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-date-editor.c:
* src/hildon-number-editor.c:
* src/hildon-private.c:
* src/hildon-private.h:
* src/hildon-time-editor.c:
* src/hildon-weekday-picker.c: A patch by Xan Lopez to fix focus
handling in subclassed composite widgets. Fixes: NB#66628.
2007-08-24 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-window.c: Removing extra gtk_main_iteration () processing
from destroy_ callback as it introduces problems in async dbus signal
handlers. Fixes NB#66673.
2007-08-24 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/hildon-hvolumebar-example.c:
* src/hildon-volumebar.c: Improving the focus handling in the
volumebar widgets. Fixes NB#63955 and NB#65155. Also fixing the
set_property accessor so that "mute" property can be actually set. I'm
scared that nobody noticed it's totally broken.
2007-08-23 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* debian/control: Use libesd0-dev or osso-esd-dev as esd dependancy.
Fixes NB#66548.
2007-08-23 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-calendar.c:
* src/hildon-number-editor.c:
* src/hildon-time-picker.c: Changing the timeout repeat so that it
matches the spec of 6 chars per second. Fixes: NB#60489.
2007-08-22 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-helper.c: Really fixing NB#58352. Looks like
gtk_style_lookup_color sometime returns FALSE even though color was
found and values were filled properly. Weird. Removing the warning for the
time being.
2007-08-21 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-find-toolbar.c: Puting the combobox inside alignment to not
expand vertically. Adding some extra space to the find toolbar buttons to
make them thumbable. Fixes NB#66060.
2007-08-21 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-calendar-popup.c: Replacing the "Done" button in the calendar
popup with "Ok" and "Cancel". Fixes NB#59299.
2007-08-20 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-calendar.c: Process all window updates before executing next
timeout. Fixes: NB#54146.
2007-08-17 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[1.0.13-1 release]
* NEWS:
* configure.ac:
* debian/changelog: Updating.
2007-08-16 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-banner.c: (hildon_banner_client_event): connect directly to
the client event and ignore it, since we use the delete event to close
after timeouts.
2007-08-16 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-helper.c: Remove the bogus warning about color not being
found. Fixes NB#58352.
2007-08-16 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-toolbar-seekbar-example.c: Adding an example to test a
HildonSeekbar widget inside a toolbar.
2007-08-16 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-banner.c (hildon_banner_init): mark the banners as
temporary, depends on maemo-gtk >= 2.10.12-osso7. Also ignore the
delete event that will come from _GTK_DELETE_TEMPORARIES, as we
don't want to be closed by non-temporary windows on map.
Also use G_DEFINE_TYPE instead of manually typed code.
2007-08-06 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[1.0.12-1 release]
* NEWS:
* configure.ac:
* debian/changelog:
* debian/rules: Updating.
2007-08-01 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-hvolumebar-timer-example.c: Adding an exmaple to debug
bug NB#61128. Strangely it works.
2007-08-01 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-date-editor.c: When the date editor entry has been changed
but the numbers of characters < max, turn off the skip validation flag.
Prevents a situation when we enter first a valid year and later re-write
it with an invalid one. Fixes NB#60154.
2007-07-26 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-code-dialog.c: Fixing the dialog button alignment inside the
code dialog. Fixes NB#64355.
2007-07-25 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-wizard-dialog.c: Don't call the _set_sensitivity again after
switching the page. Fixes NB#49374.
* examples/Makefile.am:
* examples/hildon-wizard-dialog-example.c: Adding an example for
HildonWizardDialog that shows how to handle manual sensitivity setting on
the wizard dialog.
2007-07-25 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* configure.ac:
* src/Makefile.am:
* src/hildon-version.h.in:
* src/hildon.h: Adding the HILDON_CHECK_VERSION macro. Fixes: NB#62061.
2007-07-25 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-volumebar.c: Updating the docs.
2007-07-25 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[1.0.11-1 release]
* NEWS:
* configure.ac:
* debian/changelog: Updating.
2007-07-24 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-find-toolbar.c:
* src/hildon-find-toolbar.h: Adding a few new functions to control the
selected item: hildon_find_toolbar_set_active,
hildon_find_toolbar_set_active_iter, hildon_find_toolbar_get_active,
hildon_find_toolbar_get_active_iter . They correspond to respective
GtkComboBox functions.
* examples/Makefile.am:
* examples/hildon-find-toolbar-example.c: Adding the example to test the
new functionality.
2007-07-23 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-seekbar-example.c: Adding the seekbar example to check
theming easily.
* src/hildon-font-selection-dialog.c: Fixing the default focus for dialog
when font size > 32 and we pack a focusable widget inside. Actually using
the default response would work too, but since we don't show default
response state in any way (no theming) it would not be visible to the
user. Fixes NB#63430.
2007-07-23 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-date-editor.c: Adding the missing variable setter in the
set_property handler. Fixes NB#54182.
2007-07-23 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-window.h: Changing the long key press time from 1500ms to
800ms as requested in NB#63700. I have a bad feeling about this, let's
see... Fixes NB#63700.
2007-07-12 Tommi Komulainen <tommi.komulainen@nokia.com>
* src/hildon-time-picker.c (hildon_time_picker_class_init,
hildon_time_picker_map, hildon_time_picker_realize,
hildon_time_picker_style_set): Split the contents of map to more
appropriate functions; set window decorations on realize and update
arrows' size requisitions on style-set. Avoids unnecessary resizing.
2007-07-02 Xan Lopez <xan.lopez@nokia.com>
[1.0.10-2 release]
* NEWS:
* debian/changelog: Updating.
2007-07-02 Johan Bilien <johan.bilien@nokia.com>
* src/Makefile.am: fixed installation of the header files
2007-06-29 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[1.0.10-1 release]
* NEWS:
* configure.ac:
* debian/changelog: Updating.
2007-06-27 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* configure.ac: Removing some remaining of --enable-xan.
2007-06-26 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-date-editor.c: (hildon_date_editor_keypress):
* src/hildon-time-editor.c: (hildon_time_editor_entry_keypress):
Move all focus crazyness to the rc files. This depends on gtk+2.0 >=
2.10.12-osso6 because the move-focus signal needs to be available in
GtkWidget.
2007-06-25 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-hvolumebar-insensitive-map-example.c: Adding an example
that makes a HildonVolumebar insensitive before mapping it. Seems to work
fine. Prolly NB#61128 is fixed now.
2007-06-19 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-volumebar.c:
* src/hildon-volumebar.h: Adding the
hildon_volumebar_set_range_insensitive_message and
hildon_volumebar_set_range_insensitive_messagef functions to set
insensitive message on the slider of the volumebar. Fixes NB#61129.
* examples/Makefile.am:
* examples/hildon-hvolumebar-insensitive-example.c: Adding an example to
test the new insensitive messsage functionality on HildonVolumebar.
2007-06-14 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-private.c (hildon_private_composite_focus): make the focus handler
work again.
2007-06-13 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-bread-crumb-trail.c (hildon_bread_crumb_trail_clear): workaround
http://bugzilla.gnome.org/show_bug.cgi?id=56070 hiding and showing the back
button on after clearing the trail.
2007-06-13 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-code-dialog.c: Removing the separator from the dialog.
2007-06-12 Xan Lopez <xan.lopez@nokia.com>
* src/Makefile.am: remove circular dependency in hildon-enum-types.h creation
by splitting the installed headers in generated and non-generated groups. Use
only the non-generated headers to create the hildon-enum-types.h file.
* src/hildon-seekbar.h: gtkscale.h already includes gtkrange.h.
2007-06-12 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-window.c: Hide the window before performing the destroy.
Should make the app closing a little tiny bit more snappy.
2007-06-12 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-seekbar.c: add gtkrange.h header
* src/hildon-caption.c: remove unused variable
2007-06-08 Tommi Komulainen <tommi.komulainen@nokia.com>
* configure.ac: Remove dysfunctional AC_ARG_ENABLE. Pointed out by
Loic Minier.
2007-06-07 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[1.0.9-1 release]
* NEWS:
* configure.ac:
* debian/changelog: Updating.
2007-06-07 Tommi Komulainen <tommi.komulainen@nokia.com>
* src/hildon-window.c (hildon_window_window_state_event,
hildon_window_is_topmost_notify, hildon_window_class_init): Stop the
escape timeout on focus-out-event rather than notify::is-topmost; the
latter doesn't get called when menus pop up. Fixes: NB#52946, MB#1101
2007-06-07 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-window.c: Adding a patch from Tommi Komulainen to pass the
correct timestamp and button to gtk_menu_popup. Fixes MB#1466.
2007-06-07 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-window: actually, you need to use the macro always, there's
no private pointer in the instance structure. We should have cleaned this up
when we had the chance...
2007-06-07 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-window.c: do not get the private date from HildonWindow before
it passes the g_return_if_fail check. Once it's passed the test, there's no
need to g_assert that it exists. Do not create a HildonWindowPrivate variable
if you are only going to access the data once. Whitespace cleanups.
2007-06-04 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-bread-crumb-trail.c: set children visible before allocation.
* src/hildon-bread-crumb-widget.c: set xalign to 0.0 for labels.
2007-06-01 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[1.0.8-1 release]
* NEWS:
* configure.ac:
* debian/changelog: Updating.
2007-06-01 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-window.c: When destroying the window, remove (if exists) the
escape timeout handler. Fixes #NB59276.
2007-06-01 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-banner.c: When realizing the widget, set the window
transiency. Setting the transiency in the gobject constructor is not
good, as the widget is not realized at that point. Fixes: #NB56624.
2007-05-30 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-bread-crumb-trail.h (struct _HildonBreadCrumbTrailClass):
Add padding for future expansions.
2007-05-30 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-bread-crumb-trail.c (hildon_bread_crumb_trail_class_init):
Add a new signal "move-parent", bind Escape and BackSpace to it. The handler
will fake an activation on the previous to the last item of the trail, so
the effect can be overrided by the developer as usual.
Also change the callback for the back button to do the same thing, so its
effect can be overrided too. Fixes: NB#58982
2007-05-30 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-caption.c: Implementing the proper focus grabbing in the
HildonCaption. Fixes NB#52379.
2007-05-30 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-bread-crumb-trail.c (crumb_activated_cb): be very paranoid about
the internal state of the trail after the user has had the chance of executing
his handler for the signal. Specifically, it may happen that the activated button
is removed and the user still lets the default handler run. This would segfault
previously.
2007-05-28 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-font-selection-dialog.c: When the font is really big, add the
scrollbar to the preview dialog. Fixes NB#54147.
2007-05-28 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-date-editor.c: Changing the default max year to 2037. The
max/min year properties can be altered, so the client can modify it
anyways. 1970 - 2037 sounds like a sane default. Fixes NB#54147.
2007-05-28 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-calendar.c: Removing the unused 'hildonlike' property, making
hildonlike by default. Fixing a problem with disappearing arrows when
scrolling through months and years. Fixes NB#54127.
2007-05-28 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/hildon-date-editor-example.c: Adding error callback to the date
editor example.
2007-05-25 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[1.0.7-1 release]
* NEWS:
* debian/changelog:
* configure.ac: Updating.
2007-05-24 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* configure.ac: Adding a special '--enable-xan' configure option that
turns off the -Werror compilation setting. Usefull for development.
* src/hildon-calendar.c:
* src/hildon-number-editor.c:
* src/hildon-time-picker.c: Adding the 5* multiplier to
gtk-timeout-update.
2007-05-24 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-note.c (hildon_note_init): Use g_object_ref_sink
instead of g_object_ref + gtk_object_sink.
2007-05-22 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[1.0.6-1 release]
* NEWS:
* configure.ac:
* debian/changelog: Updating.
2007-05-21 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-color-chooser-dialog.c:
* src/hildon-color-chooser.c: A few more GdkColor struct allocation fixes
straight from Tommi labs.
2007-05-21 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/hildon-finger-example.c: Correcting the header file path.
* src/hildon-color-chooser-dialog.c: Allocate the color on the stack for
the changed signal. Fixes a small memory leak.
2007-05-21 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* autogen.sh:
* debian/rules:
* src/hildon-banner.c: Importing several usefull fixes from the
ubuntu-mobile branch.
2007-05-21 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-finger-example.c: Adding a finger-checking code
example.
* src/hildon-font-selection-dialog.c: Do not allocate the color
structure using the g_new. Fixes NB#54061.
2007-05-09 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-helper.c: Correcting tabs in file.
2007-05-08 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-bread-crumb-trail.c: Use set_child_visible only to
control the visibility of the children.
* examples/hildon-bread-crumb-trail-example.c: Plug leak.
2007-05-07 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[1.0.5-1 release]
* NEWS:
* configure.ac:
* debian/changelog: Updating.
2007-05-04 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-bread-crumb-trail.c:
(hildon_bread_crumb_trail_size_allocate):
Make the back button always a square.
2007-05-04 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-bread-crumb-trail.h: Include hildon-bread-crumb-widget.h
from the .c file as it's a private file.
2007-05-03 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/hildon-vvolumebar-example.c: The VVolumebar example now
uses slightly bigger height.
* src/hildon-font-selection-dialog.c: Adding some checks before
freeing memory in the font selection dialog.
2007-05-02 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-font-selection-dialog.c: Adding a small check when
freeing memory.
* src/hildon-wizard-dialog.c: Applying a patch by Iain Holmes to fix
buttons sensitivity on page switching.
2007-04-27 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-bread-crumb-trail.c: make the add method handle all the
internal details of adding a bread crumb to the trail.
2007-04-26 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[1.0.4-1 release]
* README:
* configure.ac:
* debian/changelog: Updating.
* src/hildon-bread-crumb-trail.h:
* src/hildon-bread-crumb.h: Changing the API guard to
HILDON_ENABLE_UNSTABLE_API.
2007-04-26 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[1.0.3-1 release]
* NEWS:
* configure.ac:
* debian/changelog:
* debian/rules:
* src/hildon-helper.h: Updating.
2007-04-25 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[1.0.2-1 release]
* NEWS:
* configure.ac:
* debian/changelog:
2007-04-25 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* README:
* configure.ac:
* src/hildon-helper.h: Small fix to make the package actually compile.
2007-04-25 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-bread-crumb-trail.h:
* src/hildon-bread-crumb.h:
Guard with ENABLE_UNSTABLE_API. To use the bread crumb you'll need
to define ENABLE_UNSTABLE_API in the code that includes these headers.
2007-04-25 Xan Lopez <xan.lopez@nokia.com>
* examples/hildon-bread-crumb-trail-example.c:
* src/Makefile.am:
* src/hildon-bread-crumb-trail.c:
* src/hildon-bread-crumb-trail.h:
* src/hildon-bread-crumb.c:
* src/hildon-bread-crumb.h:
* src/hildon-marshalers.list:
* src/hildon-bread-crumb-widget.c:
* src/hildon-bread-crumb-widget.h:
Slight change in the widget design. The bread crumb trail API is
unchanged, but HildonBreadCrumb is now an interface. A *private*
implementation, hildon-bread-crumb-widget, is provided and used
internally by the trail for the push_text/push_icon functions.
The generic push API is still available, so anyone can implement
and use its own bread crumb widget.
2007-04-19 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* debian/rules: Fixing the shlibs.
2007-04-19 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-banner.c: Fixing a problem with timed banners having
their parrent destroyed before they are.
2007-04-17 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-bread-crumb.c:
* src/hildon-bread-crumb.h:
Make the get_natural_size function a vfunc.
2007-04-16 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-bread-crumb.c:
* src/hildon-bread-crumb-trail.c:
Some cleanups.
2007-04-16 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[1.0.1-1 release]
* AUTHORS:
* NEWS:
* configure.ac:
* debian/changelog: Updating for release.
2007-04-16 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-bread-crumb.c (hildon_bread_crumb_get_natural_size):
don't leak the pango layout.
2007-04-16 Xan Lopez <xan.lopez@nokia.com>
* src/hildon.h:
* examples/hildon-bread-crumb-trail-example.c:
Fix example.
2007-04-16 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* debian/changelog: Removing the bug-fixed entries that were actually
resolved as WONTFIX.
* src/hildon-date-editor.c: Removing a redundant check. Fixes
NB#54182.
2007-04-13 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-bread-crumb-trail.c:
* src/hildon-bread-crumb-trail.h:
* src/hildon-bread-crumb.c:
* src/hildon-bread-crumb.h:
Untabify.
2007-04-13 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-bread-crumb-trail.c: don't use the priv data of bct
until it's passed the type check.
2007-04-12 Xan Lopez <xan.lopez@nokia.com>
* examples/hildon-bread-crumb-trail-example.c
Add license.
2007-04-12 Xan Lopez <xan.lopez@nokia.com>
* examples/Makefile.am
* examples/hildon-bread-crumb-trail-example.c
* src/Makefile.am
* src/hildon-bread-crumb-trail.c
* src/hildon-bread-crumb-trail.h
* src/hildon-bread-crumb.c
* src/hildon-bread-crumb.h
New HildonBreadCrumbTrail widget.
2007-04-02 Lucas Rocha <lucas.rocha@nokia.com>
* src/hildon-range-editor.c (hildon_range_editor_init),
src/hildon-seekbar.c (hildon_seekbar_get_fraction,
hildon_seekbar_set_fraction, hildon_seekbar_set_position),
src/hildon-time-editor.c (hildon_time_editor_tap_and_hold_setup,
hildon_time_editor_class_init, hildon_time_editor_init),
src/hildon-get-password-dialog.c (invalid_input,
hildon_get_password_set_property, hildon_get_password_get_property,
create_contents, hildon_get_password_dialog_set_max_characters),
src/hildon-set-password-dialog.c (create_contents),
src/hildon-date-editor.c (hildon_date_editor_init),
src/hildon-login-dialog.c (hildon_login_dialog_init),
src/hildon-number-editor.c (hildon_number_editor_init),
src/hildon-find-toolbar.c (hildon_find_toolbar_emit_invalid_input,
hildon_find_toolbar_emit_close, hildon_find_toolbar_init): made all
the Maemo GTK+ specific API optional by adding a --with-maemo-gtk
configure option and adding the respective checks in the code.
* src/hildon-calendar.c (hildon_calendar_paint_week_numbers,
hildon_calendar_drag_data_received): fixed some build warnings.
2007-03-29 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* debian/changelog: A 1.0.0 release notes.
|