Hildon banner truncations, * hildon-widgets/hildon-banner.c (force_to_wrap_truncated...
[hildon] / ChangeLog
1 2006-05-01  Luc Pionchon  <luc.pionchon@nokia.com>
2
3         Hildon banner truncations,
4         * hildon-widgets/hildon-banner.c
5         (force_to_wrap_truncated): new function. Force to wrap truncated
6         label by setting explicit size request. See N#27000 and G#329646
7         (hildon_banner_check_position): call force_to_wrap_truncated()
8         fixes N#27000, N#25305, N#26203
9
10         * hildon-widgets/hildon-banner.c
11         (HILDON_BANNER_LABEL_MAX_PROGRESS): increase value 265 -> 320 to
12         satisfy N#26624, N#26161, N#27875
13
14         * ut/tc_banner_truncate.c: new file. Test cases for banner truncations.
15
16
17 2006-05-01  Luc Pionchon  <luc.pionchon@nokia.com>
18
19         * hildon-widgets/hildon-banner.[ch]: code cleanup.
20
21
22 2006-04-29  Johan Bilien  <johan.bilien@nokia.com>
23
24         * hildon-widgets/hildon-window.c:
25           - removed connection to self, replaced with overridding virtual
26             methods
27           - removed gtk_widget_set_event in init, legacy from HildonApp
28           - use gtk_widget_get_child_requisition() instead of
29             gtk_widget_size_request() in _allocation
30           - don't allocate space for the child if it is not visible
31
32 2006-04-28  Johan Bilien  <johan.bilien@nokia.com>
33
34         * hildon-widgets/hildon-window.c:
35           - forgot to reinitialize convenience pointers to borders after they
36             are reinitialised
37           - replaced a g_return_if_fail with a g_return_val_if_fail now
38             that toggle_menu returns a g_boolean
39
40 2006-04-28  Johan Bilien  <johan.bilien@nokia.com>
41
42         N#28176
43         * hildon-widgets/hildon-window.c: Free the borders structure
44           when the window is destroyed.
45
46 2006-04-27 Tapani Palli <tapani.palli@nokia.com>
47
48         * hildon-widgets/hildon-caption.c : check if ancestor
49         (still) exists in set-focus handler, fixes N#25501
50
51 2006-04-27  Luc Pionchon  <luc.pionchon@nokia.com>
52
53         * hildon-widgets/hildon-time-editor.c
54         (hildon_time_editor_check_locale): do not force lower case for
55         AM/PM symbols. Use the string as it is given by the locale. Makes
56         it coherent with hildon time picker. Fixes N#27963
57
58
59 2006-04-26  Luc Pionchon  <luc.pionchon@nokia.com>
60
61         * hildon-widgets/hildon-set-password-dialog.c
62         (c_): new macro, calls dgettext on "hildon-common-strings" domain.
63         (hildon_set_password_response_set): use c_ for common strings
64         (hildon_set_password_response_change): likewise.
65         Fixes N#27749
66
67         * hildon-widgets/hildon-set-password-dialog.h: indent cleanup
68
69
70 2006-04-26  Luc Pionchon  <luc.pionchon@nokia.com>
71
72         * hildon-widgets/hildon-file-handling-note.c (gettext macro): use
73         "hildon-fm" as textual domain. Fixes N#27702
74
75 2006-04-26  Luc Pionchon  <luc.pionchon@nokia.com>
76
77         * configure.ac: 0.12.12
78
79         * Makefile.am (clean-all): brutal target to cleanup the
80         folder. Will do this properly later.
81
82 2006-04-25  Luc Pionchon  <luc.pionchon@nokia.com>
83
84         * doc/Makefile.am: use "-include" for gtk-doc.make (ignore
85         included Makefile if missing).
86
87         * configure.ac: temporarily disable GTK_DOC_CHECK (problem in
88         integration environement)
89
90         * configure.ac: print configuration summary after processing
91
92 2006-04-24  Marius Vollmer  <marius.vollmer@nokia.com>
93
94         From Murray Cumming  <murrayc@murrayc.com>, M#183.
95
96         * hildon-widgets/hildon-calendar-popup.c:
97         (hildon_calendar_popup_new): Use only g_object_new(), passing 
98         it properties, so that language bindings can do the same.
99         (hildon_calendar_popup_set_date): Veryify the date here, 
100         instead of only in the _new() function.
101         (hildon_calendar_popup_set_property): Use get/set_date() to 
102         verify the new date and to select it.
103         (hildon_calendar_popup_get_property): Remove unused variables.
104         * ut/hildon-widgets_tests.c (test45): New.
105
106         * hildon-widgets/hildon-add-home-dialog.c:
107         (hildon_add_home_dialog_new): Move code into
108         hildon_add_home_dialog_init(),
109         hildon_add_home_dialog_set_old_name(), and
110         hildon_add_home_dialog_set_new_name().  Supply parameters as
111         properties values to g_object_new() instead, so that language
112         bindings can do the same.
113         (hildon_add_home_dialog_class_init): Added name and new_name
114         properties.
115         (hildon_add_home_dialog_init): Create always-needed widgets.
116         (hildon_add_home_dialog_get_property),
117         (hildon_add_home_dialog_set_property): Get/Set the name and
118         new_name properties, recreating widgets if necessary, using new
119         static helper function.
120         * ut/hildon-widgets_tests.c (test46): New.
121
122         * hildon-widgets/hildon-grid-item.c
123         (hildon_grid_item_set_property), (hildon_grid_item_get_property),
124         (hildon_grid_item_class_init): Add icon-basename property.
125         (hildon_grid_item_new, hildon_grid_item_new_with_label): Move code
126         from here to hildon_grid_item_init(), so we can just call
127         g_object_new().
128         (hildon_grid_item_set_label): Convert NULL label to empty string.
129         Bug fix: don't cast the label widget to a string and compare it
130         against the new label text, use gtk_label_get_label instead.
131         Expect priv->label to always be non-NULL.
132         (update_icon): Don't pass NULL icon name to
133         gtk_icon_theme_load_icon, use default icon instead in that case.
134         * hildon-widgets/hildon-grid-item.h: Make
135         _hildon_grid_item_set_label into public
136         hildon_grid_item_set_label(), so that language bindings can use
137         it.
138         * ut/hildon-widgets_tests.c (VALID_ICON): Use existing icon.
139         (test33a2, test33b4, test33b4): Expect them to succeed now that a
140         HildonGridItem can handle NULL icons.
141         
142 2006-04-21  Luc Pionchon  <luc.pionchon@nokia.com>
143
144         * configure.ac: 0.12.11
145
146
147 2006-04-19 Tapani Palli <tapani.palli@nokia.com>
148
149         * thread safety (N#24348), fixed timeout and idle callbacks :
150         hildon-widgets/hildon-window.c : hildon_window_escape_timeout()
151         hildon-widgets/hildon-time-picker.c : hildon_time_picker_key_repeat_timeout()
152         hildon-widgets/hildon-number-editor.c : do_mouse_timeout(),hildon_number_editor_select_all()
153         hildon-widgets/hildon-banner.c : hildon_banner_timeout()
154         hildon-widgets/hildon-app.c : hildon_app_escape_timeout()
155         hildon-widgets/hildon-time-editor.c : highlight_callback()
156         hildon-widgets/hildon-date-editor.c : _hildon_date_editor_entry_select_all()
157
158 2006-04-19 Tapani Palli <tapani.palli@nokia.com>
159
160         * hildon-widgets/hildon-app.c (hildon_app_key_release): send
161         correct state for fullscreen, fixes N#26611
162
163 2006-04-19  Johan Bilien  <johan.bilien@nokia.com>
164
165         N#22909 
166         * hildon-widgets/hildon-window.c:
167           - hildon_window_toggle_menu now returns whether or not something was
168             done
169           - hildon_window_key_press_event(): when handling the menu hard key,
170             return TRUE if we actually handled it
171         * hildon-widgets/hildon-appview.c: _hildon_appview_toggle_menu()
172           now returns if something was done
173         * hildon-widgets/hildon-app.c: hildon_app_key_snooper(): return TRUE
174           if we actually handled the menu hard key.
175
176 2006-04-19  Johan Bilien  <johan.bilien@nokia.com>
177
178         * hildon-widgets/hildon-window.c: Fixed a bug in child size allocation
179           in fullscreen.
180
181 2006-04-19  Luc Pionchon  <luc.pionchon@nokia.com>
182
183         * configure.ac: 0.12.10
184
185
186 2006-04-17  Luc Pionchon  <luc.pionchon@nokia.com>
187
188         * doc/hildon-libs-docs.sgml: added index for new symbols.
189
190         
191 2006-04-17  Luc Pionchon  <luc.pionchon@nokia.com>
192
193         * doc/Makefile.am (version.xml): generates version.xml
194         * doc/hildon-libs-docs.sgml: added &version; entity, and display
195         the version number in the doc title.
196         
197
198 2006-04-17  Luc Pionchon  <luc.pionchon@nokia.com>
199
200         Minor changes for gtk-doc
201         * hildon-note.c
202         * hildon-weekday-picker.h
203         * hildon-name-password-dialog.c
204         * hildon-calendar-popup.h
205         * hildon-range-editor.h
206         * hildon-volumebar-range.h
207         * hildon-banner.c
208         * hildon-app.c
209         * hildon-time-editor.c
210         * gtk-infoprint.c
211         * hildon-date-editor.h
212
213
214 2006-04-16  Luc Pionchon  <luc.pionchon@nokia.com>
215
216         * hildon-widgets/hildon-time-editor.c
217         (hildon_time_editor_set_show_hours) 
218         (hildon_time_editor_get_show_hours): added gtk-doc tag 'Since:'
219
220
221 2006-04-15  Luc Pionchon  <luc.pionchon@nokia.com>
222
223         N#22557
224         * hildon-widgets/hildon-time-editor.c
225         (hildon_time_editor_entry_keypress): use
226         hildon_gtk_button_set_depressed, provided by osso-GTK, since
227         2.6.10-1.osso4, instead of GTK private symbol
228         _gtk_button_set_depressed
229
230
231 2006-04-15  Marius Vollmer  <marius.vollmer@nokia.com>
232
233         From Murray Cummings (M#185 M#283), with slight changes:
234
235         * configure.ac: Add a --rebuilds option, defaulting to yes, so we
236         can disable the regeneration of hildon-libs-enum-types.[h|c], also
237         based on the gnome-vfs build.
238
239         * hildon-widgets/Makefile.am: Use glib-mkenums to generate
240         hildon-libs-enum-types.[h|c], and build them, based on the
241         gnome-vfs build. This adds GTypes for the enums, needed for
242         accurate signal registration, needed by bindings.
243
244         * hildon-widgets/hildon-number-editor.h: Rename the error_handler
245         default signal handler to range_error, so it has the same name as
246         the signal, as expected by bindings.
247
248         * hildon-widgets/hildon-marshalers.list: Change to the now-used
249         marshallers.
250
251         * hildon-widgets/hildon-note.h (HildonNodeType): Marked as 'skip'.
252         since hildon_note_type_get_type is defined manually and
253         glib-mkenums should ignore this enum.
254
255         * hildon-widgets/hildon-app.h (HildonZoomLevel): Likewise.
256         * hildon-widgets/hildon-caption.h (HildonCaptionStatus): Likewise.
257
258         Correct the signal registration for:
259         
260         * hildon-widgets/hildon-app.c 
261         (hildon_app_class_init):
262         "switch_to",
263         "clipboard_copy",
264         "clipboard_cut",
265         "clipboard_paste"
266
267         * hildon-widgets/hildon-date-editor.c
268         (hildon_date_editor_class_init):
269         "date_error"
270
271         * hildon-widgets/hildon-find-toolbar.c
272         (hildon_find_toolbar_class_init):
273         "search", 
274         "close",
275         "invalid_input", 
276         "history_append signals"
277
278         * hildon-widgets/hildon-grid.c
279         (hildon_grid_class_init):
280         "popup_context_menu"
281
282         * hildon-widgets/hildon-number-editor.c
283         (hildon_number_editor_class_init):
284         "range_error".
285
286
287 2006-04-13  Luc Pionchon  <luc.pionchon@nokia.com>
288
289         M#90 - Use standard GLib macro names.
290         Based on a patch from Osvaldo Santana <osvaldo.santana@indt.org.br>
291
292         Deprecate HILDON_*_TYPE, replace by HILDON_TYPE_*,
293         * hildon-widgets/hildon-calendar-popup.h: 
294         * hildon-widgets/hildon-date-editor.h: 
295         * hildon-widgets/hildon-range-editor.h: 
296         * hildon-widgets/hildon-weekday-picker.h: 
297         * hildon-widgets/hildon-volumebar-range.h: 
298
299         Updated macro name,
300         * hildon-widgets/hildon-calendar-popup.c: 
301         * hildon-widgets/hildon-date-editor.c: 
302         * hildon-widgets/hildon-range-editor.c: 
303         * hildon-widgets/hildon-volumebar-range.c: 
304         * hildon-widgets/hildon-weekday-picker.c:
305
306
307 2006-04-13  Johan Bilien  <johan.bilien@nokia.com>
308
309         * hildon-widgets/hildon-code-dialog.c: Fixed L10n logical ids
310           for Ok and Cancel buttons.
311
312 2006-04-13  Luc Pionchon  <luc.pionchon@nokia.com>
313
314         * configure.ac: 0.12.9
315
316 2006-04-13  Luc Pionchon  <luc.pionchon@nokia.com>
317
318         * hildon-widgets/hildon-color-button.c
319         (INNER_BORDER_THICKNESS, COLOR_BUTTON_WIDTH, COLOR_BUTTON_HEIGHT):
320         updated dimensions.
321
322
323 2006-04-13  Luc Pionchon  <luc.pionchon@nokia.com>
324
325         * hildon-widgets/hildon-time-editor.c
326         (convert_to_12h): removed m and s paramters (useless)
327         (convert_to_24h): likewise.
328
329         
330 2006-04-13  Luc Pionchon  <luc.pionchon@nokia.com>
331
332         Automatic focus movement for HildonTimeEditor (IMP-13)
333
334         * hildon-widgets/hildon-time-editor.c
335         (hildon_time_editor_init): connect after signal "insert_text"
336         (hildon_time_editor_inserted_text): new function.
337         On inserted text, if entry has two digits, jumps to the next field.
338
339
340 2006-04-13  Luc Pionchon  <luc.pionchon@nokia.com>
341
342         Pops up the color selector on 'select' hardkey (IMP-15)
343         
344         * hildon-widgets/hildon-color-button.c
345         (hildon_color_button_init): connect "key-release-event"
346         (hildon_color_button_key_released): new function.
347         Pops up the color selector on 'select' hardkey release
348
349
350 2006-04-13  Luc Pionchon  <luc.pionchon@nokia.com>
351
352         Hildon grid, set items to be focus-and-activate instead of single
353         tap activation (IMP-14) 
354         
355         * hildon-widgets/hildon-grid.c (hildon_grid_button_pressed): do not set focus.
356         * hildon-widgets/hildon-grid.c (hildon_grid_button_released): activate selected item.
357
358
359 2006-04-13  Luc Pionchon  <luc.pionchon@nokia.com>
360
361         Fetch hours/minutes/seconds separators from current locale (IMP-8)
362         N#19061
363
364         * hildon-widgets/hildon-time-editor.c
365         (struct _HildonTimeEditorPrivate): added 'hm_sep_symbol' and 'ms_sep_symbol'
366         (hildon_time_editor_init): do not get separator labels from i18n, but from locale
367         (hildon_time_editor_finalize): free separator symbols
368         (get_time_separators): new function. Get time separators from locale.
369         (hildon_time_editor_check_locale): call get_time_separators.
370
371 2006-04-13  Luc Pionchon  <luc.pionchon@nokia.com>
372
373         Removed icon for mandatory fields (IMP-3).
374         Note: the logic and API to specify mandatory fields is preserved.
375
376         * hildon-widgets/hildon-caption.c (HILDON_CAPTION_MANDATORY_ICON): removed.
377         (struct _HildonCaptionPrivate): removed 'mandatory_icon' field.
378         (hildon_caption_set_property): case PROP_STATUS, removed related code.
379         (hildon_caption_set_label_alignment): removed related code.
380
381
382 2006-04-07  Luc Pionchon  <luc.pionchon@nokia.com>
383
384         * configure.ac: 0.12.8
385
386 2006-04-07  Luc Pionchon  <luc.pionchon@nokia.com>
387
388         * hildon-widgets/hildon-banner.c: added gtk-doc Since markers.
389
390
391 2006-04-07  Tomas Junnonen  <tomas.junnonen@nokia.com>
392
393         - Added support for Pango markup
394           Added   hildon_banner_show_information_with_markup
395         - Removed hildon_banner_show_confirmation
396         - Re-position the banner when its content changes
397         - Banner now doesn't truncate strings nor insert linebreaks
398         - fixes N#24339 - Information banners do not resize
399
400         * hildon-widgets/hildon-banner.[ch]
401         (hildon_banner_show_information_with_markup): new function. Adds
402         pango markup support for information banners.
403         
404         (hildon_banner_show_confirmation): removed. 'confirmation' was
405         used only for the taask navigator (at most). It should use
406         _show_information_with_markup with appropriate markup.
407         
408         (hildon_banner_set_markup): new function. 
409
410         (hildon_banner_check_position): new function. Factor code from
411         hildon_banner_realize(), and update position calculation.
412
413         (struct _HildonBannerPrivate): removed max_lines.
414         Uses as much lines as needed.
415
416         (hildon_banner_init): set banner label to wrap lines.
417         
418         (hildon_banner_set_text): do not truncate. Update banner's position.
419
420         (hildon_banner_set_markup): new function.
421                                     Set banner's text with Pango markup.
422
423         (_hildon_gtk_label_set_text_n_lines): marked as deprecated.
424
425
426         * hildon-widgets/gtk-infoprint.c
427         (gtk_confirmation_banner): use hildon_banner_show_information
428         instead of _show_confirmation.
429         (gtk_confirmation_banner_with_icon_name): likewise.
430
431
432 2006-04-07  Luc Pionchon  <luc.pionchon@nokia.com>
433
434         * hildon-widgets/hildon-color-button.c
435         (hildon_color_field_expose_event): correct parameter order.
436
437
438 2006-04-07  Johan Bilien  <johan.bilien@nokia.com>
439
440         * hildon-widgets/hildon-window.c:
441           - Fixed a potential infinite loop when detaching the menus
442             from the window widget (Closes N#26033)
443
444 2006-04-06  Johan Bilien  <johan.bilien@nokia.com>
445
446         * hildon-widgets/hildon-window.c:
447           - Fixed a bug that made window fullscreen state tracking fail
448           - Apply correct theming to menus so that they get placed
449             correctly (Fixes N#24325)
450           - Redraw the window borders if the size of the toolbar vbox changes
451           - Reset the program to NULL in hildon_window_destroy
452           - Stop the ESC key-press timeout when the window loses the focus
453           - Small cleanups
454         * hildon-widgets/hildon-program.c:
455           - Reset the common toolbar to NULL when the program is finalised
456
457 2006-04-04  Marius Vollmer  <marius.vollmer@nokia.com>
458
459         * hildon-widgets/hildon-get-password-dialog.h,
460         hildon-widgets/hildon-get-password-dialog.c
461         (hildon_get_password_dialog_new,
462         hildon_get_password_dialog_new_with_default): Renamed
463         get_old_password_title parameter to "get_old" to correspond with
464         the property name.  This helps the C++ bindings.
465         * ut/hildon-widgets_tests.c (test43, test44): New.
466
467 2006-04-03  Marius Vollmer  <marius.vollmer@nokia.com>
468
469         * ut/hildon-widgets_tests.c: Disabled unimplemented testcases:
470         test20a, test20b, test20c, test20d, test36a, test36b, test36c,
471         test36d.
472
473         From Murray Cumming.
474         
475         * hildon-lgpl/hildon-caption.c:
476         (hildon_caption_init): Do the hildon_caption_set_child_expand()
477         here.
478         (hildon_caption_new): Use the child property from GtkContainer
479         instead of calling gtk_container_add(), because _new() functions
480         should just use g_object_new(), so that language-bindings can do
481         the same.
482
483         * ut/hildon-widgets_tests.c: Added test42 for hildon_caption_new. 
484
485 2006-03-30  Luc Pionchon  <luc.pionchon@nokia.com>
486
487         * configure.ac: 0.12.7
488
489 2006-03-29  Luc Pionchon  <luc.pionchon@nokia.com>
490
491         Fixes N#20917
492         * hildon-widgets/hildon-font-selection-dialog.c
493         (REFERENCE_LINE): removed
494         (hildon_font_selection_dialog_show_preview): added l10n support
495         for the reference string (use to differentiate sub/super script in
496         font preview)
497         (hildon_font_selection_dialog_show_preview): likewise
498
499
500 2006-03-28  Luc Pionchon  <luc.pionchon@nokia.com>
501
502         * po/en_GB.po: update
503
504 2006-03-28  Luc Pionchon  <luc.pionchon@nokia.com>
505
506         * hildon-widgets/hildon-add-home-dialog.c
507         (hildon_add_home_dialog_init): removed i18n support (deprecated
508         widget. Hinder logical ID processing)
509         (hildon_add_home_dialog_new): likewise.
510
511         * hildon-widgets/hildon-insert-object-dialog.c
512         (hildon_insert_object_dialog_init): likewise.
513
514
515 2006-03-28  Luc Pionchon  <luc.pionchon@nokia.com>
516
517         * hildon-widgets/hildon-font-selection-dialog.c
518         (hildon_font_selection_dialog_construct_notebook): logical ID typo
519         
520
521 2006-03-27  Johan Bilien  <johan.bilien@nokia.com>
522
523         * hildon-widgets/hildon-window.[ch]:
524           - update the title when the window is realized
525           - added support for long press on the ESC key. Fixes N#24620
526
527 2006-03-26  Luc Pionchon  <luc.pionchon@nokia.com>
528
529         * hildon-widgets/hildon-time-editor.h: indent, improve readability.
530
531 2006-03-26  Luc Pionchon  <luc.pionchon@nokia.com>
532
533         * hildon-widgets/hildon-seekbar.c
534         (hildon_seekbar_button_press_event): use if statement instead of 's?a:b'
535
536 2006-03-24  Luc Pionchon  <luc.pionchon@nokia.com>
537
538         * configure.ac: 0.12.6
539
540 2006-03-23  Luc Pionchon  <luc.pionchon@nokia.com>
541
542         * hildon-widgets/hildon-defines.h (HILDON_HARDKEY_LEFT):
543         fixed typo GKD_Left -> GDK_Left, N#24042
544
545
546 2006-03-22  Luc Pionchon  <luc.pionchon@nokia.com>
547
548
549         Fixed i18n issues:
550
551
552         Updated logical id to lower case: Ckct_ -> ckct_
553         * hildon-widgets/hildon-date-editor.c (hildon_date_editor_date_error): 
554         * hildon-widgets/hildon-number-editor.c (hildon_number_editor_error_handler): 
555         * hildon-widgets/hildon-range-editor.c (hildon_range_editor_class_init) 
556         (hildon_range_editor_init, hildon_range_editor_entry_validate) 
557         (hildon_range_editor_entry_validate): 
558         * hildon-widgets/hildon-time-editor.c (validated_conversion) 
559         (validated_conversion, hildon_time_editor_real_validate): 
560         * hildon-widgets/hildon-grid.c (hildon_grid_class_init) 
561         (hildon_grid_init): 
562
563
564         Updated logical id to lower case: Ecdg_ -> ecdg_
565         * hildon-widgets/hildon-time-editor.c (hildon_time_editor_init): 
566         * hildon-widgets/hildon-time-picker.c (hildon_time_picker_init): 
567         * hildon-widgets/hildon-calendar-popup.c (hildon_calendar_popup_init): 
568         * hildon-widgets/hildon-color-popup.c (hildon_color_popup_new) 
569         * hildon-widgets/hildon-wizard-dialog.c (hildon_wizard_dialog_init) 
570         (hildon_wizard_dialog_create_title): 
571         * hildon-widgets/hildon-find-toolbar.c (hildon_find_toolbar_class_init): 
572         (hildon_find_toolbar_init): 
573         * hildon-widgets/hildon-note.c (hildon_note_rebuild) 
574         (hildon_note_rebuild, hildon_note_set_button_text): 
575
576
577         Removed i18n support for property description,
578         * hildon-widgets/hildon-time-picker.c (hildon_time_picker_class_init):
579
580
581 2006-03-21  Luc Pionchon  <luc.pionchon@nokia.com>
582
583         * configure.ac: 0.12.5
584
585 2006-03-21  Tommi Komulainen  <tommi.komulainen@nokia.com>
586         
587         * doc/hildon-libs-docs.sgml: Move HildonWizardDialog in Dialogs
588         * hildon-widgets/hildon-caption.c: Fix erroneous gtk-doc comment
589         blocks, again.
590
591 2006-03-20  Johan Bilien  <johan.bilien@nokia.com>
592
593         * hildon-widgets/hildon-grid.c: added missing include hildon-app.h for
594           HILDON_IS_APP
595
596 2006-03-20  Johan Bilien  <johan.bilien@nokia.com>
597
598         Cleanup wizard dialog,
599
600         * hildon-widgets/hildon-wizard-dialog.c
601         (struct HildonWizardDialogPrivate): removed 'previous_button'
602           and 'next_button' (obsolete)
603         
604         (hildon_wizard_dialog_response): new private function. Handles the
605         'response' signal and replaces direction_button_clicked() in
606         taking care of notebook page changes and button dimming.
607
608         (hildon_wizard_dialog_init): 'previous' and 'next' buttons are now
609         added to the dialog as response buttons. This enables the usage of
610         GtkDialog API for setting their sensitiveness.
611         
612         (dimming/undimming): Connected hildon_wizard_dialog_response to
613         "resonse" signal. Removed useless title creation because it
614         depends on the notebook which is not yet created.
615         
616         (hildon_wizard_dialog_set_property): minor code cleanup
617         
618         (hildon_wizard_dialog_create_title): removed useless else-if
619         statement.
620
621         * hildon-widgets/hildon-wizard-dialog.h
622         (hildon_wizard_dialog_get_type): added G_GNUC_CONST
623
624
625         * hildon-widgets/hildon-wizard-dialog.[ch]: Reverted the patch
626           adding the page_change signal, as the application can now track
627           the response signal instead.
628
629
630 2006-03-17  Luc Pionchon  <luc.pionchon@nokia.com>
631
632         * configure.ac: 0.12.4
633
634
635 2006-03-16  Luc Pionchon  <luc.pionchon@nokia.com>
636
637         * doc/tmpl/*
638         * hildon-widgets/*
639         moved widget descriptions to respective source file (*.c)
640         + minor doc updates
641
642
643 2006-03-15  Luc Pionchon  <luc.pionchon@nokia.com>
644
645         Cleanup color button
646
647         * hildon-widgets/hildon-color-button.c: 
648         - removed unused #include
649         - removed unused gettext macro
650
651         (COLOR_FIELD_WIDTH) : renamed to COLOR_FILLED_WIDTH
652         (COLOR_FIELD_HEIGHT): renamed to COLOR_FILLED_HEIGHT
653         + value updated to match specifications
654         
655         (struct _HildonColorButtonPrivate):
656         removed 'drawing_area' and 'pixbuf' members (unused)
657
658         (hildon_color_button_init):     
659         use drawing_area directly, update COLOR_FILLED_ macro names
660
661         (hildon_color_button_unrealize): new function.
662         (hildon_color_button_class_init): register unrealize function   
663         (hildon_color_button_finalize): free allocated GC in unrealize
664         handler instead of in finalize.
665         
666         (hildon_color_button_recolor_pixbuf): removed. (use
667         gdk_draw_rectangle() instead)
668         (hildon_color_button_draw_pixbuf_borders): likewise
669         
670         (hildon_color_field_expose_event): use gdk_draw_rectangle() to
671         draw the button
672         (hildon_color_button_set_property): queue the drawing - instead of
673         calling recolor_pixbuf
674
675         (hildon_color_button_clicked): renamed variable 'csd' to 'cs_dialog'
676
677
678 2006-03-15  Luc Pionchon  <luc.pionchon@nokia.com>
679
680         More cleanup for range editor,
681         
682         * hildon-widgets/hildon-range-editor.[ch]
683         - removed useless includes
684         (hildon_range_editor_new_with_separator): set char parameter 'const'
685
686         * hildon-widgets/hildon-range-editor.c
687         - removed useless includes
688         - rewritten a lot of functions because code was inefficient.  
689         - removed useless g_return_if_fail calls from various functions.  
690
691         (hildon_range_editor_init): Romoved unneeded casts, added composite names.
692         (hildon_range_editor_entry_keypress):  rewritten
693         (hildon_range_editor_entry_focus_out): rewritten
694         (hildon_range_editor_refresh_widths): New function
695         (hildon_range_editor_set_range): Make sure that the values are in
696         correct order
697         (hildon_range_editor_set_lower):  rewritten.
698         (hildon_range_editor_set_higher): rewritten.
699         (hildon_range_editor_set_min):    rewritten.
700         (hildon_range_editor_set_max):    rewritten.
701
702         (hildon_range_editor_entry_validate): New validator function
703         (hildon_range_editor_entry_changed): New signal handler for
704         "changed" for entries, this will now validate whenever entry changes.
705
706         (hildon_range_editor_entry_focus_out): Added g_assert for
707         editor. Removed call to hildon_range_editor_apply_current_range().
708         Added call to the new function hildon_range_editor_entry_validate()
709         for validation.
710         
711         (hildon_range_editor_init): connected
712         hildon_range_editor_entry_changed to "changed" for entries.
713
714
715 2006-03-15  Luc Pionchon  <luc.pionchon@nokia.com>
716
717         Major cleanup for time editor
718
719         * hildon-widgets/hildon-time-editor.c
720         - removed unused #includes.
721         - Removed useless g_return_if_fail(editor) calls
722         (HILDON_IS_TIME_EDITOR does this check as well for us).
723         
724         (hildon_time_editor_add_style):         removed, obsolete.
725         (hildon_time_editor_mnemonic_activate): removed, obsolete
726         (hildon_time_editor_get_max_values):    removed, obsolete.
727         
728         (validated_conversion): New helper function
729
730         (hildon_time_editor_entry_changed): New function, now the widget
731         interactively validates the inputted contents (not requiring focus
732         move).
733
734         (ticks_to_time): rewritten, using less arithmetic operations.
735         (hildon_time_editor_validate):          rewritten
736         (hildon_time_editor_set_ticks):         rewritten
737         (hildon_time_editor_set_duration_mode): rewritten
738         (hildon_time_editor_entry_keypress):    rewritten
739
740         * hildon-widgets/hildon-time-editor.[ch]
741         (hildon_time_editor_set_show_hours)
742         (hildon_time_editor_get_show_hours) new functions to show/hide hours
743
744         
745 2006-03-15  Luc Pionchon  <luc.pionchon@nokia.com>
746
747         Cleanup number editor
748         
749         * hildon-widgets/hildon-number-editor.c: 
750         (SPACE_BORDER): removed
751         
752         (hildon_number_editor_size_request):
753         (hildon_number_editor_size_allocate): updated to use hildondefines
754         
755         (hildon_number_editor_mnemonic_activate): function removed,
756         mnemonic are not used
757         
758         (hildon_number_editor_stop_repeat_timer): new function, to avoid
759         duplicated code
760         (hildon_number_editor_button_release):
761         (hildon_number_editor_finalize): updated to use new function
762
763         (hildon_number_editor_entry_keypress): completely rewritten
764         (change_numbers): likewise
765         (do_mouse_timeout): likewise
766         (hildon_number_editor_set_range): likewise
767
768         (hildon_number_editor_validate_value): new function, used for all
769         validation
770         (hildon_number_editor_focus_out):
771         (hildon_number_editor_entry_changed): updated to use previous.
772
773         (hildon_number_editor_real_set_value): new function that formats
774         given int to field. Used by change_numbers and set_value
775
776         (integer_to_string): removed, we now have one place that
777         converts numbers and that uses buffer from stack.
778         (hildon_number_editor_set_value): changed to use new format function.
779
780
781 2006-03-15  Luc Pionchon  <luc.pionchon@nokia.com>
782
783         * hildon-widgets/hildon-time-picker.c:
784         reorganized how the widgets are stored to reduce code
785         (HildonTimePickerWidgetGroup): new struct
786         (struct _HildonTimePickerPrivate): added member 'widgets' as an array of HildonTimePickerWidgetGroup
787         (hildon_time_picker_init)
788         (hildon_time_picker_arrow_press)
789         (hildon_time_picker_event_box_key_press)
790         (hildon_time_picker_change_time)
791         (hildon_time_picker_map)
792         (hildon_time_picker_event_box_key_release): use new widget organization
793         
794
795         (hildon_time_picker_init): return value from nl_timeinfo() is
796         valid only until it's called again, so g_strdup() the value when
797         storing it.
798
799         (MINS_IN_1H, MINS_IN_24H, MINS_IN_12H): defines hardcoded values
800         (HILDON_TIME_PICKER_LABEL_X_PADDING) 
801         (HILDON_TIME_PICKER_LABEL_Y_PADDING): defines hardcoded values
802         (hildon_time_picker_set_time):
803         (hildon_time_picker_get_time):
804         (hildon_time_picker_ampm_release): used the new defines
805
806         (struct _HildonTimePickerPrivate)
807         (hildon_time_picker_init) 
808         (hildon_time_picker_event_box_key_press) 
809         (hildon_time_picker_change_time): 
810         - c12h     renamed to show_ampm,
811         - ampo_pos renamed to ampm_left.
812
813         (hildon_time_picker_timeout): renamed to
814         hildon_time_picker_key_repeat_timeout(), 
815         and renamed parameter to 'hildon_time_picker'
816
817         (hildon_time_picker_event_box_press): renamed to
818         hildon_time_picker_event_box_button_press()
819
820         (hildon_time_picker_finalize): Added finalizer to make sure the
821         key repeat timeout handler gets removed.
822
823         (hildon_time_picker_arrow_press): Placed multipliers into
824         button_multipliers[] array to avoid multiple if/then/else
825         blocks.
826
827
828 2006-03-15  Luc Pionchon  <luc.pionchon@nokia.com>
829
830         * hildon-lgpl/hildon-find-toolbar.c (hildon_find_toolbar_filter):
831         calculates correctly which items will be visible. Fixes N#16991.
832
833
834 2006-03-15  Luc Pionchon  <luc.pionchon@nokia.com>
835
836         * hildon-widgets/hildon-find-toolbar.c
837         (hildon_find_toolbar_history_append): set "column" property only
838         after model has been set.
839         
840         
841 2006-03-15  Luc Pionchon  <luc.pionchon@nokia.com>
842
843         * hildon-widgets/hildon-app.c (hildon_app_escape_timeout): rename
844         the parameter more descriptively
845
846
847 2006-03-15  Luc Pionchon  <luc.pionchon@nokia.com>
848
849         Cleanup HildonApp,
850         
851         * hildon-widgets/hildon-app-private.h: use G_*_DECLS
852
853         * hildon-widgets/hildon-app.[ch]
854         (hildon_zoom_level_get_type): removed G_CONST_RETURN
855
856         * hildon-widgets/hildon-app.c:
857         - removed HILDON_DISABLE_DEPRECATED flags
858         - added g_assert'ions to internal functions
859         - more code comments
860         
861         (hildon_app_button): Move the fixed define to the function itself,
862         add simple autodetection, clean up comments.
863
864         (hildon_app_key_release): Remove bogus argument to signal emission
865         (not needed), emit the "fullscreen_state_change" directly instead
866         of calling set_fullscreen.
867
868         (hildon_app_construct_title): removed dead code
869
870         (hildon_app_register_view_with_id): do not call g_slist_nth() to
871         get the first element...
872         
873         
874 2006-03-15  Luc Pionchon  <luc.pionchon@nokia.com>
875
876         * hildon-widgets/hildon-appview.c: 
877         (hildon_appview_init):   indented comments properly
878         (paint_toolbar):         indented comments properly
879         (hildon_appview_expose): indented code properly
880         (hildon_appview_toolbar_toggle_request): removed dead code
881
882
883 2006-03-15  Luc Pionchon  <luc.pionchon@nokia.com>
884
885         * hildon-widgets/hildon-caption.c
886         (hildon_caption_expose): use g_assert instead of g_return_val_if_fail
887         (hildon_caption_size_allocate): likewise.
888         (hildon_caption_forall): likewise.
889
890
891 2006-03-15  Luc Pionchon  <luc.pionchon@nokia.com>
892
893         Cleanup Find toolbar,
894         
895         * hildon-widgets/hildon-find-toolbar.[ch]
896         (hildon_find_toolbar_new): set 'label' parameter const.
897         (hildon_find_toolbar_new_with_model): likewise.
898
899         * hildon-widgets/hildon-find-toolbar.c
900         (struct _HildonFindToolbarPrivate):
901           changed entry_combo_box type to GtkComboBoxEntry*
902
903         (hildon_find_toolbar_get_list_model): new function, to factor
904         member access and casting
905         (hildon_find_toolbar_get_entry): likewise.
906         (hildon_find_toolbar_apply_filter): removed set_column parameter
907         since it was used by only one caller, and made the caller do it
908         instead. Removed unnecessary casts.
909
910         (hildon_find_toolbar_find_string): new function.
911         (hildon_find_toolbar_history_append): code cleanup. use
912         hildon_find_toolbar_find_string.
913         
914         (hildon_find_toolbar_get_property)
915         (hildon_find_toolbar_get_entry)
916         (hildon_find_toolbar_init)
917         (hildon_find_toolbar_new)
918         (hildon_find_toolbar_new_with_model)
919         (hildon_find_toolbar_highlight_entry): Removed unnecessary casts
920         and changed some of them to use the new convenience functions
921         instead.
922
923         (hildon_find_toolbar_highlight_entry): use g_return_if_fail()
924         instead of if-check to validate parameter.
925
926         
927 2006-03-15  Luc Pionchon  <luc.pionchon@nokia.com>
928
929         Cleanup hildon-defines,
930         
931         * hildon-widgets/hildon-defines.c (hildon_icon_sizes_init) 
932         (hildon_change_style_recursive_from_ld): use G_GNUC_EXTENSION macro instead of #ifdef
933
934         (hildon_logical_data_free): new function. Free logical data.
935         (hildon_gtk_widget_set_logical_font): store logicalfontstring g_strdup()ed.
936         (hildon_gtk_widget_set_logical_color): store logicalcolorstring g_strdup()ed.
937
938         * hildon-widgets/hildon-defines.[ch]
939         (hildon_gtk_widget_set_logical_font): use const gchar*
940         (hildon_gtk_widget_set_logical_color): likewise.
941
942         * hildon-widgets/hildon-defines.c: 
943         (hildoniconsizes): set const
944         (hildoninternaliconsizes): set static, renamed 'iis'
945
946         
947 2006-03-14  Luc Pionchon  <luc.pionchon@nokia.com>
948
949         Cleanup Caption widget,
950         
951         * hildon-lgpl/hildon-caption.[ch]
952         (hildon_caption_status_get_type, hildon_caption_get_type):
953         G_CONST_RETURN removed, G_GNUC_CONST added
954
955         * hildon-widgets/hildon-caption.c
956
957         (struct _HildonCaptionPrivate): removed 'activate_block' member; not used anymore.
958
959         (hildon_caption_set_property): removed useless code.
960         (hildon_caption_button_press): simplified greatly by removing the
961         unnecessary recursion to locate the first focusable child of a
962         container - simple gtk_widget_grab_focus achieves the same
963         (get_first_focusable_child): removed (not used anymore)
964         
965         (hildon_caption_set_focus): uses gtk_widget_is_ancestor instead of reinventing it
966
967         (hildon_caption_set_focus_child): removed (not used anymore)
968         (hildon_caption_class_init): remove ref to hildon_caption_set_focus_child()
969
970         (hildon_caption_hierarchy_changed): type check added
971         (hildon_caption_forall): callback null check added
972         (hildon_caption_set_status): type check added
973         (hildon_caption_set_icon_image): type check added
974         (hildon_caption_activate): activate_block kludge removed as outdated
975         (hildon_caption_get_child_expand): argument declared const
976         (hildon_caption_set_label_text): g_return_if_fail changed to
977         g_assert since this is not a public function;
978         Duplicate separator check now uses correct localized separator
979         instead of assuming ':'
980
981         
982 2006-03-14  Luc Pionchon  <luc.pionchon@nokia.com>
983
984         Cleanup AppView,
985         
986         * hildon-lgpl/hildon-appview-c:
987         (hildon_app_view_init): Fixed a problem that prevented to set an
988         arbitrary value for TOOLBAR_MIDDLE (the distance, in pixel,
989         between toolbars). This fix involves a change in the default gtkrc
990         file, ie. the modification of the 'border' value of the
991         "toolbar-frame-middle" image in the osso-appview-background style.
992
993         (hildon_appview_add_with_scrollbar): pack in a scrolled window all
994         widget supporting adjustements, not only viewports.
995
996         (visible_toolbar): use proper parameter names
997         (find_findtoolbar_index): likewise.
998         (find_findtoolbar): likewise.
999         
1000         (find_findtoolbar): use g_assert for internal functions instead of g_return_if_fail
1001         (hildon_appview_finalize): likewise.
1002         (hildon_appview_signal_marshal): likewise.
1003         (hildon_appview_forall): likewise.
1004         (hildon_appview_switched_to): likewise. 
1005         (hildon_appview_real_fullscreen_state_change): likewise.
1006
1007         
1008 2006-03-14  Luc Pionchon  <luc.pionchon@nokia.com>
1009
1010         * hildon-widgets/hildon-date-editor.c
1011         (hildon_date_editor_entry_validate): Now, if an invalid date is
1012         entered, date-editor reverts to previous date, instead of setting
1013         the maximum allowed days.
1014
1015
1016 2006-03-14  Luc Pionchon  <luc.pionchon@nokia.com>
1017
1018         * hildon-widgets/hildon-date-editor.h
1019         (enum HildonDateEditorErrorType): added NO_ERROR entry.
1020
1021         * hildon-widgets/hildon-date-editor.c
1022         (hildon_date_editor_entry_validate): initialize error_code to NO_ERROR.
1023         (hildon_date_editor_entry_validate): check error_code against NO_ERROR
1024
1025
1026 2006-03-14  Luc Pionchon  <luc.pionchon@nokia.com>
1027
1028         * hildon-widgets/hildon-get-password-dialog.c:
1029         (hildon_get_password_dialog_set_title): Removed the deprecation
1030         #ifdefs from the .c file.
1031
1032         * hildon-widgets/hildon-file-handling-note.c: likewise.
1033
1034
1035
1036 2006-03-14  Luc Pionchon  <luc.pionchon@nokia.com>
1037
1038         * hildon-widgets/hildon-color-selector.c: Removed unused defines.
1039
1040         * hildon-widgets/hildon-color-selector.c
1041         (struct _HildonColorSelectorPriv): split 'index' into 'selected_index' and 'focus_index'
1042         (hildon_color_selector_expose)
1043         (hildon_color_selector_get_color)
1044         (hildon_color_selector_set_color)
1045         (key_pressed)
1046         (select_color)  
1047         (modify_focused): Separate selected color and focused color.
1048         Focused color now draws a different colored border around it.
1049         Renamed modify_selected() to modify_focused().
1050
1051         * hildon-widgets/hildon-color-selector.c
1052         (hildon_color_selector_expose)
1053         (select_color): Changed the logic in how the box positions are
1054         calculated. The old logic was wrong, but just happened to work
1055         with those specific values.
1056
1057         * hildon-widgets/hildon-color-selector.c
1058         (hildon_color_selector_expose): Draw the selected-border using
1059         ImageBorderColor color instead of hardcoded black.
1060
1061
1062 2006-03-13  Luc Pionchon  <luc.pionchon@nokia.com>
1063
1064         * hildon-widgets/hildon-color-popup.c (hildon_color_popup_new):
1065         removed current_color; use initial_color directly.
1066         Disabled select-hardkey from activating to OK-button by default. 
1067
1068
1069 2006-03-13  Luc Pionchon  <luc.pionchon@nokia.com>
1070
1071         * hildon-widgets/hildon-date-editor.c
1072         (hildon_date_editor_keypress): removed the unnecessary check for
1073         the position of the cursor in the text-field which was hindering
1074         the Left key from working as expected.
1075
1076
1077 2006-03-13  Luc Pionchon  <luc.pionchon@nokia.com>
1078
1079         * hildon-widgets/hildon-date-editor.c: connect 'toggled' signal 
1080         after setting the toggle_button active. Prevents GLIB_CRITICALs. 
1081
1082 2006-03-13  Luc Pionchon  <luc.pionchon@nokia.com>
1083
1084         * hildon-widgets/hildon-dialoghelp.c: minor cleanups
1085
1086         
1087 2006-03-13  Luc Pionchon  <luc.pionchon@nokia.com>
1088
1089         * hildon-widgets/hildon-font-selection-dialog.c
1090         (hildon_font_selection_dialog_show_preview): set line wrap for
1091         preview label.
1092
1093
1094 2006-03-13  Luc Pionchon  <luc.pionchon@nokia.com>
1095
1096         * hildon-widgets/hildon-date-editor.c
1097         (hildon_child_forall): cast 'container'
1098         (hildon_date_editor_size_allocate): adjusted height allocation.
1099
1100
1101 2006-03-13  Luc Pionchon  <luc.pionchon@nokia.com>
1102
1103         Cleanup calendar popup,
1104
1105         * hildon-widgets/hildon-calendar-popup.c: 
1106         - updated 'longdesc' comment.
1107         - removed gtk-infoprint.h from included headers (unused).
1108
1109         (struct HildonCalendarPopupPrivate): removed member
1110         'can_exit' (useless).
1111         (hildon_calendar_day_selected): removed (useless).
1112         (hildon_calendar_allow_exit): likewise.
1113         (hildon_calendar_deny_exit): likewise.
1114
1115         (hildon_calendar_selected_date): new function. replaces
1116         hildon_calendar_allow_exit()
1117
1118         (hildon_calendar_popup_init):
1119         - Removed initialization for 'can_exit'. 
1120         - Removed connection to removed useless functions.
1121         - Connect "selected_date" to hildon_calendar_selected_date().
1122         - Do not grab the focus (useless)
1123
1124         (hildon_key_pressed): just handle ESC and Return keys.
1125
1126         (hildon_calendar_popup_get_property): removed unused variables.
1127
1128
1129 2006-03-13  Tommi Komulainen  <tommi.komulainen@nokia.com>
1130
1131         * hildon-widgets/hildon-caption.c
1132         * hildon-widgets/hildon-composite-widget.h
1133         * hildon-widgets/hildon-get-password-dialog.c
1134         * hildon-widgets/hildon-grid.h
1135         * hildon-widgets/hildon-grid-item.h
1136         * hildon-widgets/hildon-volumebar-range.c
1137         * hildon-widgets/hildon-vvolumebar.c: Fix erroneous gtk-doc comment
1138         blocks.
1139         (hildon_controlbar_get_type): likewise.
1140
1141 2006-03-13  Tommi Komulainen  <tommi.komulainen@nokia.com>
1142
1143         * doc/hildon-libs.types: Add missing types
1144         * doc/hildon-libs-docs.sgml: Add missing links and some organization
1145         * doc/tmpl/*: Regenerate and add new files
1146
1147 2006-03-13  Tommi Komulainen  <tommi.komulainen@nokia.com>
1148
1149         * doc/Makefile.am: 
1150         * doc/hildon-libs-docs.xml: rename to hildon-libs-docs.sgml
1151
1152 2006-03-13  Tommi Komulainen  <tommi.komulainen@nokia.com>
1153
1154         * doc/tmpl/hildon-wizard-dialog.sgml: Fix unmatching tags
1155         * doc/Makefile.am: Ignore right files with IGNORE_HFILES
1156
1157 2006-03-13  Tommi Komulainen  <tommi.komulainen@nokia.com>
1158         
1159         * autogen.sh
1160         * configure.ac
1161         * doc/Makefile.am: Update gtk-doc framework bits
1162         * gtk-doc.make (commit generated file)
1163         * doc/hildon-libs-overrides.txt (add empty file for gtk-doc 1.1) 
1164
1165 2006-03-13  Johan Bilien  <johan.bilien@nokia.com>
1166         * hildon-widgets/hildon-code-dialog.c:
1167           - Add default title
1168           - Fix l10n
1169
1170 2006-03-07  Johan Bilien  <johan.bilien@nokia.com>
1171
1172         * hildon-widgets/hildon-window.c: propagate key-press event to the
1173           parent class (Closes N#23400)
1174         * configure.ac: 0.12.3
1175
1176 2006-03-06  Johan Bilien  <johan.bilien@nokia.com>
1177
1178         * hildon-wizard-dialog.[ch]: Add page_change signal. Patch courtesy
1179           of Artem Garmash 
1180         * configure.ac: 0.12.2
1181
1182
1183 2006-03-03  Luc Pionchon  <luc.pionchon@nokia.com>
1184
1185         * hildon-widgets/hildon-color-selector.c (key_pressed): use
1186         g_assert instead of g_return_val_if_fail
1187
1188         + indent changes
1189
1190
1191 2006-03-03  Luc Pionchon  <luc.pionchon@nokia.com>
1192
1193         * hildon-widgets/hildon-get-password-dialog.[ch]: 
1194         (hildon_get_password_dialog_set_title) marked deprecated.
1195
1196         + cleanup header coding style
1197
1198         
1199 2006-03-03  Luc Pionchon  <luc.pionchon@nokia.com>
1200
1201         Cleanup font selection dialog
1202         
1203         * hildon-widgets/hildon-font-selection-dialog.c
1204
1205         (hildon_font_selection_dialog_construct_notebook): removed dummy
1206         label
1207
1208         (color_modified_cb): renamed argument 'data' to 'fsd_priv'
1209
1210         (hildon_font_selection_dialog_preview_key_press): Renamed argument
1211         'data' to 'unused'. Replaced g_return_val_if_fail with g_assert.
1212
1213         (toggle_clicked): renamed argument 'data' to 'unused'
1214
1215         (hildon_font_selection_dialog_set_preview_text): added proper
1216         argument checking
1217
1218
1219 2006-03-03  Luc Pionchon  <luc.pionchon@nokia.com>
1220
1221         * hildon-widgets/hildon-system-sound.c (hildon_play_system_sound):
1222         removed console messages.
1223
1224         
1225 2006-03-03  Luc Pionchon  <luc.pionchon@nokia.com>
1226
1227         * hildon-widgets/hildon-sort-dialog.c: removed unused #include
1228         (struct _HildonSortDialogPrivate):
1229         - removed okButton, cancelButton
1230         - removed sort_by_value, sort_order_type
1231         - removed index_first
1232         - renamed combo1   to combo_key
1233         - renamed caption1 to caption_key
1234         - renamed combo2   to combo_order
1235         - renamed caption2 to cpation_order
1236
1237         (hildon_sort_dialog_init): removed init of unused fields.
1238                                    use new field names.
1239         (hildon_sort_dialog_get_sort_key): likewise.
1240         (hildon_sort_dialog_get_sort_order): likewise.
1241         (hildon_sort_dialog_set_sort_key): likewise.
1242         (hildon_sort_dialog_set_sort_order): likewise.
1243         (hildon_sort_dialog_add_sort_key): likewise.
1244         
1245 2006-03-03  Luc Pionchon  <luc.pionchon@nokia.com>
1246
1247         * hildon-widgets/hildon-date-editor.c
1248         (hildon_child_forall): use g_assert instead of g_return_if_fail
1249         (hildon_date_editor_entry_validate): likewise.
1250
1251
1252 2006-03-03  Luc Pionchon  <luc.pionchon@nokia.com>
1253
1254         * hildon-widgets/hildon-controlbar.c
1255         (hildon_controlbar_change_value): commented function.
1256
1257         * hildon-widgets/hildon-wizard-dialog.c
1258         (hildon_wizard_dialog_get_property): likewise.
1259
1260
1261 2006-03-03  Luc Pionchon  <luc.pionchon@nokia.com>
1262
1263         Cleanup weekday picker,
1264
1265         * hildon-widgets/hildon-weekday-picker.c
1266         (_): removed unused gettext macro
1267         (button_toggle): use meaningful parameter name
1268         (hildon_weekday_picker_forall): use g_asserts instead of g_return_if_fail
1269         (hildon_weekday_picker_size_allocate): likewise.
1270         (button_toggle): likewise.
1271
1272         
1273 2006-03-03  Luc Pionchon  <luc.pionchon@nokia.com>
1274
1275         Cleanup time editor,
1276         
1277         * hildon-widgets/hildon-time-editor.c
1278         (HILDON_TIME_EDITOR_GET_PRIVATE): moved up in the file.
1279         (ENTRY_BORDER, ICON_WIDTH, ICON_HEIGHT): removed hardcoded pixel sizes.
1280         (HILDON_TIME_EDITOR_TIME_LOWER_VALUE): removed (unused)
1281         (HILDON_TIME_EDITOR_TIME_UPPER_VALUE): removed (unused)
1282
1283         (struct _HildonTimeEditorPrivate):
1284         - h_entry, m_entry, s_entry replaced by entries[],
1285                                     allows to remove a lot of code.
1286         - label  renamed to hm_label
1287         - label2 renamed to sec_label
1288         - ampm   renamed to ampm_label
1289         - show_s renamed to show_seconds
1290         - removed fields: icon, valid_value, validated
1291
1292         + moved up in the file.
1293
1294         (enum HildonValidation): removed unused field 'VALIDATION_ERROR'
1295
1296         (ENTRY_HOURS, ENTRY_MINS, ENTRY_SECS): added (enum)
1297
1298         (set_widget_allocation): removed
1299         (hildon_time_editor_entry_changed): removed
1300
1301         (hildon_time_editor_forall): use g_asserts instead of g_return_if_fails
1302
1303         (hildon_time_editor_forall): removed unnecessary code
1304         (hildon_time_editor_destroy): likewise. 
1305
1306         (hildon_time_editor_class_init): use MIN_DURATION and MAX_DURATION
1307
1308         (hildon_time_editor_tap_and_hold_setup): loop on 'entries[]'
1309
1310         (hildon_time_editor_set_to_current_time): new function. (factorise code)
1311         (hildon_time_editor_init): loop on 'entries[]' (simplifies the code),
1312                                    use new variable names,
1313                                    use hildon_time_editor_set_to_current_time
1314         
1315         (hildon_time_editor_mnemonic_activate): uses 'entries[]'
1316         (hildon_time_editor_set_ticks): use g_assert instead of
1317                                         g_return_if_fails, use
1318                                         'entries[]', removed dead code
1319
1320         (hildon_time_editor_set_show_seconds): use 'entries[]' and new variable names
1321         (hildon_time_editor_validate): use 'entries[]', removed dead code
1322         (hildon_time_editor_get_max_values): use 'entries[]'
1323
1324
1325         (hildon_time_editor_get_show_seconds): use new variable names
1326         (hildon_time_editor_set_duration_mode): likewise.
1327
1328         (hildon_time_editor_check_locale): do not g_strdup (fix memory leak)
1329
1330         (hildon_time_editor_ampm_clicked): use g_asserts instead of g_return_if_fails
1331                                            removed dead code
1332         (hildon_time_editor_icon_clicked): use g_asserts instead of g_return_if_fails
1333
1334         (hildon_time_editor_size_request): cleaned up, removed hardcoded sizes.
1335
1336         (set_widget_allocation): removed (unused)
1337         (hildon_time_editor_entry_changed): removed (unused)
1338
1339         (IS_VALID_KEYPRESS): new macro
1340         (hildon_time_editor_entry_keypress): use g_asserts instead of g_return_if_fails
1341                                              deleate dead/unnecessary code
1342                                              use 'entries[]'
1343                                              use IS_VALID_KEYPRESS
1344
1345         (hildon_time_editor_validate_duration): use g_asserts instead of g_return_if_fails
1346
1347         (hildon_time_editor_validate_time): removed 'editor' parameter (unused)
1348
1349         (hildon_time_editor_size_allocate): cleanup
1350         (convert_to_12h): cleanup code style
1351
1352         (hildon_time_editor_show_seconds): removed deprecation flag
1353         (hildon_time_editor_enable_duration_mode): likewise.
1354
1355
1356 2006-03-02  Luc Pionchon  <luc.pionchon@nokia.com>
1357         
1358         Cleanup volume bars,
1359
1360         * hildon-widgets/hildon-volumebar.h: removed unused #include
1361         + coding style cleanup
1362
1363         * hildon-widgets/hildon-volumebar.c
1364         (_hildon_volumebar_mute_toggled): new function. Sends mute-toggled
1365         signal to widget.
1366         (hildon_child_forall): use g_assert instead of g_return_if_fail
1367
1368         * hildon-widgets/hildon-volumebar-range.h: removed unused #include
1369         + coding style cleanup
1370
1371         * hildon-widgets/hildon-volumebar-private.h:
1372         added missing #include.
1373         added _hildon_volumebar_mute_toggled.
1374         (struct _HildonVolumebarPrivate): removed 'orientation' field (unused)
1375
1376
1377         
1378         * hildon-widgets/hildon-vvolumebar.h: removed unused #include
1379         + coding style cleanup
1380
1381         * hildon-widgets/hildon-vvolumebar.c
1382         (hildon_vvolumebar_size_request)
1383         (hildon_vvolumebar_size_allocate)
1384         (hildon_vvolumebar_expose): use g_assert instead of g_return_if_fail
1385
1386         * hildon-widgets/hildon-vvolumebar.c (hildon_vvolumebar_mute): removed (unused).
1387         
1388         * hildon-widgets/hildon-vvolumebar.c: removed unused #include
1389         (vvolumebar_class_init): renamed to hildon_vvolumebar_class_init
1390         (vvolumebar_init): renamed to hildon_vvolumebar_init
1391         (hildon_vvolumebar_init): removed unused 'orientation'
1392         initialisation. Use _hildon_volumebar_mute_toggled instead of
1393         removed hildon_vvolumebar_mute.
1394
1395
1396         
1397         * hildon-widgets/hildon-hvolumebar.h: removed unused #include
1398         
1399         * hildon-widgets/hildon-hvolumebar.c (hvolumebar_class_init):
1400         renamed to hildon_hvolumebar_class_init
1401
1402         * hildon-widgets/hildon-hvolumebar.c (hvolumebar_init): renamed to
1403         hildon_hvolumebar_init
1404
1405         * hildon-widgets/hildon-hvolumebar.c (hildon_hvolumebar_mute):
1406         removed (unused).
1407
1408         * hildon-widgets/hildon-hvolumebar.c (hildon_hvolumebar_init):
1409         removed unused 'orientation' initialisation.
1410
1411         * hildon-widgets/hildon-hvolumebar.c (hildon_hvolumebar_init): use
1412         _hildon_volumebar_mute_toggled instead of removed
1413         hildon_hvolumebar_mute.
1414
1415
1416 2006-03-02  Luc Pionchon  <luc.pionchon@nokia.com>
1417
1418         More cleanup,
1419
1420         * hildon-widgets/hildon-dialoghelp.h: use G_BEGIN_DECLS +
1421         coding style cleanup
1422
1423         * hildon-widgets/hildon-color-popup.h: likewise.
1424
1425         * hildon-widgets/hildon-color-popup.[ch] (hildon_color_popup_new):
1426         use const parameter
1427
1428         * hildon-widgets/hildon-color-selector.c
1429         (hildon_color_selector_new): use g_return_val_if_fail instead of
1430         g_assert.
1431         (select_color): use g_assert instead of g_return_if_fail
1432
1433         * hildon-widgets/hildon-calendar-popup.c
1434         (hildon_calendar_allow_exit): use g_assert instead of g_return_if_fail.
1435
1436
1437
1438 2006-03-02  Johan Bilien  <johan.bilien@nokia.com>
1439
1440         * hildon-widgets/hildon-code-dialog.[ch], hildon-widgets/Makefile.am:
1441           added HildonCodeDialog widget
1442
1443
1444 2006-03-02  Johan Bilien  <johan.bilien@nokia.com>
1445
1446         * hildon-widgets/hildon-window.c: 
1447           - set the toolbar height explicitely
1448           - use show instead of show_all on the common_toolbar
1449           - add the toolbars bottom-up instead of top-down
1450         * hildon-widgets/hildon-program.c:
1451           - don't assume that a window was realized when added to 
1452             the program
1453
1454
1455 2006-03-01  Luc Pionchon  <luc.pionchon@nokia.com>
1456
1457         Cleanup font selection dialog,
1458
1459         * hildon-widgets/hildon-font-selection-dialog.h: use G_BEGIN_DECLS
1460         + coding style cleanup
1461
1462         * hildon-widgets/hildon-font-selection-dialog.c
1463         (hildon_font_selection_dialog_finalize): use g_return_if_fail
1464         instead of g_assert.
1465
1466         * hildon-widgets/hildon-font-selection-dialog.c
1467         (hildon_font_selection_dialog_get_text_tag)
1468         (hildon_font_selection_dialog_set_buffer)
1469         (hildon_font_selection_dialog_get_font)
1470         (hildon_font_selection_dialog_set_font): Removed deprecation #ifdef.
1471
1472
1473 2006-03-01  Luc Pionchon  <luc.pionchon@nokia.com>
1474
1475         Cleanup range editor,
1476         
1477         * hildon-widgets/hildon-range-editor.c
1478         (hildon_range_editor_calss_init):Removed
1479         widget_calss->mnemonic_activate init
1480
1481         * hildon-widgets/hildon-range-editor.c
1482         (hildon_range_editor_mnemonic_activate): Removed static function
1483         hildon_range_mnemonic_activate and FIXME. It is useless even
1484         through it is overriding function for
1485         GtkWidgetClass->mnemonic_activate. The activation and keyboard
1486         focus will be realized based on different applications.
1487
1488         * hildon-widgets/hildon-range-editor.c
1489         (is_valid_keyvalue_for_entry_keypress): new function.
1490
1491         * hildon-widgets/hildon-range-editor.c
1492         (hildon_range_editor_entry_keypress): uses
1493         is_valid_keyvalue_for_entry_keypress
1494         
1495         * hildon-widgets/hildon-range-editor.c
1496         (hildon_range_editor_forall): use g_return_if_fail instead of
1497         g_assert
1498
1499         * hildon-widgets/hildon-range-editor.cvn
1500         (hildon_range_editor_mnemonic_activate): removed. (unused)
1501
1502
1503 2006-03-01  Luc Pionchon  <luc.pionchon@nokia.com>
1504
1505         Cleanup hildon-note,
1506         
1507         * hildon-widgets/hildon-note.[ch]
1508
1509         (hildon_note_five_line_truncate): removed.
1510         (hildon_note_one_line_truncate): removed.
1511
1512         (hildon_note_set_property): use _hildon_gtk_label_set_text_n_lines
1513         instead of _{one|five}_line_truncate() functions.
1514
1515
1516         (hildon_note_new_information_with_icon_theme): Deprecated. Turned
1517         into wrapper of "hildon_note_new_information_with_icon_name".
1518
1519         (hildon_note_new_confirmation_with_icon_stock): Deprecated (broken)
1520         (hildon_note_new_information_with_icon_stock): Deprecated (broken)
1521         
1522         - removed some unnessecary includes.
1523
1524         - Merged hildon_note_create & hildon_note_create_form and rewrote
1525         the combination as hildon_note_rebuild
1526
1527         - Added missing g_return_* into public functions.
1528
1529         - Acquire real references to children which are packed/unpacked,
1530         so we do not need to bother about refcounting while changing the
1531         layout.
1532         
1533         
1534 2006-03-01  Luc Pionchon  <luc.pionchon@nokia.com>
1535
1536         More cleanup:
1537         
1538         * hildon-widgets/hildon-number-editor.c
1539
1540         (set_widget_allocation): use const parameter.
1541
1542         (hildon_number_editor_forall): use g_assert instead of g_return_if_fail
1543
1544         (struct _HildonNumberEditorPrivate): removed unused member 'negative'
1545         (hildon_number_editor_set_range): removed 'negative'
1546
1547
1548         * hildon-widgets/hildon-sort-dialog.c (hildon_sort_dialog_init):
1549         use g_assert instead of g_return_if_fail
1550
1551
1552         * hildon-widgets/hildon-time-picker.c:
1553         - in several places, replace 1440 by 24*60
1554         (PROP_AMPM): removed, unused.
1555         (hildon_time_picker_timeout): use significant parameter name,
1556                                       removed dead code
1557         (hildon_time_picker_init): removed useless call to _change_time()
1558
1559
1560 2006-03-01  Luc Pionchon  <luc.pionchon@nokia.com>
1561         
1562         Cleanup Seekbar,
1563         
1564         * hildon-widgets/hildon-seekbar.c
1565
1566         (_): Removed dgettext macro definition.
1567         
1568         (HildonSeekbarPrivate): Removed 'label' and 'draw_value'. (unused).
1569
1570         (hildon_seekbar_finalize): removed. not needed.
1571         (hildon_seekbar_class_init): Removed hildon_seekbar_finalize.
1572         
1573         (hildon_seekbar_size_request): indent cleanup.
1574
1575         (hildon_seekbar_size_allocate): simplified function.
1576
1577         (hildon_seekbar_button_press_event): Removed unused variables.
1578         (hildon_seekbar_button_release_event): likewise.
1579
1580
1581 2006-03-01  Luc Pionchon  <luc.pionchon@nokia.com>
1582
1583         Cleanup date editor,
1584
1585         * hildon-widgets/hildon-date-editor.c
1586
1587         (BUTTON_SPACING): removed. Use HILDON_MARGIN_DEFAULT
1588         (MAX_DATE_LEN): removed. Specify buffer lenght in code.
1589
1590         (hildon_date_editor_get_font_width): removed (legacy static
1591         function), use gtk_entry_set_width_chars instead.
1592         
1593         (hildon_date_editor_mnemonic_activate): removed mnemonic
1594         activation handler, since it's no more used by HildonCaption.
1595
1596         
1597         - Removed some meaningless code (if (somewidget != NULL)) from
1598         size allocate.
1599         
1600         - HEAVILY modified key_press, completely removed if/grab_focus
1601         spaghetti by gtk_widget_child_focus
1602
1603         - Removed input validation from keypress (that would not work
1604         anyway, since our input method do not generate presses).  => This
1605         allows to change default return value to FALSE and remove all cases
1606         that just returned FALSE for some keys.
1607         
1608         - Merged all *_entry_changed callbacks to use the same
1609         function. Again using gtk_widget_child_focus, but now with return
1610         value as well to detect last field.
1611
1612         - Changed that calendar button is no more implemented through
1613         changing widget hierarchy (old implementation caused critical
1614         issues when you used both stylus and hardkeys at the same time to
1615         popup. => finalize method no longer contained anything => removed
1616
1617         - Locale type is no longer needed after initial setup.
1618
1619         - Changed idle_popup to popup_calendar_dialog. Idle was a legacy
1620         hack from the days of background dimming (it was important to
1621         process background updates before the dimming was done).
1622
1623         - Changed the field order/delimeters to be correcly derived form
1624         the locale.
1625
1626         - Rewrote validation function, combined it with validation done in
1627         focus_out (since both are now called at the same time).
1628
1629         - Changed set_date function to set all components at one go
1630         without doing any validation there between (before setting each
1631         component).
1632
1633
1634
1635 2006-03-01  Luc Pionchon  <luc.pionchon@nokia.com>
1636         
1637         Cleanup set-password dialog
1638         
1639         * hildon-widgets/hildon-set-password-dialog.[ch]
1640         (hildon_set_password_dialog_set_domain): gchar * param is const
1641         (hildon_set_password_dialog_new_with_default): likewise.
1642
1643         * hildon-widgets/hildon-set-password-dialog.c
1644
1645         (hildon_set_password_set_property): setting 'modify-protection'
1646         now creates the UI
1647
1648         (hildon_set_password_get_property): fixed broken 'domain' (missing
1649         break statement!) and 'modify-protection' (was a null operation)
1650         properties; code simplified.
1651
1652         (hildon_set_password_dialog_constructor),
1653         (create_contents),
1654         (hildon_set_password_dialog_class_init),
1655         (hildon_set_password_dialog_init):
1656         hildon_set_password_dialog_constructor removed as weird and
1657         obsolete and replaced with new function create_contents; fixed
1658         leaking group variable; removed some unused, outdated code that
1659         was already commented out.
1660
1661         (hildon_set_password_response_change),
1662         (hildon_set_password_response_set): GtkWindow *parent arguments
1663         changed to gpointer unused; cleaned up unnecessary strcmp's
1664
1665         (hildon_checkbox_toggled): fixed typo in function name (checbox ->
1666         checkbox). gpointer renamed to be more descriptive; Code simplified  
1667
1668         (hildon_set_password_dialog_get_type): empty function argument
1669         list replaced with void keyword.
1670
1671         (hildon_set_password_dialog_new),
1672         (hildon_set_password_dialow_new_with_default): simplified by
1673         having the simpler constructor call the more complex one, not vice
1674         versa; moved callback connects to create_contents since they
1675         depend on the status of 'modify-protection' property
1676
1677         (hildon_set_password_dialog_get_password): type check added
1678         (hildon_set_password_dialog_get_protected): likewise
1679         (hildon_set_password_dialog_set_domain): likewise
1680         
1681         
1682 2006-03-01  Luc Pionchon  <luc.pionchon@nokia.com>
1683
1684         Cleanup name-password dialog:
1685         
1686         * hildon-widgets/hildon-name-password-dialog.[ch]
1687
1688         (HildonNamePasswordDialogPrivate): nameEntry and passwordEntry
1689         types changed from *HildonCaption to *GtkEntry
1690
1691         (hildon_name_password_dialog_set_property): layout fixes;
1692         duplicated code replaced with calls to relevant public functions
1693
1694         (hildon_name_password_dialog_get_property): layout fixes;
1695         duplicated code replaced with calls to relevant public functions
1696
1697         (hildon_name_password_dialog_init): fixed leaking group variable;
1698         reworked to have captions as local variables and captioned entries
1699         in the private struct
1700
1701         (hildon_name_password_dialog_new_with_default): name and password
1702         arguments declared const
1703
1704         (hildon_name_password_dialog_get_name): type check added + cleanup
1705         (hildon_name_password_dialog_get_password): likewise.
1706
1707         (hildon_name_password_dialog_set_domain): domain argument declared
1708         const; type check added + cleanup
1709
1710
1711 2006-03-01  Luc Pionchon  <luc.pionchon@nokia.com>
1712
1713         Cleanup get-password dialog:
1714         
1715         * hildon-widgets/hildon-get-password-dialog.[ch]
1716
1717         (HildonGetPasswordDialogPrivate): gboolean get_old added
1718
1719         (hildon_get_password_set_property): fixed broken 'numbers-only'
1720         and 'max-characters' cases; 'get-old' property added
1721
1722         (hildon_get_password_get_property): added support for reading
1723         'numbers-only' properties; added missing break to 'domain' case.
1724         added 'get-old' property
1725
1726         (hildon_get_password_dialog_class_init): 'domain' and
1727         'numbers-only' properties are now readable; 'get-old' property
1728         added
1729
1730         (hildon_get_password_dialog_init, create_contents): everything
1731         that depends on the type of the dialog (i.e. 'get-old' property)
1732         is now done in create_contents after properties are initialized;
1733         fixed leaking group variable
1734
1735         (hildon_get_password_dialog_get_type): empty function argument
1736         list replaced with void keyword
1737
1738         (hildon_get_password_dialog_new): moved setting the labels of the
1739         get password dialog to init where it should be done; 'get-old'
1740         property set upon construction to achieve this
1741
1742         (hildon_get_password_dialog_new_with_default): password argument
1743         declared const
1744
1745         (hildon_get_password_dialog_get_password): type check added
1746         (hildon_get_password_dialog_set_domain): type check added; domain
1747         argument declared const; duplicate function declaration removed
1748
1749         (hildon_get_password_dialog_set_title): type check added;
1750         new_title argument declared const
1751
1752         (hildon_get_password_dialog_set_caption): type check added;
1753         new_caption argument declared const
1754
1755         (hildon_get_password_dialog_set_max_characters): broken type check fixed
1756         (_invalid_input): gpointer data argument renamed unused
1757
1758
1759 2006-02-28  Luc Pionchon  <luc.pionchon@nokia.com>
1760
1761         (*_get_type): declared G_GNUC_CONST
1762         
1763         * hildon-widgets/hildon-app.h:
1764         * hildon-widgets/hildon-appview.h:
1765         * hildon-widgets/hildon-calendar-popup.h:
1766         * hildon-widgets/hildon-color-selector.h:
1767         * hildon-widgets/hildon-date-editor.h:
1768         * hildon-widgets/hildon-find-toolbar.h: 
1769         * hildon-widgets/hildon-get-password-dialog.h:
1770         * hildon-widgets/hildon-name-password-dialog.h:
1771         * hildon-widgets/hildon-number-editor.h:
1772         * hildon-widgets/hildon-seekbar.h:
1773         * hildon-widgets/hildon-set-password-dialog.h:
1774         * hildon-widgets/hildon-sort-dialog.h:
1775         * hildon-widgets/hildon-time-editor.h:
1776         * hildon-widgets/hildon-weekday-picker.h:
1777         * hildon-widgets/hildon-wizard-dialog.h:
1778
1779 2006-02-28  Luc Pionchon  <luc.pionchon@nokia.com>
1780
1781         Volume bars cleanup
1782         
1783         * hildon-widgets/hildon-volumebar.c
1784         (hildon_volumebar_class_init): object class casts cleaned up
1785         (hildon_child_forall): removed unnecessary variable vbar; type check added
1786         (hildon_volumebar_set_property): removed unnecessary variable vbar
1787         (hildon_volumebar_set_level): type check added
1788         (hildon_volumebar_get_level): type check added
1789         (hildon_volumebar_set_mute): type check added
1790         (hildon_volumebar_get_mute): type check added
1791         (hildon_volumebar_get_adjustment): type check added
1792         (hildon_volumebar_key_press): removed unnecessary g_return_if_fail
1793
1794         * hildon-widgets/hildon-volumebar.h
1795         (hildon_volumebar_get_type): declared G_GNUC_CONST
1796
1797         * hildon-widgets/hildon-volumebar-private.h:
1798         - G_BEGIN_DECLS/G_END_DECLS added
1799         - ownorientation removed from private struct
1800
1801         * hildon-widgets/hildon-volumebar-range.c
1802         (hildon_volumebar_range_init): vacuous return statement removed
1803
1804         (hildon_volumebar_range_set_level): removed unnecessary clamping
1805         kludge that violated object oriented principles only to provide an
1806         extremely minor, unnecessary optimization; type check added
1807
1808         (hildon_volumebar_range_get_level): now accesses adjustment value
1809         with appropriate functions instead of reading it directly from the
1810         struct, which is bad OOP; type check added
1811
1812         (hildon_volumebar_range_button_press_event): Added more descriptive comments
1813         (hildon_volumebar_range_button_release_event): Added more descriptive comments
1814
1815         * hildon-widgets/hildon-volumebar-range.h
1816         (hildon_volumebar_range_get_type): declared G_GNUC_CONST
1817
1818         * hildon-widgets/hildon-hvolumebar.c
1819         (hvolumebar_init): priv->ownorientation and v_ptr removed;
1820         completely removed the gtk_widget_show() call that was already
1821         commented out
1822
1823         (hildon_hvolumebar_new): empty function parameter list replaced
1824         with void keyword
1825
1826         (hildon_hvolumebar_map): vbar variable removed; type check added
1827         (hildon_hvolumebar_expose): type check added
1828         (hildon_hvolumebar_size_request): type check added
1829         (hildon_hvolumebar_size_allocate): vbar variable removed; type check added
1830
1831         * hildon-widgets/hildon-hvolumebar.h
1832         (hildon_hvolumebar_get_type): declared G_GNUC_CONST
1833
1834         * hildon-widgets/hildon-vvolumebar.c
1835         (vvolumebar_init): priv->ownorientation and v_ptr removed
1836         (hildon_vvolumebar_new): empty function parameter list replaced with void keyword
1837
1838         (hildon_vvolumebar_expose): type check added
1839         (hildon_vvolumebar_size_request): type check added
1840         (hildon_vvolumebar_size_allocate): vbar variable removed; type check added
1841
1842         * hildon-widgets/hildon-vvolumebar.h
1843         (hildon_vvolumebar_get_type): declared G_GNUC_CONST 
1844
1845
1846 2006-02-28  Luc Pionchon  <luc.pionchon@nokia.com>
1847
1848         * hildon-widgets/hildon-weekday-picker.c
1849         (_HildonWeekdayPickerPrivate): Removed members: dayorder, days,
1850         last_index; added day_order_buttons
1851         
1852         (hildon_weekday_picker_mnemonic_activate): removed.
1853                                          mnemonics are no longer used.
1854         
1855         (hildon_weekday_picker_class_init): Removed mnemonic_activate
1856         function. Rewritten creation of buttons. Unref'ed size group.
1857         
1858         (button_toggle): Removed bit mask checking, simplified function
1859         
1860         (hildon_weekday_picker_set_day):
1861         (hildon_weekday_picker_unset_day): Removed bit mask checking, date
1862                                            adjustment, unecessary for loop
1863         
1864         (hildon_weekday_picker_toggle_day): Removed date adjustment and
1865         unecessary for loop. Simplified button toggling
1866
1867         (hildon_weekday_picker_set_all):
1868         (hildon_weekday_picker_unset_all): Removed bit mask checking and
1869                                            simplified for loop
1870
1871         (hildon_weekday_picker_isset_day): Removed date adjustment and
1872                                            unecessary for loop;
1873
1874 2006-02-21  Luc Pionchon  <luc.pionchon@nokia.com>
1875
1876         Added hildon-banner, as a clean replacement for gtk-infoprint
1877         * hildon-widgets/hildon-banner.[ch]: implementation and header  
1878         * hildon-widgets/Makefile.am: reference new files
1879         * hildon-widgets/gtk-infoprint.c: removed implementation, now just
1880         a compatibility wrapper to hildon-banner
1881         
1882 2006-02-21  Luc Pionchon  <luc.pionchon@nokia.com>
1883         
1884         * hildon-widgets/hildon-color-button.c: added comments
1885         * hildon-widgets/hildon-controlbar.c: Likewise.
1886         * hildon-widgets/hildon-composite-widget.c: Likewise.
1887         * hildon-widgets/hildon-calendar-popup.c: Likewise.
1888
1889 2006-02-21  Luc Pionchon  <luc.pionchon@nokia.com>
1890
1891         * ChangeLog-hildon-lgpl: copied from old hildon-lgpl/ChangeLog for
1892         reference
1893
1894 2006-02-21  Luc Pionchon  <luc.pionchon@nokia.com>
1895
1896         * configure.ac: 0.12.1
1897
1898 2006-02-21  Johan Bilien  <johan.bilien@nokia.com>
1899
1900         * doc/tmpl/hildon-program.sgml: added from hildon-lgpl HW branch
1901         * doc/tmpl/hildon-window.sgml: likewise.
1902         * hildon-widgets/hildon-program.[ch]: likewise.
1903         * hildon-widgets/hildon-window.[ch]: likewise.
1904         * hildon-widgets/hildon-window-private.h: likewise.
1905         * hildon-widgets/Makefile.am: Added these new files to the build
1906           and distribution.
1907
1908 2006-02-14  Luc Pionchon  <luc.pionchon@nokia.com>
1909
1910         * configure.ac: 0.12.0
1911
1912         Merged hildon-lgpl into hildon-libs (and hildon-fm)
1913
1914         * doc/tmpl/hildon-system-sound.sgml: added from hildon-lgpl
1915         * doc/tmpl/hildon-appview.sgml: likewise.
1916         * doc/tmpl/hildon-color-popup.sgml: likewise.
1917         * doc/tmpl/hildon-find-toolbar.sgml: likewise.
1918         * doc/tmpl/hildon-app.sgml: likewise.
1919         * doc/tmpl/hildon-input-mode-hint.sgml: likewise.
1920         * doc/tmpl/hildon-caption.sgml: likewise.
1921         * doc/tmpl/hildon-marshalers.sgml: likewise.
1922         * doc/tmpl/hildon-add-home-dialog.sgml: likewise.
1923         * doc/tmpl/hildon-defines.sgml: likewise.
1924         * doc/tmpl/gtk-infoprint.sgml: likewise.
1925         * doc/tmpl/hildon-composite-widget.sgml: likewise.
1926
1927         * hildon-widgets/gtk-infoprint.[ch]: added from hildon-lgpl
1928         * hildon-widgets/hildon-app.[ch]:likewise.
1929         * hildon-widgets/hildon-app-private.h:likewise.
1930         * hildon-widgets/hildon-appview.[ch]:likewise.
1931         * hildon-widgets/hildon-caption.[ch]:likewise.
1932         * hildon-widgets/hildon-defines.[ch]:likewise.
1933         * hildon-widgets/hildon-find-toolbar.[ch]:likewise.
1934         * hildon-widgets/hildon-input-mode-hint.h:likewise.
1935         
1936         * hildon-widgets/Makefile.am (libhildonwidgets_la_SOURCES): 
1937         removed hildon-file-details-dialog.[ch] (moved to hildon-fm)
1938         added,
1939             gtk-infoprint.[ch]
1940             hildon-app.[ch]
1941             hildon-app-private.h
1942             hildon-appview.[ch]
1943             hildon-caption.[ch]
1944             hildon-defines.[ch]
1945             hildon-find-toolbar.[ch]
1946             hildon-input-mode-hint.h
1947
1948         * hildon-widgets/hildon-get-password-dialog.c: corrected #include
1949         path for gtk-infoprint.h and hildon-input-mode-hint.h
1950
1951         * po/en_GB.po: merged msgstr from hildon-lgpl
1952
1953         * timer/*: added from hildon-lgpl
1954
1955
1956
1957         Moved hildon-file-details-dialog from hildon-libs to hildon-fm
1958
1959         * hildon-widgets/hildon-file-details-dialog.[ch]: moved to
1960         hildon-fm
1961
1962         * ut/hildon-widgets_tests.c (test41a): removed test case for
1963         hildon_file_details_dialog
1964
1965         * doc/hildon-libs.types: likewise.
1966         * doc/hildon-libs-docs.xml: likewise.
1967
1968
1969
1970         Update build files
1971
1972         * hildon-libs.pc.in (Libs): do not requires hildon-lgpl anymore
1973         nor hildon-fm
1974
1975         * Makefile.am (SUBDIRS): added timer/
1976
1977         * configure.ac: do not depend anymore on hildon-lgpl nor
1978         hildon-fm, check for libmb, added Makefile output for timer/
1979
1980
1981         
1982 2006-01-18  Luc Pionchon  <luc.pionchon@nokia.com>
1983
1984         * configure.ac: 0.10.2
1985
1986 2006-01-18  Luc Pionchon  <luc.pionchon@nokia.com>
1987
1988         N#22240 CP: Tapping outside the scroll bar invoke the applet.
1989         * hildon-widgets/hildon-grid.c (adjust_scrollbar_height):
1990         hildon-apps scroll-control property is now handled.
1991         (get_child_index_by_coord): ignores events not matching a grid
1992         item.
1993
1994 2006-01-11  Luc Pionchon  <luc.pionchon@nokia.com>
1995
1996         * configure.ac: 0.10.1
1997
1998 2006-01-11  Luc Pionchon  <luc.pionchon@nokia.com>
1999
2000         Missing/Buggy documentation from,
2001         N#11566 make password dialog customizable (messages)
2002         * hildon-widgets/hildon-get-password-dialog.c
2003         (hildon_get_password_dialog_set_title): typo in gtkdoc function
2004         name
2005         * doc/tmpl/xxx.sgml: updated.
2006         
2007 2006-01-11  Luc Pionchon  <luc.pionchon@nokia.com>
2008
2009         N#19369 TRUE Scketch does not show colour change when using white color
2010         
2011         Color button needs inner border white, and outer border black.
2012         * hildon-widgets/hildon-color-button.c
2013         (hildon_color_button_draw_pixbuf_borders): new function. Paint the
2014         border
2015         * hildon-widgets/hildon-color-button.c (hildon_color_button_init):
2016         (hildon_color_button_realize): call the above function
2017
2018 2006-01-11  Luc Pionchon  <luc.pionchon@nokia.com>
2019
2020         N#21063 hildon_note_new_confirmation_add_buttons has misleading docs
2021         * hildon-widgets/hildon-note.c: 
2022         (hildon_note_new_confirmation_add_buttons): updated doc
2023         (hildon_note_set_button_texts): likewise.
2024
2025 2006-01-11  Luc Pionchon  <luc.pionchon@nokia.com>
2026
2027         N#21884 Cannot select read-only by using the center of the scroll key
2028         * hildon-widgets/hildon-file-details-dialog.c
2029         (hildon_file_details_dialog_init): Removed dialog default response.
2030
2031 2006-01-11  Luc Pionchon  <luc.pionchon@nokia.com>
2032
2033         N#8094 5-bit color selector: wrong margins and pixel measurements
2034         M#59   HildonColorSelector needs more space
2035         * hildon-widgets/hildon-color-popup.c (HILDON_COLOR_COL_SPACING)
2036         (hildon_color_popup_new): add space between the control bars and
2037         the color preview area.
2038
2039 2006-01-03  Luc Pionchon  <luc.pionchon@nokia.com>
2040
2041         * hildon-widgets/hildon-calendar-popup.c
2042         * hildon-widgets/hildon-color-button.c
2043         * hildon-widgets/hildon-color-popup.c
2044         * hildon-widgets/hildon-color-selector.c
2045         * hildon-widgets/hildon-composite-widget.c
2046         * hildon-widgets/hildon-controlbar.c
2047         * hildon-widgets/hildon-date-editor.c
2048         * hildon-widgets/hildon-dialoghelp.c
2049         * hildon-widgets/hildon-file-details-dialog.c
2050         * hildon-widgets/hildon-font-selection-dialog.c
2051         * hildon-widgets/hildon-get-password-dialog.c
2052         * hildon-widgets/hildon-grid-item.c
2053         * hildon-widgets/hildon-grid.c
2054         * hildon-widgets/hildon-hvolumebar.c
2055         * hildon-widgets/hildon-name-password-dialog.c
2056         * hildon-widgets/hildon-note.c
2057         * hildon-widgets/hildon-number-editor.c
2058         * hildon-widgets/hildon-range-editor.c
2059         * hildon-widgets/hildon-scroll-area.c
2060         * hildon-widgets/hildon-seekbar.c
2061         * hildon-widgets/hildon-set-password-dialog.c
2062         * hildon-widgets/hildon-sort-dialog.c
2063         * hildon-widgets/hildon-time-editor.c
2064         * hildon-widgets/hildon-time-picker.c
2065         * hildon-widgets/hildon-volumebar-private.h
2066         * hildon-widgets/hildon-volumebar-range.c
2067         * hildon-widgets/hildon-volumebar.c
2068         * hildon-widgets/hildon-vvolumebar.c
2069         * hildon-widgets/hildon-weekday-picker.c
2070         * hildon-widgets/hildon-wizard-dialog.c
2071           commented code
2072
2073 2005-12-28  Luc Pionchon  <luc.pionchon@nokia.com>
2074
2075         * configure.ac: 0.10.0
2076
2077 2005-12-12  Luc Pionchon  <luc.pionchon@nokia.com>
2078
2079         Some more properties for Gazpacho support,      
2080
2081         * hildon-widgets/hildon-calendar-popup.c: "day", "month", "year"
2082         * hildon-widgets/hildon-color-selector.c: "color"
2083
2084
2085         * hildon-widgets/hildon-color-selector.[ch]
2086         (hildon_color_selector_get_color): return const pointer to the
2087         color (not a copy).
2088         
2089 2005-11-18  Luc Pionchon  <luc.pionchon@nokia.com>
2090
2091
2092         Gazpacho support, added the following properties:
2093         
2094         * hildon-widgets/hildon-insert-object-dialog.c: "name", "mimetype"
2095         * hildon-widgets/hildon-seekbar.c: "position", "fraction"
2096         * hildon-widgets/hildon-grid-item.c: "emblem-type"
2097         * hildon-widgets/hildon-sort-dialog.c: "sort-key", "sort-order"
2098         * hildon-widgets/hildon-grid.c: "style", "scrollbar-pos"
2099         * hildon-widgets/hildon-font-selection-dialog.c: "preview-text"
2100         * hildon-widgets/hildon-get-password-dialog.c: "caption-label", "max-characters"
2101         * hildon-widgets/hildon-telephone-editor.c: "border", "plus" (obsolet widget)
2102         * hildon-widgets/hildon-number-editor.c: "value"
2103
2104         * hildon-widgets/hildon-color-button.c: minor cleanup
2105
2106
2107 2005-11-18  Luc Pionchon  <luc.pionchon@nokia.com>
2108
2109         Started new development
2110         (branche for maintenance continues with versions 0.9.x)
2111
2112 2005-11-03  Luc Pionchon  <luc.pionchon@nokia.com>
2113
2114         * configure.ac: 0.9.53
2115
2116 2005-10-31  Luc Pionchon  <luc.pionchon@nokia.com>
2117
2118         same fix for,
2119         N#19283 Control panel - The values entered are not saved.
2120         N#19648 Hildon Date Editor widget detects values too high
2121         (note: complete fix include also fixes in GTk+)
2122
2123         * hildon-widgets/hildon-calendar-popup.c
2124         (hildon_calendar_popup_set_property),
2125         (hildon_calendar_popup_class_init),
2126         (init_dmy): Added 'min-year', 'max-year' properties for passing
2127         the information through from HildonDateEditor to GtkCalendar
2128
2129         * hildon-widgets/hildon-date-editor.c:
2130         (hildon_date_editor_class_init),
2131         (hildon_date_editor_init),
2132         (hildon_date_editor_set_property),
2133         (hildon_date_editor_get_property),
2134         (idle_popup),
2135         (hildon_date_editor_entry_validate),
2136         (hildon_date_editor_date_error): Added 'min-year', 'max-year'
2137         properties and replaced hardcoded constants with them
2138
2139         * hildon-widgets/hildon-date-editor.c
2140         (hildon_date_editor_d_entry_changed),
2141         (hildon_date_editor_m_entry_changed),
2142         (hildon_date_editor_d_entry_changed): new functions to ensure that
2143         the fields are validated and the focus is moved when maximum
2144         number of characters has been entered.
2145         
2146 2005-10-13  Luc Pionchon  <luc.pionchon@nokia.com>
2147
2148         * configure.ac: 0.9.52
2149
2150 2005-10-12  Luc Pionchon  <luc.pionchon@nokia.com>
2151
2152         N#19140 System alerts still audible despite being turned off
2153         
2154         * hildon-widgets/hildon-note.c (sound_handling): 
2155
2156         * hildon-system-sound.[ch]: New files, implements hildon_play_system_sound.
2157
2158         * hildon-note.c (sound_handling): Changed to use new
2159         hildon_play_system_sound.
2160         (hildon_note_init): Signal handler id is changed to be in private
2161         structure, not in global variable.
2162         
2163         * hildon-note.c: Removed unused defines etc.
2164
2165         * Makefile.am: Appended new files to build rules.
2166
2167 2005-10-05  Luc Pionchon  <luc.pionchon@nokia.com>
2168
2169         * configure.ac: 0.9.51
2170
2171 2005-10-05  Luc Pionchon  <luc.pionchon@nokia.com>
2172
2173         N#20027 PDF Reader crashes on selecting read only option in the
2174         details dialog box.
2175
2176         * hildon-widgets/hildon-file-details-dialog.c:
2177         (change_state): Fixed assertion that was causing problems
2178         (check_validity): New function: We now automatically close the
2179         dialog if the displayed file is removed.
2180         (handle_focus): Callback removed:
2181         (init): Now using correct gtk way to bind container and adjustment
2182         together. Not the previous callback.
2183         (set_property): Connecting/disconnecting new handlers (for
2184         change_state).
2185         (finalize): disconnecting new handler.
2186         
2187 2005-10-05  Luc Pionchon  <luc.pionchon@nokia.com>
2188
2189         N#17918 Volumebar widget background image doesn't change when
2190         widget goes into mute state,
2191         
2192         * hildon-vvolumebar.c (hildon_volumebar_set_mute): queued widget
2193         for drawing
2194         
2195         * hildon-hvolumebar.c (hildon_hvolumebar_expose): paint background
2196         using the state of the internal volumebar, not the whole container
2197
2198         * hildon-vvolumebar.c (hildon_vvolumebar_expose): paint background
2199         using the state of the internal volumebar, not the whole container
2200
2201 2005-09-19 Tapani Palli <tapani.palli@nokia.com>
2202
2203         * hildon-widgets/hildon-dialoghelp.[ch]: added
2204         gtk_dialog_help_disable and fixed bug N#19468
2205
2206 2005-09-14  Luc Pionchon  <luc.pionchon@nokia.com>
2207
2208         * configure.ac: Release 0.9.50 
2209
2210 2005-09-13  Luc Pionchon  <luc.pionchon@nokia.com>
2211
2212         Part of N#11129,
2213
2214         * po/en_GB.po: Added "Ckct_wi_grid_no_items"
2215
2216         * hildon-widgets/hildon-grid.c
2217         (hildon_grid_class_init, hildon_grid_init): Replaced default empty
2218         label by logical name "Ckct_wi_grid_no_items"
2219
2220
2221 2005-08-31  Luc Pionchon  <luc.pionchon@nokia.com>
2222
2223         * po/en_GB.po (ecdg_ti_verify_password): translation update.
2224
2225 2005-08-30  Tommi Komulainen  <tommi.komulainen@nokia.com>
2226
2227         * configure.ac: Release 0.9.49
2228
2229 2005-08-30  Tommi Komulainen  <tommi.komulainen@nokia.com>
2230
2231         * hildon-widgets/hildon-number-editor.c (add_select_all_idle,
2232         hildon_number_editor_finalize, hildon_number_editor_entry_changed):
2233         Save the id of the idle callback and remove it when the widget is
2234         destroyed to avoid crashing.  N#18096
2235
2236 2005-08-30  Tommi Komulainen  <tommi.komulainen@nokia.com>
2237
2238         * hildon-widgets/hildon-number-editor.c (button_event_id): GSource
2239         id's are unsigned and undefined at zero (instead of signed and -1)
2240
2241 2005-08-30  Tommi Komulainen  <tommi.komulainen@nokia.com>
2242         
2243         * hildon-widgets/hildon-time-editor.c (convert_to_12h): Removed a hack
2244         that was not working.  N#16805
2245
2246 2005-08-22  Tommi Komulainen  <tommi.komulainen@nokia.com>
2247
2248         * configure.ac: Release 0.9.48
2249
2250 2005-08-22  Tommi Komulainen  <tommi.komulainen@nokia.com>
2251
2252         * hildon-widgets/hildon-grid.c (hildon_grid_set_num_columns): Never
2253         allow area_rows to be 0 (ie. before widget is visible), otherwise the
2254         initial jump_scrollbar_to_focused() scrolls wrong.  N#17152
2255
2256 2005-08-22  Tommi Komulainen  <tommi.komulainen@nokia.com>
2257
2258         * hildon-widgets/hildon-calendar-popup.c (hildon_calendar_popup_init):
2259         Do not override the week-start property of GtkCalendar according to
2260         the hildon-libs PO file, it is automatically determined from locale
2261         data.  N#12176
2262
2263 2005-08-17  Tommi Komulainen  <tommi.komulainen@nokia.com>
2264
2265         * configure.ac: Release 0.9.47
2266
2267 2005-08-17  Tommi Komulainen  <tommi.komulainen@nokia.com>
2268
2269         * hildon-widgets/hildon-get-password-dialog.c: Add "numbers_only"
2270         property for setting the password entry accept only numeric values.
2271         N#15212
2272
2273 2005-08-17  Tommi Komulainen  <tommi.komulainen@nokia.com>
2274
2275         * hildon-widgets/hildon-calendar-popup.c (MAX_YEAR, MIN_YEAR):
2276         * hildon-widgets/hildon-note.c (ELLIPSATION_STRING, BOX_SPAXING):
2277         * hildon-widgets/hildon-volumebar-range.c (CHANGE_THRESHOLD):
2278         Use defines rather than magic numbers in the code.
2279
2280 2005-08-17  Tommi Komulainen  <tommi.komulainen@nokia.com>
2281
2282         Update to new l10n packaging style.  po-files (inside this package)
2283         are not used for now, the message catalogs come from separate packages
2284         and including them here would conflict.
2285
2286         * Makefile.am (SUBDIRS): stop including po-files
2287         * Makefile.am (EXTRA_DIST):
2288         * debian/hildon-libs-l10n-engb.install:
2289         * debian/hildon-libs-l10n-src.install:
2290         * po/debian/*: Removed
2291
2292 2005-08-09  Luc Pionchon  <luc.pionchon@nokia.com>
2293
2294         * hildon-widgets/hildon-file-details-dialog.c: Added read only
2295         checks to cover gateway content as well.
2296         
2297         * hildon-widgets/hildon-time-editor.c:
2298         (hildon_time_editor_validate): Replace solid numbers with defined
2299         values
2300         (convert_to_12h): Remove "work-around" for the broken 12h timespec
2301
2302
2303 2005-08-05  Luc Pionchon  <luc.pionchon@nokia.com>
2304
2305         * hildon-widgets/hildon-color-selector.c (modify_selected): fix
2306         invalid cast from `GdkWindow' to `GtkWindow' 
2307
2308         * hildon-widgets/hildon-color-popup.c
2309         (hildon_popup_palette_expose): removed debug printing
2310
2311 2005-08-03  Luc Pionchon  <luc.pionchon@nokia.com>
2312
2313         * doc/tmpl/hildon-note.sgml: code example, use slightly less funny
2314         string examples.
2315
2316         * hildon-widgets/hildon-scroll-area.c
2317         (hildon_scroll_area_destroy): one-instruction function:
2318         removed. Call g_free directly.
2319         + minor cleanup
2320         (hildon_scroll_area_size_allocate):When a scrollbar appears to the
2321         right edge of window, size of the child is also shrinked. 'fixed'
2322         does not automatically update this data -> Doing it manually.
2323
2324         * hildon-widgets/hildon-date-editor.h: added
2325         HildonDateEditorErrorType error enumeration type, removed signal
2326         "validate-date" virtual function, added signal "date-error"
2327         virtual function.
2328
2329         * hildon-widgets/hildon-date-editor.c (hildon_date_editor_date_error):
2330         added custom info prints.
2331         (hildon_date_editor_validate_date): removed
2332         (hildon_date_editor_entry_validate): validate maximum and minimum
2333         limits on each field.
2334         (hildon_date_editor_entry_focus_out): check the date validation
2335         in simpler manner, don't put content if field is empty (spec
2336         doesn't say if there should be anything placed in the entry if
2337         it is empty).
2338         (hildon_date_editor_get_date),
2339         (hildon_date_editor_get_month),
2340         (hildon_date_editor_get_year),
2341         (hildon_date_editor_get_day): use direct entry content, so that 0
2342         indicates empty entry, and information is more accurate.
2343
2344 2005-08-01  Luc Pionchon  <luc.pionchon@nokia.com>
2345
2346         * configure.ac: Adjusted CFLAGS and removed -Werror due to the
2347         glib-2.0 flaw. See
2348         http://bugzilla.gnome.org/show_bug.cgi?id=310175 and
2349         http://bugzilla.gnome.org/show_bug.cgi?id=310216
2350
2351 2005-07-29  Luc Pionchon  <luc.pionchon@nokia.com>
2352
2353         * hildon-widgets/hildon-controlbar.h: added missing signal when end reached
2354
2355 2005-07-26  Luc Pionchon  <luc.pionchon@nokia.com>
2356
2357         * hildon-widgets/hildon-number-editor.c: 
2358         (hildon_number_editor_select_all): new function, selects all
2359         the text in the entry.
2360         * hildon-widgets/hildon-number-editor.c: added several calls to
2361         hildon_number_editor_select_all with g_idle_add.
2362
2363         * hildon-controlbar.c : add signal when end reached
2364
2365         * hildon-time-editor.c : fixed: Time chooser widget displays am/pm and time separator indicators badly alligned.
2366
2367         * hildon-time-picker.c : displays valid date at 12:00 am/pm. 
2368         
2369 2005-07-25  Luc Pionchon  <luc.pionchon@nokia.com>
2370
2371         Fixed incorrect values in <Filetype> Details Dialog
2372         
2373         Fixed help button usage in dialogs
2374         
2375         * hildon-dialoghelp.c: Added more documentation about the
2376         help signal
2377         
2378         * hildon-file-details-dialog.c: Updated to match
2379         'File Management in OSSO' version 3.0
2380         
2381         * Fixed application hang after calling gtk_main_quit
2382         
2383         * hildon-date-editor.c: Fixed HildonDateEditor that caught
2384         ESC presses needlessly
2385         
2386         * hildon-time-editor.c: Fixed memory corruption