-
Notifications
You must be signed in to change notification settings - Fork 5
/
ChangeLog.3
9955 lines (7142 loc) · 327 KB
/
ChangeLog.3
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
2009-10-01 Alberto Garcia <agarcia@igalia.com>
* hildon/hildon-banner.c (hildon_banner_timeout):
Remove the timeout, if present, before setting it to 0.
Fixes: NB#141447 (HildonBanner crashes if a new one is shown
during a delete event)
2009-10-01 Claudio Saavedra <csaavedra@igalia.com>
Fix HildonAppMenu crasher during destruction
* hildon/hildon-app-menu.c: (+hildon_app_menu_dispose):
Remove the weak references to the menu and filters to avoid
emitting the "changed" signal during destruction.
Fixes: NB#141367 (Reproducible browser crash)
2009-09-30 Alberto Garcia <agarcia@igalia.com>
* hildon/hildon-banner.c (screen_size_changed):
Don't hide and show the banner when the screen size changes.
Fixes: NB#141140 (Rotation stops when banner is present)
2009-09-24 Claudio Saavedra <csaavedra@igalia.com>
[2.2.0 Release]
* NEWS: Updates
* debian/changelog: Bump, update.
2009-09-22 Alejandro G. Castro <alex@igalia.com>
* hildon/hildon-pannable-area.c,
(hildon_pannable_axis_scroll),
(hildon_pannable_area_scroll): Unset the scroll_to in some
situations, it was causing the timeout did not stop in some cases.
Fixes: NB#140186 (HildonPannableArea goes into an infinite loop)
2009-07-02 David King <davidk@openismus.com>
* hildon/hildon-animation-actor-private.h
(HildonAnimationActorPrivate)
* hildon/hildon-animation-actor.c (hildon_animation_actor_show)
(hildon_animation_actor_hide)
* hildon/hildon-animation-actor.h
(hildon_animation_actor_set_show_full)
(hildon_animation_actor_set_show): Change "show" parameter type from
gint to gboolean.
Fixes: MB#4696 (hildon_animation_actor_set_show() gint argument should
be a gboolean)
2009-09-23 Claudio Saavedra <csaavedra@igalia.com>
[2.2.0 Release Candidate 8]
* NEWS: Updates
* debian/changelog: update and bump
2009-09-23 Claudio Saavedra <csaavedra@igalia.com>
* hildon/hildon-note.c: Declare hildon_note_set_padding() only when using
maemo-gtk.
2009-09-23 Claudio Saavedra <csaavedra@igalia.com>
* doc/hildon-sections.txt: Add hildon_banner_show_custom_widget()
* examples/hildon-banner-example.c: (area_expose),
(custom_widget_new), (on_progress_idle): New example showing a custom widget.
* hildon/hildon-banner.c:
* hildon/hildon-banner.h: Add hildon_banner_show_custom_widget().
Fixes: NB#140140 (Allow custom widgets to be used in banners)
2009-09-18 Claudio Saavedra <csaavedra@igalia.com>
* examples/hildon-banner-example.c:
(on_information_clicked), (on_animation_clicked),
(on_progress_clicked): GtkButton:clicked handlers do not return
gboolean. Fix this.
2009-09-17 Claudio Saavedra <csaavedra@igalia.com>
[2.2.0 Release Candidate 7]
* NEWS: Updates
* debian/changelog: bump and updates
2009-09-17 Alberto Garcia <agarcia@igalia.com>
* hildon/hildon-gtk.c (hildon_gtk_window_take_screenshot):
Use the Xlib API to take window screenshots, since the GDK API
doesn't allow us to set the event mask.
Fixes: NB#138857 (hildon_gtk_window_take_screenshot doesn't take a
screenshot)
2009-09-14 Claudio Saavedra <csaavedra@igalia.com>
[2.2.0 Release Candidate 6]
* debian/changelog: bump and updates.
2009-09-14 Claudio Saavedra <csaavedra@igalia.com>
* hildon/hildon-window.c: (hildon_window_update_menu_flag): Properly
free a GList and avoid potential memory corruption.
2009-09-11 Claudio Saavedra <csaavedra@igalia.com>
[2.2.0 Release Candidate 5]
* NEWS: Updates
* debian/changelog: bump and updates
2009-09-11 Claudio Saavedra <csaavedra@igalia.com>
Do not set any flag for empty legacy menus
* hildon/hildon-program.c: (hildon_program_set_common_menu):
* hildon/hildon-window.c: (hildon_window_update_menu_flag):
This will probably not work fine with empty legacy menus added to
programs or windows and populated later, but so it's life.
2009-09-10 Claudio Saavedra <csaavedra@igalia.com>
Update the application menu flag for application-wise windows
* hildon/hildon-program.c: (+hildon_program_on_common_app_menu_changed),
(hildon_program_set_common_app_menu): Also take into account the visibility
of its items.
2009-09-10 Claudio Saavedra <csaavedra@igalia.com>
Emit HildonAppMenu::changed when menu items change visibility
* hildon/hildon-app-menu.c: (item_visibility_changed),
(filter_visibility_changed): Also emit ::changed on
visibility of items changed.
2009-09-10 Claudio Saavedra <csaavedra@igalia.com>
Do not set the menu flag in a window when a menu is empty
* hildon/hildon-window.c: (hildon_window_update_menu_flag),
(on_menu_changed), (on_menu_changedhildon_window_set_main_menu),
(on_menu_changed), (hildon_window_set_main_menu): Update on menu
changes by using the HildonAppMenu::changed signal.
2009-09-10 Claudio Saavedra <csaavedra@igalia.com>
Add HildonAppMenu::changed signal
* hildon/hildon-app-menu.c: (hildon_app_menu_insert),
(hildon_app_menu_add_filter), (hildon_app_menu_class_init):
Emit a new HildonAppMenu:changed signal when there are changes in
the menu children.
2009-09-10 Claudio Saavedra <csaavedra@igalia.com>
Add hildon_app_menu_has_visible_children() private method
* hildon/hildon-app-menu-private.h: Add below private method.
* hildon/hildon-app-menu.c: (hildon_app_menu_has_visible_children):
New method to check the visibility of a HildonAppMenu children.
2009-09-09 Claudio Saavedra <csaavedra@igalia.com>
Set the window menu flag for application-common menus
* hildon/hildon-program.c:
(+hildon_program_window_set_common_menu_flag): Set or remove the
menu flag from a window only this doesn't have its own menu.
(+hildon_program_set_common_menu_flag): adjust menu flag for
all windows in the program.
(hildon_program_add_window),
(hildon_program_remove_window): add/remove the menu flag when
a window is added to the program.
Fixes: NB#137814 (Indicator for view menu in app title area)
2009-09-08 Claudio Saavedra <csaavedra@igalia.com>
Set a special window property for windows with menus
* hildon/hildon-window-private.h: Add private
hildon_window_set_menu_flag()
* hildon/hildon-window.c: (+do_set_has_menu),
(+hildon_window_set_menu_flag): set
"_HILDON_WM_WINDOW_MENU_INDICATOR" to 1 in the window
or remove the property.
(hildon_window_set_main_menu),
(hildon_window_set_app_menu): call above methods to set or remove
the property when a menu is added or removed from the window.
Partially fixes: NB#137814 (Indicator for view menu in app title area)
2009-09-08 Claudio Saavedra <csaavedra@igalia.com>
Rename and move the methods to set flags to hildon-private.h
* hildon/hildon-gtk.c: (do_set_progress_indicator),
(do_set_do_not_disturb), (do_set_portrait_flags): call
the new private method hildon_gtk_window_set_clear_window_flag()
(hildon_gtk_window_set_progress_indicator),
(hildon_gtk_window_set_do_not_disturb),
(hildon_gtk_window_take_screenshot): hildon_gtk_window_set_flag()
* hildon/hildon-private.c: (+hildon_gtk_window_set_clear_window_flag),
(+hildon_gtk_window_set_flag): Move from hildon-gtk.c and rename
properly.
* hildon/hildon-private.h: Add the two new private methds.
2009-09-11 Alejandro G. Castro <alex@igalia.com>
* hildon/hildon-pannable-area.c,
(hildon_pannable_area_init),
(hildon_pannable_area_size_allocate),
(hildon_pannable_area_button_release_cb): More tuning of the
speed, adding a way to calculate the acceleration and fast-panning
based on the child size.
2009-09-10 Alberto Garcia <agarcia@igalia.com>
* hildon/hildon-touch-selector.c
(hildon_touch_selector_class_init):
Documentation updates
Fixes: MB#5103
2009-09-10 Alberto Garcia <agarcia@igalia.com>
* hildon/hildon-touch-selector.c:
Documentation updates
Fixes: MB#5104 (HildonTouchSelector docs should say no
HildonPannableArea is necessary)
2009-09-08 Alejandro G. Castro <alex@igalia.com>
* hildon/hildon-pannable-area.c,
(hildon_pannable_area_timeout): Fixed problem with the timeout
function, we need to move before decelerating the first time or we
are loosing the first jump.
Fixes: NB#137604 (Pannable scroll_to does not move correctly)
2009-09-07 Claudio Saavedra <csaavedra@igalia.com>
[2.2.0 Release Candidate 3]
* debian/changelog: updates
2009-09-07 Alejandro G. Castro <alex@igalia.com>
* hildon/hildon-pannable-area.c,
(hildon_pannable_area_class_init): Increased max speed.
2009-09-07 Claudio Saavedra <csaavedra@igalia.com>
[2.2.0 Release Candidate 2]
* NEWS: Updates
* debian/changelog: bump version, updates
2009-09-07 Alejandro G. Castro <alex@igalia.com>
* hildon/hildon-pannable-area.c,
(hildon_pannable_area_class_init),
(hildon_pannable_area_button_release_cb): More tuning for the
large lists.
2009-09-07 Alejandro G. Castro <alex@igalia.com>
* hildon/hildon-pannable-area.c,
(hildon_pannable_area_class_init):
Change the default value of the scrollbar_fade_delay.
Fixes: NB#127018 (Panning indicator fades out too slowly)
2009-09-04 Claudio Saavedra <csaavedra@igalia.com>
[2.2.0 Release Candidate 1]
* NEWS: Updates
* configure.ac: Bump version
* debian/changelog: updates
2009-09-04 Alejandro G. Castro <alex@igalia.com>
* hildon/hildon-pannable-area.c,
(hildon_pannable_area_init),
(hildon_pannable_area_button_press_cb),
(hildon_pannable_area_button_release_cb): Added a new acceleration
system to help traversing big lists, tuned the stop threshold.
Fixes: NB#132584 (Pannable kinetics in large lists needs tuning)
2009-09-04 Alberto Garcia <agarcia@igalia.com>
* hildon/hildon-window.h:
Document and deprecate HILDON_WINDOW_LONG_PRESS_TIME
Fixes: MB#4580 (HILDON_WINDOW_LONG_PRESS_TIME is undocumented)
2009-09-04 Claudio Saavedra <csaavedra@igalia.com>
[Release 2.1.97]
* configure.ac: bump version
* NEWS: updates
* debian/changelog: updates
2009-09-04 Alberto Garcia <agarcia@igalia.com>
* hildon/hildon-entry.c
* hildon/hildon-text-view.c:
Documentation updates
2009-09-04 Alberto Garcia <agarcia@igalia.com>
* hildon/hildon-app-menu.c (hildon_app_menu_repack_items):
Redraw menu when the number of items change.
Fixes: NB#131911 (Appmenu does not resize properly, when number of
menu items change)
2009-09-03 Claudio Saavedra <csaavedra@igalia.com>
* hildon/hildon-pannable-area.c:
(hildon_pannable_area_launch_fade_timeout),
(hildon_pannable_area_motion_event_scroll),
(hildon_pannable_area_check_move),
(hildon_pannable_area_button_release_cb),
(hildon_pannable_area_scroll_to):
Use a priority of G_PRIORITY_IDLE_HIGH + 20 for all the pannable
area drawing operations, since this is the recommended for drawing
operations.
Fixes: NB#110894 (In event view containing very large description
field, application menu is displayed blank while panning)
Fixes: NB#131942 (HildonPickerDialog is seen empty when popping up
for the first time)
2009-09-03 Alberto Garcia <agarcia@igalia.com>
* doc/hildon-sections.txt
* hildon/hildon-button.c
* hildon/hildon-edit-toolbar.c
* hildon/hildon-gtk.[ch]
* hildon/hildon-main.c
* hildon/hildon-program.c
* hildon/hildon-stackable-window.c:
Documentation updates
2009-08-28 Alberto Garcia <agarcia@igalia.com>
* hildon/hildon-app-menu.c
(+hildon_app_menu_grab_notify, hildon_app_menu_class_init):
Close the menu if it receives a grab-notify signal.
Fixes: NB#134533 (UI freezes if we show a dialog with
gtk_dialog_run() while a menu is opened)
2009-08-27 Alejandro G. Castro <alex@igalia.com>
* hildon/hildon-pannable-area.c,
(hildon_pannable_area_class_init): Reverted tuning modifications:
"Pannign needs to be faster" and "Pannable kinetics in large lists
needs tuning".
2009-08-26 Alberto Garcia <agarcia@igalia.com>
* hildon/hildon-sound.c (hildon_play_system_sound):
Set "module-stream-restore.id" to "x-maemo-system-sound" when
playing system sounds
Fixes: NB#133767 (Information and confirmation note sound should
follow system profile setting)
2009-08-26 Alejandro G. Castro <alex@igalia.com>
* hildon/hildon-pannable-area.c,
(hildon_pannable_area_class_init): Added more force and increased
the max speed threshold.
Fixes: NB#135344 (Pannign needs to be faster)
2009-08-26 Claudio Saavedra <csaavedra@igalia.com>
[Release 2.1.96, this time for real]
* NEWS: updates
* debian/changelog: updates
2009-08-26 Alejandro Pinheiro <apinheiro@igalia.com>
* hildon/hildon-pannable-area.c
(hildon_pannable_area_get_topmost): change the computation of the
co-ordinates transformed when no one of the children is a topmost
Fixes: NB#133252 (Opening any feed item from RSS always opens the
first feed item in browser)
2009-08-26 Alejandro G. Castro <alex@igalia.com>
* hildon/hildon-pannable-area.c,
(hildon_pannable_area_remove_timeouts): Adding this new function
with the code that removes the timeouts of the widget.
(hildon_pannable_area_dispose),
(hildon_pannable_area_unrealize): Use the new remove function to
stop timeouts when unrealizing and disposing.
(hildon_pannable_area_scroll_to): Added a CLAMP to the position
calculation to avoid negative values in some cases.
Fixes: NB#135179 (Remove pannable timeouts in unrealize function)
2009-08-24 Claudio Saavedra <csaavedra@igalia.com>
* examples/hildon-check-button-example.c: (button_toggled_cb):
* hildon/hildon-check-button.c: (hildon_check_button_toggled),
(hildon_check_button_set_active), (hildon_check_button_new),
(hildon_check_button_clicked), (hildon_check_button_class_init):
* hildon/hildon-check-button.h:
* hildon/hildon-set-password-dialog.c: (create_contents),
(hildon_set_password_response_change), (hildon_checkbox_toggled):
Revert "Make HildonCheckButton derive from GtkToggleButton"
2009-08-21 Alberto Garcia <agarcia@igalia.com>
[Release 2.1.96]
* configure.ac: bump version
* NEWS: updates
* debian/changelog: updates
2009-08-21 Alberto Garcia <agarcia@igalia.com>
* hildon/hildon-check-button.h
* hildon/hildon-check-button.c
(hildon_check_button_clicked, hildon_check_button_class_init):
Make HildonCheckButton derive from GtkToggleButton
(hildon_check_button_toggled, hildon_check_button_set_active)
(hildon_check_button_get_active):
Deprecate unnecessary HildonCheckButton API and use the
one from GtkToggleButton instead.
* hildon/hildon-set-password-dialog.c (create_contents)
(hildon_set_password_response_change, hildon_checkbox_toggled)
* examples/hildon-check-button-example.c (button_toggled_cb):
Update to use the GtkToggleButton API
Fixes: MB#4739 (HildonCheckButton should inherit from
GtkToggleButton)
Fixes: NB#132661 (HildonCheckButton should inherit from
GtkToggleButton)
2009-08-20 Alberto Garcia <agarcia@igalia.com>
* hildon/hildon-pannable-area.c
(hildon_pannable_area_class_init):
Increase default value of HildonPannableArea:velocity_max to 2000
Fixes: NB#132584 (Pannable kinetics in large lists needs tuning)
2009-08-18 Alberto Garcia <agarcia@igalia.com>
[Release 2.1.95]
* configure.ac: bump version
* NEWS: updates
* debian/changelog: updates
2009-08-11 Alejandro G. Castro <alex@igalia.com>
* hildon/hildon-pannable-area.c
(hildon_pannable_area_size_allocate): Checked the scrollbars
before the first try when defining the layout, avoids two
allocations in some situations.
Fixes: NB#131794 (pannable area produces unnecessary allocations
causing performance problems)
2009-08-11 Alejandro G. Castro <alex@igalia.com>
* hildon/hildon-pannable-area.c
(hildon_pannable_area_button_press_cb),
(hildon_pannable_area_motion_notify_cb),
(hildon_pannable_area_button_release_cb): Added unrefs to reduce
the spurious ref added in the copy, fixes leak of window.
Fixes: NB#130900 (HildonPannableArea will leak it's event_window
if it's realized without showing and then deleted)
2009-08-10 Alberto Garcia <agarcia@igalia.com>
[Release 2.1.94]
* configure.ac: bump version
* NEWS: updates
* debian/changelog: updates
2009-08-06 Alberto Garcia <agarcia@igalia.com>
* examples/hildon-hvolumebar-timer-example.c
(on_idle, main)
* hildon/hildon-banner.c
(hildon_banner_timeout, hildon_banner_ensure_timeout)
* hildon/hildon-calendar.c
(calendar_timer, start_spinning)
* hildon/hildon-color-chooser.c
(inline_limited_expose)
* hildon/hildon-date-editor.c
(hildon_date_editor_entry_focus_in)
(hildon_date_editor_entry_validate)
(hildon_date_editor_entry_select_all)
* hildon/hildon-note.c
(on_show_cb)
* hildon/hildon-number-editor.c
(hildon_number_editor_button_pressed)
(hildon_number_editor_start_timer, do_mouse_timeout),
(add_select_all_idle, hildon_number_editor_select_all)
* hildon/hildon-time-editor.c
(hildon_time_editor_entry_focus_in)
(highlight_callback, hildon_time_editor_validate)
(hildon_time_editor_entry_select_all)
* hildon/hildon-time-picker.c
(hildon_time_picker_arrow_press)
(hildon_time_picker_key_repeat_timeout)
* hildon/hildon-window.c
(hildon_window_key_press_event)
(hildon_window_escape_timeout):
Replace all calls to g_idle_add/g_timeout_add with their
gdk_threads counterparts.
Fixes: NB#126198 (gdk-threads API should be used to install idle
and timeout handlers)
2009-08-06 Alejandro G. Castro <alex@igalia.com>
* hildon/hildon-pannable-area.c,
(hildon_pannable_area_class_init): Increased the overshooting max
speed to get a faster effect.
(hildon_pannable_axis_scroll): Increased minimum speed and reduce
deceleration of the overshooting
(hildon_pannable_area_button_release_cb): Calculate initial
overshooting speed when finger on the screen using the distance to
launch the effect faster.
Fixes: NB#126115 (Pannable list overshooting is unusably slow for
lists with slow row renderers)
2009-08-05 Alberto Garcia <agarcia@igalia.com>
* doc/hildon-sections.txt: Add new functions
2009-08-05 Alberto Garcia <agarcia@igalia.com>
* hildon/hildon-text-view.[ch]
* hildon/hildon-entry.[ch]:
Add deprecation guards around deprecated functions.
2009-08-05 Claudio Saavedra <csaavedra@igalia.com>
* hildon/hildon-app-menu.c: Remove leftover function declaration.
2009-08-05 Claudio Saavedra <csaavedra@igalia.com>
Remove the grab from HildonAppMenu
* hildon/hildon-app-menu.c:
Now hildon-desktop places a blocker window behind the menu to handle
its closing, so the grab is no longer needed. This simplifies its
implementation and allows the system blanking to succeed.
Fixes: NB#130910 (Screen gets unlocked when menu is open)
2009-08-04 Claudio Saavedra <csaavedra@igalia.com>
[Release 2.1.93]
* configure.ac: bump version
* NEWS: updates
* debian/changelog: updates
* debian/control: raise debian dependency on GTK+
2009-08-04 Alberto Garcia <agarcia@igalia.com>
* hildon/hildon-text-view.c
* hildon/hildon-entry.c:
Remove all placeholder code from HildonEntry and HildonTextView
and use the API in GtkEntry and GtkTextView instead.
* examples/hildon-entry-example.c
* examples/hildon-text-view-example.c
* examples/hildon-wizard-dialog-example.c
* hildon/hildon-get-password-dialog.c
* hildon/hildon-login-dialog.c
* hildon/hildon-picker-dialog.c
* hildon/hildon-set-password-dialog.c
* hildon/hildon-touch-selector-entry.c:
Replace all deprecated calls to HildonEntry and HildonTextView
with their Gtk counterparts.
Fixes: NB#122395 (hildon_entry_set_placeholder() should be in
GtkEntry)
2009-08-03 Alejandro G. Castro <alex@igalia.com>
* hildon/hildon-pannable-area.c,
(hildon_pannable_area_check_move),
(hildon_pannable_area_button_release_cb),
(hildon_pannable_area_scroll_to): Reverted the priority change of
the timeout, in some situations, slow renderers, the click do not
make it to the mainloop on time.
Fixes NB#131013 (unable to stop panning file manager by tapping on
it)
2009-07-30 Claudio Saavedra <csaavedra@igalia.com>
* configure.ac: bump version
* NEWS: updates
* debian/changelog: updates
2009-07-28 Alejandro Pinheiro <apinheiro@igalia.com>
* hildon/hildon-touch-selector.[ch]
(hildon_touch_selector_center_on_index): New method that allows to center
on a item not selected
Fixes NB#130291 (New HildonTouchSelector API is required to center on
any column item)
2009-07-29 Alberto Garcia <agarcia@igalia.com>
* hildon/hildon-text-view.c
(+set_logical_color, +hildon_text_view_style_set)
(hildon_text_view_refresh_contents, hildon_text_view_class_init)
(hildon_text_view_init)
* hildon/hildon-entry.c
(+set_logical_color, +hildon_entry_style_set)
(hildon_entry_show_placeholder, hildon_entry_hide_placeholder)
(hildon_entry_class_init, hildon_entry_init)
* hildon/hildon-button.c
(+set_logical_font, +set_logical_color)
(hildon_button_style_set, hildon_button_init)
(hildon_button_set_arrangement, hildon_button_set_style):
Remove all calls to hildon_helper_set_logical_font() and
hildon_helper_set_logical_color(), which are recursive, from
within Hildon.
Fixes: NB#123409 (Showing dialog consumes significant amount of
time)
2009-07-29 Alejandro G. Castro <alex@igalia.com>
* hildon/hildon-pannable-area.c,
(hildon_pannable_area_timeout): Added the process updates of the
scrollbars window in the pannable.
Fixes: NB#130043 (scrollindicator not smooth while panning)
2009-07-23 Alejandro G. Castro <alex@igalia.com>
* hildon/hildon-pannable-area.c,
(hildon_pannable_area_check_move),
(hildon_pannable_area_button_release_cb),
(hildon_pannable_area_scroll_to): Increased the priority of the
timeout this way it is going to be handled before the events.
2009-07-22 Claudio Saavedra <csaavedra@igalia.com>
[Release 2.1.91]
* configure.ac: bump version
* debian/changelog: updates
2009-07-21 Claudio Saavedra <csaavedra@igalia.com>
* hildon/hildon-entry.c: (set_property): Do not allow to set
automatic height and use finger height instead, to prevent an to
have a smaller size than than its theme pixbuf.
Fixes: NB#118398 (HildonEntry - unnecessary rescaling of images)
2009-07-21 Claudio Saavedra <csaavedra@igalia.com>
* configure.ac: postrelease version bump.
* debian/changelog: post release version bump
2009-07-21 Claudio Saavedra <csaavedra@igalia.com>
[Release 2.1.90]
* NEWS: Updates.
* configure.ac: Bump version.
* debian/changelog: Updates.
2009-07-20 Claudio Saavedra <csaavedra@igalia.com>
* hildon/hildon-note.c: (label_size_request): Take the note
padding into account when setting the size request.
Fixes: NB#127896 (Information notes text truncated)
2009-07-16 Claudio Saavedra <csaavedra@igalia.com>
* configure.ac: postrelease version bump.
* debian/changelog: post release version bump
2009-07-16 Claudio Saavedra <csaavedra@igalia.com>
[Release 2.1.88]
* NEWS: Updates.
* configure.ac: Bump version.
* debian/changelog: Updates.
2009-07-16 Alejandro G. Castro <alex@igalia.com>
* hildon/hildon-text-view.c,
(hildon_text_view_button_press_event): Grabbed the focus in button
press, this way we are sure the widget has the focus in the
release event, required for HIM.
Fixes: NB#121445 (Virtual keyboard opening is not working in same
way for each text entry field)
2009-07-15 Alejandro Pinheiro <apinheiro@igalia.com>
* hildon/hildon-pannable-area.[ch](hildon_pannable_area_set_focus_child)
(hildon_pannable_area_center_on_child_focus ,hildon_pannable_area_class_init)
(hildon_pannable_area_get_property, hildon_pannable_area_set_property)
(hildon_pannable_area_button_press_cb, hildon_pannable_area_button_release_cb)
(hildon_pannable_area_[gs]et_center_on_child_focus)
Redefined GtkContainer set-focus-child signal, in order to center
properly on a child when it receives the focus. Defined a new property
"center-on-child-focus" in order to activate this feature (deactivated
by default). Public get/set methods defined to manage the property.
Fixes: NB#108487 (Phone settings dialog should scroll to focused field)
2009-07-14 László Pere <lpere@blumsoft.eu>
* hildon/hildon-app-menu.c: (hildon_app_menu_apply_style): Ensure that
the new size is applied.
Fixes: NB#124510 (The Application Menu is distorted when switched
between portrait and landscape mode)
Fixes: NB#115388 (Power key menu does not resize itself)
2009-07-01 Alberto Garcia <agarcia@igalia.com>
* hildon/hildon-banner.c (hildon_banner_map):
Set banner position after mapping.
2009-06-29 Claudio Saavedra <csaavedra@igalia.com>
* configure.ac: postrelease version bump.
* debian/changelog: post release version bump
2009-06-29 Claudio Saavedra <csaavedra@igalia.com>
[Release 2.1.86]
* NEWS: Updates.
* configure.ac: Bump version.
* debian/changelog: Updates.
2009-06-29 Adam Endrodi <adam.endrodi@blumsoft.eu>
* hildon/hildon-program.c (hildon_program_update_top_most): Ignore
BadWindow error.
2009-06-26 Alejandro Pinheiro <apinheiro@igalia.com>
* tests/check-hildon-banner.c
* tests/check_text.c
* tests/test_suites.h
Protect hildon-banner tests with #ifndef HILDON_DISABLE_DEPRECATED, as
were testing deprecated functions.
* examples/hildon-banner-example.c: typo on button3 type, that causes
a fail compiling with --with-examples but without --disable-deprecated
Missed commit in order to fix compilation using '--enable-fatal' and
'--disable-deprecated' (see previous commit)
2009-06-26 Alejandro Pinheiro <apinheiro@igalia.com>
* examples/hildon-banner-example.c: Protect deprecated hildon-banner
functions with #ifndef HILDON_DISABLE_DEPRECATED
* examples/hildon-find-toolbar.c: Protect deprecated
HILDON_ICON_SIZE_TOOLBAR with #ifndef HILDON_DISABLE_DEPRECATED
* hildon/hildon-find-toolbar.c: Change deprecated HILDON_ICON_SIZE_TOOLBAR
in favor of HILDON_ICON_PIXEL_SIZE_FINGER
* hildon/hildon-private.h: Unmark hildon_privfate_create_animation() as
deprecated.
* hildon/hildon-stackable-window.c: Added #undef HILDON_DISABLE_DEPRECATED
to allow proper compilation of deprecated functions defined on the header
Fixed compilation using '--enable-fatal' and '--disable-deprecated'
2009-06-25 Claudio Saavedra <csaavedra@igalia.com>
* hildon/hildon-pannable-area.c: (hildon_pannable_area_init):
Cache the panning indicator color.,
(hildon_pannable_area_style_set): Query the color on style changes.
(hildon_pannable_draw_vscroll),
(hildon_pannable_draw_hscroll),
(hildon_pannable_area_expose_event): Use the cached panning indicator
color instead of looking it up on every expose and more.
2009-06-25 Claudio Saavedra <csaavedra@igalia.com>
* hildon/hildon-pannable-area.c: (hildon_pannable_draw_vscroll),
(hildon_pannable_draw_hscroll),
(hildon_pannable_area_expose_event): Fix the panning indicator color,
so that it's "SecondaryTextColor", as desired.
2009-06-25 Alejandro Pinheiro <apinheiro@igalia.com>
* hildon/hildon-picker-dialog.c:
(selection_completed): take into account HILDON_UI_MODE_NORMAL
* hildon/hildon-touch-selector.c
(hildon_touch_selector_init): Initialize hildon-ui-mode
(hildon_touch_selector_row_activated): new callback for the
"row-activated" signal, in order to save the last activated
(hildon_touch_selector_check_ui_mode_coherence): new method that checks
if the current hildon-ui-mode is coherent with the touch selector
(hildon_touch_selector_class_init)
(hildon_touch_selector_get_property)
(hildon_touch_selector_set_property)
Added "hildon-ui-mode" property
(disconnect_model_handlers): renamed to clean_column
(hildon_touch_selector_remove): use clean_column function
(_create_new_column): use the hildon-ui-mode to create the treeview, and
only select the first element on HILDON_UI_MODE_EDIT
(hildon_touch_selector_column_init): Initialize last_activate
(hildon_touch_selector_append_column): check that the touch selector
is coherent with the current hildon-ui-mode
(hildon_touch_selector_get_hildon_ui_mode)
(hildon_touch_selector_set_hildon_ui_mode)
Added a getter/setter for the hildon-ui-mode property
(hildon_touch_selector_get_last_activated_row): Added this method in
order to get the last activated row.
* examples/hildon-touch-selector-normal-mode-example.c
New example, that shows how to use the HildonTouchSelector in
HILDON_UI_MODE_NORMAL
Fixes: NB#95685 (Add field dialog should use HILDON_UI_MODE_NORMAL), using
Kristian Rietveld <kris@lanedo.com> advices
2009-06-25 Claudio Saavedra <csaavedra@igalia.com>
* hildon/hildon-time-selector.c: (update_format_policy): Do
not call update_format_dependant_columns() if not necessary.
(update_format_dependant_columns): Remove unnecessary check for
the number of columns.
2009-06-24 Claudio Saavedra <csaavedra@igalia.com>
* hildon/hildon-note.c (+hildon_note_constructor),
(hildon_note_class_init), (+hildon_note_set_padding),
(hildon_note_rebuild): Install a constructor where to set the
padding properties in the note, so that it actually works fine.
Use hildon_note_set_padding() for this, and also to set it during
the note rebuild.
2009-06-24 Claudio Saavedra <csaavedra@igalia.com>
* configure.ac: Bump GTK+ requirement to 2.14.3.
* hildon/hildon-note.c: (hildon_note_rebuild): Use gtk_dialog_set_padding()
when using maemo-gtk to define proper margins for the notes.
Fixes: NB#124408 (Confirmation notes: the 'Yes' button overlaps
with the dialog edge)
2009-06-24 Alberto Garcia <agarcia@igalia.com>
* hildon/hildon-banner.c
(hildon_banner_class_init):
Center text.
(+hildon_banner_size_request):
Request always the full width of the screen.
(hildon_banner_realize)
(-hildon_banner_check_position, hildon_banner_map):
hildon_banner_check_position() is not needed in Hildon 2.2.
(-hildon_banner_reset_wrap_state)
(hildon_banner_constructor, hildon_banner_init):
Remove unnecessary calls to hildon_banner_reset_wrap_state()
(+banner_do_set_text)
(force_to_wrap_truncated):
Remove has_been_wrapped and has_been_truncated attributes.
(+reshow_banner, hildon_banner_real_show_information)
(hildon_banner_show_information_with_markup)
(hildon_banner_show_animation, hildon_banner_show_progress)
(hildon_banner_set_text, hildon_banner_set_markup):
Refactor code. Shrink banner vertically to use the minimum space
necessary everytime the text of the label is updated.
(screen_size_changed):
Call force_to_wrap_truncated() when the size of the screen
changes.
Fixes: NB#120500 (only device memory connect mmc in use info
banner is left aligned)
Fixes: NB#120613 (Size of HildonBanner varies depending on
previously opened banners)
2009-06-24 Claudio Saavedra <csaavedra@igalia.com>
* hildon/hildon-color-chooser.c
(hildon_color_chooser_pointer_motion): Take the widget allocation
into account.
Fixes: NB#124385 (Unable to select exact point in color mixing box
in color palette dialog)
2009-06-23 Alejandro G. Castro <alex@igalia.com>
* hildon/hildon-pannable-area.c (hildon_pannable_area_class_init)
(hildon_pannable_area_dispose)
(hildon_pannable_area_button_press_cb)
(hildon_pannable_area_timeout, hildon_pannable_area_check_move)
(hildon_pannable_area_button_release_cb)
(hildon_pannable_area_scroll_cb, hildon_pannable_area_jump_to):
New 'panning-started' and 'panning-finished' signals.
Fixes: NB#121732 (New feature request: Signal to pannable area
that informs when panning is stopped.)
2009-06-23 Mox Soini <ext-mox.soini@nokia.com>
* hildon/hildon-wizard-dialog.c: (create_title): Use separator
instead of hardcoded colon.
Fixes: NB#124090 (New calendar wizard title is not using
ecdg_ti_caption_separator)
2009-06-22 David King <davidk@openismus.com>
* hildon/hildon-find-toolbar.c: Add Gtk-Doc markup for types,
constants and functions, as well as correct many typos throughout the
documentation text.
Fixes: MB#4700 (HildonFindToolbar documentation lacks Gtk-Doc markup,
and needs cleanup)
2009-06-22 Claudio Saavedra <csaavedra@igalia.com>
* configure.ac: postrelease version bump.
* debian/changelog: post release version bump
2009-06-22 Claudio Saavedra <csaavedra@igalia.com>
[Release 2.1.84]
* NEWS: Updates.
* configure.ac: Bump version.
* debian/changelog: Updates.
2009-06-18 Alberto Garcia <agarcia@igalia.com>
* hildon/hildon-window-stack.c
(hildon_window_stack_pop_and_push_list):
Prevent windows from having the same stack index
2009-06-18 Alberto Garcia <agarcia@igalia.com>
* hildon/hildon-window-stack.c (_hildon_window_stack_do_push):
Use the index of the previous window rather than the stack length
to calculate the new index.
Fixes: NB#122389
2009-06-18 Alejandro Pinheiro <apinheiro@igalia.com>
* hildon/hildon-date-selector.c
(hildon_date_selector_select_current_date)
(hildon_date_selector_get_date)
(hildon_date_selector_select_day):
Update the documentation: uses always the range (1-31), as it is obvious
that the final one will depend on the month and the year, but globally
the range is this, in a similar GtkCalendar approach
(hildon_date_selector_get_date):
Update the documentation: add NULL as a valid value for the day, month
and year locations
Fix some details, after talk with David King on bug MB#4698
2009-06-18 Alejandro Pinheiro <apinheiro@igalia.com>
* hildon/hildon-touch-selector-entry.c