2f8abfd833df03ff773fdcf8ac17be833896b655
[hildon] / ChangeLog
1 2009-01-22  Claudio Saavedra  <csaavedra@igalia.com>
2
3         * src/hildon-picker-dialog.c: (hildon_picker_dialog_show),
4         (on_selector_columns_changed), (requires_done_button),
5         (+prepare_action_area), (setup_interaction_mode),
6         (_hildon_picker_dialog_set_selector):
7
8         Split the interaction mode setup into preparation of the
9         action area (prepare_action_area()) and the connection of
10         the signals in setup_interaction_mode() and update the code to
11         reflect this.
12
13 2009-01-22  Alejandro G. Castro  <alex@igalia.com>
14
15         * src/hildon-pannable-area.c,
16         (hildon_pannable_area_class_init): Reduced the amount of scrolls
17         per second to 15, we will check if this is ok regarding
18         smoothness.
19
20 2009-01-22  Alejandro G. Castro  <alex@igalia.com>
21
22         * src/hildon-pannable-area.c,
23         (hildon_pannable_axis_scroll): Avoid resize if we already have
24         reached overshoot_max.
25
26 2009-01-22  Alejandro G. Castro  <alex@igalia.com>
27
28         * src/hildon-pannable-area.c,
29         (hildon_pannable_area_init),
30         (hildon_pannable_area_realize),
31         (hildon_pannable_area_size_allocate),
32         (hildon_pannable_area_map),
33         (hildon_pannable_area_unmap),
34         (hildon_pannable_draw_vscroll),
35         (hildon_pannable_draw_hscroll),
36         (hildon_pannable_area_expose_event),
37         (hildon_pannable_area_refresh): Added a new GdkWindow to the
38         pannable are to avoid the expose events go to the window and
39         redraw the window. We save this way that part of the stack and the
40         paint_boxes. We had to change the positions of the elements when
41         drawing.
42
43 2009-01-21  Claudio Saavedra  <csaavedra@igalia.com>
44
45         * src/hildon-calendar-popup.c: (hildon_calendar_popup_init):
46         * src/hildon-color-chooser-dialog.c:
47         (hildon_color_chooser_dialog_init):
48         * src/hildon-font-selection-dialog.c:
49         (hildon_font_selection_dialog_init),
50         (hildon_font_selection_dialog_show_preview):
51         * src/hildon-get-password-dialog.c:
52         * src/hildon-login-dialog.c:
53         * src/hildon-set-password-dialog.c:
54         * src/hildon-sort-dialog.c: (hildon_sort_dialog_init):
55         * src/hildon-time-picker.c: (hildon_time_picker_init):
56
57         Remove obsolete logical string IDs and update to the appropriate ones.
58
59         Fixes: NB#98609 (Use wdgt_ strings for all hildon dialog buttons)
60
61 2009-01-21  Alberto Garcia  <agarcia@igalia.com>
62
63         * src/hildon-window.c (hildon_window_update_topmost): Fix warning
64         that happens if the window hasn't been realized yet.
65
66         Fixes: NB#95395 (prestarted applications show GLIB WARNING ** Gdk
67         - gdkdrawable-x11.c:878 drawable is not a pixmap or window)
68
69 2009-01-20  Alberto Garcia  <agarcia@igalia.com>
70
71         * src/hildon-app-menu.c (hildon_app_menu_class_init)
72         (+hildon_app_menu_grab_notify): Hide the app menu if it's shadowed
73         by another grab.
74
75         Fixes: NB#98537 (Device hangs in account settings dialog)
76
77 2009-01-20  Claudio Saavedra  <csaavedra@igalia.com>
78
79         * configure.ac: post release version bump.
80         * debian/changelog: version bump
81
82 2009-01-20  Claudio Saavedra  <csaavedra@igalia.com>
83
84         [Release 2.1.36]
85
86         * NEWS: Updates.
87         * configure.ac: Bump version.
88         * debian/changelog: Updates.
89
90 2009-01-20  Alejandro G. Castro  <alex@igalia.com>
91
92         Added a new function to the HildonTimeButton widget that allows to
93         change the step of the minutes in the selector associated with the
94         button: hildon_time_button_new_step
95
96         * src/hildon-time-button.c,
97         (hildon_time_button_init),
98         (hildon_time_button_new),
99         (hildon_time_button_new_step):
100         * src/hildon-time-button.h: Added the new function and refactored
101         the code.
102         * examples/hildon-time-button-example.c,
103         (main): We have replaced the function without parameters with the
104         function with the steps set to 5
105
106         Fixes: NB#98317 (Provide parametarized API for TimePicker widget)
107
108 2009-01-20  Alejandro G. Castro  <alex@igalia.com>
109
110         * src/hildon-time-selector.c,
111         (hildon_time_selector_class_init),
112         (hildon_time_selector_constructor),
113         (hildon_time_selector_get_property),
114         (hildon_time_selector_set_property),
115         (_create_minutes_model),
116         (hildon_time_selector_new_step),
117         (hildon_time_selector_set_time),
118         * src/hildon-time-selector.h: Added a new property to the
119         HildonTimeSelector (minutes-step), we use that property to control
120         the steps between the minutes in the list of the selector. We have
121         added a new function to the API to create a widget changing the
122         step: hildon_time_selector_new_step.
123
124 2009-01-20  Alejandro G. Castro  <alex@igalia.com>
125
126         * src/hildon-time-selector.c,
127         (hildon_time_selector_class_init),
128         (hildon_time_selector_constructor),
129         (hildon_time_selector_init): Overrided the construct function when
130         creating the time selector object. We have moved the minutes model
131         handling code from the init to the new construction function:
132         hildon_time_selector_constructor.
133
134 2009-01-20  Claudio Saavedra  <csaavedra@igalia.com>
135
136         * examples/hildon-date-button-example.c: (main): Use the new
137         hildon_date_button_new_with_year_range() method in the example.
138         * src/hildon-date-button.c:
139         (+hildon_date_button_new_with_year_range): New public method
140         to conveniently create a HildonDateButton with a custom year range
141         in its HildonDateSelector.
142         * src/hildon-date-button.h: Add the new public method definition.
143
144         Fixes: NB#97908 (Not possible to change the year range in
145         HildonDateSelector/HildonDateButton)
146
147 2009-01-20  Claudio Saavedra  <csaavedra@igalia.com>
148
149         * src/hildon-date-selector.c:
150         (+hildon_date_selector_set_property),
151         (+hildon_date_selector_get_property),
152         (hildon_date_selector_class_init): Install new properties "min-year"
153         and "max-year" to define boundaries for the year column.
154         (_create_year_model): Use the boundary properties to populate the model.
155         (+hildon_date_selector_new_with_year_range): New public method to
156         create a HildonDateSelector with a user defined year range.
157         (hildon_date_selector_select_current_date): Use the new boundaries to
158         calculate the iterator of current year.
159         * src/hildon-date-selector.h: Add the new public method definition.
160
161 2009-01-20  Claudio Saavedra  <csaavedra@igalia.com>
162
163         * src/hildon-date-selector.c: (+hildon_date_selector_class_init):
164         Install a constructor method.
165         (+hildon_date_selector_construct_ui): construct the widget.
166         (+hildon_date_selector_constructor): new constructor.
167         (+hildon_date_selector_init): move out widget construction code to
168         the new constructor.
169
170 2009-01-19  Claudio Saavedra  <csaavedra@igalia.com>
171
172         * src/hildon-date-selector.c: (hildon_date_selector_get_date): Check
173         that there's actually a month or year selected before obtaining them.
174         * src/hildon-picker-dialog.c: (_restore_current_selection): Block emission
175         of the HildonTouchSelector::changed signal, as it was emitted on every
176         single item selection.
177
178         Fix some warnings and possible crashers due to the selection restoring.
179
180 2009-01-19  Claudio Saavedra  <csaavedra@igalia.com>
181
182         * src/hildon-picker-button.c: (hildon_picker_button_clicked): Connect
183         the signal handlers only after creating the dialog instead of on every
184         button click.
185
186 2009-01-19  Alberto Garcia  <agarcia@igalia.com>
187
188         * src/hildon-button.c (hildon_button_init)
189         * src/hildon-check-button.c (hildon_check_button_init)
190         * src/hildon-gtk.c (button_common_init): Don't let buttons get the
191         focus when clicked by default.
192
193 2009-01-19  Claudio Saavedra  <csaavedra@igalia.com>
194
195         * src/hildon-date-button.c: (hildon_date_button_init): Remove an unneeded
196         g_object_unref().
197
198 2009-01-16  Claudio Saavedra  <csaavedra@igalia.com>
199
200         Based on a patch by Alejandro Pinheiro (apinheiro@igalia.com) and
201         Alejandro G. Castro  (alex@igalia.com)
202
203         * src/hildon-picker-dialog.c:
204         (hildon_picker_dialog_class_init): install new "center-on-show"
205         property.
206         (hildon_picker_dialog_init): initialize center_on_show to TRUE.
207         (hildon_picker_dialog_set_property): add setter code for the new
208         property.
209         (hildon_picker_dialog_get_property): add getter code for the new
210         property.
211         (hildon_picker_dialog_show): Ensure visibility of selected items in the
212         HildonTouchSelector when "center-on-show" is TRUE, which is enabled by
213         default.
214
215         Fixes: NB#92849 (Selected item is not always visible when
216         HildonTouchSelector is shown)
217
218 2009-01-16  Claudio Saavedra  <csaavedra@igalia.com>
219
220         Based on a patch by Alejandro Pinheiro (apinheiro@igalia.com) and
221         Alejandro G. Castro  (alex@igalia.com)
222
223         * src/hildon-touch-selector.c:
224         (_create_new_column): Do not connect to the "realize" signal of the
225         pannable area.
226         (hildon_touch_selector_append_column): center on the selected items
227         when a new column is appended.
228         (hildon_touch_selector_select_iter): Factor out the code to select a
229         column to hildon_touch_selector_scroll_to().
230         (+search_nearest_element): Method to retrieve the nearest selected
231         element to the visible area of the pannable area in a column.
232         (+on_realize_cb): scroll to the initially selected item.
233         (+hildon_touch_selector_scroll_to): Scroll to the given GtkTreePath if
234         the pannable area is realized, otherwise delay this until it is.
235         (+_hildon_touch_selector_center_on_selected_items): Centers on the
236         selected items of a given column.
237         (+hildon_touch_selector_center_on_selected): Public method to center
238         all columns on the nearest selected item.
239         * src/hildon-touch-selector.h: Add definition for
240         hildon_touch_selector_center_on_selected().
241
242         Implement public API to ensure visibility of all selected items in
243         a HildonTouchSelector.
244
245 2009-01-16  Alejandro G. Castro  <alex@igalia.com>
246
247         Fixed a problem in the fading when calling the scroll_to API, and
248         improve scrollbar fading handling.
249
250         * src/hildon-pannable-area.c,
251         (hildon_pannable_area_grab_notify): avoid the timeout when the
252         alpha is zero.
253         (hildon_pannable_area_button_press_cb),
254         (hildon_pannable_area_motion_notify_cb): Code style changes.
255         (hildon_pannable_area_button_release_cb): Review the conditions
256         when releasing the mouse button to avoid unrequired fading
257         timeouts.
258         (hildon_pannable_area_scroll_to): Do not calculate and set the
259         velocity if the scroll is not required.
260
261 2009-01-15  Alberto Garcia  <agarcia@igalia.com>
262
263         * src/hildon-picker-dialog.c (_hildon_picker_dialog_set_selector):
264         Don't check whether the new selector is NULL: it cannot be.
265         Hold a reference to the selector while doing the replacement.
266
267 2009-01-15  Claudio Saavedra  <csaavedra@igalia.com>
268
269         * src/hildon-picker-dialog.c: (_hildon_picker_dialog_set_selector): Remove
270         unnecessary size_request in a removed widget.
271
272 2009-01-15  Claudio Saavedra  <csaavedra@igalia.com>
273
274         * src/hildon-picker-dialog.c: (_hildon_picker_dialog_set_selector): Remove
275         an unnecessary reference tracking that was leaking.
276
277 2009-01-15  Alejandro G. Castro  <alex@igalia.com>
278
279         Added delayed motion notify event handling, this way we can
280         discard redrawing if more than 25 events arrive per second.
281
282         * src/hildon-pannable-area.c,
283         (hildon_pannable_area_init): Initialized the new private atributes
284         controlling this timeout
285         (hildon_pannable_area_dispose): Remove the timeout that controls
286         the motion notify events.
287         (hildon_pannable_area_scroll): Added a condition to control the
288         use of the acceleration.
289         (hildon_pannable_area_motion_event_scroll_timeout),
290         (hildon_pannable_area_motion_event_scroll): Added this two
291         functions, they handle the motion notify events inside the
292         timeout.
293         (hildon_pannable_area_motion_notify_cb): Replaced the direct call
294         to the scroll method with the new function.
295         (hildon_pannable_area_button_release_cb): We have to remove the
296         timeout handler and move to the last position if the last motion
297         events were not handled.
298
299         Fixes: NB#97028 (Pannable area updates on every motion event)
300
301 2009-01-15  Alejandro G. Castro  <alex@igalia.com>
302
303         * src/hildon-pannable-area.c,
304         (hildon_pannable_area_get_topmost): Added a new parameter to
305         filter the the windows that do not include those events. Added
306         also a condition when finding the window to filter windows that do
307         not ask for those events.
308         (hildon_pannable_area_button_press_cb),
309         (hildon_pannable_area_button_release_cb),
310         (hildon_pannable_get_child_widget_at): Reviewed the call the the
311         topmost function, we have added the new parameter.
312
313         Fixes: NB#97458 (Pannable area prevents propagation of button
314         press events)
315
316 2009-01-15  Alejandro G. Castro  <alex@igalia.com>
317
318         * src/hildon-pannable-area.c,
319         (hildon_pannable_area_initial_effect): Added controls before
320         launching the timeout and the idle functions.
321         (hildon_pannable_area_scroll_indicator_fade): Reviewed the logic
322         of the method, in some situations it can return with TRUE and 0 in
323         the timeout.
324         (hildon_pannable_area_button_press_cb): We do not need to set
325         DELAY for fading out here.
326
327         Fixes: NB#95709 (Invalid casts in HildonPannableArea(?))
328
329 2009-01-14  Claudio Saavedra  <csaavedra@igalia.com>
330
331         * src/hildon-picker-dialog.c: (_clean_current_selection): Only perform
332         post-cleaning if the selection is not NULL.
333
334 2009-01-14  Claudio Saavedra  <csaavedra@igalia.com>
335
336         * src/hildon-picker-dialog.c: (_restore_current_selection): Unselect
337         all items before restoring the selection.
338
339 2009-01-14  Claudio Saavedra  <csaavedra@igalia.com>
340
341         * src/hildon-touch-selector.c:
342         (+hildon_touch_selector_unselect_all):
343         * src/hildon-touch-selector.h: New API to unselect all items in a
344         column of the touch selector.
345
346 2009-01-14  Alejandro G. Castro  <alex@igalia.com>
347
348         * src/hildon-pannable-area.c,
349         (hildon_pannable_area_redraw): Added a call to the refresh
350         function inside the redraw because apparently in some cases the
351         change in the adjustment does not imply a size allocate.
352
353         Fixes: NB#96837 (HildonPannableArea - scroll indicator shown
354         despite the view not being scrollable)
355
356 2009-01-14  Alberto Garcia  <agarcia@igalia.com>
357
358         * src/hildon-picker-dialog.c (_dialog_update_title): Fix memory
359         leak. Check for NULL before attempting to set the window title.
360
361 2009-01-14  Alberto Garcia  <agarcia@igalia.com>
362
363         * src/hildon-picker-dialog.c (hildon_picker_dialog_show): Decide
364         whether to show or not the 'Done' button each time the dialog is
365         shown, as it depends on the HildonTouchSelector selection mode.
366
367         Fixes: NB#96226 (In multiple selection mode Done button is shown
368         sometimes in listpicker)
369
370 2009-01-14  Claudio Saavedra  <csaavedra@igalia.com>
371
372         * src/hildon-picker-dialog.c: (_save_current_selection): Do not query
373         for the number of columns in the HildonTouchSelector more than once.
374
375 2009-01-14  Alberto Garcia  <agarcia@igalia.com>
376
377         * src/hildon-touch-selector.c: Minor documentation fixes.
378
379         * src/hildon-picker-dialog.c (+_dialog_update_title)
380         (_select_on_selector_changed_cb)
381         (_update_title_on_selector_changed_cb)
382         (on_selector_columns_changed): Update dialog title when there's no
383         'Done' button and also when the number of columns in the selector
384         changes.
385         Code refactoring.
386
387         * src/hildon-picker-button.c (hildon_picker_button_finalize)
388         (+_selection_changed, hildon_picker_button_on_dialog_response)
389         (hildon_picker_button_selector_selection_changed)
390         (+hildon_picker_button_selector_columns_changed)
391         (hildon_picker_button_set_selector): Update button value and emit
392         'value-changed' when the number of columns in the selector
393         changes.
394         Code refactoring.
395
396         Fixes: NB#96225 (Dialog titles are not shown according to the
397         values selected in the list picker)
398
399 2009-01-13  Alberto Garcia  <agarcia@igalia.com>
400
401         * src/hildon-edit-toolbar.c (hildon_edit_toolbar_init)
402         (hildon_edit_toolbar_class_init, hildon_edit_toolbar_style_set):
403         New "arrow-width" and "arrow-height" style properties to set the
404         size of the arrow button.
405         Set name of arrow button ("hildon-edit-toolbar-arrow").
406
407         Fixes: NB#94970 (Hildon Edit Mode Toolbar should use back button
408         graphics from theme)
409
410 2009-01-13  Claudio Saavedra  <csaavedra@igalia.com>
411
412         * src/hildon-picker-button.c:
413         (hildon_picker_button_selector_selection_changed): Use
414         GTK_WIDGET_VISIBLE instead of gtk_window_is_active() to check whether
415         the dialog is present.
416
417         Fixes: NB#96202 (FKB causes HildonPickerButton's value update before
418         the selection is accepted in the dialog)
419
420 2009-01-13  Alberto Garcia  <agarcia@igalia.com>
421
422         * src/hildon-color-chooser.h
423         * src/hildon-color-chooser-dialog.h:
424         Added G_BEGIN_DECLS and G_END_DECLS
425
426 2009-01-13  Claudio Saavedra  <csaavedra@igalia.com>
427
428         (_clean_current_selection): plug a leak in the list.
429
430 2009-01-13  Claudio Saavedra  <csaavedra@igalia.com>
431
432         * src/hildon-picker-dialog.c:
433         (+free_path_list): Method to free a GList of GtkTreePaths.
434         (_clean_current_selection), (_save_current_selection),
435         (_restore_current_selection): Save the current selection in
436         as a list of lists, to support multiple selection properly.
437
438 2009-01-12  Alberto Garcia  <agarcia@igalia.com>
439
440         patch by Claudio Saavedra (csaavedra@igalia.com)
441
442         * src/hildon-text-view.c: (+hildon_text_view_button_press_event):
443         Store the press position.
444         (+hildon_text_view_button_release_event): If the release position is
445         close enough to the press position, move the cursor here. Otherwise,
446         ignore.
447         (hildon_text_view_class_init): Override GtkTextView press, release, and
448         motion event handlers, disabling this way text selection through
449         pointer interaction, and allowing the container widget to handle the
450         motion event.
451
452         Fixes: NB#95828 (HildonTextView functionality)
453
454 2009-01-12  Alberto Garcia  <agarcia@igalia.com>
455
456         Based on a patch by Iván Gómez (igomez@igalia.com)
457
458         * src/hildon-button.[ch]
459         * src/hildon-calendar.c
460         * src/hildon-check-button.c
461         * src/hildon-date-editor.c
462         * src/hildon-date-selector.c
463         * src/hildon-picker-button.c
464         * src/hildon-time-editor.c
465         * src/hildon-time-selector.c
466         * src/hildon-touch-selector.[ch]:
467         Documentation updates
468
469 2009-01-12  Alejandro G. Castro  <alex@igalia.com>
470
471         * src/hildon-pannable-area.c,
472         (hildon_pannable_area_motion_notify_cb): Remove the extra DND
473         threshold, it was required due to X events handling.
474
475 2009-01-12  Alejandro G. Castro  <alex@igalia.com>
476
477         * src/hildon-pannable-area.c,
478         (hildon_pannable_area_grab_notify),
479         (hildon_pannable_area_initial_effect),
480         (hildon_pannable_area_button_press_cb),
481         (hildon_pannable_area_button_release_cb),
482         (hildon_pannable_area_scroll_cb),
483         (hildon_pannable_area_scroll_to): Review the timeout management of
484         the scrollbar, the frecuency was incorrectly set.
485
486 2009-01-09  Claudio Saavedra  <csaavedra@igalia.com>
487
488         * src/hildon-picker-button.c:
489         (+hildon_picker_button_on_dialog_response),
490         (hildon_picker_button_clicked): Present the dialog instead of
491         running it with gtk_dialog_run().
492
493         Fixes: NB#97015 (HildonPickerButton shouldn't gtk_dialog_run() the
494         picker dialog)
495
496 2009-01-07  Alberto Garcia  <agarcia@igalia.com>
497
498         * src/hildon-app-menu.c (hildon_app_menu_set_parent_window)
499         (hildon_app_menu_finalize): When a window is hidden it doesn't
500         emit notify::is-topmost, so make sure than the menu also
501         disappears in that case.
502         (parent_window_topmost_notify): Renamed from parent_window_hidden
503
504         Fixes: NB#94460 (stackable window's menu is not closed when its
505         window is hidden)
506
507 2009-01-07  Claudio Saavedra  <csaavedra@igalia.com>
508
509         * src/hildon-touch-selector-entry.c:
510         (+hildon_touch_selector_entry_set_input_mode),
511         (+hildon_touch_selector_entry_get_input_mode):
512         * src/hildon-touch-selector-entry.h: New methods to access the input
513         mode in the selector's entry.
514
515         Fixes: NB#93410 (API required for setting IM mode in
516         HildonTouchSelectorEntry)
517
518 2009-01-07  Claudio Saavedra  <csaavedra@igalia.com>
519
520         * configure.ac: post release version bump.
521         * debian/changelog: version bump
522
523 2009-01-07  Claudio Saavedra  <csaavedra@igalia.com>
524
525         [Release 2.1.34]
526
527         * NEWS: Updates.
528         * configure.ac: Bump version.
529         * debian/changelog: Updates.
530
531 2008-12-19  Claudio Saavedra  <csaavedra@igalia.com>
532
533         * src/hildon-touch-selector.c:
534         (_hildon_touch_selector_has_multiple_selection): No need
535         to initialize the variables here.
536
537 2008-12-17  Alberto Garcia  <agarcia@igalia.com>
538
539         * src/hildon-note-private.h
540         * src/hildon-note.c (event_box_press_event, hildon_note_init)
541         (hildon_note_finalize, hildon_note_rebuild): Close information
542         notes when they receive a button press.
543
544         Fixes: NB#89890 (Information notes does not get disappeared after
545         few seconds)
546
547 2008-12-17  Claudio Saavedra  <csaavedra@igalia.com>
548
549         * src/hildon-wizard-dialog.c: (create_title): Remove translation
550         mark from the wizard title, as it's not really necessary. Also,
551         do not display the page title if not set.
552
553 2008-12-17  Alberto Garcia  <agarcia@igalia.com>
554
555         * src/hildon-app-menu.c (hildon_app_menu_set_parent_window)
556         (parent_window_hidden): Use the window's "is-topmost" property to
557         detect when to hide the menu.
558
559 2008-12-16  Alberto Garcia  <agarcia@igalia.com>
560
561         * src/hildon-app-menu.c (hildon_app_menu_set_parent_window)
562         (hildon_app_menu_finalize): If the parent window of the menu is
563         hidden, hide the menu too.
564
565         Fixes: NB#94460 (stackable window's menu is not closed when its
566         window is hidden)
567
568 2008-12-16  Alberto Garcia  <agarcia@igalia.com>
569
570         * debian/changelog
571         * debian/libhildon1-examples.install
572         * debian/rules
573         * examples/Makefile.am:
574         Use dh_install to install all examples.
575         Use DEB_SRCDIR instead of defining SOURCE_DIR
576
577 2008-12-16  Claudio Saavedra  <csaavedra@igalia.com>
578
579         * configure.ac: post release version bump.
580         * debian/changelog: version bump
581
582 2008-12-16  Claudio Saavedra  <csaavedra@igalia.com>
583
584         [Release 2.1.32]
585
586         * NEWS: updates
587         * configure.ac: bump version
588         * debian/changelog: updates
589         * debian/control: bump gtk+ dependency
590
591 2008-12-16  Claudio Saavedra  <csaavedra@igalia.com>
592
593         patch by Christian Dywan (christian@imendio.com)
594
595         * src/hildon-gtk.c: (hildon_gtk_hscale_new),
596         (hildon_gtk_vscale_new): Use the appropriate GtkScale property.
597
598 2008-12-15  Alberto Garcia  <agarcia@igalia.com>
599
600         * src/hildon-check-button.c (hildon_check_button_init)
601         (hildon_check_button_class_init, hildon_check_button_style_set)
602         (hildon_check_button_apply_style):
603         New "checkbox-size" style property.
604
605         Fixes: NB#95714 (GtkCellView in HildonCheckButton should be
606         larger / configurable size)
607
608 2008-12-15  Claudio Saavedra  <csaavedra@igalia.com>
609
610         * configure.ac: post release version bump.
611         * debian/changelog: version bump
612
613 2008-12-15  Claudio Saavedra  <csaavedra@igalia.com>
614
615         [Release 2.1.30]
616
617         * NEWS: updates
618         * configure.ac: bump version
619         * debian/changelog: updates
620
621 2008-12-12  Alberto Garcia  <agarcia@igalia.com>
622
623         * doc/hildon-sections.txt
624         * src/hildon-pannable-area.c
625         * src/hildon-program.c
626         * src/hildon-time-editor.c
627         * src/hildon-touch-selector-entry.c:
628
629         More documentation updates.
630
631 2008-12-12  Alberto Garcia  <agarcia@igalia.com>
632
633         * doc/hildon-sections.txt
634         * src/hildon-caption.c
635         * src/hildon-code-dialog.c
636         * src/hildon-color-button.c
637         * src/hildon-controlbar.c
638         * src/hildon-date-editor.c
639         * src/hildon-date-selector.c
640         * src/hildon-edit-toolbar.c
641         * src/hildon-find-toolbar.c
642         * src/hildon-font-selection-dialog.c
643         * src/hildon-gtk.c
644         * src/hildon-program.c
645         * src/hildon-range-editor.c
646         * src/hildon-seekbar.c
647         * src/hildon-time-editor.c
648         * src/hildon-time-selector.c
649         * src/hildon-volumebar-range.c
650         * src/hildon-volumebar.c
651         * src/hildon-vvolumebar.c
652         * src/hildon-weekday-picker.c
653         * src/hildon-window.c
654         * src/hildon-wizard-dialog.c:
655
656         Lots of documentation fixes.
657
658 2008-12-12  Claudio Saavedra  <csaavedra@igalia.com>
659
660         Patch contributed by Iván Gómez (igomez@igalia.com)
661
662         * src/hildon-check-button.c:
663         * src/hildon-date-button.c:
664         * src/hildon-date-selector.c:
665         * src/hildon-dialog.c:
666         * src/hildon-edit-toolbar.c:
667         * src/hildon-entry.c:
668         * src/hildon-picker-button.c:
669         * src/hildon-program.c:
670         * src/hildon-text-view.c:
671         * src/hildon-time-button.c:
672         * src/hildon-touch-selector-entry.c:
673         * src/hildon-window-stack.c:
674
675         Add more "since" tags to the new API.
676
677 2008-12-12  Claudio Saavedra  <csaavedra@igalia.com>
678
679         * doc/hildon-sections.txt: Add below method.
680         * src/hildon-gtk.c: (+hildon_gtk_vscale_new): New vertical
681         version for the hildonized scale.
682         * src/hildon-gtk.h: Add the definition.
683
684         Fixes: NB#93744 (Tapping should jump to location on GtkScale)
685
686 2008-12-12  Claudio Saavedra  <csaavedra@igalia.com>
687
688         * doc/hildon-sections.txt: Add missing entries for new methods.
689
690 2008-12-12  Alejandro G. Castro  <alex@igalia.com>
691
692         Added API to pannable are in order to get its adjustments. We
693         added two properties to manage the values we had in the private
694         structure.
695
696         * src/hildon-pannable-area.c:
697         (hildon_pannable_area_class_init): Added hadjustment and
698         vadjustment properties in order to expose horizontal and vertical
699         adjustment.
700         (hildon_pannable_area_get_property),
701         (hildon_pannable_area_set_property): Added code to handle the new
702         properties
703         (hildon_pannable_area_get_hadjustment),
704         (hildon_pannable_area_get_vadjustment): API functions to get the
705         adjustments
706         * src/hildon-pannable-area.h:
707         (hildon_pannable_area_get_hadjustment),
708         (hildon_pannable_area_get_vadjustment): API functions to get the
709         adjustments
710
711 2008-12-12  Alejandro G. Castro  <alex@igalia.com>
712
713         Fixed some leaks, after valgrinding.
714
715         * src/hildon-touch-selector.c:
716         (_default_print_func): Fixed a leak.
717         (hildon_touch_selector_append_column): Fixed a leak.
718         * src/hildon-date-button.c:
719         (hildon_date_button_init): Fixed a leak.
720         * src/hildon-date-selector.c
721         (hildon_date_selector_finalize): Fixed a leak.
722
723 2008-12-12  Claudio Saavedra  <csaavedra@igalia.com>
724
725         Based on a patch by Christian Dywan (christian@imendio.com)
726
727         * src/hildon-gtk.c: (+hildon_gtk_hscale_new): Create a hildonized style
728         GtkHScale.
729         * src/hildon-gtk.h: Add definition.
730
731         Fixes: NB#93744 (Tapping should jump to location on GtkScale)
732
733 2008-12-11  Claudio Saavedra  <csaavedra@igalia.com>
734
735         * src/hildon-picker-button.c: (hildon_picker_button_init),
736         (hildon_picker_button_new): Set the HildonButton::style property
737         in the init method, to propagate the value to the derived classes.
738
739 2008-12-11  Claudio Saavedra  <csaavedra@igalia.com>
740
741         * src/hildon-button.c: (hildon_button_class_init): Do not make
742         the "style" property a construct property.
743
744 2008-12-11  Alberto Garcia  <agarcia@igalia.com>
745
746         * src/hildon-wizard-dialog.h
747         * src/hildon-wizard-dialog.c
748         (hildon_wizard_dialog_set_forward_page_func)
749         * src/hildon-pannable-area.h
750         * src/hildon-pannable-area.c
751         (hildon_pannable_area_set_size_request_policy):
752         Documentation fixes.
753
754 2008-12-11  Alberto Garcia  <agarcia@igalia.com>
755
756         * doc/hildon-sections.txt: Fixed warning about unused symbols.
757
758 2008-12-11  Alberto Garcia  <agarcia@igalia.com>
759
760         * doc/hildon-sections.txt: Added sections file.
761
762 2008-12-11  Claudio Saavedra  <csaavedra@igalia.com>
763
764         * AUTHORS: Updates.
765         * src/*.[ch]: Updates.
766
767 2008-12-10  Thomas Thurman  <thomas.thurman@collabora.co.uk>
768
769         * examples/hildon-progress-indicator-example.c: new file
770         * examples/Makefile.am: include the new example program
771
772 2008-12-10  Alberto Garcia  <agarcia@igalia.com>
773
774         * src/hildon-wizard-dialog.c (destroy): Fix compilation warning
775
776 2008-12-09  Claudio Saavedra  <csaavedra@igalia.com>
777
778         * configure.ac: post release version bump
779         * debian/changelog: version bump
780
781 2008-12-09  Claudio Saavedra  <csaavedra@igalia.com>
782
783         [Release 2.1.28]
784
785         * NEWS: updates
786         * configure.ac: bump version
787         * debian/changelog: updates
788         * debian/control: bump gtk+ dependency
789
790 2008-12-09  Claudio Saavedra  <csaavedra@igalia.com>
791
792         * src/hildon-dialog.c: Mark as deprecated.
793         * src/hildon-dialog.h: Mark as deprecated.
794         * src/hildon-picker-dialog.h: Allow HildonPickerDialog to derive
795         from HildonDialog and still work, even if
796         HILDON_DISABLE_DEPRECATED is defined. This is required as we can't currently
797         break the ABI and simply make HildonPickerDialog derive from GtkDialog.
798
799         Fixes: NB#90867 (Deprecate HildonDialog and use GtkDialog (with
800         maemo changes) instead)
801
802 2008-12-09  Alejandro G. Castro  <alex@igalia.com>
803
804         * src/hildon-pannable_area.h:
805         * src/hildon-pannable_area.c:
806         (hildon_pannable_area_class_init),
807         (hildon_pannable_area_set_property),
808         (hildon_pannable_area_get_property),
809         (hildon_pannable_area_size_request),
810         (hildon_pannable_area_get_size_request_policy),
811         (hildon_pannable_area_set_size_request_policy): Added new API
812         allowing applications to control the request policy. Now they can
813         choose to use the minimum (HILDON_MOVEMENT_MINIMUM) size or the
814         children allocation (HILDON_MOVEMENT_CHILDREN).
815
816 2008-12-09  Alberto Garcia  <agarcia@igalia.com>
817
818         * src/hildon-gtk.h
819         * src/hildon-gtk.c
820         (hildon_gtk_tree_view_set_ui_mode)
821         (hildon_gtk_icon_view_set_ui_mode): New functions to change the UI
822         mode of treeviews and iconviews.
823
824 2008-12-09  Claudio Saavedra  <csaavedra@igalia.com>
825
826         * src/hildon-touch-selector-entry.c:
827         (hildon_touch_selector_entry_init): Use a HildonEntry instead
828         of a GtkEntry to get proper theming.
829
830         Fixes: NB#94972 (Hildon Picker with Entry should use HildonEntry
831         widget, not GtkEntry)
832
833 2008-12-09  Claudio Saavedra  <csaavedra@igalia.com>
834
835         * src/hildon-wizard-dialog.c: (response): Move forward if there is
836         no HildonWizardDialogPageFunc.
837
838 2008-12-09  Claudio Saavedra  <csaavedra@igalia.com>
839
840         Patch contributed by Iván Gómez (igomez@igalia.com)
841
842         * src/hildon-app-menu.c:
843         * src/hildon-button.c:
844         * src/hildon-picker-dialog.c: (hildon_picker_dialog_class_init):
845         * src/hildon-stackable-window.c:
846         * src/hildon-time-selector.c:
847         * src/hildon-touch-selector.c:
848         * src/hildon-window.c:
849
850         Add more "since" tags to the new API in hildon 2.2.
851
852 2008-12-05  Tim Janik  <timj@imendio.com>
853
854         Patch contributed by Christian Dywan (christian@imendio.com)
855
856         * src/hildon-gtk.h: removed hildon_gtk_widget_set_theme_size() and
857         HildonSizeType, which are supplied by Gtk+ now.
858
859         * src/hildon-dialog.c: leave theming and sizing of buttons to GtkDialog.
860
861         Partially fixes NB#90867 (Deprecate HildonDialog and use GtkDialog
862         (with maemo changes) instead)
863
864 2008-12-05  Claudio Saavedra  <csaavedra@igalia.com>
865
866         Patch contributed by Iván Gómez (igomez@igalia.com)
867
868         * src/hildon-pannable-area.c: Add "since" tags to the new API in
869         hildon 2.2.
870
871 2008-12-05  Claudio Saavedra  <csaavedra@igalia.com>
872
873         * examples/hildon-wizard-dialog-example.c: (on_page_switch),
874         (some_page_func), (main): Update the example to use a
875         HildonWizardDialogPageFunc function.
876
877         * src/hildon-wizard-dialog-private.h: Add private data for
878         the HildonWizardDialogPageFunc function usage.
879
880         * src/hildon-wizard-dialog.c: (hildon_wizard_dialog_class_init),
881         (destroy), (hildon_wizard_dialog_init), (response),
882         (hildon_wizard_dialog_set_forward_page_func):
883         * src/hildon-wizard-dialog.h: Add a HildonWizardDialogPageFunc function,
884         that applications can use to stop a HildonWizardDialog to jump to
885         the next page.
886
887         Fixes: NB#94214 (No way to stop HildonWizardDialog from going to
888         next page)
889
890 2008-12-04  Alberto Garcia  <agarcia@igalia.com>
891
892         * src/hildon-program.h
893         * src/hildon-program-private.h
894         * src/hildon-program.c (hildon_program_init)
895         (hildon_program_set_common_app_menu)
896         (hildon_program_get_common_app_menu):
897         New API for setting a common HildonAppMenu for all
898         HildonStackableWindows registered with the HildonProgram.
899
900         * src/hildon-stackable-window.c
901         (hildon_stackable_window_toggle_menu):
902         Use the common HildonAppMenu if a window doesn't have a specific
903         one.
904
905         * src/hildon-app-menu-private.h
906         * src/hildon-app-menu.c
907         (hildon_app_menu_get_parent_window):
908         Function to obtain the window a HildonAppMenu is attached to.
909         (hildon_app_menu_set_parent_window):
910         Hide the menu if the parent window is set to NULL.
911
912 2008-12-04  Claudio Saavedra  <csaavedra@igalia.com>
913
914         * src/hildon-gtk.c: (hildon_gtk_tree_view_new): Explicitly
915         set GtkTreeView::enable-search to FALSE, to avoid the interactive
916         search widget to popup.
917
918 2008-12-03  Claudio Saavedra  <csaavedra@igalia.com>
919
920         * configure.ac: post release version bump
921         * debian/changelog: version bump
922
923 2008-12-03  Claudio Saavedra  <csaavedra@igalia.com>
924
925         [Release 2.1.26]
926
927         * NEWS: updates
928         * configure.ac: bump version
929         * debian/changelog: updates
930
931 2008-12-02  Alberto Garcia  <agarcia@igalia.com>
932
933         Based on a patch by Adam Endrodi (adam.endrodi@blumsoft.eu)
934
935         * src/hildon-window-stack.c (hildon_window_stack_get_leader_window)
936         (hildon_window_stack_window_realized)
937         (hildon_window_stack_remove, _hildon_window_stack_do_push):
938         Set the leader GdkWindow when a window is stacked and realized,
939         unset it when it's unstacked.
940         (hildon_window_stack_finalize): Destroy the leader GdkWindow.
941
942         Fixes: NB#94350 (HildonWindowStack:s have the same X Window group)
943
944 2008-12-02  Alberto Garcia  <agarcia@igalia.com>
945
946         * src/hildon-stackable-window.h
947         * src/hildon-window-stack.h:
948         Protect definition of HildonWindowStack using the preprocessor.
949
950 2008-12-02  Alberto Garcia  <agarcia@igalia.com>
951
952         * src/hildon-app-menu.c (hildon_app_menu_repack_items):
953         Fix warning if all menu items are hidden.
954
955 2008-12-02  Claudio Saavedra  <csaavedra@igalia.com>
956
957         Patch contributed by Daniel Borgmann (danielb@openismus.com)
958
959         * src/hildon-controlbar.c:
960         * src/hildon-hvolumebar.c:
961         * src/hildon-vvolumebar.c: (hildon_vvolumebar_size_allocate):
962         Multiple scale size defines updates.
963
964         Fixes: NB#94322 (Scale Updates)
965
966 2008-12-02  Alberto Garcia  <agarcia@igalia.com>
967
968         * examples/hildon-app-menu-example.c (create_menu)
969         Show items after adding them to the menu, as in the future the
970         menu will no longer call gtk_widget_show() on the added items.
971
972         * src/hildon-app-menu.c:
973         Update example as explained above.
974
975 2008-12-02  Alberto Garcia  <agarcia@igalia.com>
976
977         * src/hildon-app-menu.c
978         (hildon_app_menu_insert, hildon_app_menu_add_filter):
979         Make sure that all menu items have finger height.
980
981 2008-12-01  Alejandro Pinheiro  <apinheiro@igalia.com>
982
983         * src/hildon-picker-dialog.c:
984         (_on_dialog_response), (_save_current_selection),
985         (_restore_current_selection), (_clean_current_selection),
986         (hildon_picker_dialog_finalize), (hildon_picker_dialog_show)
987         Defined new functions in order to save the current internal selector
988         selection previous open the dialog, in case that the use cancel the
989         interaction, so the widget restores the previous selection.
990
991         Fixes: NB#92032 (In calendar application, date values in 'new event' 
992         are not proper)
993
994         (requires_done_button): use of macro HILDON_TOUCH_SELECTOR_HEIGHT
995
996 2008-11-28  Alberto Garcia  <agarcia@igalia.com>
997
998         * src/hildon-button.c: Add a reference to the button examples in
999         hildon-button-example.c
1000
1001         * examples/hildon-button-example.c: Added examples of the most
1002         common button layouts.
1003
1004 2008-11-28  Alberto Garcia  <agarcia@igalia.com>
1005
1006         * src/hildon-app-menu.c (hildon_app_menu_show)
1007         (hildon_app_menu_class_init): Don't show the menu if it's empty.
1008
1009         Fixes: NB#93890 (Empty HildonAppMenu is pop-up)
1010
1011 2008-11-27  Claudio Saavedra  <csaavedra@igalia.com>
1012
1013         * src/hildon-picker-dialog.c:
1014         (hildon_picker_dialog_init): Initialize the signal id for
1015         HildonTouchSelector::columns-changed.
1016         (+on_selector_columns_changed): Set up the interaction mode everytime a
1017         column is added or removed from the HildonTouchSelector.
1018         (_hildon_picker_dialog_set_selector): Connect to
1019         HildonTouchSelector::columns-changed and keep track of it.
1020
1021         Make sure to update the interaction mode of the dialog everytime a
1022         column is added or removed in the HildonTouchSelector.
1023
1024         Fixes: NB#93228 (Done button is not shown always in listpicker)
1025
1026 2008-11-27  Claudio Saavedra  <csaavedra@igalia.com>
1027
1028         * src/hildon-touch-selector.c: (hildon_touch_selector_class_init): Add
1029         a new ::columns-changed signal.
1030         (hildon_touch_selector_append_column): Emit ::columns-changed.
1031         (hildon_touch_selector_remove_column): Emit ::columns-changed.
1032
1033         Add a ::columns-changed signal, emitted when the number of columns in a
1034         HildonTouchSelector changes.
1035
1036 2008-11-27  Claudio Saavedra  <csaavedra@igalia.com>
1037
1038         * src/hildon-picker-dialog.c: (+setup_interaction_mode),
1039         (_hildon_picker_dialog_set_selector): Factor out the code
1040         to set up the dialog interaction mode.
1041
1042 2008-11-27  Claudio Saavedra  <csaavedra@igalia.com>
1043
1044         * src/hildon-picker-dialog.c: (hildon_picker_dialog_init),
1045         (_hildon_picker_dialog_set_selector): Rename signal_id private variable
1046         to signal_changed_id.
1047
1048 2008-11-27  Claudio Saavedra  <csaavedra@igalia.com>
1049
1050         * src/hildon-touch-selector.c: (hildon_touch_selector_class_init):
1051         Minor doc. fixes.
1052
1053 2008-11-27  Alejandro Pinheiro  <apinheiro@igalia.com>
1054
1055         * src/hildon-time-selector.c: (_custom_print_func), (_create_ampm_model)
1056         Updated the logical ids related to ampm format, as now it is required to
1057         show it correctly localized even on languages with no default
1058         abbreviations for am or pm
1059         (_check_am_pm_format): check correctly the 24h format gconf property
1060
1061         Fixes: NB#93680 (HildonTimePicker need fully localized am/pm)
1062
1063 2008-11-27  Alberto Garcia  <agarcia@igalia.com>
1064
1065         * src/hildon-button.c: Documentation updates.
1066
1067 2008-11-27  Claudio Saavedra  <csaavedra@igalia.com>
1068
1069         * src/hildon-marshalers.list: Add BOOLEAN:VOID.
1070         * src/hildon-caption.c: (hildon_caption_class_init):
1071         * src/hildon-color-button.c: (hildon_color_button_class_init):
1072         * src/hildon-find-toolbar.c: (hildon_find_toolbar_class_init):
1073         * src/hildon-touch-selector.c: (hildon_touch_selector_class_init):
1074         * src/hildon-volumebar.c: (hildon_volumebar_class_init):
1075         * src/hildon-weekday-picker.c: (hildon_weekday_picker_class_init):
1076
1077         Remove deprecated GTK+ marshalers and replace them with the ones
1078         provided by GLib, for those available, add a marshaler for
1079         BOOLEAN:VOID, which is not available in GLib, and use it.
1080
1081 2008-11-27  Claudio Saavedra  <csaavedra@igalia.com>
1082
1083         * src/hildon-touch-selector.c: (_default_print_func): Do not reuse
1084         the text from the previous column if there is no
1085         HildonTouchSelectorColumn::text-property set.
1086
1087 2008-11-27  Alberto Garcia  <agarcia@igalia.com>
1088
1089         * src/hildon-button.h
1090         * src/hildon-button.c (hildon_button_set_property)
1091         (hildon_button_get_property, hildon_button_class_init)
1092         (hildon_button_set_style, hildon_button_get_style):
1093         New "style" property to change the visual appearance of the
1094         button.
1095
1096         * src/hildon-picker-button.c (hildon_picker_button_new):
1097         Set the new "style" property to HILDON_BUTTON_STYLE_PICKER.
1098
1099         Fixes: NB#93281 (new API: hildon_button_set_picker_style() to set
1100         HildonButton look like PickerButton)
1101
1102 2008-11-27  Claudio Saavedra  <csaavedra@igalia.com>
1103
1104         * src/hildon-touch-selector.c: (_default_print_func): Get the correct
1105         column while building the default string.
1106
1107 2008-11-25  Claudio Saavedra  <csaavedra@igalia.com>
1108
1109         * src/hildon-touch-selector.c: (_create_new_column): Do not disable the
1110         scroll indicator by default.
1111
1112         Fixes: NB#92230 (Scroll indication not visible in HildonTouchSelector)
1113
1114 2008-11-25  Claudio Saavedra  <csaavedra@igalia.com>
1115
1116         * src/hildon-main.c: Fix the documentation for hildon_init()
1117
1118 2008-11-25  Alberto Garcia  <agarcia@igalia.com>
1119
1120         * doc/hildon-docs.sgml
1121         * doc/hildon.types
1122         * src/Makefile.am
1123         * src/hildon.h
1124         * src/hildon-window-stack-private.h
1125         * src/hildon-window-stack.h
1126         * src/hildon-window-stack.c:
1127         New HildonWindowStack object, that adds support for multiple
1128         stacks of windows per process.
1129
1130         * src/hildon-stackable-window-private.h
1131         * src/hildon-stackable-window.h
1132         * src/hildon-stackable-window.c (hildon_stackable_window_set_stack)
1133         (hildon_stackable_window_get_stack, hildon_stackable_window_map)
1134         (hildon_stackable_window_show, hildon_stackable_window_hide)
1135         (hildon_stackable_window_class_init)
1136         (hildon_stackable_window_init):
1137         Use HildonWindowStack for stack management.
1138
1139         * src/hildon-program.c (hildon_program_pop_window_stack)
1140         (hildon_program_peek_window_stack)
1141         (hildon_program_go_to_root_window):
1142         Add a fallback implementation to the deprecated functions using
1143         HildonWindowStack.
1144
1145         * examples/hildon-stackable-window-example.c:
1146         Use the new HildonWindowStack API.
1147
1148 2008-11-25  Alberto Garcia  <agarcia@igalia.com>
1149
1150         * src/hildon-stackable-window-private.h
1151         * src/hildon-stackable-window.c (hildon_stackable_window_show)
1152         (hildon_stackable_window_hide, hildon_stackable_window_init):
1153         Remove all window stack management.
1154
1155         * src/hildon-program-private.h
1156         * src/hildon-program.h
1157         * src/hildon-program.c (hildon_program_init)
1158         (hildon_program_pop_window_stack)
1159         (hildon_program_peek_window_stack)
1160         (hildon_program_go_to_root_window):
1161         Remove all window stack management and mark functions as
1162         deprecated.
1163
1164 2008-11-25  Alberto Garcia  <agarcia@igalia.com>
1165
1166         * src/hildon-app-menu.c (hildon_app_menu_realize):
1167         Use the XA_ATOM type for the _NET_WM_WINDOW_TYPE property.
1168
1169 2008-11-24  Claudio Saavedra  <csaavedra@igalia.com>
1170
1171         * configure.ac: post release version bump
1172         * debian/changelog: version bump
1173
1174 2008-11-24  Claudio Saavedra  <csaavedra@igalia.com>
1175
1176         [Release 2.1.24]
1177
1178         * NEWS: updates
1179         * configure.ac: bump version
1180         * debian/changelog: updates
1181
1182 2008-11-24  Claudio Saavedra  <csaavedra@igalia.com>
1183
1184         Based on initial code by Christian Dywan (christian@imendio.com)
1185
1186         * doc/hildon-docs.sgml: Add section for hildon-main.
1187         * examples/*.c: (main): Replace gtk_main() calls with hildon_gtk_main().
1188         * src/Makefile.am: Add new hildon-main.[ch]
1189         * src/hildon-defines.h: Update the icon sizes.
1190         * src/hildon-main.c: (+hildon_init), (+hildon_gtk_init): Add
1191         new library initialization files and register icon sizes.
1192         * src/hildon-main.h: New declarations.
1193         * src/hildon.h: Include hildon-main.h
1194
1195         Add new initialization functions to the library. These methods
1196         will register the hildon specific icon sizes and can be used in the
1197         future for other hildon specific bits.
1198
1199         Fixes: NB#92476 (Update icon size constants to Fremantle (hildon-defines.h))
1200
1201 2008-11-21  Claudio Saavedra  <csaavedra@igalia.com>
1202
1203         * src/hildon-window.c: (hildon_window_realize),
1204         (hildon_window_notify), (-hildon_window_update_title): Do not set
1205         the application name in the window title.
1206
1207         Fixes: NB#89754 (Applications shouldn't display their names in the
1208         window title)
1209
1210 2008-11-21  Claudio Saavedra  <csaavedra@igalia.com>
1211
1212         * src/hildon-note-private.h:
1213         * src/hildon-note.c: (hildon_note_set_property),
1214         (hildon_note_get_property), (hildon_note_class_init),
1215         (hildon_note_init), (hildon_note_finalize),
1216         (hildon_note_new_confirmation_with_icon_name),
1217         (hildon_note_new_information_with_icon_name):
1218
1219         No need to mark as deprecated the actual code. Revert
1220         to avoid missing symbols in widgets using deprecated API.
1221
1222 2008-11-20  Alberto Garcia  <agarcia@igalia.com>
1223
1224         Based on a patch by Claudio Saavedra (csaavedra@igalia.com)
1225
1226         * src/hildon-volumebar.h
1227         * src/hildon-volumebar.c (hildon_volumebar_set_range_insensitive_message)
1228         (hildon_volumebar_set_range_insensitive_messagef): Mark as deprecated.
1229
1230         * src/hildon-helper.h
1231         * src/hildon-helper.c (hildon_helper_set_insensitive_message)
1232         (hildon_helper_set_insensitive_messagef): Mark as deprecated.
1233
1234         * examples/Makefile.am:
1235         Deprecate hildon-insensitive-example
1236
1237         Fixes: NB#92664 (Deprecate hildon_helper_set_insensitive_message)
1238
1239 2008-11-20  Alberto Garcia  <agarcia@igalia.com>
1240
1241         * examples/hildon-pannable-area-buttons-scroll-example.c:
1242         Make all buttons finger height
1243
1244 2008-11-19  Alejandro Pinheiro  <apinheiro@igalia.com>
1245
1246         * src/hildon-touch-selector.c: updated the HildonTouchSelector::changed
1247         documentation
1248         * src/hildon-date-selector.c: (_update_day_model): Modified in order to
1249         update the day model only if it is really required, and to avoid the
1250         full-reconstruction aproach. Now it only add or remove the required days.
1251
1252         The purpose of this is avoid superfluous HildonTouchSelector::changed
1253         signals
1254
1255         Fixes: NB#92744 (HildonDateSelector emits multiple "changed" singal
1256         with strange parameters)
1257
1258 2008-11-19  Claudio Saavedra  <csaavedra@igalia.com>
1259
1260         Patch contributed by Adam Endrodi (adam.endrodi@blumsoft.eu)
1261
1262         * src/hildon-note.c: (hildon_note_init), (hildon_note_realize): Set properly
1263         the WINDOW_TYPE property.
1264
1265         Fixes: NB#92897 (HildonNotes have incorrect WINDOW_TYPE)
1266
1267 2008-11-19  Alberto Garcia  <agarcia@igalia.com>
1268
1269         * doc/gtk-doc.make:
1270         Fix dependency to allow parallel compilation with make -jX
1271
1272 2008-11-18  Claudio Saavedra  <csaavedra@igalia.com>
1273
1274         * src/hildon-color-chooser-dialog.c: Use theme colors for the selected
1275         color frame and some minor tweaks to make it more consistent with
1276         current theming.
1277
1278         Fixes: NB#91769 (HildonColorChooserDialog's selected colour is
1279         highlighted but not visible)
1280
1281 2008-11-14  Alejandro G. Castro  <alex@igalia.com>
1282
1283         * examples/Makefile.am: Fixed typo in the Makefile.am.
1284
1285 2008-11-14  Alejandro G. Castro  <alex@igalia.com>
1286
1287         Reviewed the use of MAEMO_GTK define, now we add the define in the
1288         compilation line, and we also add it to the pc file.
1289
1290         * configure.ac: Added MAEMO_GTK define to the compilation command
1291         and removed it from the config.h.
1292
1293         * pkgconfig/hildon.pc.in: Added MAEMO_GTK, that way applications
1294         do not have to take care about this define if the library was
1295         compiled with it.
1296
1297         * src/hildon-gtk.c:
1298         * src/hildon-gtk.h: Replaced MAEMO_CHANGES with MAEMO_GTK.
1299
1300 2008-11-14  Alejandro G. Castro  <alex@igalia.com>
1301
1302         * examples/Makefile.am,
1303         * examples/hildon-pannable-area-buttons-scroll-example.c,
1304         * examples/hildon-pannable-area-gesture-signals-example.c,
1305         * examples/hildon-pannable-area-scroll-jump-example.c,
1306         * examples/hildon-pannable-area-tree-view-example.c:
1307         Renamed the pannable area examples, now they have more meaningful
1308         names.
1309
1310 2008-11-13  Alejandro Pinheiro   <apinheiro@igalia.com>
1311
1312         * src/hildon-touch-selector.c:
1313         (hildon_touch_selector_set_column_selection_mode): Used of
1314         GTK_SELECTION_BROWSE instead of GTK_SELECTION_SINGLE gtk tree selection
1315         mode setting HILDON_TOUCH_SELECTOR_SELECTION_MODE_SINGLE. Added a check
1316         to avoid re-seting the same selection mode.
1317
1318         Fixes: NB#91863 (hildon_touch_selector_set_column_selection_mode()
1319         breaks HildonPickerDialog)
1320
1321 2008-11-13  Alejandro G. Castro  <alex@igalia.com>
1322
1323         * examples/Makefile.am: Fixed problem with the USE_MAEMO_GTK
1324         conditional in the Makefile.am
1325
1326 2008-11-12  Claudio Saavedra  <csaavedra@igalia.com>
1327
1328         * src/hildon-window.c (-find_findtoolbar_index), (-find_findtoolbar):
1329         Remove unused methods.
1330
1331 2008-11-12  Alberto Garcia  <agarcia@igalia.com>
1332
1333         * src/hildon-button.c (hildon_button_init):
1334         Make button images center-aligned by default
1335
1336 2008-11-12  Alejandro G. Castro  <alex@igalia.com>
1337
1338         * src/hildon-gtk.c:
1339         * src/hildon-gtk.h: Fixed compilation problem with MAEMO_CHANGES
1340         activated, we have to think about how to deal with both defines
1341         MAEMO_GTK and MAEMO_CHANGES.
1342
1343 2008-11-12  Alberto Garcia  <agarcia@igalia.com>
1344
1345         * examples/hildon-app-menu-example.c (create_menu): Make all
1346         buttons finger size.
1347
1348 2008-11-11  Alejandro G. Castro  <alex@igalia.com>
1349
1350         Fixed the compilation without maemo gtk adding ifdefs with
1351         MAEMO_GTK define to the code, we have to check this version more
1352         carefully.
1353
1354         * examples/Makefile.am: Added control to avoid some examples that
1355         just make sense with maemo gtk.
1356
1357         * src/hildon-gtk.c:
1358         * src/hildon-gtk.h: Remove some functions that use the maemo gtk
1359         hildon modes with the define.
1360
1361         * examples/hildon-edit-toolbar-example.c,
1362         (create_icon_view): Create the icon view without hildon-gtk
1363         helpers if we are not using maemo gtk.
1364
1365         * src/hildon-touch-selector.c,
1366         (_create_new_column): Create the treeview without hildon-gtk
1367         helpers if we are not using maemo gtk.
1368
1369 2008-11-11  Alejandro G. Castro  <alex@igalia.com>
1370
1371         * src/hildon-pnnable-area.c,
1372         (hildon_pannable_area_dispose),
1373         (hildon_pannable_area_button_press_cb),
1374         (hildon_pannable_area_child_mapped),
1375         (hildon_pannable_area_add),
1376         (hildon_pannable_area_remove): Added code to control the position
1377         of the event_window when adding and removing children from the
1378         pannable. We have to raise the event window when the child is
1379         mapped.
1380
1381         Fixes: NB#89811 (Not able to select first image thumbnail in multi
1382         selection mode using custom widget inside pannable)
1383
1384 2008-11-11  Claudio Saavedra  <csaavedra@igalia.com>
1385
1386         * configure.ac: post release version bump
1387         * debian/changelog: version bump
1388
1389 2008-11-11  Claudio Saavedra  <csaavedra@igalia.com>
1390
1391         [Release 2.1.22]
1392
1393         * NEWS: updates
1394         * configure.ac: bump version
1395         * debian/changelog: updates
1396
1397 2008-11-10  Alejandro Pinheiro  <apinheiro@igalia.com>
1398
1399         * src/hildon-touch-selector.c: (_create_new_column): Disable treeview
1400         search mode, in order to avoid lose the focus on the treeview when
1401         a hw key (like enter) is pressed.
1402
1403         Fixes: NB#91995 (Calendar is crashing after pressing 'Enter' HW key
1404         in HildonDateSelector dialog)
1405
1406 2008-11-06  Alejandro Pinheiro  <apinheiro@igalia.com>
1407
1408         * debian/rules: Added --enable-maintainer-mode
1409         * Makefile.am: Added ACLOCAL_AMFLAGS
1410
1411         This allows to properly regenerate the Makefiles if you modify the
1412         configure.ac or any Makefile.am.
1413
1414 2008-11-06  Claudio Saavedra  <csaavedra@igalia.com>
1415
1416         * examples/hildon-app-menu-example.c: (main): Do not set RC style
1417         properties, not needed at all.
1418
1419 2008-11-06  Claudio Saavedra  <csaavedra@igalia.com>
1420
1421         * src/hildon-note-private.h: Add strings for the icon and stock_icon
1422         properties.
1423         * src/hildon-note.c: (hildon_note_set_property),
1424         (hildon_note_get_property), (hildon_note_class_init),
1425         (hildon_note_init), (hildon_note_finalize), (hildon_note_rebuild),
1426         (hildon_note_new_confirmation_add_buttons): Remove icons.
1427         (hildon_note_new_confirmation_with_icon_name): Deprecate.
1428         (hildon_note_new_information_with_icon_name): Deprecate.
1429         (hildon_note_new_confirmation): Act directly, without calling
1430         the deprecated constructor.
1431         (hildon_note_new_information): Act directly, without calling
1432         the deprecated constructor.
1433         * src/hildon-note.h: Mark deprecate methods as such.
1434         * tests/check-hildon-note.c: (create_hildon_note_suite): Do
1435         not run tests on the deprecated methods if built with deprecation
1436         disabled.
1437
1438         Fixes: NB#91688 (Never show icons in information notes/confirmation
1439         notes)
1440
1441 2008-11-06  Claudio Saavedra  <csaavedra@igalia.com>
1442
1443         * src/hildon-app-menu.c: (hildon_app_menu_set_parent_window),
1444         (hildon_app_menu_key_press): Remove leftover usage of the
1445         private structure in HildonAppMenu struct.
1446         * src/hildon-app-menu.h: Remove leftover private structure
1447         from the HildonAppMenu struct.
1448
1449         Fixes a crasher when using the HildonAppMenu.
1450
1451 2008-11-05  Claudio Saavedra  <csaavedra@igalia.com>
1452
1453         * src/hildon-picker-dialog.c: Use appropriate logical id
1454         for the default "Done" text.
1455
1456 2008-11-05  Claudio Saavedra  <csaavedra@igalia.com>
1457
1458         * configure.ac: post release version bump
1459         * debian/changelog: version bump
1460
1461 2008-11-05  Alejandro Pinheiro  <apinheiro@igalia.com>
1462
1463         Modified the way to scroll to the current selection just when the touch
1464         selector is shown on the screen, avoiding a g_idle. Added too a property
1465         to configure this behaviour. See hildon_pannable_area_jump_to_child
1466         documentation for more information.
1467
1468         * src/hildon-touch-selector.c
1469         Removed unused CENTER_ON_SELECTED_ITEM_DELAY macro
1470         Added 'initial-scroll' property
1471         (hildon_touch_selector_set_property): Added
1472         (hildon_touch_selector_map): Removed as not required anymore
1473         (_hildon_touch_selector_on_selected_items): Modified in order to manage
1474         only a concrete column, instead of iterate along all the columns
1475
1476 2008-11-04  Claudio Saavedra  <csaavedra@igalia.com>
1477
1478         [Release 2.1.20]
1479
1480         * NEWS: updates
1481         * configure.ac: bump version
1482         * debian/changelog: updates
1483
1484 2008-11-04  Claudio Saavedra  <csaavedra@igalia.com>
1485
1486         * src/hildon-button.c: (hildon_button_set_arrangement): Fix some
1487         compilation time warnings.
1488
1489 2008-11-04  Claudio Saavedra  <csaavedra@igalia.com>
1490
1491         * src/hildon-pannable-area.c: (hildon_pannable_area_class_init): Set
1492         the default value for HildonPannableArea::mov-mode to
1493         HILDON_PANNABLE_AREA_MODE_VERT.
1494
1495         Fixes: NB#91385 (Hildon Touch List panning should be ALWAYS vertical only)
1496
1497 2008-11-04  Claudio Saavedra  <csaavedra@igalia.com>
1498
1499         Reverting following commit:
1500
1501         2008-10-13  Alberto Garcia  <agarcia@igalia.com>
1502
1503           * src/hildon-app-menu-private.h
1504           * src/hildon-app-menu.[ch]
1505           * src/hildon-button.[ch]
1506           * src/hildon-check-button.[ch]
1507           * src/hildon-entry.[ch]
1508           * src/hildon-pannable-area.[ch]
1509           * src/hildon-text-view.[ch]:
1510           Added private field to the object's structure.
1511
1512         because it causes an ABI breakage. We will need to introduce these
1513         changes later at some point. See NB#91636 for an extensive
1514         explanation and status.
1515
1516 2008-11-04  Claudio Saavedra  <csaavedra@igalia.com>
1517
1518         Patch contributed by Daniel Borgmann (danielb@openismus.com)
1519
1520         * src/hildon-window.c: (paint_toolbar): Update toolbar sizes and
1521         remove special cases that are no longer necessary.
1522
1523         Fixes: NB#91016 (Change toolbar sizes, simplification)
1524
1525 2008-11-03  Claudio Saavedra  <csaavedra@igalia.com>
1526
1527         * src/hildon-note.c: (hildon_note_rebuild): Make sure the cancel button
1528         is shown in the cancel note.
1529
1530 2008-11-03  Claudio Saavedra  <csaavedra@igalia.com>
1531
1532         * src/hildon-controlbar.c: (hildon_controlbar_init): Remove steppers.
1533         * src/hildon-seekbar.c: (hildon_seekbar_class_init),
1534         (hildon_seekbar_init): Remove steppers, remove expose event.
1535         * src/hildon-volumebar-range.c: (hildon_volumebar_range_init): Remove steppers.
1536
1537         Fixes: NB#91104 (Remove stepper buttons from legacy hildon widgets)
1538
1539 2008-10-31  Claudio Saavedra  <csaavedra@igalia.com>
1540
1541         * src/hildon-button.c: (hildon_button_set_arrangement): Set the value
1542         label font to "SmallSystemFont" for vertically arranged buttons.
1543
1544         Fixes: NB#90662 (HildonButton "value" and "detail" text is
1545         unformatted)
1546
1547 2008-10-31  Alberto Garcia  <agarcia@igalia.com>
1548
1549         * src/hildon-check-button.c
1550         (hildon_check_button_set_active, hildon_check_button_clicked):
1551         Don't access private parts directly, use getters instead.
1552
1553 2008-10-31  Alberto Garcia  <agarcia@igalia.com>
1554
1555         * src/hildon-check-button.c (hildon_check_button_new):
1556         Align the contents of the check button to the left.
1557
1558 2008-10-30  Alejandro G. Castro  <alex@igalia.com>
1559
1560         * src/hildon-pannable-area.c,
1561         (hildon_pannable_area_scroll_to),
1562         (hildon_pannable_area_jump_to),
1563         (hildon_pannable_area_scroll_to_child),
1564         (hildon_pannable_area_jump_to_child): Replace the mapped
1565         precondition of these functions with the realized, it is the
1566         correct state of the widget in this case. Changed the
1567         documentation according to this modification.
1568
1569 2008-10-30  Alejandro G. Castro  <alex@igalia.com>
1570
1571         Added a new EXTRA_CFLAGS option to add the deprecated define to
1572         the compilation command. This way we can avoid using the define in
1573         the documentation compilation.
1574
1575         * configure.ac: Defined EXTRA_CFLAGS.
1576
1577         * examples/Makefile.am:
1578         * src/Makefile.am:
1579         * tests/Makefile.am: Included EXTRA_CFLAGS in the compilation.
1580
1581 2008-10-30  Alejandro Pinheiro  <apinheiro@igalia.com>
1582
1583         * src/hildon-picker-dialog.c:
1584         Defined a utility macro with the desired touch selector height
1585         Removed currently unused separator, and title_label variables from
1586         private structure.
1587         (hildon_picker_dialog_init): Removed code related to the creation
1588         of unused private variables title_label and separator.
1589         (_hildon_picker_dialog_set_selector): Added gtk_widget_set_size_request
1590         to ensure correct visualization of the touch selector inside the dialog.
1591         * src/hildon-touch-selector.c
1592         (hildon_touch_selector_init): Removed a gtk_widget_set_size_request to
1593         ensure a concrete height of the widget.
1594
1595 2008-10-30  Claudio Saavedra  <csaavedra@igalia.com>
1596
1597         * src/Makefile.am:
1598         * tests/Makefile.am:
1599
1600         Remove spurious whitespaces.
1601
1602 2008-10-30  Claudio Saavedra  <csaavedra@igalia.com>
1603
1604         * src/hildon-code-dialog.c: (hildon_code_dialog_init): Fix a
1605         compilation warning after the cancel button removal.
1606
1607 2008-10-30  Alejandro G. Castro  <alex@igalia.com>
1608
1609         Fremantle deprecated widgets marked, HILDON_DISABLE_DEPRECATED
1610
1611         * configure.ac: Added an AM_CONDITIONAL in order to use in the
1612         Makefile.am, that way we can choose not to compile some examples
1613         and tests of the deprecated widgets.
1614
1615         * examples/Makefile.am: Divided the sources in deprecated and
1616         non-deprecated.
1617
1618         * src/Makefile.am: Added undef statement of the deprecated
1619         symbol to the enums file generation process.
1620
1621         * src/hildon-color-chooser-dialog.c
1622         * src/hildon-color-chooser-dialog.h
1623         * src/hildon-color-button.c
1624         * src/hildon-color-button.h
1625         * src/hildon-color-chooser.c
1626         * src/hildon-color-chooser.h
1627         * src/hildon-controlbar.c
1628         * src/hildon-controlbar.h
1629         * src/hildon-date-editor.c
1630         * src/hildon-date-editor.h
1631         * src/hildon-hvolumebar.c
1632         * src/hildon-hvolumebar.h
1633         * src/hildon-private.c
1634         * src/hildon-private.h
1635         * src/hildon-range-editor.c
1636         * src/hildon-range-editor.h
1637         * src/hildon-seekbar.c
1638         * src/hildon-seekbar.h
1639         * src/hildon-time-editor.c
1640         * src/hildon-time-editor.h
1641         * src/hildon-time-picker.c
1642         * src/hildon-time-picker.h
1643         * src/hildon-volumebar.c
1644         * src/hildon-volumebar.h
1645         * src/hildon-vvolumebar.c
1646         * src/hildon-vvolumebar.h
1647         * src/hildon-bread-crumb-trail.h
1648         * src/hildon-bread-crumb-trail.c
1649         * src/hildon-calendar-popup.c
1650         * src/hildon-calendar-popup.h
1651         * src/hildon-weekday-picker.c:
1652         * src/hildon-weekday-picker.h:
1653         * src/hildon-bread-crumb-widget.c:
1654         * src/hildon-bread-crumb-widget.h:
1655         * src/hildon-bread-crumb.c:
1656         * src/hildon-bread-crumb.h:
1657         * src/hildon-calendar.c:
1658         * src/hildon-calendar.h:
1659         * src/hildon-caption.c:
1660         * src/hildon-code-dialog.c:
1661         * src/hildon-code-dialog.h:
1662         * src/hildon-font-selection-dialog.c:
1663         * src/hildon-font-selection-dialog.h:
1664         * src/hildon-get-password-dialog.c:
1665         * src/hildon-get-password-dialog.h:
1666         * src/hildon-login-dialog.c:
1667         * src/hildon-login-dialog.h:
1668         * src/hildon-number-editor.c:
1669         * src/hildon-number-editor.h:
1670         * src/hildon-set-password-dialog.c:
1671         * src/hildon-set-password-dialog.h:
1672         * src/hildon-sort-dialog.c:
1673         * src/hildon-sort-dialog.h: This is the list of deprecated
1674         widgets.
1675
1676         * src/hildon-touch-selector.c:
1677         * src/hildon-window.c: Added undef statement to avoid compilation
1678         warnings
1679
1680         * tests/Makefile.am: Divided the sources in deprecated and
1681         non-deprecated.
1682
1683         * tests/check_test.c,
1684         (configure_tests): Marked the deprecated code that was adding
1685         suites with deprecated tests.
1686
1687         Fixes: NB#91135 (Deprecate legacy hildon widgets)
1688
1689 2008-10-30  Claudio Saavedra  <csaavedra@igalia.com>
1690
1691         * src/hildon-touch-selector.c: (_default_print_func): Do not
1692         duplicate a string returned by gtk_tree_model_get(), it is already
1693         allocated for us.
1694
1695         Fixes: NB#91192 (Memory leak in HildonTouchSelector default print
1696         function)
1697
1698 2008-10-28  Alejandro G. Castro  <alex@igalia.com>
1699
1700         * src/hildon-pannable-area.c
1701         (hildon_pannable_area_add_with_viewport): Reviewed the complete
1702         method, it had problems when adding a widget with viewport the
1703         second time. Now checks if it already has a viewport and uses it.
1704
1705         Fixes: NB#90994 (HildonPannableArea does not connect "destroyed"
1706         on child)
1707
1708 2008-10-28  Alejandro G. Castro  <alex@igalia.com>
1709
1710         * src/hildon-pannable-area.c,
1711         (hildon_pannable_area_scroll_to),
1712         (hildon_pannable_area_jump_to),
1713         (hildon_pannable_area_scroll_to_child),
1714         (hildon_pannable_area_jump_to_child): Added a precondition to the
1715         scroll and jump to functions: the widget must be mapped before we
1716         can safely call these functions. We have also added documentation
1717         to the functions to explain how to use them in this situation.
1718
1719
1720 2008-10-28  Alejandro G. Castro  <alex@igalia.com>
1721
1722         Reviewed the threading handling of the pannable widget, we have
1723         used the gdk_threads_add_timeout function instead of the usual
1724         glib handlers. This avoids some problems with the threads.
1725
1726         * src/hildon-pannable-area.c (hildon_pannable_area_grab_notify),
1727         (hildon_pannable_area_initial_effect),
1728         (hildon_pannable_area_scroll_indicator_fade),
1729         (hildon_pannable_area_button_press_cb),
1730         (hildon_pannable_area_timeout),
1731         (hildon_pannable_area_motion_notify_cb),
1732         (hildon_pannable_area_button_release_cb),
1733         (hildon_pannable_area_scroll_cb),
1734         (hildon_pannable_area_scroll_to): Removed the
1735         GDK_THREAD_ENTER/LEAVE and replaced g_timeout_add with
1736         gdk_threads_add_timeout.
1737
1738         Fixes: NB#89541 (Crash in pannable area when closing picker dialog)
1739
1740 2008-10-27  Claudio Saavedra  <csaavedra@igalia.com>
1741
1742         [Release 2.1.18]
1743
1744         * NEWS: updates
1745         * configure.ac: bump version
1746         * debian/changelog: updates
1747
1748 2008-10-27  Claudio Saavedra  <csaavedra@igalia.com>
1749
1750         * src/hildon-calendar-popup.c: (hildon_calendar_popup_init):
1751         * src/hildon-code-dialog.c: (hildon_code_dialog_init):
1752         * src/hildon-color-chooser-dialog.c:
1753         (hildon_color_chooser_dialog_init):
1754         * src/hildon-font-selection-dialog.c:
1755         (hildon_font_selection_dialog_init):
1756         * src/hildon-login-dialog.c: (hildon_login_dialog_init):
1757
1758         Remove all cancel/close-like dialogs, as these are not going to be
1759         displayed at all.
1760
1761 2008-10-27  Claudio Saavedra  <csaavedra@igalia.com>
1762
1763         * src/hildon-note.c: (hildon_note_rebuild),
1764         (hildon_note_new_confirmation_add_buttons): Explicitely show the buttons
1765         when needed.
1766
1767         Fixes: NB#90661 (Delete dialog is displayed without NO button)
1768
1769 2008-10-27  Claudio Saavedra  <csaavedra@igalia.com>
1770
1771         * src/hildon-note.c: (hildon_note_new_confirmation_add_buttons): Make
1772         sure all buttons are shown, even the Cancel/Close-like ones.
1773
1774         Fixes: NB#90861 (Custom Confirmation dialogs should be
1775         protected from cancel button removal)
1776
1777 2008-10-23  Alejandro Pinheiro  <apinheiro@igalia.com>
1778
1779         * debian/control: Change libhildon1-examples dependency from libhildon1
1780         to libhildon1-dev
1781         * debian/libhildon1-examples.install
1782         * debian/rules
1783         * Makefile.am: Modified the final install directory for the examples on
1784         package libhildon1-examples
1785         * Makefile.static: Update clean target in order to remove all the binary
1786         examples
1787
1788         Changes suggested by Claudio after review new libhildon1-examples package
1789
1790 2008-10-23  Claudio Saavedra  <csaavedra@igalia.com>
1791
1792         * src/hildon-touch-selector-entry.c: Fix some gtk-doc warnings.
1793         * src/hildon-touch-selector.c: Ditto.
1794
1795 2008-10-23  Alejandro Pinheiro  <apinheiro@igalia.com>
1796
1797         * debian/control: Added new package libhildon1-examples, in order to pack
1798         the current hildon examples as documentation
1799         * debian/rules: Not to compress .c files, modify some includes on the
1800         examples (as normally are compiled locally, but when installed it will
1801         require to include the installed libhildon1 library), and rename
1802         Makefile.static
1803         * examples/Makefile.am: Added examplesdir and examples_DATA, in order to
1804         install all the example files on the new example package
1805         * examples/Makefile.static: Added static makefile that can be used to
1806         compile the examples, once installed the new example package
1807         * examples: Most of the examples were modified in order to grant that
1808         all use only '#include "hildon.h"', in order to be easy to prepare
1809         it on the example package
1810
1811 2008-10-23  Alberto Garcia  <agarcia@igalia.com>
1812
1813         * debian/control
1814         * debian/libhildon1-dev.install
1815         * debian/libhildon1-doc.install:
1816         Move all gtk-doc files to a separate libhildon1-doc package.
1817
1818 2008-10-23  Daniel Borgmann  <danielb@openismus.com>
1819
1820         reviewed by:  Claudio Saavedra  <csaavedra@igalia.com>
1821
1822         * src/hildon-gtk.c (hildon_gtk_menu_new): Change capitalization
1823
1824 2008-10-22  Alejandro Pinheiro  <apinheiro@igalia.com>
1825
1826         * debian/rules: Fixed a error in order to avoid unnecessary calls
1827         to autogen.sh on package building
1828
1829 2008-10-22  Alberto Garcia  <agarcia@igalia.com>
1830
1831         * examples/hildon-app-menu-example.c: Add keyboard accelerator.
1832
1833 2008-10-21  Claudio Saavedra  <csaavedra@igalia.com>
1834
1835         * src/hildon-picker-dialog.h: Add missing HildonTouchSelector
1836         header include.
1837
1838 2008-10-21  Alberto Garcia  <agarcia@igalia.com>
1839
1840         * src/hildon-picker-button.c
1841         (hildon_picker_button_finalize):
1842         Free priv->done_button_text
1843
1844         * src/hildon-time-button.c
1845         (hildon_time_button_set_time)
1846         * src/hildon-picker-button.c
1847         (hildon_picker_button_clicked)
1848         (hildon_picker_button_selector_selection_changed)
1849         (hildon_picker_button_set_selector)
1850         * src/hildon-date-button.c
1851         (hildon_date_button_set_date):
1852         Free strings returned by hildon_touch_selector_get_current_text()
1853
1854         * src/hildon-button.c (hildon_button_construct_child):
1855         Fix leaks in priv->image and priv->label_box
1856
1857         Fixes: NB#90535 (Memory leak in picker button)
1858
1859 2008-10-21  Claudio Saavedra  <csaavedra@igalia.com>
1860
1861         * src/hildon-button.c: (hildon_button_get_property): Do not access
1862         private elements directly, use getters instead.
1863
1864 2008-10-20  Alberto Garcia  <agarcia@igalia.com>
1865
1866         * src/hildon-app-menu-private.h
1867         * src/hildon-app-menu.c
1868         (hildon_app_menu_init, hildon_app_menu_set_parent_window):
1869         Store the menu's parent window.
1870
1871         * src/hildon-stackable-window.c
1872         (hildon_stackable_window_toggle_menu)
1873         (hildon_stackable_window_finalize):
1874         Set the menu's parent window when the menu is shown, unset it when
1875         it is destroyed.
1876
1877         * src/hildon-app-menu.c
1878         (hildon_app_menu_hide_idle, hildon_app_menu_key_press)
1879         (hildon_app_menu_class_init):
1880         Send unhandled keyboard accelerators to the parent window.
1881
1882 2008-10-20  Alberto Garcia  <agarcia@igalia.com>
1883
1884         * src/hildon-stackable-window.c
1885         (hildon_stackable_window_finalize): Unref the menu, don't destroy it
1886
1887 2008-10-20  Claudio Saavedra  <csaavedra@igalia.com>
1888
1889         * configure.ac: post release version bump
1890
1891 2008-10-20  Claudio Saavedra  <csaavedra@igalia.com>
1892
1893         * NEWS: Updates
1894         * configure.ac: Bump version
1895         * debian/changelog: Updates
1896         * debian/rules: Set PKG_CONFIG_PATH to make docs build with
1897         gtk-doc 1.10.
1898
1899 2008-10-20  Alberto Garcia  <agarcia@igalia.com>
1900
1901         Patch contributed by Daniel Borgmann (danielb@openismus.com)
1902
1903         * src/hildon-gtk.h
1904         * src/hildon-gtk.c (hildon_gtk_menu_new): New function to create a
1905         GtkMenu with Hildon style.
1906
1907 2008-10-20  Claudio Saavedra  <csaavedra@igalia.com>
1908
1909         * src/hildon-picker-button.c:
1910         (hildon_picker_button_set_done_button_text): Set the dialog's
1911         done button text here as well.
1912
1913         Fixes: NB#90232 (Picker button does not set the label on done button
1914         for the second time)
1915
1916 2008-10-20  Claudio Saavedra  <csaavedra@igalia.com>
1917
1918         * src/hildon-picker-button.c: (hildon_picker_button_clicked): Update
1919         warning message.
1920
1921 2008-10-16  Alberto Garcia  <agarcia@igalia.com>
1922
1923         * src/hildon-app-menu.c (hildon_app_menu_insert)
1924         (hildon_app_menu_add_filter, can_activate_accel): Allow items in
1925         the HildonAppMenu to be activatable using keyboard accelerators
1926         when the menu is not being shown.
1927
1928         Fixes: NB#89935 (Shortcuts for menu buttons are not working)
1929
1930 2008-10-16  Alberto Garcia  <agarcia@igalia.com>
1931
1932         * src/hildon-stackable-window.c
1933         (hildon_stackable_window_show):
1934         Don't hide old windows automatically when new windows are shown:
1935         this is now a task for the window manager.
1936         (hildon_stackable_window_class_init)
1937         (hildon_stackable_window_hide):
1938         Remove windows from the stack everytime they're hidden.
1939         (hildon_stackable_window_realize):
1940         Don't change the _NET_WM_WINDOW_TYPE property. Use
1941         _HILDON_STACKABLE_WINDOW instead for the window manager to manage
1942         it as a stackable window.
1943
1944         * src/hildon-program.c
1945         (hildon_program_pop_window_stack):
1946         Just hide the window to remove it from the stack.
1947         (hildon_program_go_to_root_window):
1948         Don't call gtk_widget_show(), this is now a task for the window
1949         manager.
1950
1951         Fixes: NB#89411 (Window Manager locks caused by HildonStackableWindow)
1952
1953 2008-10-15  Alberto Garcia  <agarcia@igalia.com>
1954
1955         * src/hildon-button.c
1956         (hildon_button_construct_child):
1957         Don't pack anything in the button until text or image are
1958         set. This allows adding a custom child after creating the button
1959         with hildon_button_new().
1960         (hildon_button_finalize, hildon_button_class_init)
1961         (hildon_button_init, hildon_button_set_arrangement): Destroy the
1962         alignment and the label box even when they're not packed in the
1963         button.
1964
1965 2008-10-14  Alejandro Pinheiro   <apinheiro@igalia.com>
1966
1967         * src/hildon-touch-selector.h:
1968         Set parent_instance and parent_class as GtkVBox and GtkVboxClass, as
1969         currently the type definition was using GTK_TYPE_VBOX
1970         * src/hildon-touch-selector.c:
1971         Added some implementation notes in order to clarify that any other widget
1972         added without the column related API will not be included on the
1973         selection logic, and how the widget is freed, as some people ask about
1974         it.
1975         (hildon_touch_selector_remove): Reimplemented in order to free properly
1976         the column related data when you remove the private hbox.
1977         * doc/hildon.types: Added the type hildon_touch_selector_column, in order
1978         to get a proper HildonTouchSelectorColumn documentation
1979
1980 2008-10-13  Claudio Saavedra  <csaavedra@igalia.com>
1981
1982         * src/hildon-touch-selector-entry.c:
1983         (hildon_touch_selector_entry_print_func): Return NULL if there is no
1984         text in the GtkEntry and there is no item selected. Fixes a
1985         potential crasher.
1986
1987 2008-10-13  Alberto Garcia  <agarcia@igalia.com>
1988
1989         * src/hildon-app-menu-private.h
1990         * src/hildon-app-menu.[ch]
1991         * src/hildon-button.[ch]
1992         * src/hildon-check-button.[ch]
1993         * src/hildon-entry.[ch]
1994         * src/hildon-pannable-area.[ch]
1995         * src/hildon-text-view.[ch]:
1996         Added private field to the object's structure.
1997
1998 2008-10-13  Claudio Saavedra  <csaavedra@igalia.com>
1999
2000         * configure.ac: post-release version bump
2001
2002 2008-10-10  Claudio Saavedra  <csaavedra@igalia.com>
2003
2004         [Release 2.1.14]
2005
2006         * configure.ac: pre-release version bump
2007         * NEWS: updates.
2008         * debian/changelog: updates.
2009
2010 2008-10-10  Claudio Saavedra  <csaavedra@igalia.com>
2011
2012         * src/hildon-picker-button.c: (hildon_picker_button_finalize):
2013         Disconnect the handler for HildonTouchSelector::changed.
2014
2015         (hildon_picker_button_selector_selection_changed): Update the button
2016         value if the selection change was not triggered by the
2017         HildonPickerDialog.
2018
2019         (hildon_picker_button_set_selector): connect to
2020         HildonTouchSelector::changed.
2021
2022         Fixes: NB#89650 (Picker button is not updated, when selection in
2023         selector has changed)
2024
2025 2008-10-09  Alejandro Pinheiro   <apinheiro@igalia.com>
2026
2027         * src/hildon-picker-dialog.c
2028         (hildon_picker_dialog_realize): Removed as not required
2029         (hildon_picker_dialog_class_init): Avoid to redefine widget->realize
2030         * src/hildon-picker-button.c
2031         (_current_selector_empty): New function, checks if the selector is empty
2032         (hildon_picker_button_clicked): Now it checks (using _current_selector_empty)
2033         if the current selector is empty, in order to avoid to show the dialog
2034         close the dialog in this case (and shows a g_warning).
2035
2036         Fixes: NB#88946 (Hildon Picker button should disable itself if there are no values)
2037
2038 2008-10-09  Alejandro G. Castro  <alex@igalia.com>
2039
2040         * src/hildon-pannable-area.c,
2041         (hildon_pannable_area_scroll): Added clause to stop movement when
2042         the child of pannable is smaller than one page.
2043         (hildon_pannable_area_scroll_to): Added conditions to avoid
2044         starting the scrolling movement if the child is smaller than one
2045         page, the complete child is in the screen, we do not have to move.
2046
2047         Fixes: NB#89632 (Picker button selection doesn't change on first click)
2048
2049 2008-10-09  Alberto Garcia  <agarcia@igalia.com>
2050
2051         * src/hildon-app-menu.c: Removed the 'columns' property, as now
2052         this is managed automatically by the widget when the size of the
2053         screen changes.
2054
2055 2008-10-09  Alberto Garcia  <agarcia@igalia.com>
2056
2057         * src/hildon-picker-button.c
2058         (hildon_picker_button_set_done_button_text): Make a copy of the
2059         text, and free the previous value.
2060
2061 2008-10-09  Claudio Saavedra  <csaavedra@igalia.com>
2062
2063         * src/hildon-touch-selector-entry.c:
2064         (hildon_touch_selector_entry_print_func): Return the selected row's
2065         text if the entry is empty.
2066
2067         Fixes: NB#89651 (HildonTouchSelectorEntry title is <unnamed>, when
2068         entry is empty)
2069
2070 2008-10-09  Claudio Saavedra  <csaavedra@igalia.com>
2071
2072         * src/hildon-touch-selector-entry.c: Minor docs fixes.
2073
2074 2008-10-09  Alberto Garcia  <agarcia@igalia.com>
2075
2076         * doc/hildon.types
2077         * src/hildon-check-button.h
2078         * src/hildon-check-button.c
2079         * examples/hildon-check-button-example.c:
2080         HildonCheckButton is now a new widget. 'toggled' signal added.
2081
2082 2008-10-08  Alberto Garcia  <agarcia@igalia.com>
2083
2084         * src/hildon-program-private.h
2085         * src/hildon-program.c (hildon_program_init)
2086         (hildon_program_finalize): Removed unused variables group_leader
2087         and name from HildonProgramPrivate.
2088
2089 2008-10-08  Alberto Garcia  <agarcia@igalia.com>
2090
2091         * src/hildon-check-button.c (hildon_check_button_set_active)
2092         (hildon_check_button_get_active, hildon_check_button_new): Use
2093         g_object_[gs]et_qdata() instead of g_object_[gs]et_data().
2094
2095 2008-10-08  Alejandro Pinheiro   <apinheiro@igalia.com>
2096
2097         * src/hildon-touch-selector.h
2098         (hildon_touch_selector_set_column_attributes): added deprecation
2099         guard HILDON_DISABLE_DEPRECATED
2100         * src/hildon-time-selector.c
2101         (hildon_time_selector_set_time)
2102         (hildon_time_selector_get_time): Fixed a typo on documentation
2103         * src/hildon-touch-selector.c: update HildonTouchSelector and
2104         HildonTouchSelectorColumn documentation
2105         * src/hildon-touch-selector-entry.c: update "text-column" property
2106         documentation
2107         * doc/hildon-docs.sgml: added hildon-touch-selector-column in order
2108         to be added to the general documentation.
2109
2110 2008-10-08  Alejandro G. Castro  <alex@igalia.com>
2111
2112         * examples/hildon-pannable-area-example-4.c,
2113         (main),
2114         * examples/hildon-pannable-area-example.c,
2115         (main): Modified the code in order to use the container add, with
2116         viewport treeviews could have problems if they are really big.
2117
2118 2008-10-06  Alejandro G. Castro  <alex@igalia.com>
2119
2120         * src/hildon-weekday-picker.c,
2121         * src/hildon-weekday-picker.h: Removed the deprecated symbols after
2122         the agreement regarding deprecation in the library.
2123
2124 2008-10-06  Claudio Saavedra  <csaavedra@igalia.com>
2125
2126         * examples/hildon-picker-button-multicolumn-example.c:
2127         (main): Use custom "done" button text.
2128
2129         * src/hildon-picker-button.c: (hildon_picker_button_get_property),
2130         (hildon_picker_button_set_property),
2131         (hildon_picker_button_clicked), (hildon_picker_button_class_init),
2132         (hildon_picker_button_init),
2133         (+hildon_picker_button_get_done_button_text),
2134         (+hildon_picker_button_set_done_button_text): New methods to customize
2135         the "done" button label in the launched HildonPickerDialog. Also,
2136         make it a property.
2137
2138         * src/hildon-picker-button.h: add the public API.
2139
2140 2008-10-06  Claudio Saavedra  <csaavedra@igalia.com>
2141
2142         * src/hildon-date-selector.h:
2143         * src/hildon-picker-dialog.h:
2144         * src/hildon-time-selector.h:
2145         * src/hildon-touch-selector-column.h:
2146         * src/hildon-touch-selector.h:
2147
2148         Set the G_GNUC_CONST macro properly in the hildon_*_get_type()
2149         declarations. Fixes gtk-doc warnings.
2150
2151 2008-10-06  Alberto Garcia  <agarcia@igalia.com>
2152
2153         * src/hildon-picker-dialog.h
2154         * src/hildon-picker-dialog.c (hildon_picker_dialog_init):
2155         Make HildonPickerDialog derive from HildonDialog, not GtkDialog
2156
2157         Fixes: NB#89329 (selectors in picker dialog are not visible when a
2158         long text is set as label for done button)
2159
2160 2008-10-06  Alberto Garcia  <agarcia@igalia.com>
2161
2162         * src/hildon-dialog.c (hildon_dialog_add_button):
2163         Set fixed width to all buttons in the HildonDialog.
2164
2165 2008-10-06  Alberto Garcia  <agarcia@igalia.com>
2166
2167         Patch contributed by Daniel Borgmann (danielb@openismus.com)
2168
2169         * src/hildon-gtk.c (hildon_gtk_widget_set_theme_size):
2170         Set widget name using class name plus "-finger" or "-thumb".
2171
2172 2008-10-03  Alberto Garcia  <agarcia@igalia.com>
2173
2174         * src/hildon-check-button.c (hildon_check_button_set_active): Emit
2175         'clicked' when the state of the button is manually changed.
2176
2177 2008-10-02  Alberto Garcia  <agarcia@igalia.com>
2178
2179         * src/hildon-app-menu.c (hildon_app_menu_realize)
2180         (hildon_app_menu_unrealize, hildon_app_menu_init)
2181         (hildon_app_menu_class_init, item_visibility_changed):
2182         Change the menu layout when the size of the screen changes.
2183         (hildon_app_menu_set_columns, hildon_app_menu_set_property):
2184         Show warning only when changing the number of colums using the
2185         property.
2186
2187 2008-10-02  Claudio Saavedra  <csaavedra@igalia.com>
2188
2189         * debian/compat: Set to 5
2190         * debian/control: Update dependencies.
2191         * debian/libhildon1-dbg.install: Remove.
2192         * debian/libhildon1-dev.install: Update according to cdbs paths.
2193         * debian/libhildon1.install: Update according to cdbs paths.
2194         * debian/rules: Switch to cdbs.
2195
2196 2008-10-01  Alberto Garcia  <agarcia@igalia.com>
2197
2198         * src/hildon-app-menu.c (hildon_app_menu_repack_filters):
2199         'item' variable renamed to 'filter'
2200
2201 2008-10-01  Alberto Garcia  <agarcia@igalia.com>
2202
2203         * src/hildon-app-menu.c (hildon_app_menu_insert)
2204         (hildon_app_menu_add_filter, remove_item_from_list)
2205         (hildon_app_menu_repack_filters, hildon_app_menu_finalize):
2206         Don't leak hidden items when the menu is destroyed.
2207
2208 2008-10-01  Alberto Garcia  <agarcia@igalia.com>
2209
2210         * src/hildon-app-menu.c (hildon_app_menu_insert)
2211         (hildon_app_menu_reorder_child, hildon_app_menu_add_filter)
2212         (hildon_app_menu_set_columns, item_visibility_changed)
2213         (filter_visibility_changed, hildon_app_menu_repack_filters)
2214         (hildon_app_menu_repack_items):
2215         Repack items and filters separately.
2216
2217         Don't repack all items, change only the ones that are needed to
2218         update the layout.
2219
2220 2008-10-01  Alejandro Pinheiro <apinheiro@igalia.com>
2221
2222         * src/Makefile.am: added hildon-touch-selector-column.h
2223
2224 2008-10-01  Alejandro Pinheiro <apinheiro@igalia.com>
2225
2226         * src/hildon-touch-selector.c: added the property "text-column" to the
2227         class HildonTouchSelectorColumn, and related get/set functions
2228         (_default_printf_func): updated to use "text-column" property
2229         * src/hildon-touch-selector-entry.c: mark as deprecated the property
2230         "text-column" in his documentation, as this is now included on
2231         HildonTouchSelectorColumn. The get/set_property can still be used,
2232         working as a wrapper to the concrete column "text-column" property
2233         (_text_column_modified): callback added in order to handle the signal
2234         "notify::text-column" of the concrete HildonTouchSelectorColumn
2235         (hildon_touch_selector_entry_get_text_column)
2236         (hildon_touch_selector_entry_set_text_column): Added documentation, and
2237         modified in order to use the HildonTouchSelectorColumn "text-column"
2238         property
2239         * src/hildon-time-selector.c:
2240         * src/hildon-date-selector.c:
2241         * examples/hildon-touch-selector-example.c
2242         * examples/hildon-touch-selector-multi-cells-example.c
2243         * examples/hildon-picker-button-multicolumn-example.c
2244         Set the right value to "text-column" property on the creation of a new
2245         column using hildon_touch_selector_append_column()
2246
2247         Fixes: NB#88644 (Hardcoded first column of the model as text column)
2248
2249 2008-09-30  Alberto Garcia  <agarcia@igalia.com>
2250
2251         * src/hildon-app-menu.c
2252         (hildon_app_menu_construct_child, hildon_app_menu_init): When
2253         updating the layout of the menu, don't create all widgets again,
2254         just repack the items in their new places.
2255
2256 2008-09-30  Alejandro Pinheiro <apinheiro@igalia.com>
2257
2258         * src/hildon-time-selector.c
2259         (hildon_time_selector_get_time)
2260         (hildon_time_selector_set_time)
2261         Added documentation of these public methods
2262
2263         * src/hildon-date-button.h
2264         * src/hildon-touch-selector-column.h
2265         * src/hildon-time-button.h
2266         * src/hildon-picker-dialog.h
2267         * src/hildon-time-selector.h
2268         * src/hildon-picker-button.h
2269         * src/hildon-touch-selector.h
2270         * src/hildon-time-picker.h
2271         * src/hildon-date-selector.h
2272         * src/hildon-touch-selector-entry.h
2273         Modified in order to use hildon-widgets code style
2274
2275 2008-09-30  Alejandro G. Castro  <alex@igalia.com>
2276
2277         Added deprecated support to the compilation process using
2278         HILDON_DISABLE_DEPRECATED
2279
2280         * configure.ac: Added the --disable-deprecated to the configure
2281         script
2282
2283         * src/hildon-weekday-picker.c:
2284         * src/hildon-weekday-picker.h: Deprecated widget, example of how
2285         to use the deprecated support. We will update the other deprecated
2286         widgets status in a new patch.
2287
2288 2008-09-30  Alejandro G. Castro  <alex@igalia.com>
2289
2290         * configure.ac: Fixed typo with fatal warnings support, the
2291         variable name was not correct
2292
2293 2008-09-29  Alberto Garcia  <agarcia@igalia.com>
2294
2295         * src/hildon-app-menu.c
2296         * src/hildon-program.c: Update documentation.
2297
2298 2008-09-29  Claudio Saavedra  <csaavedra@igalia.com>
2299
2300         * configure.ac: Post-release version bump.
2301
2302 2008-09-29  Claudio Saavedra  <csaavedra@igalia.com>
2303
2304         [Release 2.1.12]
2305
2306         * NEWS: Update.
2307         * configure.ac: Pre-release version bump.
2308         * debian/changelog: Updates.
2309
2310 2008-09-29  Claudio Saavedra  <csaavedra@igalia.com>
2311
2312         * NEWS: Update news for previous releases.
2313
2314 2008-09-26  Claudio Saavedra  <csaavedra@igalia.com>
2315
2316         * examples/hildon-touch-selector-multi-cells-example.c:
2317         (create_selector): Update the example to use
2318         hildon_touch_selector_append_column() with a NULL renderer and set
2319         the renderers later.
2320         * src/hildon-touch-selector.c: (_create_new_column): Do not warn if
2321         passed a NULL renderer. This is documented behavior now.
2322
2323         Allow passing a NULL renderer to hildon_touch_selector_append_column().
2324         This must be used if the developer wants full control on the layout of
2325         the renderers to be added to the column.
2326
2327         Fixes: NB#88680 (Limiting API in HildonTouchSelector)
2328
2329 2008-09-26  Claudio Saavedra  <csaavedra@igalia.com>
2330
2331         * src/hildon-touch-selector.c: Documentation fixes.
2332
2333 2008-09-26  Claudio Saavedra  <csaavedra@igalia.com>
2334
2335         * src/hildon-wizard-dialog-private.h: Remove image and box.
2336         * src/hildon-wizard-dialog.c: (hildon_wizard_dialog_init),
2337         (hildon_wizard_dialog_set_property), (response): Completely remove
2338         image/icon support, and the containers required for the layout.
2339
2340         Fixes: NB#88927 (Hildon Wizard should not use icons anymore)
2341
2342 2008-09-25  Alberto Garcia  <agarcia@igalia.com>
2343
2344         * src/hildon-app-menu.c: Updated documentation.
2345
2346         * src/hildon-stackable-window.c
2347         (hildon_stackable_window_set_main_menu): Unref the old menu after
2348         ref'ing the new one.
2349
2350 2008-09-25  Alberto Garcia  <agarcia@igalia.com>
2351
2352         * src/hildon-stackable-window.c
2353         (hildon_stackable_window_set_main_menu): Unref the previous menu
2354         instead of destroying it.
2355
2356         * src/hildon-app-menu.c (hildon_app_menu_init): Re-enforce the
2357         floating reference and set has_user_ref_count to FALSE to make
2358         HildonAppMenu act like a normal ref-counted widget and not a
2359         toplevel widget.
2360
2361         Fixes: NB#88923 (Semantics of hildon_stackable_window_set_main_menu()
2362         changed)
2363
2364 2008-09-25  Alejandro Pinheiro  <apinheiro@igalia.com>
2365
2366         * src/hildon-touch-selector-column.h: new file
2367         * src/hildon-touch-selector.h
2368         * src/hildon-touch-selector.c
2369         Implemented GtkCellLayout interface, in order to allow to configure
2370         the cell layout on each individual selector column
2371         (hildon_touch_selector_set_column_attributes): marked as deprecated
2372         * examples/hildon-touch-selector-multi-cells-example.c
2373         Example of how to use the GtkCellLayout interface on the selector
2374
2375         Fixes: NB#88680 (Limiting API in HildonTouchSelector)
2376
2377 2008-09-24  Alberto Garcia  <agarcia@igalia.com>
2378
2379         * src/hildon-app-menu.h
2380         * src/hildon-app-menu.c
2381         (hildon_app_menu_insert, hildon_app_menu_reorder_child)
2382         (hildon_app_menu_append, hildon_app_menu_prepend):
2383         New methods to prepend, insert and move items in the menu.
2384
2385 2008-09-24  Claudio Saavedra  <csaavedra@igalia.com>
2386
2387         * src/hildon-wizard-dialog.c:
2388
2389         (hildon_wizard_dialog_init): Update logical IDs and remove cancel
2390         button.
2391         (create_title): Update logical IDs and related code.
2392         (response): No need to handle HILDON_WIZARD_DIALOG_CANCEL.
2393
2394         * src/hildon-wizard-dialog.h: Note that
2395         HILDON_WIZARD_DIALOG_CANCEL should be marked as deprecated at some
2396         point, as it is not used anymore.
2397
2398         Fixes: NB#88887 (Hildon Wizard changes for Hildon2.2)
2399
2400 2008-09-24  Claudio Saavedra  <csaavedra@igalia.com>
2401
2402         * src/hildon-note.c:
2403         (hildon_note_rebuild): Update logical IDs. Ensure "Cancel" button is
2404         shown.  Do not display an icon in confirmation notes nor information
2405         notes.
2406         (hildon_note_set_button_text): Update logical ID for cancel button.
2407
2408         Fixes: NB#88850 (Update HildonNote button strings + signals)
2409
2410 2008-09-24  Alberto Garcia  <agarcia@igalia.com>
2411
2412         * src/hildon-stackable-window.c
2413         (hildon_stackable_window_set_main_menu): Fix compilation warning.
2414
2415 2008-09-24  Alberto Garcia  <agarcia@igalia.com>
2416
2417         * src/hildon-app-menu-private.h
2418         * src/hildon-app-menu.c (hildon_app_menu_set_columns)
2419         (hildon_app_menu_set_property, hildon_app_menu_construct_child)
2420         (hildon_app_menu_init, hildon_app_menu_class_init): Added
2421         temporary property 'columns' to change the number of columns.
2422
2423 2008-09-24  Claudio Saavedra  <csaavedra@igalia.com>
2424
2425         Patch contributed by Kimmo Hämäläinen (kimmo.hamalainen@nokia.com)
2426
2427         * examples/hildon-note-example.c: (on_information_clicked),
2428         (on_confirmation_clicked), (on_progress_clicked), (main): Add
2429         debugging information.
2430         * src/hildon-note-private.h: Remove close_if_pressed_outside,
2431         not needed anymore.
2432         * src/hildon-note.c: (hildon_note_class_init), (hildon_note_init),
2433         (hildon_note_rebuild): Remove special handling of tapping outside/inside
2434         in order to close: this will be handled by the WM from now on.
2435
2436         Fixes: NB#88891 (Allow WM to handle properly close-on-tap-outside behavior)
2437
2438 2008-09-24  Alberto Garcia  <agarcia@igalia.com>
2439
2440         * src/hildon-app-menu-private.h
2441         * src/hildon-app-menu.c
2442         (hildon_app_menu_append, hildon_app_menu_add_filter)
2443         (button_visibility_changed, hildon_app_menu_apply_style)
2444         (hildon_app_menu_style_set, hildon_app_menu_construct_child)
2445         (hildon_app_menu_init, hildon_app_menu_finalize): Update the
2446         layout everytime a button (item or filter) is shown or hidden.
2447
2448         * src/hildon-stackable-window.c
2449         (hildon_stackable_window_set_main_menu): Destroy the old menu when
2450         setting a new one.
2451
2452 2008-09-22  Alejandro Pinheiro <apinheiro@igalia.com>
2453
2454         * src/hildon-touch-selector.c:
2455         (hildon_touch_selector_class_init): added gtkrc bits in order to ensure
2456         that the treeview inside the touch selector is in fremantle hildon mode
2457         * examples/hildon-date-button-example.c
2458         * examples/hildon-picker-button-multicolumn-example.c
2459         * examples/hildon-touch-selector-entry-example.c
2460         * examples/hildon-touch-selector-example.c
2461         * examples/hildon-time-button-example.c
2462         * examples/hildon-picker-button-example.c:
2463         (main): Remove the gtkrc bits, now hadled by hildon-touch-selector.c
2464
2465 2008-09-22  Claudio Saavedra  <csaavedra@igalia.com>
2466
2467         * examples/hildon-text-view-example.c: (main): Remove the
2468         gtkrc bits, now handled by the theme.
2469
2470 2008-09-22  Alberto Garcia  <agarcia@igalia.com>
2471
2472         * src/hildon-picker-button.c (hildon_picker_button_set_active):
2473         Fix memory leak
2474
2475 2008-09-19  Claudio Saavedra  <csaavedra@igalia.com>
2476
2477         * po/Makefile.am: Install properly the mo files.
2478         * po/en_GB.po: Update translation, to ease testing purposes.
2479
2480 2008-09-19  Claudio Saavedra  <csaavedra@igalia.com>
2481
2482         * examples/hildon-picker-button-example.c: (main): Select an item
2483         in the selector before setting it to the button.
2484
2485 2008-09-19  Claudio Saavedra  <csaavedra@igalia.com>
2486
2487         * src/hildon-picker-button.c: (hildon_picker_button_set_selector):
2488         Update button's value if the selector has an item active.
2489
2490         Fixes: NB#88718 (HildonPickerButton not synchronizing its initial
2491         'value' with the selector)
2492
2493 2008-09-19  Claudio Saavedra  <csaavedra@igalia.com>
2494
2495         * src/hildon-picker-button.c: (+hildon_picker_button_finalize): unref
2496         the HildonTouchSelector and destroy the underlying HildonPickerDialog.
2497         (hildon_picker_button_class_init): Plug the finalize method.
2498         (hildon_picker_button_set_selector): If there's a previously set
2499         selector, unref'it before setting a new one.
2500
2501         Fixes: NB#88720 (HildonPickerButton leaks a reference to the
2502         HildonTouchSelector)
2503
2504 2008-09-16  Claudio Saavedra  <csaavedra@igalia.com>
2505
2506         * src/hildon-touch-selector-entry.c:
2507         (hildon_touch_selector_entry_changed): Check if there is no text
2508         selected before setting the entry text.
2509         Fixes: NB#88576
2510
2511 2008-09-15  Alberto Garcia  <agarcia@igalia.com>
2512
2513         * src/hildon-touch-selector.h
2514         * src/hildon-touch-selector.c
2515         (hildon_touch_selector_get_active)
2516         (hildon_touch_selector_set_active): New methods to set/get the
2517         index of the selected item.
2518
2519         * src/hildon-picker-button.h
2520         * src/hildon-picker-button.c
2521         (hildon_picker_button_get_active)
2522         (hildon_picker_button_set_active): New methods to set/get the
2523         index of the selected item.
2524
2525 2008-09-15  Claudio Saavedra  <csaavedra@igalia.com>
2526
2527         * configure.ac: post-release version bump.
2528
2529 2008-09-15  Claudio Saavedra  <csaavedra@igalia.com>
2530
2531         Release 2.1.10-1.
2532
2533         * configure.ac: Pre-release version bump.
2534         * debian/changelog: Updates.
2535         * debian/control: Add myself as maintainer and depend on l10n
2536         packages.
2537
2538 2008-09-15  Alberto Garcia  <agarcia@igalia.com>
2539
2540         * src/hildon-window.c
2541         (hildon_window_set_main_menu)
2542         * src/hildon-stackable-window.c
2543         (hildon_stackable_window_set_main_menu):
2544         Updated documentation.
2545
2546 2008-09-15  Alberto Garcia  <agarcia@igalia.com>
2547
2548         * src/hildon-date-selector.c (hildon_date_selector_finalize):
2549         Don't free selector->priv manually.
2550         Fixes: NB#88414
2551
2552 2008-09-12  Alejandro G. Castro  <alex@igalia.com>
2553
2554         * src/hildon-gtk.c,
2555         (hildon_gtk_window_set_progress_indicator):
2556         * src/hildon-gtk.h: Added the new API
2557         hildon_gtk_window_set_progress_indicator, it changes the state of
2558         the window progress hint.
2559
2560 2008-09-12  Alberto Garcia  <agarcia@igalia.com>
2561
2562         * src/hildon-button.c
2563         * src/hildon-stackable-window.c: Minor documentation updates.
2564
2565 2008-09-12  Alberto Garcia  <agarcia@igalia.com>
2566
2567         * src/hildon-stackable-window.c: Updated documentation.
2568
2569 2008-09-12  Claudio Saavedra  <csaavedra@igalia.com>
2570
2571         * src/hildon-defines.h: Update margins definitions
2572         to the Fremantle sizes.
2573         Fixes: NB#88364
2574
2575 2008-09-12  Alejandro G. Castro  <alex@igalia.com>
2576
2577         * src/hildon-touch-selector.c,
2578         (_hildon_touch_selector_set_model): Cleaning the code after
2579         review, removed g_print and #if 0 from the code.
2580
2581 2008-09-11  Alberto Garcia  <agarcia@igalia.com>
2582
2583         * src/hildon-edit-toolbar.c: Update documentation.
2584
2585 2008-09-11  Alberto Garcia  <agarcia@igalia.com>
2586
2587         * src/hildon-check-button.h
2588         * src/hildon-check-button.c
2589         (hildon_check_button_set_label, hildon_check_button_get_label)
2590         * examples/hildon-check-button-example.c
2591         (button_clicked_cb):
2592         Removed deprecated methods.
2593
2594 2008-09-11  Alberto Garcia  <agarcia@igalia.com>
2595
2596         * src/hildon-text-view.c:
2597         Add sample code to the documentation.
2598
2599         * src/hildon-entry.h
2600         * src/hildon-text-view.h:
2601         Minor cosmetic changes.
2602
2603         * src/hildon-entry.c:
2604         Add sample code to the documentation.
2605         (hildon_entry_init, hildon_entry_refresh_contents):
2606         Don't allow NULL values in the placeholder.
2607
2608 2008-09-10  Alberto Garcia  <agarcia@igalia.com>
2609
2610         * doc/hildon-docs.sgml
2611         * doc/hildon.types
2612         * examples/Makefile.am
2613         * examples/hildon-text-view-example.c
2614         * src/Makefile.am
2615         * src/hildon-text-view.c
2616         * src/hildon-text-view.h
2617         * src/hildon.h:
2618         New HildonTextView widget, with example.
2619
2620 2008-09-10  Claudio Saavedra  <csaavedra@igalia.com>
2621
2622         * po/POTFILES.in: Add missing files with translatable strings.
2623         Partially fixes NB#88287.
2624
2625 2008-09-10  Claudio Saavedra  <csaavedra@igalia.com>
2626
2627         * examples/hildon-pannable-area-example-2.c: (main): No need to
2628         set the cellrenderer height inside hildon touch lists, the theme does
2629         that for us.
2630
2631 2008-09-10  Claudio Saavedra  <csaavedra@igalia.com>
2632
2633         * examples/hildon-entry-example.c: (main): Remove the gtkrc bits, now
2634         they are integrated in the theme.
2635
2636 2008-09-09  Alberto Garcia  <agarcia@igalia.com>
2637
2638         * examples/hildon-entry-example.c: Update the example adding
2639         widgets to modify the text and the placeholder of the HildonEntry.
2640
2641         * src/hildon-entry.c: Show the placeholder everytime the widget
2642         is empty and loses the focus.
2643
2644 2008-09-09  Alejandro G. Castro  <alex@igalia.com>
2645
2646         Patch contributed by Daniil Ivanov (ext-danil.ivanoc@nokia.com)
2647
2648         * src/hildon-pannable-area.c,
2649         (hildon_pannable_area_size_request): Fixed bug in height
2650         requisition, avoid increasing size and add border twice.
2651
2652 2008-09-09  Claudio Saavedra  <csaavedra@igalia.com>
2653
2654         * configure.ac: postrelease version bump.
2655
2656 2008-09-09  Claudio Saavedra  <csaavedra@igalia.com>
2657
2658         Release 2.1.8-1.
2659
2660         * configure.ac: Prerelease version bump.
2661         * debian/changelog: update.
2662         * debian/rules: make -dbg package contain useful debugging symbols.
2663
2664 2008-09-08  Alberto Garcia  <agarcia@igalia.com>
2665
2666         * src/hildon-dialog.h
2667         * src/hildon-dialog.c
2668         (hildon_dialog_add_button, hildon_dialog_add_buttons):
2669         New methods to add buttons with finger size.
2670         (hildon_dialog_new_with_buttons):
2671         Create buttons with finger size.
2672
2673         * examples/hildon-dialog-example.c (main): Use HildonDialog
2674         methods to add buttons.
2675
2676 2008-09-08  Alberto Garcia  <agarcia@igalia.com>
2677
2678         * src/hildon-entry.c: Updated HildonButton documentation.
2679
2680 2008-09-08  Alberto Garcia  <agarcia@igalia.com>
2681
2682         * src/hildon-button.c (hildon_button_set_arrangement): Pack the
2683         button value label with (FALSE, FALSE) to prevent NB#88126 from
2684         being triggered.
2685
2686 2008-09-08  Alejandro G. Castro  <alex@igalia.com>
2687
2688         * examples/hildon-pannable-area-example.c,
2689         (main): Removed examples panning a vbox inside a pannable
2690         area. Check bug NB#87965
2691
2692 2008-09-08  Alejandro G. Castro  <alex@igalia.com>
2693
2694         Patch contributed by Kris Rietveld (kris@imendio.com)
2695
2696         * src/hildon-pannable-area.c,
2697         (hildon_pannable_area_get_topmost): replaced the get_geometry with
2698         get_size and get_position, this saves an X server roundtrip.
2699
2700 2008-09-05  Alberto Garcia  <agarcia@igalia.com>
2701
2702         * doc/hildon-docs.sgml
2703         * doc/hildon.types
2704         * examples/Makefile.am
2705         * examples/hildon-entry-example.c
2706         * src/Makefile.am
2707         * src/hildon-entry.c
2708         * src/hildon-entry.h
2709         * src/hildon.h:
2710         New HildonEntry widget, with example.
2711
2712 2008-09-05  Alberto Garcia  <agarcia@igalia.com>
2713
2714         * src/hildon-button.c (hildon_button_construct_child): Pack the
2715         image with expand == fill == FALSE. This is a workaround for a bug
2716         in GtkBox.
2717
2718 2008-09-05  Claudio Saavedra  <csaavedra@igalia.com>
2719
2720         * examples/hildon-pannable-area-example-2.c: (main): Use the stock
2721         labels for the text column, to make it more look more dynamic.
2722
2723 2008-09-04  Alejandro Pinheiro  <apinheiro@igalia.com>
2724
2725         * src/hildon-time-selector.c
2726         Define gettext auxiliar macro N_
2727         (_create_minutes_model)
2728         (_create_hours_model)
2729         (_create_ampm_model): use of strftime in order to fill the model
2730         * src/hildon-date-selector.c
2731         (hildon_date_selector_finalize):
2732         (_locales_init): remove the logic related to get the name of the months
2733         using nl_langinfo, as it is not required anymore
2734         (_create_day_model)
2735         (_create_year_model)
2736         (_create_month_model)
2737         (_update_day_model): use of strftime in order to fill the model properly
2738
2739
2740 2008-09-04  Alberto Garcia  <agarcia@igalia.com>
2741
2742         * src/hildon-button.h
2743         * src/hildon-button.c (hildon_button_get_image): New method to
2744         retrieve the image.
2745
2746 2008-09-04  Claudio Saavedra  <csaavedra@igalia.com>
2747
2748         * src/hildon-touch-selector.c:
2749         (hildon_touch_selector_remove_column): Remove from the correct parent
2750         and also remove the list element and free it.
2751         Fixes: NB#88049
2752
2753 2008-09-04  Alejandro Pinheiro  <apinheiro@igalia.com>
2754
2755         * src/hildon-time-selector.c
2756         (_create_hours_model): change the range on 12h ampm format in order to use
2757         a 12-11 range instead of previous 01-12 range
2758         (hildon_time_selector_set_time): change the way to select the current time
2759         on 12h ampm format, due the change on the range
2760         (hildon_time_selector_get_time): fix the hour returned on 12 ampm format
2761         Fixes: NB#88036
2762
2763 2008-09-03  Alejandro Pinheiro  <apinheiro@igalia.com>
2764
2765         * src/hildon-touch-selector.c
2766         (hildon_date_touch_selector_get_selected): fix the selection mode check,
2767         in order to allow use this function on multiple row selection mode if
2768         the column is different that the first one
2769         Fixes: NB#88047
2770
2771 2008-09-03  Claudio Saavedra  <csaavedra@igalia.com>
2772
2773         * src/hildon-time-selector.c: (_custom_print_func): Change the logical ids
2774         to "wdgt_va_12h_time" and "wdgt_va_24h_time". Fixes NB#88045.
2775
2776 2008-09-02  Alejandro Pinheiro  <apinheiro@igalia.com>
2777
2778         * src/hildon-date-selector.h: clean some comments, now on the .c
2779         * src/hildon-date-selector.c
2780         (hildon_date_selector_select_month): first implementation
2781         (hildon_date_selector_select_day): added documentation, reimplemented
2782         using hildon_date_selector_select_current_date to avoid repeat code
2783         Fixes: NB#88027
2784
2785 2008-09-02  Alejandro G. Castro  <alex@igalia.com>
2786
2787         Reviewed interaction logic based on device experiences, refactored
2788         code.
2789
2790         * src/hildon-pannable-area.c,
2791         (hildon_pannable_area_class_init): Updated default vmax speed.
2792         (hildon_pannable_area_calculate_velocity): Added this function, it
2793         avoids duplicate valocity calculation. Adjusted calculation to
2794         avoid problems with zero dist events.
2795
2796         (hildon_pannable_area_motion_notify_cb): Now we use the
2797         calculate_velocity function.
2798
2799 2008-09-02  Alejandro Pinheiro  <apinheiro@igalia.com>
2800
2801         * src/hildon-date-selector.c
2802         (hildon_date_selector_select_current_date): fix the day range check
2803         as it failed using the last day of the current month
2804         Fixes NB#88023
2805
2806 2008-09-02  Alejandro Pinheiro  <apinheiro@igalia.com>
2807
2808         * src/hildon-touch-selector.c
2809         (hildon_touch_selector_get_num_columns): added a parameter validation
2810         Fixes: NB#88022
2811
2812 2008-08-29  Alberto Garcia  <agarcia@igalia.com>
2813
2814         * examples/Makefile.am
2815         * examples/hildon-edit-toolbar-example.c: Example of the
2816         HildonEditToolbar widget.
2817
2818 2008-08-29  Claudio Saavedra  <csaavedra@igalia.com>
2819
2820         * configure.ac: postrelease version bump.
2821
2822 2008-08-29  Claudio Saavedra  <csaavedra@igalia.com>
2823
2824         Release 2.1.6-1.
2825
2826         * configure.ac: prerelease version bump.
2827         * debian/changelog: update.
2828
2829 2008-08-29  Claudio Saavedra  <csaavedra@igalia.com>
2830
2831         * examples/hildon-pannable-area-example-2.c: (main): Add a pixbuf
2832         renderer to display stock icons in the touch list. Also, set the sizes
2833         to the recommended in the style guide.
2834
2835 2008-08-28  Alejandro Pinheiro  <apinheiro@igalia.com>
2836         * src/hildon-touch-selector.h
2837         (hildon_touch_selector_set_active_iter): renamed, now is
2838         hildon_touch_selector_select_iter
2839         (hildon_touch_selector_get_active_iter): renamed, now is
2840         hildon_touch_selector_get_selected
2841         (hildon_touch_selector_unselect_iter): added
2842         * src/hildon-touch-selector.c
2843         Update after API modification (methods renamed)
2844         (hildon_touch_selector_select_iter): remove gtk_tree_view_set_cursor in
2845         order to avoid problems selecting multiple elements on the column
2846         (hildon_touch_selector_unselect_iter): added the implementation
2847         * src/hildon-time-selector.c
2848         * src/hildon-date-selector.c
2849         * src/hildon-touch-selector-entry.c
2850         Update methods calls after hildon-touch-selector.h API modification (methods
2851         renamed)
2852
2853 2008-08-29  Alberto Garcia  <agarcia@igalia.com>
2854
2855         * src/hildon-stackable-window.c
2856         (hildon_stackable_window_finalize): Call the parent class's finalize.
2857
2858 2008-08-29  Claudio Saavedra  <csaavedra@igalia.com>
2859
2860         * examples/hildon-touch-selector-example.c: (create_selector): Use
2861         gtk_cell_renderer_set_fixed_size() instead of a GValue to set the
2862         cell height.
2863
2864 2008-08-29  Claudio Saavedra  <csaavedra@igalia.com>
2865
2866         * examples/hildon-touch-selector-example.c: (create_selector): Do not
2867         set a cell background color, to respect theming.
2868
2869 2008-08-28  Alberto Garcia  <agarcia@igalia.com>
2870
2871         * doc/hildon-docs.sgml
2872         * doc/hildon.types
2873         * src/Makefile.am
2874         * src/hildon-edit-toolbar.c
2875         * src/hildon-edit-toolbar.h
2876         * src/hildon.h: New HildonEditToolbar widget.
2877
2878 2008-08-28  Claudio Saavedra  <csaavedra@igalia.com>
2879
2880         * examples/hildon-pannable-area-example-4.c: (main): Remove unneeded
2881         extra GtkVBox.
2882
2883 2008-08-28  Alejandro Pinheiro  <apinheiro@igalia.com>
2884         * src/hildon-touch-selector.c
2885         (_create_new_column): use g_object_set instead of two g_object_set_property
2886
2887 2008-08-28  Alejandro Pinheiro  <apinheiro@igalia.com>
2888         * src/hildon-touch-selector.c
2889         (_create_new_column): use of hildon_gtk_tree_view_new to create
2890         the treeview, instead of use directly g_object_new
2891         (_create_new_column): update the property name "vindicator-mode" for the
2892         new one "vscrollbar-policy"
2893         * examples/hildon-date-button-example.c
2894         * examples/hildon-picker-button-multicolumn-example.c
2895         * examples/hildon-touch-selector-entry-example.c
2896         * examples/hildon-touch-selector-example.c
2897         * examples/hildon-time-button-example.c
2898         * examples/hildon-picker-button-example.c
2899         Add a gtk_rc_parse_string in order to set the hildon-mode to HILDON_FREMANTLE
2900         to all the treeviews inside a pannable area.
2901
2902 2008-08-27  Alberto Garcia  <agarcia@igalia.com>
2903
2904         * src/hildon-button.h
2905         * src/hildon-button.c (hildon_button_init)
2906         (hildon_button_set_arrangement, hildon_button_set_alignment)
2907         (hildon_button_set_title_alignment)
2908         (hildon_button_set_value_alignment)
2909         (hildon_button_set_image_alignment)
2910         (hildon_button_construct_child): New methods to set the alignment
2911         of the individual components of the button (title, value,
2912         image). Also, new method to alter the xscale and yscale properties
2913         of the GtkAlignment inside the button, so more complex layouts can
2914         be created.
2915
2916 2008-08-27  Alberto Garcia  <agarcia@igalia.com>
2917
2918         * src/hildon-button.c (hildon_button_style_set)
2919         (hildon_button_class_init, hildon_button_set_arrangement)
2920         (hildon_button_construct_child): Apply style properties
2921         correctly. Use the 'image-spacing' style property too.
2922
2923 2008-08-26  Alberto Garcia  <agarcia@igalia.com>
2924
2925         * src/hildon-app-menu.c (hildon_app_menu_style_set)
2926         (hildon_app_menu_init, hildon_app_menu_class_init): Set style
2927         correctly.
2928
2929 2008-08-26  Alejandro G. Castro  <alex@igalia.com>
2930
2931         * src/hildon-pannable-area.c,
2932         (hildon_pannable_area_size_request): Fixed problem with
2933         pannable-area size_request.
2934
2935 2008-08-26  Alejandro G. Castro  <alex@igalia.com>
2936
2937         Added management for the grab-focus to a child widget, like a
2938         range, we need to fade out the scrollbar when releasing.
2939
2940         * src/hildon-pannable-area.c,
2941         (hildon_pannable_area_init): Connected the grab-focus signal to
2942         the callback.
2943         (hildon_pannable_area_grab_notify): Added this function in order
2944         to manage the situation when the grab-focus ends. We have to
2945         fade-out the scrollbar.
2946
2947 2008-08-25  Alberto Garcia  <agarcia@igalia.com>
2948
2949         * src/hildon-app-menu.c: Minor documentation update.
2950
2951 2008-08-25  Alberto Garcia  <agarcia@igalia.com>
2952
2953         * src/hildon-app-menu.c
2954         * examples/hildon-app-menu-example.c (create_menu): Update
2955         examples and documentation to explain how to connect callbacks.
2956
2957 2008-08-25  Alejandro Pinheiro <apinheiro@igalia.com>
2958
2959         * examples/hildon-button-example.c
2960         (vertical_buttons_window) (horizontal_buttons_window) (main): use of
2961         hildon_stackable_window_new instead of gtk_window_new
2962
2963 2008-08-22  Alejandro G. Castro  <alex@igalia.com>
2964
2965         * src/hildon-pannable-area.c (hildon_pannable_area_class_init),
2966         (hildon_pannable_area_init), (hildon_pannable_area_get_property),
2967         (hildon_pannable_area_set_property),
2968         (hildon_pannable_area_dispose), (hildon_pannable_area_realize),
2969         (hildon_pannable_area_unrealize),
2970         (hildon_pannable_area_size_request),
2971         (hildon_pannable_area_size_allocate),
2972         (hildon_pannable_area_style_set), (hildon_pannable_area_map),
2973         (hildon_pannable_area_unmap), (rgb_from_gdkcolor),
2974         (hildon_pannable_draw_vscroll), (hildon_pannable_draw_hscroll),
2975         (hildon_pannable_area_initial_effect),
2976         (hildon_pannable_area_redraw),
2977         (hildon_pannable_area_scroll_indicator_fade),
2978         (hildon_pannable_area_expose_event),
2979         (hildon_pannable_area_get_topmost), (synth_crossing),
2980         (hildon_pannable_area_button_press_cb),
2981         (hildon_pannable_area_refresh), (hildon_pannable_axis_scroll),
2982         (hildon_pannable_area_scroll), (hildon_pannable_area_timeout),
2983         (hildon_pannable_area_motion_notify_cb),
2984         (hildon_pannable_area_button_release_cb),
2985         (hildon_pannable_area_scroll_cb), (hildon_pannable_area_add),
2986         (hildon_pannable_area_remove),
2987         (hildon_pannable_calculate_vel_factor): Widget refactorization,
2988         chage the code layout to a more GtkWidget like. Review the use of
2989         variables.
2990
2991 2008-08-21  Alejandro G. Castro  <alex@igalia.com>
2992
2993         * examples/hildon-pannable-area-example-4.c,
2994         (main): Modified the name of the hindicator_mode to
2995         hscrollbar_visible
2996
2997         * src/hildon-pannable-area.c,
2998         (hildon_pannable_area_class_init),
2999         (hildon_pannable_area_motion_notify_cb),
3000         (hildon_pannable_area_size_allocate): Reviewed the drawing logic,
3001         we have reduced the amount of signals and managed reviewed its
3002         rationale. Changed the default decelerate value.
3003
3004         (hildon_pannable_area_add),
3005         (hildon_pannable_area_redraw): Refactored functions.
3006
3007         (hildon_pannable_area_init),
3008         (hildon_pannable_area_get_property),
3009         (hildon_pannable_area_set_property):
3010         (hildon_pannable_draw_vscroll),
3011         (hildon_pannable_draw_hscroll),
3012         (hildon_pannable_area_initial_effect),
3013         (hildon_pannable_area_expose_event),
3014         (hildon_pannable_area_scroll),
3015         (hildon_pannable_area_button_press_cb),
3016         (hildon_pannable_area_realize): Replaced the names hindicator_mode
3017         and vindicator_mode with hscrollbar_policy and
3018         vscrollbar_policy. Replaced hscroll and vscroll with
3019         hscroll_visible and vscroll_visible.
3020
3021         (hildon_pannable_area_refresh): Refactor the function, remove
3022         variables and check the calls to this function, added resize
3023         conditions in case the children change their layout.
3024
3025         (hildon_pannable_area_size_request): Added more detailed
3026         size_request calculation.
3027
3028
3029 2008-08-21  Alejandro Pinheiro <apinheiro@igalia.com>
3030
3031         * src/hildon-color-chooser.c
3032         (init_borders): use the correct gtk_border_free instead of g_free, to
3033         avoid a crash when this widget is used (ie: the three color selection
3034         examples)
3035
3036 2008-08-20  Alejandro G. Castro  <alex@igalia.com>
3037
3038         * src/hildon-check-button.c,
3039         (hildon_check_button_set_active): Fixed problem when setting the
3040         active value, the widget was not redrawn.
3041
3042 2008-08-20  Alejandro G. Castro  <alex@igalia.com>
3043
3044         * src/hildon-pannable-area.c,
3045         (hildon_pannable_area_refresh),
3046         (hildon_pannable_area_scroll),
3047         (hildon_pannable_area_motion_notify_cb): Small code style change.
3048
3049         (hildon_pannable_area_class_init): Default initial_hint set to
3050         FALSE, it is not in the specs.
3051
3052         (hildon_pannable_area_initial_effect),
3053         (hildon_pannable_area_expose_event),
3054         (hildon_pannable_area_map),
3055         (hildon_pannable_area_init): Moved the launching point of the
3056         initial effect, it was in map but the sizes where not correct in
3057         that method so we do not know if we have the reproduce it. Now it
3058         is placed in the expose_event method and uses a variable to
3059         reproduce it just once.
3060
3061 2008-08-19  Alejandro G. Castro  <alex@igalia.com>
3062
3063         * src/hildon-pannable-area.c,
3064         (hildon_pannable_draw_vscroll),
3065         (hildon_pannable_draw_hscroll): Fix error calculating the maximum
3066         position allowed for the scrollbars.
3067
3068         (hildon_pannable_area_size_allocate): Small style change.
3069
3070 2008-08-19  Alejandro G. Castro  <alex@igalia.com>
3071
3072         * src/hildon-pannable-area.c,
3073         (hildon_pannable_area_scroll_indicator_fade),
3074         (hildon_pannable_area_button_press_cb),
3075         (hildon_pannable_area_button_release_cb),
3076         (hildon_pannable_area_scroll_cb),
3077         (hildon_pannable_area_expose_event),
3078         (hildon_pannable_area_init): Added the define parameter
3079         SCROLLBAR_FADE_DELAY to control the fade effect of the scrollbars
3080         and refactor the fade variable.
3081
3082 2008-08-19  Alejandro G. Castro  <alex@igalia.com>
3083
3084         * src/hildon-pannable-area.c,
3085         (hildon_pannable_area_redraw),
3086         (hildon_pannable_area_scroll_indicator_fade): Refactored redraw
3087         lines, we were reimplemeting the redraw code.
3088
3089 2008-08-18  Alejandro G. Castro  <alex@igalia.com>
3090
3091         * src/hildon-pannable-area.c,
3092         (hildon_pannable_area_scroll_cb),
3093         (hildon_pannable_area_realize),
3094         (hildon_pannable_area_class_init): Added scroll_event management
3095         for pannable area, now we can scroll the usual desktop method.
3096
3097         (hildon_pannable_area_jump_to): Fixed the logic of the method, the
3098         initialization of the parameters should depend on idle_id.
3099
3100         (hildon_pannable_area_init),
3101         (hildon_pannable_area_map): Small code style modifications
3102
3103 2008-08-18  Alejandro G. Castro  <alex@igalia.com>
3104
3105         * src/hildon-pannable-area.c
3106         (hildon_pannable_area_button_press_cb),
3107         (hildon_pannable_area_motion_notify_cb),
3108         (hildon_pannable_area_button_release_cb),
3109         (hildon_pannable_area_size_allocate),
3110         (hildon_pannable_area_scroll_to): Improved the timeouts
3111         management, we avoid creating them each time.
3112
3113 2008-08-14  Alejandro G. Castro  <alex@igalia.com>
3114
3115         * src/hildon-pannable-area.c:
3116         (hildon_pannable_area_refresh),
3117         (hildon_pannable_area_motion_notify_cb),
3118         (hildon_pannable_area_class_init):
3119         * src/hildon-pannable-area.h:
3120         * src/hildon-touch-selector.c
3121         (_create_new_column):
3122         * examples/hildon-pannable-area-example-4.c:
3123         (horizontal_movement),
3124         (vertical_movement),
3125         (main):
3126         Replaced the names of enums in the HildonPannableArea:
3127            -  HILDON_PANNABLE_AREA_MOV_MODE_* ->
3128               HILDON_MOVEMENT_MODE_*
3129            -  HILDON_PANNABLE_AREA_MOV_* ->
3130               HILDON_MOVEMENT_*
3131            - Removed HildonPannableAreaIndicatorMode, now we
3132              use GtkPolicyType
3133
3134 2008-08-14  Alberto Garcia  <agarcia@igalia.com>
3135
3136         * examples/hildon-pannable-area-touch-grid-example.c
3137         * examples/hildon-pannable-area-touch-list-example.c: Fix
3138         compilation warnings.
3139
3140 2008-08-14  Alberto Garcia  <agarcia@igalia.com>
3141
3142         * src/hildon-gtk.c (hildon_gtk_button_new)
3143         (hildon_gtk_toggle_button_new, hildon_gtk_radio_button_new)
3144         (hildon_gtk_radio_button_new_from_widget): Make buttons show their
3145         images overriding the value of the "gtk-button-images" setting.
3146
3147 2008-08-14  Alberto Garcia  <agarcia@igalia.com>
3148
3149         * src/hildon-check-button.c (hildon_check_button_new):
3150         Instead of using a custom container, display the label and the
3151         checkbox using the standard GtkButton API.
3152
3153         * examples/hildon-check-button-example.c (main): Don't use
3154         hildon_check_button_set_label() anymore
3155
3156         * src/hildon-check-button.h
3157         * src/hildon-check-button.c
3158         (hildon_check_button_set_label, hildon_check_button_get_label):
3159         Set as deprecated, now we're using gtk_button_{get,set}_label()
3160
3161 2008-08-14  Alejandro G. Castro  <alex@igalia.com>
3162
3163         * src/hildon-pannable-area.c,
3164         (hildon_pannable_area_get_topmost): Fixed bug with click in the
3165         GtkTreeview first line we detected it after the inclusion of the
3166         GtkWindowImpl in gtk+. We now check if the window is visible, not
3167         just if the pointer is over the window.
3168         (hildon_pannable_axis_scroll),
3169         (hildon_pannable_area_expose_event): Small style changes.
3170
3171 2008-08-13  Alberto Garcia  <agarcia@igalia.com>
3172
3173         * src/hildon-button.c: Update documentation.
3174
3175 2008-08-13  Alberto Garcia  <agarcia@igalia.com>
3176
3177         * examples/hildon-button-example.c: Add a switch to show images in
3178         the buttons.
3179
3180 2008-08-12  Claudio Saavedra  <csaavedra@igalia.com>
3181
3182         * doc/hildon-docs.sgml: Some docs reorganization.
3183
3184 2008-08-12  Alberto Garcia  <agarcia@igalia.com>
3185
3186         * examples/hildon-pannable-area-touch-list-example.c
3187         (create_tree_view)
3188         * examples/hildon-pannable-area-touch-grid-example.c
3189         (create_icon_view): Use gtk_{tree,icon}_view_new() and
3190         hildon_gtk_{tree,icon}_view_new() instead of g_object_new().
3191         Fix memory leak when setting the tree model.
3192
3193 2008-08-12  Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
3194
3195         Released 2.1.4
3196
3197 2008-08-12  Claudio Saavedra  <csaavedra@igalia.com>
3198
3199         * doc/hildon.types: Remove duplicated hildon_window_get_type
3200         * src/hildon-window.c: (hildon_window_class_init): Remove duplicated
3201         documentation comment.
3202
3203 2008-08-12  Alberto Garcia  <agarcia@igalia.com>
3204
3205         * doc/Makefile.am: Complete list of private headers.
3206
3207 2008-08-12  Alberto Garcia  <agarcia@igalia.com>
3208
3209         * doc/hildon-docs.sgml
3210         * src/hildon-app-menu.c
3211         * src/hildon-bread-crumb.c
3212         * src/hildon-button.c
3213         * src/hildon-gtk.c
3214         * src/hildon-program.c
3215         * src/hildon-stackable-window.c
3216         * src/hildon-window.c: Lots of documentation updates.
3217
3218 2008-08-12  Alberto Garcia  <agarcia@igalia.com>
3219
3220         * debian/control: Depend on Gtk 2:2.12.9-0osso3
3221
3222         * configure.ac: Require Gtk+ 2.12.9 at least
3223
3224 2008-08-12  Alejandro G. Castro  <alex@igalia.com>
3225
3226         * src/hildon-pannable-area.c
3227         (hildon_pannable_area_scroll_indicator_fade),
3228         (hildon_pannable_area_timeout): Added the GDK_THREADS_LEAVE macro
3229         to protect the return of this timeout callbacks, avoiding deadlocks.
3230
3231 2008-08-12  Christian Dywan  <christian@imendio.com>
3232
3233         * src/hildon-*.c
3234         * src/hildon-*.h: Ensure a consistent include order,
3235         include <gtk/gtk.h> instead of particular files and
3236         only include the topmost header in the gtk stack. See NB #39857
3237
3238 2008-08-12  Christian Dywan  <christian@imendio.com>
3239
3240         * src/hildon-picker-dialog.c
3241         * src/hildon-touch-selector.c: Fix warnings about unused and
3242         uninitialized variables.
3243
3244 2008-08-11  Alberto Garcia  <agarcia@igalia.com>
3245
3246         * examples/Makefile.am
3247         * examples/hildon-check-button-example.c: Example of the hildon
3248         check button.
3249
3250 2008-08-11  Alberto Garcia  <agarcia@igalia.com>
3251
3252         * src/hildon-window.h
3253         * src/hildon-window.c (hildon_window_class_init)
3254         (hildon_window_unset_program): Don't make
3255         hildon_window_unset_program a virtual function anymore.
3256
3257         * src/hildon-stackable-window.c: Update documentation
3258
3259 2008-08-11  Alberto Garcia  <agarcia@igalia.com>
3260
3261         * doc/Makefile.am
3262         * doc/hildon-docs.sgml
3263         * doc/visual_index.xml
3264         * src/hildon-defines.c
3265         * src/hildon-gtk.c
3266         * src/hildon-helper.c
3267         * src/hildon-range-editor.c: Lots of documentation fixes.
3268
3269 2008-08-11  Alberto Garcia  <agarcia@igalia.com>
3270
3271         * examples/hildon-picker-button-multicolumn-example.c
3272         (create_touch_selector): Fix compilation warning.
3273
3274 2008-08-11  Alberto Garcia  <agarcia@igalia.com>
3275
3276         * src/hildon-pannable-area.c (hildon_pannable_area_button_press_cb)
3277         (hildon_pannable_area_button_release_cb)
3278         (hildon_pannable_get_child_widget_at): Fix compilation warnings.
3279
3280 2008-08-11  Alberto Garcia  <agarcia@igalia.com>
3281
3282         * src/hildon-button.c (hildon_button_add_image_size_group): Fix
3283         assertion.
3284
3285 2008-08-11  Alberto Garcia  <agarcia@igalia.com>
3286
3287         * src/hildon-bread-crumb-trail.h
3288         * src/hildon-date-editor.c
3289         * src/hildon-date-selector.c
3290         * src/hildon-pannable-area.c
3291         * src/hildon-picker-dialog.c
3292         * src/hildon-time-selector.c
3293         * src/hildon-touch-selector-entry.c
3294         * src/hildon-touch-selector.c
3295         * src/hildon-touch-selector.h: Misc documentation fixes
3296
3297 2008-08-11  Alberto Garcia  <agarcia@igalia.com>
3298
3299         * examples/hildon-date-editor-example.c (main): Updated date
3300         editor example.
3301
3302         * examples/hildon-note-example.c (on_confirmation_clicked):
3303         Updated confirmation note example.
3304
3305         * src/hildon-date-editor.c
3306         * src/hildon-note.c: Updated sample programs in documentation.
3307         Fixes: NB#87437
3308
3309 2008-08-08  Claudio Saavedra  <csaavedra@igalia.com>
3310
3311         * src/hildon-date-button.h:
3312         * src/hildon-picker-button.h:
3313         * src/hildon-time-button.c:
3314         * src/hildon-time-button.h:
3315
3316         Some declarations changes to allow gtk-doc to document the widgets
3317         properly.
3318
3319 2008-08-08  Claudio Saavedra  <csaavedra@igalia.com>
3320
3321         * src/hildon-date-button.c: Document the widget.
3322         * src/hildon-time-button.c: Document the widget.
3323
3324 2008-08-08  Claudio Saavedra  <csaavedra@igalia.com>
3325
3326         * src/hildon-picker-button.c: Document the widget.
3327         * src/hildon-touch-selector-entry.c: Document the widget.
3328
3329 2008-08-08  Alberto Garcia  <agarcia@igalia.com>
3330
3331         * doc/hildon-docs.sgml
3332         * src/Makefile.am
3333         * src/hildon.h
3334         * src/hildon-check-button.h
3335         * src/hildon-check-button.c: New functions to create the Hildon
3336         Touch Checkbox.
3337
3338         * src/hildon-gtk.h
3339         * src/hildon-gtk.c (hildon_gtk_check_button_new): Removed.
3340
3341 2008-08-08  Alberto Garcia  <agarcia@igalia.com>
3342
3343         * src/hildon-button.h
3344         * src/hildon-button.c
3345         (hildon_button_add_title_size_group)
3346         (hildon_button_add_value_size_group)
3347         (hildon_button_add_image_size_group)
3348         (hildon_button_add_size_groups): New functions to set size groups
3349         for the button labels and image.
3350         (hildon_button_new_full): Removed
3351
3352 2008-08-08  Alejandro Pinheiro <apinheiro@igalia.com>
3353
3354         * src/hildon-time-selector.c
3355         (_check_ampm_format): use of g_warning instead of g_error with a gconf error
3356         in order to avoid a crash if gconf is not available
3357
3358 2008-08-08  Alberto Garcia  <agarcia@igalia.com>
3359
3360         * src/hildon-button.c (hildon_button_set_arrangement)
3361         (hildon_button_construct_child): Don't construct the button child
3362         before setting the arrangement.
3363
3364 2008-08-08  Alberto Garcia  <agarcia@igalia.com>
3365
3366         * src/hildon-program-private.h
3367         * src/hildon-program.c
3368         * src/hildon-program.h
3369         (_hildon_program_remove_from_stack, _hildon_program_add_to_stack)
3370         (hildon_program_peek_window_stack)
3371         (hildon_program_pop_window_stack)
3372         (hildon_program_go_to_root_window): HildonProgram now has a
3373         separate list for stackable windows. Functions are provided to
3374         manage that list with a stack-like API.
3375
3376         * src/hildon-stackable-window.c: Stackable window management is
3377         now much simpler with the new HildonProgram API. Windows no
3378         longer need to be manually added to the program, they're
3379         automatically pushed to the top of the stack when shown.
3380
3381         * examples/hildon-stackable-window-example.c: Updated example to
3382         reflect the API changes.
3383
3384 2008-08-07  Claudio Saavedra  <csaavedra@igalia.com>
3385
3386         * src/hildon-touch-selector.c: Comment out unimplemented
3387         hildon_touch_selector_insert_column() to avoid a compile warning.
3388
3389 2008-08-07  Claudio Saavedra  <csaavedra@igalia.com>
3390
3391         * src/hildon-touch-selector.c: (hildon_touch_selector_class_init),
3392         (hildon_touch_selector_new), (hildon_touch_selector_remove_column),
3393         (hildon_touch_selector_set_column_selection_mode),
3394         (_hildon_touch_selector_set_model),
3395         (hildon_touch_selector_set_model):
3396
3397         Complete review of HildonTouchSelector documentation.
3398
3399 2008-08-08  Alberto Garcia  <agarcia@igalia.com>
3400
3401         * doc/hildon-docs.sgml
3402         * src/Makefile.am
3403         * src/hildon.h
3404         * src/hildon-gtk.h
3405         * src/hildon-gtk.c: Convenience functions for standard Gtk
3406         widgets, used to easily perform frequent operations.
3407
3408         * src/hildon-button-helpers.h
3409         * src/hildon-button-helpers.c: Removed in favour of hildon-gtk.[ch]
3410
3411         * src/hildon-helper.h
3412         * src/hildon-helper.c (hildon_helper_set_theme_size): Renamed to
3413         hildon_gtk_widget_set_theme_size and moved to hildon-gtk.h
3414
3415         * src/hildon-button.h
3416         * src/hildon-button.c: Use the new hildon-gtk.[ch] functions.
3417
3418 2008-08-07  Alberto Garcia  <agarcia@igalia.com>
3419
3420         * src/hildon-button.c (hildon_button_init)
3421         (hildon_button_set_arrangement, hildon_button_construct_child):
3422         Pack the image and the labels inside the same GtkAlignment so
3423         gtk_button_set_alignment() can be used
3424
3425 2008-08-07  Alberto Garcia  <agarcia@igalia.com>
3426
3427         * src/hildon-button.h
3428         * src/hildon-button.c
3429         (hildon_button_init, hildon_button_set_image)
3430         (hildon_button_set_image_position)
3431         (hildon_button_construct_child): New functions to add an image to
3432         the HildonButton.
3433
3434 2008-08-07  Alberto Garcia  <agarcia@igalia.com>
3435
3436         * src/hildon-date-button.c
3437         * src/hildon-picker-button.c
3438         * src/hildon-time-button.c
3439         * src/hildon-button.c:
3440         (hildon_button_class_init): "size-flags" renamed to "size"
3441         (hildon_button_set_title): Hide the title label if set to NULL.
3442
3443 2008-08-07  Alberto Garcia  <agarcia@igalia.com>
3444
3445         HildonButtonFlags split into HildonButtonArrangement (to set the
3446         button layout) and HildonSizeType (which can be used for any
3447         widget).
3448
3449         * src/hildon-button.h
3450         * src/hildon-button.c
3451         (hildon_button_class_init)
3452         (hildon_button_set_arrangement)
3453         (hildon_button_set_property): New "size-flags"
3454         property. "arrangement-flags" renamed to "arrangement".
3455         (hildon_button_new, hildon_button_new_with_text)
3456         (hildon_button_new_full): Constructors updated to reflect type changes.
3457
3458         * src/hildon-helper.h
3459         * src/hildon-helper.c (hildon_helper_set_theme_size): New function
3460         to set the size of a widget.
3461
3462         * src/Makefile.am
3463         * src/hildon.h
3464         * src/hildon-button-helpers.c
3465         * src/hildon-button-helpers.h: New hildon-button-helpers module.
3466
3467         * src/hildon-date-button.c
3468         * src/hildon-date-button.h
3469         * src/hildon-picker-button.c
3470         * src/hildon-picker-button.h
3471         * src/hildon-time-button.c
3472         * src/hildon-time-button.h: Updated widgets to reflect
3473         HildonButton API changes.
3474
3475         * examples/hildon-button-example.c
3476         * examples/hildon-date-button-example.c
3477         * examples/hildon-picker-button-example.c
3478         * examples/hildon-picker-button-multicolumn-example.c
3479         * examples/hildon-time-button-example.c
3480         * examples/hildon-touch-selector-entry-example.c
3481         * examples/hildon-touch-selector-example.c: Updated examples to
3482         reflect HildonButton API changes.
3483
3484 2008-08-06  Claudio Saavedra  <csaavedra@igalia.com>
3485
3486         * doc/hildon-docs.sgml:
3487         * doc/hildon.types:
3488         * examples/Makefile.am:
3489         * examples/hildon-touch-selector-entry-example.c:
3490         * src/Makefile.am:
3491         * src/hildon-touch-selector-entry.c:
3492         * src/hildon-touch-selector-entry.h:
3493         * src/hildon.h:
3494
3495         Moved HildonTouchSelectorEntry from sandbox. Added its
3496         documentation and examples.
3497
3498 2008-08-06  Claudio Saavedra  <csaavedra@igalia.com>
3499
3500         * src/hildon-touch-selector.h:
3501         * examples/hildon-picker-button-multicolumn-example.c:
3502         (hildon_touch_selector_append_text_column): Add a gboolean
3503         parameter to determine if text must be centered in the column.
3504
3505         * src/hildon-date-selector.c: (hildon_date_selector_init):
3506         * src/hildon-time-selector.c: (hildon_time_selector_init):
3507         * src/hildon-touch-selector.c: (hildon_touch_selector_new_text),
3508         (create_touch_selector): Update widgets and example to reflect
3509         the API change.
3510
3511 2008-08-06  Claudio Saavedra  <csaavedra@igalia.com>
3512
3513         * src/hildon-touch-selector.c:
3514         (hildon_touch_selector_set_active_iter): Set also the cursor in
3515         the active row.
3516
3517 2008-08-06  Alberto Garcia  <agarcia@igalia.com>
3518
3519         * doc/hildon-docs.sgml
3520         * doc/hildon.types
3521         * src/Makefile.am
3522         * src/hildon-toggle-button.c
3523         * src/hildon-toggle-button.h
3524         * src/hildon.h: Removed HildonToggleButton widget, a derived
3525         class is not necessary for this.
3526
3527 2008-08-06  Alejandro G. Castro  <alex@igalia.com>
3528
3529         * src/hildon-pannable-area.c,
3530         (hildon_pannable_area_realize),
3531         (hildon_pannable_area_size_allocate): Code refactoring, add tests
3532         for negative sizes.
3533
3534 2008-08-05  Claudio Saavedra  <csaavedra@igalia.com>
3535
3536         * src/hildon-picker-dialog.c: (hildon_picker_dialog_init): Make the
3537         "done" button the default widget for the dialog.
3538
3539 2008-08-04  Claudio Saavedra  <csaavedra@igalia.com>
3540
3541         * src/hildon-touch-selector.c:
3542         (hildon_touch_selector_class_init),
3543         (hildon_touch_selector_get_property),
3544         (_hildon_touch_selector_set_model),
3545         (_hildon_touch_selector_has_multiple_selection),
3546         (hildon_touch_selector_has_multiple_selection):
3547         Add a "has-multiple-selection" property with a virtual
3548         has_multiple_selection() method to allow derived classes to
3549         override the default value for it. See the method and property
3550         documentation for details.
3551
3552         * src/hildon-touch-selector.h: Add the new API.
3553
3554         * src/hildon-picker-dialog.c: (requires_done_button): Call
3555         hildon_touch_selector_has_multiple_selection() instead of
3556         determining the need for a button itself.
3557
3558 2008-08-04  Claudio Saavedra  <csaavedra@igalia.com>
3559
3560         * src/hildon-touch-selector.c: (hildon_touch_selector_class_init),
3561         (_hildon_touch_selector_set_model),
3562         (hildon_touch_selector_set_model): Move working code to
3563         _hildon_touch_selector_set_mode(). Call the class method instead.
3564
3565         * src/hildon-touch-selector.h: Add (*set_model) to
3566         HildonTouchSelectorClass.
3567
3568         Make hildon_touch_selector_set_model() a virtual method, so that
3569         derived classes can extend it and do fancy stuff with the model.
3570
3571 2008-08-04  Claudio Saavedra  <csaavedra@igalia.com>
3572
3573         * configure.ac: Set back the tarname in AC_INIT to hildon.
3574
3575 2008-08-04  Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
3576
3577         Release 2.1.3
3578
3579         * src/hildon-sound.c (hildon_play_system_sound): Use libcanberra
3580         instead of libesd (NB#86876). Volume handling is still an open issue.
3581
3582         * configure.ac, src/Makefile.am: Replace esd with libcanberra. Some
3583         cleanups.
3584
3585 2008-08-01  Claudio Saavedra  <csaavedra@igalia.com>
3586
3587         * src/hildon-touch-selector.c: (hildon_touch_selector_init),
3588         (hildon_touch_selector_append_column): Make the widget a GtkVBox
3589         derived class to ease placement of an entry widget in
3590         HildonTouchSelectorEntry. Added a private GtkHBox, packed at the
3591         end, where the selector columns are packed now.
3592
3593 2008-08-01  Claudio Saavedra  <csaavedra@igalia.com>
3594
3595         * src/hildon-picker-button.c: Removed the simple _text() API.
3596         * src/hildon-picker-button.h: Likewise.
3597
3598         * src/hildon-touch-selector.h:
3599         * src/hildon-touch-selector.c:
3600         (hildon_touch_selector_new_text),
3601         (hildon_touch_selector_append_text),
3602         (hildon_touch_selector_prepend_text),
3603         (hildon_touch_selector_insert_text):
3604
3605         Moved the simple _text() API from HildonPickerButton to
3606         HildonTouchPicker, to provide better escalability and not to tie
3607         that API to HildonPickerButton.
3608
3609         * examples/hildon-picker-button-example.c: (main): Example updated.
3610
3611 2008-07-31  Alberto Garcia  <agarcia@igalia.com>
3612
3613         * src/hildon-button.c: Updated documentation.
3614
3615         * examples/hildon-button-example.c: Add the posibility to create
3616         the buttons using horizontal layout for title and value.
3617
3618 2008-07-31  Alberto Garcia  <agarcia@igalia.com>
3619
3620         * src/hildon-app-menu-private.h
3621         * src/hildon-app-menu.c (hildon_app_menu_add_filter)
3622         (hildon_app_menu_init, hildon_app_menu_finalize): Don't use a
3623         GtkSizeGroup for the filters, use the 'homogeneous' property of
3624         the box instead.
3625
3626 2008-07-31  Alberto Garcia  <agarcia@igalia.com>
3627
3628         * examples/hildon-button-example.c: Updated example.
3629
3630 2008-07-30  Claudio Saavedra  <csaavedra@igalia.com>
3631
3632         * doc/hildon-docs.sgml:
3633         * doc/hildon.types:
3634
3635         Update documentation.
3636
3637         * examples/Makefile.am: Update renamed examples.
3638
3639         * examples/hildon-picker-button-multicolumn-example.c:
3640         (create_touch_selector), (main): Update after the rename.
3641
3642         * examples/hildon-touch-picker-example.c: Removed.
3643         * examples/hildon-touch-selector-example.c: (value_changed),
3644         (create_selector), (get_visible_content), (main): Renamed from
3645         hildon-touch-picker-example.c
3646
3647         * src/Makefile.am: Updated renamed files.
3648
3649         * src/hildon-date-button.c: (hildon_date_button_init),
3650         (hildon_date_button_get_date), (hildon_date_button_set_date):
3651         * src/hildon-date-selector.c: (hildon_date_selector_init),
3652         (_custom_print_func), (_update_day_model),
3653         (_manage_selector_change_cb),
3654         (hildon_date_selector_select_current_date),
3655         (hildon_date_selector_get_date), (hildon_date_selector_select_day):
3656         * src/hildon-date-selector.h:
3657         * src/hildon-picker-button.c: (hildon_picker_button_get_property),
3658         (hildon_picker_button_set_property),
3659         (hildon_picker_button_clicked), (hildon_picker_button_class_init),
3660         (hildon_picker_button_init), (hildon_picker_button_new_text),
3661         (hildon_picker_button_append_text),
3662         (hildon_picker_button_prepend_text),
3663         (hildon_picker_button_insert_text),
3664         (hildon_picker_button_set_selector),
3665         (hildon_picker_button_get_selector):
3666         * src/hildon-picker-button.h:
3667         * src/hildon-picker-dialog.c: (hildon_picker_dialog_class_init),
3668         (hildon_picker_dialog_init), (_select_on_selector_changed_cb),
3669         (_update_title_on_selector_changed_cb), (requires_done_button),
3670         (_hildon_picker_dialog_set_selector),
3671         (hildon_picker_dialog_set_selector),
3672         (hildon_picker_dialog_get_selector):
3673         * src/hildon-picker-dialog.h:
3674         * src/hildon-time-button.c: (hildon_time_button_init),
3675         (hildon_time_button_get_time), (hildon_time_button_set_time):
3676         * src/hildon-time-selector.c: (hildon_time_selector_init),
3677         (_custom_print_func), (_manage_ampm_selection_cb), (_set_pm),
3678         (hildon_time_selector_set_time), (hildon_time_selector_get_time):
3679         * src/hildon-time-selector.h:
3680         * src/hildon.h:
3681
3682         Massive code updates after the rename.
3683
3684         * src/hildon-touch-picker.c: Removed.
3685         * src/hildon-touch-picker.h: Removed.
3686
3687         * src/hildon-touch-selector.c: (hildon_touch_selector_class_init),
3688         (hildon_touch_selector_init), (hildon_touch_selector_map),
3689         (hildon_touch_selector_remove), (_default_print_func),
3690         (_selection_changed_cb), (_create_new_column),
3691         (hildon_touch_selector_new), (hildon_touch_selector_append_column),
3692         (hildon_touch_selector_append_text_column),
3693         (hildon_touch_selector_remove_column),
3694         (hildon_touch_selector_set_column_attributes),
3695         (hildon_touch_selector_insert_column),
3696         (hildon_touch_selector_get_num_columns),
3697         (hildon_touch_selector_get_column_selection_mode),
3698         (hildon_touch_selector_set_column_selection_mode),
3699         (hildon_touch_selector_set_print_func),
3700         (hildon_touch_selector_get_print_func),
3701         (hildon_touch_selector_get_active_iter),
3702         (hildon_touch_selector_set_active_iter),
3703         (hildon_touch_selector_get_selected_rows),
3704         (hildon_touch_selector_get_model),
3705         (hildon_touch_selector_set_model),
3706         (hildon_touch_selector_get_current_text),
3707         (_hildon_touch_selector_center_on_selected_items):
3708         * src/hildon-touch-selector.h: Renamed from
3709         hildon-touch-picker.[ch]
3710
3711         Rename HildonTouchPicker to HildonTouchSelector. Updated all the
3712         references, code examples, and related documentation.
3713
3714 2008-07-30  Alberto Garcia  <agarcia@igalia.com>
3715
3716         * doc/hildon-docs.sgml
3717         * doc/hildon.types
3718         * src/Makefile.am
3719         * src/hildon-toggle-button.c
3720         * src/hildon-toggle-button.h
3721         * src/hildon.h: New HildonToggleButton widget.
3722
3723 2008-07-30  Alberto Garcia  <agarcia@igalia.com>
3724
3725         * src/hildon-button.c: Add API documentation.
3726         (hildon_button_set_size_groups): Check input parameters
3727
3728 2008-07-30  Alejandro G. Castro  <alex@igalia.com>
3729
3730         * src/hildon-pannable-area.c
3731         (hildon_pannable_area_motion_notify_cb): Avoid the first jumpy
3732         effect after reaching the movement thredshold. This way we start
3733         using the distance after passing the thredshold.
3734
3735 2008-07-29  Claudio Saavedra  <csaavedra@igalia.com>
3736
3737         * src/hildon-button.c: (hildon_button_set_property): Use the
3738         appropriate g_value_get_flags() method.
3739
3740 2008-07-29  Claudio Saavedra  <csaavedra@igalia.com>
3741
3742         * doc/hildon-docs.sgml:
3743         * doc/hildon.types:
3744
3745          Add the touch pickers, picker dialogs, and picker button widgets
3746         to the documentation.
3747
3748 2008-07-29  Claudio Saavedra  <csaavedra@igalia.com>
3749
3750         * src/hildon-button.c: (hildon_button_set_property),
3751         (hildon_button_class_init): Make "arrangement-flags" a proper
3752         G_TYPE_FLAGS derived property.
3753
3754 2008-07-29  Claudio Saavedra  <csaavedra@igalia.com>
3755
3756         * examples/Makefile.am: Add below examples.
3757         * examples/hildon-date-button-example.c:
3758         * examples/hildon-picker-button-example.c:
3759         * examples/hildon-picker-button-multicolumn-example.c:
3760         * examples/hildon-time-button-example.c:
3761         * examples/hildon-touch-picker-example.c:
3762
3763         Add examples for the recently added touch pickers,
3764         picker dialogs, and picker button widgets.
3765
3766 2008-07-29  Alberto Garcia  <agarcia@igalia.com>
3767
3768         * src/hildon-button.c: Add some API documentation
3769
3770 2008-07-29  Alberto Garcia  <agarcia@igalia.com>
3771
3772         * src/hildon-button.h
3773         * src/hildon-button.c
3774         (hildon_button_new)
3775         (hildon_button_new_with_text): New constructor to create a button
3776         with no text at all.
3777         (hildon_button_init, hildon_button_set_arrangement)
3778         (hildon_button_set_title, hildon_button_set_value)
3779         (hildon_button_set_text)
3780         (hildon_button_construct_child): Hide the value when it's not used
3781         so the rest of the text is properly aligned.
3782         Allow creating buttons with arbitrary widgets inside (not just
3783         title/value labels).
3784
3785         * examples/hildon-button-example.c (vertical_buttons_window)
3786         (horizontal_buttons_window): Update example to use new API.
3787
3788 2008-07-29  Claudio Saavedra  <csaavedra@igalia.com>
3789
3790         * src/Makefile.am: Added HildonTimeButton.
3791         * src/hildon-time-button.c: Added missing LGPL header.
3792         * src/hildon-time-button.h: Added missing LGPL header.
3793         * src/hildon.h: Add hildon-time-button.h
3794
3795         Copied HildonTimeButton from sandbox to trunk. Future work on this
3796         widget must take place in trunk.
3797
3798 2008-07-29  Claudio Saavedra  <csaavedra@igalia.com>
3799
3800         * src/Makefile.am: Added HildonDateButton.
3801         * src/hildon-date-button.c: Update includes.
3802         * src/hildon.h: Add hildon-date-button.h
3803
3804         Copied HildonDateButton from sandbox to trunk. Future work on this
3805         widget must take place in trunk.
3806
3807 2008-07-29  Claudio Saavedra  <csaavedra@igalia.com>
3808
3809         * src/Makefile.am: Added HildonPickerButton.
3810         * src/hildon-picker-button.h: Update includes.
3811         * src/hildon.h: Add hildon-picker-button.h
3812
3813         Copied HildonPickerButton from sandbox to trunk. Future work on
3814         this widget must take place in trunk.
3815
3816 2008-07-29  Claudio Saavedra  <csaavedra@igalia.com>
3817
3818         * src/Makefile.am: Added HildonPickerDialog.
3819         * src/hildon-picker-dialog.c: Update includes.
3820         * src/hildon.h: Add hildon-picker-dialog.h
3821
3822         Copied HildonPickerDialog from sandbox to trunk. Future work
3823         on this widget must take place in trunk.
3824
3825 2008-07-29  Claudio Saavedra  <csaavedra@igalia.com>
3826
3827         * src/Makefile.am: Added HildonTimeSelector.
3828         * src/hildon.h: Add hildon-time-selector.h
3829
3830         Copied HildonTimeSelector widget from sandbox to trunk. Future
3831         work on this widget must happen in trunk.
3832
3833 2008-07-29  Claudio Saavedra  <csaavedra@igalia.com>
3834
3835         * src/Makefile.am: Added HildonDateSelector.
3836         * src/hildon.h: Add hildon-date-selector.h
3837
3838         Copied HildonDateSelector widget from sandbox to trunk.  Future
3839         work on this widget must happen in trunk.
3840
3841 2008-07-29  Claudio Saavedra  <csaavedra@igalia.com>
3842
3843         * src/Makefile.am: Added HildonTouchPicker.
3844         * src/hildon-touch-picker.c: Update includes.
3845         * src/hildon.h: Add hildon-touch-picker.h
3846
3847         Copied HildonTouchPicker widget from sandbox to trunk. Future work
3848         on this widget must happen in trunk.
3849
3850 2008-07-29  Claudio Saavedra  <csaavedra@igalia.com>
3851
3852         * src/hildon-pannable-area.c:
3853         (hildon_pannable_area_motion_notify_cb): Fix a typo.
3854
3855 2008-07-29  Alberto Garcia  <agarcia@igalia.com>
3856
3857         * examples/hildon-app-menu-example.c (main): Let the window
3858         destroy the menu.
3859
3860 2008-07-29  Alejandro G. Castro  <alex@igalia.com>
3861
3862         * src/hildon-pannable-area.c
3863         (hildon_pannable_area_class_init): Set the min value of the
3864         overshoot properties to zero, which points out that not
3865         overshooting allowed.
3866
3867 2008-07-29  Alejandro G. Castro  <alex@igalia.com>
3868
3869         Modified the procedure to get the widget at a point inside the
3870         pannable area when using the movement type signals. Now the user
3871         has to call a function to get the child, that way we just
3872         calculate the child in case the user really want to use it and not
3873         all the time.
3874
3875         * src/hildon-marshalers.list: Modified the marshallers, now we do
3876         not have the widget as a parameter.
3877
3878         * src/hildon-pannable-area.c
3879         (hildon_pannable_area_motion_notify_cb),
3880         (hildon_pannable_area_class_init),
3881         (hildon_pannable_get_child_widget_at):  Removed the widget
3882         parameter from the signal callback. We have also refactored the
3883         emission of the signals.
3884
3885         * src/hildon-pannable-area.h: Added a new method to the API to
3886         calculate a widget at a point inside the pannable area,
3887         hildon_pannable_get_child_widget_at.
3888
3889         * examples/hildon-pannable-area-example-4.c
3890         (horizontal_movement): Modified the example to use the new API,
3891         added condition to control which widget is under the event. This
3892         way we can avoid scrolling laterally over other widgets.
3893
3894 2008-07-29  Alejandro G. Castro  <alex@igalia.com>
3895
3896         * src/hildon-pannable-area.c
3897         (hildon_pannable_area_motion_notify_cb): Fixed bug handling the
3898         modes, we stop getting the pointer events due to returning the
3899         callback without properly calling the get pointer again. Fixed
3900         also an error using the hscroll and vscroll.
3901
3902 2008-07-28  Alberto Garcia  <agarcia@igalia.com>
3903
3904         * src/hildon-app-menu-private.h
3905         * src/hildon-app-menu.c (hildon_app_menu_button_press)
3906         (hildon_app_menu_button_release, hildon_app_menu_init)
3907         (hildon_app_menu_class_init): Don't hide the menu on button
3908         release if the user didn't press outside first.
3909
3910         * src/hildon-window.h
3911         * src/hildon-window.c (hildon_window_toggle_menu)
3912         (hildon_window_toggle_menu_real, hildon_window_class_init): Make
3913         hildon_window_toggle_menu a virtual function for the stackable
3914         window to override it.
3915
3916         * src/hildon-stackable-window.h
3917         * src/hildon-stackable-window-private.h
3918         * src/hildon-stackable-window.c
3919         (hildon_stackable_window_realize)
3920         (hildon_stackable_window_finalize)
3921         (hildon_stackable_window_class_init)
3922         (hildon_stackable_window_init)
3923         (hildon_stackable_window_set_main_menu): New function to set the
3924         app menu of a HildonStackableWindow.
3925
3926         * examples/hildon-app-menu-example.c: Remove the button to show
3927         the app menu, now it'll be shown when clicking on the title bar
3928         instead.
3929
3930 2008-07-22  Claudio Saavedra  <csaavedra@igalia.com>
3931
3932         * src/hildon-button.c: (hildon_button_set_arrangement): Do not
3933         set the widget name if the arrangement flags do not specify
3934         a particular size.
3935
3936 2008-07-22  Claudio Saavedra  <csaavedra@igalia.com>
3937
3938         * src/hildon-button.c: (hildon_button_set_property),
3939         (hildon_button_class_init), (hildon_button_new_full),
3940         (hildon_button_set_arrangement): Added "arrangement-flags"
3941         property.
3942
3943         Make the HildonButtonFlags a construction-only property, to allow
3944         subclasses to set them properly.
3945
3946 2008-07-21 Tim Janik  <timj@imendio.com>
3947
3948         * src/hildon-code-dialog.c (hildon_code_dialog_backspace): fixed up
3949         insertion position after backspace, so additional digits are appended,
3950         fixes Bug #85874.
3951
3952 2008-07-17  Alejandro G. Castro  <alex@igalia.com>
3953
3954         * src/hildon-pannable-area.c,
3955         (hildon_pannable_area_get_topmost): Cleaned the code, removed the
3956         TODO list, it was complete and removed the g_debug and g_print
3957         lines.
3958
3959 2008-07-17  Alejandro G. Castro  <alex@igalia.com>
3960
3961         Added the movement modes to the hildon-pannable-area, with this
3962         modes the developers can control in which directions the widget
3963         can scroll. They can also connect to signals in order to do
3964         something when that happens, allowing applications scroll. There
3965         is an example uploaded showing how to use it.
3966
3967         * examples/Makefile.am:
3968         * examples/hildon-pannable-area-example-4.c: Added this example of
3969         an application using the modes.
3970
3971         * src/hildon-marshalers.list: Added a new marshaller for the new
3972         signals.
3973
3974         * src/hildon-pannable-area.h: Added new enumerations and flags in
3975         order to control the movement modes and the new signals to warn
3976         about the movements in the area.
3977
3978         * src/hildon-pannable-area.c:
3979         (hildon_pannable_axis_scroll),
3980         (hildon_pannable_area_scroll),
3981         (hildon_pannable_area_motion_notify_cb),
3982         (hildon_pannable_area_get_property),
3983         (hildon_pannable_area_set_property),
3984         (hildon_pannable_area_map),
3985         (hildon_pannable_area_class_init),
3986         (hildon_pannable_area_init),
3987         (hildon_pannable_area_jump_to): Added the modes to control the
3988         movement in the widget. We have added properties to control it,
3989         signals to warn about the movements and refactored some code.
3990
3991 2008-07-15  Alejandro G. Castro  <alex@igalia.com>
3992
3993         Changes required in order to allow vfast_factor set to zero to
3994         work properly.
3995
3996         * src/hildon-pannable-area.c:
3997         (hildon_pannable_area_button_press_cb): Changed the condition, it
3998         is required for not allowing click when vfast_factor is zero.
3999         (hildon_pannable_area_timeout): Initialized velocity variables
4000         when we stop moving, it was less than 1 but not zero and we need
4001         to check zero in some situations.
4002         (hildon_pannable_area_class_init): Changed the default value of
4003         the speed factor, now the button_press is just sent in case the
4004         speed is 2 per cent of the max speed.
4005         (hildon_pannable_area_init): Initialization with 0.
4006
4007 2008-07-04  Alejandro G. Castro  <alex@igalia.com>
4008
4009         * src/hildon-pannable-area.c,
4010         (hildon_pannable_area_get_topmost): replaced
4011         gdk_window_get_children with gdk_window_peek_children, this way we
4012         do not have to free the list because it is not a copy.
4013
4014         (hildon_pannable_axis_scroll),
4015         (hildon_pannable_area_scroll),
4016         (hildon_pannable_area_timeout),
4017         (hildon_pannable_area_motion_notify_cb): Code refactoring, removed
4018         two parameters that were only used inside the
4019         hildon_pannable_area_scroll function.
4020
4021         * examples/hildon-pannable-area-example.c,
4022         (get_sawtooth_label): Fixed small memory leak.
4023
4024 2008-07-03  Alejandro G. Castro  <alex@igalia.com>
4025
4026         More checks for the case where the overshoot is bigger than the
4027         size of the widget.
4028
4029         * src/hildon-pannable-area.c:
4030         (hildon_pannable_draw_vscroll),
4031         (hildon_pannable_draw_hscroll): with this new calculation we avoid
4032         to draw the slider of the scrollbar under the other scrollbar.
4033         (hildon_pannable_area_expose_event): added new checks to control
4034         the drawing of the overshooting area rectangle, in case it is too
4035         big for the area of the widget.
4036         (hildon_pannable_area_size_allocate): add more checks to avoid
4037         setting a position to the child widget outside the area.
4038
4039 2008-07-03  Alejandro G. Castro  <alex@igalia.com>
4040
4041         * src/hildon-pannable-area.c
4042         (hildon_pannable_area_size_allocate): Added conditions to control
4043         when overshooting is bigger than the allocated space for the
4044         children, this avoids negative allocations.
4045
4046 2008-07-02  Alberto Garcia  <agarcia@igalia.com>
4047
4048         * doc/hildon-docs.sgml
4049         * doc/hildon.types
4050         * examples/Makefile.am
4051         * examples/hildon-button-example.c
4052         * src/Makefile.am
4053         * src/hildon-button.c
4054         * src/hildon-button.h
4055         * src/hildon.h: Initial version of the new HildonButton widget,
4056         with examples.
4057
4058 2008-07-02  Claudio Saavedra  <csaavedra@igalia.com>
4059
4060         * src/hildon-pannable-area.c:
4061         (hildon_pannable_area_button_press_cb),
4062         (hildon_pannable_area_refresh), (hildon_pannable_area_scroll),
4063         (hildon_pannable_area_motion_notify_cb),
4064         (hildon_pannable_area_button_release_cb),
4065         (hildon_pannable_area_expose_event), (hildon_pannable_area_remove),
4066         (hildon_pannable_area_jump_to_child):
4067
4068         Use gtk_bin_get_child() instead of accessing GtkBin.child directly.
4069
4070 2008-07-01  Alberto Garcia  <agarcia@igalia.com>
4071
4072         * examples/Makefile.am
4073         * examples/hildon-pannable-area-touch-grid-example.c
4074         * examples/hildon-pannable-area-touch-list-example.c: Examples of
4075         the Hildon Touch List and Hildon Touch Grid using the
4076         HildonPannableArea widget.
4077
4078 2008-06-27  Alejandro G. Castro <alex@igalia.com>
4079
4080         * src/hildon-pannable-area.c,
4081         (hildon_pannable_area_button_press_cb),
4082         (hildon_pannable_area_refresh),
4083         (hildon_pannable_area_scroll),
4084         (hildon_pannable_area_motion_notify_cb),
4085         (hildon_pannable_area_button_release_cb),
4086         (hildon_pannable_area_expose_event),
4087         (hildon_pannable_area_add),
4088         (hildon_pannable_area_remove),
4089         (hildon_pannable_area_realize),
4090         (hildon_pannable_area_size_allocate),
4091         (hildon_pannable_area_class_init),
4092         (hildon_pannable_area_init),
4093         (hildon_pannable_area_scroll_to_child),
4094         (hildon_pannable_area_jump_to_child): Fixed the problem of
4095         removing the child from the GtkBin, we have rearranged the widget
4096         hierarchy, now there is no GtkAlignment which was not doing
4097         anything interesting but breaking some of the assumptions of
4098         GtkContainer. Now developers if they want to add a GtkAlignment
4099         they could, but it is not inside the area.
4100
4101         We had to review the whole allocation/expose process, now it is
4102         improved and we save at least three signals which would be saving
4103         some time when rendering the widget. The allocation of the
4104         scrollbars is now made in the allocate method as usual.
4105
4106         We have also added some conditions in order to control when there
4107         is no child of the pannable area. Maybe we will need more work
4108         here.
4109
4110 2008-06-27  Alejandro G. Castro <alex@igalia.com>
4111
4112         * src/hildon-pannable-area.c,
4113         (hildon_pannable_area_dispose): Released the fade-out timeout when
4114         disposing the widget.
4115
4116 2008-06-27  Alejandro G. Castro <alex@igalia.com>
4117
4118         * src/hildon-pannable-area.c: Fixed problem when overshoot_max is
4119         zero, we are going to use that property in order to deactivate the
4120         overshooting
4121         (hildon_pannable_axis_scroll),
4122         (hildon_pannable_area_size_allocate): Added conditions to control
4123         when overshoot_max is zero. Moved the gtk_adjustment_set_value
4124         call, now it is called in all situations and we can remove calls
4125         in the allocate method.
4126         (hildon_pannable_area_map): Control the situation when
4127         overshoot_max is zero, we do not need the timeout.
4128         (hildon_pannable_area_class_init): Added documentation in order to
4129         point out that setting zero to overshoot_max means deactivate
4130         overshooting.
4131
4132         NOTE: removed trailing whitespaces from my previous comments of
4133         the Changelog.
4134
4135 2008-06-26  Claudio Saavedra  <csaavedra@igalia.com>
4136
4137         * src/hildon-pannable-area.c
4138         (hildon_pannable_area_get_property),
4139         (hildon_pannable_area_set_property),
4140         (hildon_pannable_area_map),
4141         (hildon_pannable_area_class_init),
4142         (hildon_pannable_area_init): Add a boolean "initial-hint" property
4143         to cause the widget give a hint about its panning abilities upon
4144         realization.
4145
4146 2008-06-26  Claudio Saavedra  <csaavedra@igalia.com>
4147
4148         * src/hildon-pannable-area.c: Several documentation improvements.
4149
4150 2008-06-26  Alberto Garcia  <agarcia@igalia.com>
4151
4152         * src/hildon-program.c
4153         * src/hildon-stackable-window.c: Update documentation.
4154
4155 2008-06-26  Alberto Garcia  <agarcia@igalia.com>
4156
4157         * src/hildon-stackable-window.c (get_previous_window_if_last):
4158         Renamed get_last_window()
4159         (hildon_stackable_window_map, hildon_stackable_window_unmap)
4160         (hildon_stackable_window_unset_program):
4161         Simplified code.
4162         (get_previous_window_if_last):
4163         Detect if the window hasn't been added to a HildonProgram.
4164
4165 2008-06-26  Alejandro G. Castro <alex@igalia.com>
4166
4167         contributed and reviewed by: Claudio Saavedra <csaavedra@igalia.com>
4168
4169         * src/hildon-pannable-area.c
4170         (hildon_pannable_area_button_press_cb),
4171         (hildon_pannable_axis_scroll),
4172         (hildon_pannable_area_scroll),
4173         (hildon_pannable_area_timeout),
4174         (hildon_pannable_calculate_vel_factor),
4175         (hildon_pannable_area_get_property),
4176         (hildon_pannable_area_set_property),
4177         (hildon_pannable_area_class_init),
4178         (hildon_pannable_area_init),
4179         (hildon_pannable_area_scroll_to),
4180         (hildon_pannable_area_jump_to),
4181         (hildon_pannable_area_scroll_to_child),
4182         (hildon_pannable_area_jump_to_child):
4183         * src/hildon-pannable-area.h: Added the new API functions:
4184         hildon_pannable_area_scroll_to, hildon_pannable_area_jump_to,
4185         hildon_pannable_area_scroll_to_child,
4186         hildon_pannable_area_jump_to_child
4187
4188
4189         * examples/Makefile.am
4190         * examples/hildon-pannable-area-example-2.c
4191         * examples/hildon-pannable-area-example-3.c: Added these two new
4192         examples in order to test and show how the new APIs work.
4193
4194 2008-06-25  Alberto Garcia  <agarcia@igalia.com>
4195
4196         * examples/hildon-stackable-window-example.c (new_window):
4197         * src/Makefile.am (noinst_HEADERS):
4198         * src/hildon-program.c (hildon_program_go_to_root_window):
4199         * src/hildon-program.h:
4200         * src/hildon-stackable-window-private.h:
4201         * src/hildon-stackable-window.c:
4202         * src/hildon-stackable-window.h:
4203         Create hildon-stackable-window-private.h
4204         Move hildon_stackable_window_go_to_root_window() to HildonProgram
4205
4206         * examples/hildon-app-menu-example.c (create_menu):
4207         * examples/hildon-hvolumebar-insensitive-example.c (main):
4208         * examples/hildon-hvolumebar-timer-example.c (on_idle):
4209         * examples/hildon-toolbar-seekbar-example.c (main):
4210         * src/hildon-app-menu.c (hildon_app_menu_add_filter):
4211         * src/hildon-banner.c (hildon_banner_set_property):
4212         * src/hildon-dialog.c (hildon_dialog_new_with_buttons):
4213         Fix compilation warnings
4214
4215         * src/hildon-window.c:
4216         Fix typo in doc
4217
4218 2008-06-24  Alberto Garcia  <agarcia@igalia.com>
4219
4220         * src/hildon-stackable-window.c
4221         (hildon_stackable_window_unset_program):
4222         Calculate correctly whether to show the previous window if the
4223         last one is removed from the stack.
4224         (hildon_stackable_window_go_to_root_window):
4225         Send delete events starting from the topmost window.
4226         Stop if one of the windows is not destroyed.
4227         Update doc.
4228         (hildon_stackable_window_delete_event)
4229         (hildon_stackable_window_class_init):
4230         Ignore the delete event if the window is not the topmost one.
4231
4232 2008-06-24  Alejandro G. Castro <alex@igalia.com>
4233
4234         * src/hildon-pannable-area.c
4235         (hildon_pannable_area_expose_event): Fixed a problem when
4236         selecting the background color of the scrollbars.
4237
4238 2008-06-23  Alberto Garcia  <agarcia@igalia.com>
4239
4240         * examples/hildon-stackable-window-example.c
4241         * src/hildon-stackable-window.c
4242         * src/hildon-stackable-window.h
4243         hildon_stackable_window_go_home() renamed to
4244         hildon_stackable_window_go_to_root_window()
4245         Send delete events to windows rather than closing them with
4246         gtk_widget_destroy()
4247
4248 2008-06-19  Alberto Garcia  <agarcia@igalia.com>
4249
4250         * src/hildon-pannable-area.c
4251         (hildon_pannable_area_button_release_cb): Fix overshooting in
4252         accel mode.
4253
4254 2008-06-19  Claudio Saavedra  <csaavedra@igalia.com>
4255
4256         * src/hildon-pannable-area.c
4257         (hildon_pannable_area_init): Initially show the scroll indicators.
4258         (hildon_pannable_area_map): Fade the scroll indicators out upon mapping.
4259
4260         Add initial effect showing the widget is pannable.
4261
4262 2008-06-19  Alberto Garcia  <agarcia@igalia.com>
4263
4264         * src/hildon-pannable-area.c
4265         (hildon_pannable_area_class_init)
4266         (hildon_pannable_area_set_property)
4267         (hildon_pannable_area_get_property)
4268         (hildon_pannable_area_button_press_cb):
4269         New 'velocity_fast_factor' property to decide which velocity is
4270         considered fast.
4271
4272 2008-06-19  Claudio Saavedra  <csaavedra@igalia.com>
4273
4274         * src/hildon-pannable-area.c
4275         (hildon_pannable_draw_hscroll)
4276         (hildon_pannable_draw_vscroll):
4277         Use float variables to calculate the size of the scrollbars to
4278         avoid error propagation and resizing during scrolling.
4279
4280 2008-06-19  Alberto Garcia  <agarcia@igalia.com>
4281
4282         * src/hildon-pannable-area.c
4283         (hildon_pannable_draw_vscroll)
4284         (hildon_pannable_draw_hscroll):
4285         Define a minimum size for the scroll bars
4286
4287         * src/hildon-stackable-window.c
4288         (hildon_stackable_window_go_home): Fix compilation warning
4289         (get_last_window): Minor optimizations
4290         (hildon_stackable_window_class_init): Fix initialization of
4291         private structure.
4292
4293 2008-06-18  Alberto Garcia  <agarcia@igalia.com>
4294
4295         * src/hildon-stackable-window.c: Fixed typos in doc
4296
4297 2008-06-18  Claudio Saavedra  <csaavedra@igalia.com>
4298
4299         * src/hildon-pannable-area.c
4300         (hildon_pannable_area_scroll):
4301         Calculate here whether we need to scroll instead of using the booleans
4302         that tell us whether to /draw/ the scrolling bars.
4303
4304 2008-06-17  Claudio Saavedra  <csaavedra@igalia.com>
4305
4306         * src/hildon-app-menu.h
4307         Update API.
4308         * src/hildon-app-menu.c
4309         (hildon_app_menu_init, hildon_app_menu_class_init): Remove
4310         multiple filter groups related code and API. Now we support only
4311         one filter group.
4312         * examples/hildon-app-menu-example.c:
4313         (create_menu):
4314         Update to reflect API changes.
4315
4316 2008-06-16  Claudio Saavedra  <csaavedra@igalia.com>
4317
4318         * src/hildon-stackable-window.c
4319         (hildon_stackable_window_class_init):
4320         Add hildon_stackable_window_realize.
4321         (hildon_stackable_window_realize):
4322         Append the window type _HILDON_WM_WINDOW_TYPE_STACKABLE to
4323         the _NET_WM_WINDOW_TYPE hint. Window managers should use this type
4324         to apply theming and behavior specific to HildonStackableWindow
4325         windows.
4326
4327 2008-06-12  Alberto Garcia  <agarcia@igalia.com>
4328
4329         * src/hildon-note.c (hildon_note_button_release):
4330         Close information notes also when tapping on them
4331
4332 2008-06-12  Alejandro G. Castro <alex@igalia.com>
4333
4334         Added BOUNCE_STEPS define to control the overshoot effect. Removed
4335         ELASTICITY, refactor and review, fix some issues with drawing
4336         scrollbars.
4337
4338         * src/hildon-pannable-area.c:
4339         (hildon_pannable_area_button_press_cb): removed the conditions to
4340         avoid clicks when overshooting. It is not required
4341
4342         (hildon_pannable_axis_scroll): Added BOUNCE_STEPS
4343         define. Refatored and reviewed the code, now we do not need to
4344         manage velocity in motion_notify.
4345
4346         (hildon_pannable_area_motion_notify_cb): We have moved the code
4347         that controls the area_scroll to the axis_scroll function and get
4348         rid of duplicated code.
4349
4350         (hildon_pannable_area_scroll): Remove the ELASTICITY define.
4351
4352         (hildon_pannable_area_button_release_cb): Added BOUNCE_STEPS.
4353
4354         (hildon_pannable_draw_vscroll),
4355         (hildon_pannable_draw_hscroll): Fixed the problems with the
4356         scrollbar drawing, now we do not use two surfaces, it is easier
4357         and saves resources.
4358
4359         (hildon_pannable_area_get_property): Style modification.
4360
4361         (hildon_pannable_area_class_init): Changed some default values.
4362
4363 2008-06-12  Claudio Saavedra  <csaavedra@igalia.com>
4364
4365         * src/hildon-stackable-window.c: Fix some typos in the
4366         documentation.
4367
4368 2008-06-12  Alberto Garcia  <agarcia@igalia.com>
4369
4370         * src/hildon-dialog.c:
4371         Change indentation style
4372
4373         * src/hildon-note.c
4374         (hildon_note_button_release):
4375         Use root coordinates to check if the release event happened
4376         outside the widget.
4377
4378         * src/hildon-app-menu.c
4379         (hildon_app_menu_button_release):
4380         Remove unnecessary check
4381
4382         * examples/hildon-app-menu-example.c
4383         (button_clicked):
4384         Add cast to fix warning
4385
4386         * src/hildon-app-menu.c
4387         (hildon_app_menu_class_init):
4388         New inner-border style property.
4389         Set all default spacings to 16
4390         (hildon_app_menu_init):
4391         Use vertical-spacing to set the space between filter buttons and
4392         regular menu buttons.
4393         Set the default container border using the inner-border value.
4394
4395         * examples/hildon-app-menu-example.c
4396         (create_menu):
4397         Don't set the menu border explicitly, now we have the inner-border
4398         style property for that.
4399
4400 2008-06-11  Alberto Garcia  <agarcia@igalia.com>
4401
4402         * src/hildon-app-menu.c (hildon_app_menu_init):
4403         Make the window modal
4404
4405         * src/hildon-note.c (hildon_note_map)
4406         * src/hildon-app-menu.c (hildon_app_menu_map):
4407         Destroy the grab window if we're unable to grab the pointer
4408
4409         * src/hildon-app-menu-private.h
4410         * src/hildon-app-menu.c
4411         (hildon_app_menu_init, hildon_app_menu_finalize)
4412         (hildon_app_menu_map, hildon_app_menu_unmap)
4413         (hildon_app_menu_button_release)
4414         (grab_transfer_window_get):
4415         Bring back the grab window
4416         (hildon_app_menu_realize):
4417         Decorate the window, set WM hint for Matchbox
4418
4419         * src/hildon-note.c (hildon_note_realize):
4420         * src/hildon-banner.c (hildon_banner_realize):
4421         Add WM hints for Matchbox
4422
4423 2008-06-10  Alberto Garcia  <agarcia@igalia.com>
4424
4425         * src/hildon-app-menu-private.h
4426         * src/hildon-app-menu.c
4427         (hildon_app_menu_init, hildon_app_menu_finalize)
4428         (hildon_app_menu_map, hildon_app_menu_unmap)
4429         (hildon_app_menu_button_release):
4430         Remove the grab window, it's not needed anymore
4431
4432         * src/hildon-program.c
4433         Fixed typo in documentation
4434
4435         * src/hildon-app-menu.h
4436         * src/hildon-app-menu.c
4437         * examples/hildon-app-menu-example.c
4438         Remove hildon_app_menu_popup(), use gtk_widget_show() instead
4439
4440 2008-06-09  Alberto Garcia  <agarcia@igalia.com>
4441
4442         * src/hildon-note.c
4443         Added new transfer_window and close_if_pressed_outside private
4444         attributes.
4445         (hildon_note_rebuild):
4446         Don't add a cancel button to the information note. It will be
4447         closed when tapping outside
4448         Remove the comment about the OK button in the documentation
4449         (hildon_note_realize):
4450         Set the notification type hint
4451         (hildon_note_map, hildon_note_unmap, grab_transfer_window_get):
4452         Grab/ungrab pointer and keyboard if the note has to be closed when
4453         tapping outside
4454         (hildon_note_button_release):
4455         Close the note when tapping outside (if applicable)
4456
4457         * src/hildon-app-menu.c
4458         Grab/ungrab pointer and keyboard on map/unmap
4459         (hildon_app_menu_button_release, hildon_app_menu_class_init):
4460         Close the menu on button release, not button press
4461
4462         * src/hildon-banner.c
4463         (hildon_banner_set_property)
4464         (hildon_banner_check_position):
4465         Make the banner use the full width of the screen
4466         (hildon_banner_show_information)
4467         (hildon_banner_show_information_with_markup):
4468         Don't display an icon by default
4469
4470 2008-06-09  Alejandro G. Castro <alex@igalia.com>
4471
4472         Added fading scrollbars and adapted all the overshooting code to
4473         horizontal scrolling. We have also fixed bugs with overshooting
4474         and current fading implementation.
4475
4476         * src/hildon-pannable-area.c
4477         (hildon_pannable_area_scroll_indicator_fade): Time out function
4478         used to change the transparency of the scrollbars.
4479
4480         (hildon_pannable_area_button_press_cb): Added horizontal overshot
4481         control and fixed a problem with fading, we now remove the fade
4482         timeout before adding a new one.
4483
4484         (hildon_pannable_axis_scroll):
4485         (hildon_pannable_area_scroll):
4486         (hildon_pannable_area_timeout): Added this functions so we can use
4487         the scroll code both for vertical and horizontal.
4488
4489         (hildon_pannable_area_motion_notify_cb):
4490         (hildon_pannable_area_button_release_cb): Added the horizontal
4491         scrolling control, fixed a problem with the overshooting timeout.
4492
4493         (rgb_from_gdkcolor): Added this function, it is used in the cairo
4494         painting of the scrolls.
4495
4496         (hildon_pannable_draw_vscroll):
4497         (hildon_pannable_draw_hscroll):
4498         (hildon_pannable_area_expose_event):
4499         Draw both scrollbars and rectangles in the overshooting area.
4500
4501         (hildon_pannable_area_get_property):
4502         (hildon_pannable_area_set_property):
4503         Modified the overshoot property to overshoot_max
4504
4505         (hildon_pannable_area_map):
4506         Replaced the comments symbols.
4507
4508         (hildon_pannable_area_size_allocate):
4509         (hildon_pannable_area_class_init):
4510         (hildon_pannable_area_init): Added horizontal scroll, fading
4511         effect properties, fixed a problem when overshooting in the bottom
4512         of the widget.
4513
4514         * examples/hildon-pannable-area-example.c:
4515         (get_sawtooth_label): Now we use smaller sawtooths, the effect
4516         looks better in the example.
4517
4518 2008-06-03  Alberto Garcia  <agarcia@igalia.com>
4519
4520         * src/hildon-window.c
4521         * src/hildon-window.h
4522         (hildon_window_class_init)
4523         (hildon_window_unset_program)
4524         (hildon_window_unset_program_real):
4525         Make unset_program a virtual function
4526
4527         * src/hildon-stackable-window.c
4528         * src/hildon-stackable-window.h
4529         Added hildon_stackable_window_go_home()
4530
4531         * examples/Makefile.am
4532         * examples/hildon-stackable-window-example.c
4533         HildonStackableWindow example
4534
4535 2008-06-03 Alejandro G. Castro <alex@igalia.com>
4536
4537         * hildon-pannable-area.c: Added the overshoot property and removed
4538         the OVERSHOOT define. Fixed an indent style error.
4539         (hildon_pannable_area_motion_notify_cb):
4540         (hildon_pannable_area_get_property):
4541         (hildon_pannable_area_set_property): Add overshoot property.
4542
4543         (hildon_pannable_area_scroll): replaced OVERSHOOT define with
4544         overshoot property.
4545
4546         (hildon_pannable_area_class_init): Installed the new property.
4547
4548         * hildon-pannable-area-example.c: Added a sawtooth function, this
4549         way it is easier to check the movement in the pannable.
4550         (get_sawtooth_label): Added this function.
4551         (main): Now we get the labels from the new get_sawtooth_label
4552         function.
4553
4554 2008-05-26  Alberto Garcia  <agarcia@igalia.com>
4555
4556         * src/hildon-app-menu.h
4557         * src/hildon-app-menu.c
4558         Renamed API variables for consistency
4559
4560         (hildon_app_menu_popup): Use also the default window size to
4561         decide where to place the menu
4562
4563         (hildon_app_menu_init, hildon_app_menu_class_init): New
4564         external-border style property
4565
4566 2008-05-26  Michael Natterer  <mitch@imendio.com>
4567
4568         * src/hildon-time-editor.c (hildon_time_editor_class_init): The
4569         widget_class->tap_and_hold_setup signal slot doesn't exist any
4570         longer, stop overriding it.
4571
4572         (hildon_time_editor_init): g_signal_connect() to the
4573         tap-and-hold-setup signal instead.
4574
4575         (hildon_time_editor_entry_keypress): add cast to fix warning.
4576
4577 2008-05-23  Alberto Garcia  <agarcia@igalia.com>
4578
4579         * doc/hildon-docs.sgml
4580         * doc/hildon.types
4581         * examples/Makefile.am
4582         * examples/hildon-app-menu-example.c
4583         * src/Makefile.am
4584         * src/hildon-app-menu-private.h
4585         * src/hildon-app-menu.c
4586         * src/hildon-app-menu.h
4587         * src/hildon.h
4588         New HildonAppMenu widget
4589
4590 2008-05-21 Alejandro G. Castro <alex@igalia.com>
4591
4592         Rearranged the inheritance of the pannable area, now it inherits
4593         from GtkBin. This will allow us to control the event_window and
4594         the allocation process of the widget, required for some effects.
4595
4596         * src/hildon-pannable-area.h: Replaced GtkEventBox structures with
4597         GtkBin structures.  * src/hildon-pannable-area.c: Added the
4598         event_window variable.
4599         (hildon_pannable_area_button_press_cb):
4600         (hildon_pannable_area_button_release_cb):
4601         (hildon_pannable_area_motion_notify_cb):
4602         Changed the signature of the method, now we override the event
4603         callback instead of connecting to the signal.
4604
4605         (hildon_pannable_area_realize):
4606         (hildon_pannable_area_unrealize):
4607         (hildon_pannable_area_map):
4608         (hildon_pannable_area_unmap):
4609         (hildon_pannable_area_size_allocate):
4610         Added functions to control the widget construction. We add a
4611         INPUT_ONLY window and we put it over the widgets inside the
4612         container, this event_window handles the events.
4613
4614         (hildon_pannable_area_class_init):
4615         Replaced the signal connections with overrides of the event
4616         callbacks.
4617
4618 2008-05-20 Alejandro G. Castro <alex@igalia.com>
4619
4620         Bouncing effect added when touching the borders, you can change
4621         the elasticity of the border changing the ELASTICITY define.
4622
4623         * src/hildon-pannable-area.c: Added ELASTICITY define.
4624         (hildon_pannable_area_timeout): Added inverse velocity when
4625         touching the border of the child widget, that causes a bounce.
4626
4627 2008-05-20 Alejandro G. Castro <alex@igalia.com>
4628
4629         Improved performance, we now do not go to the X server in order to
4630         get the list of window children. Apparently the effect is the
4631         same, we have to be careful and check if this breaks something in
4632         any corner case.
4633
4634         * src/hildon-pannable-area.c:
4635         (get_ordered_children): Removed this function.
4636         (hildon_pannable_area_get_topmost): Replaced the ad-hoc search of
4637         the children windows function with gdk_window_get_children.
4638
4639 2008-05-20 Alejandro G. Castro <alex@igalia.com>
4640
4641         * src/hildon-pannable-area.c:
4642         (hildon_pannable_area_dispose): Fixed a crash when closing the
4643         window and kinetics is activated.
4644
4645 2008-05-19  Alberto Garcia  <agarcia@igalia.com>
4646
4647         * src/hildon-pannable-area.h
4648         * src/hildon-pannable-area.c
4649         Changed indentation style to meet the one used in Hildon
4650
4651 2008-05-19 Alejandro G. Castro <alex@igalia.com>
4652
4653         Reviewed the interaction of the AUTO mode, now we use the time
4654         attribute of the events and calculate the velocity in the motion,
4655         doing a gimp like calculation. The velocity is calculated in each
4656         motion event using the last velocity and the current one, the
4657         SMOOTH_FACTOR controls the percentage of the new velocity we use.
4658
4659         * src/hildon-pannable-area.c: Replaced the time based algorithm
4660         for the AUTO mode.
4661         (hildon_pannable_area_motion_notify_cb): now we do not launch the
4662         timeout for the AUTO mode when we are still moving the cursor. We
4663         added also the velocity calculation in this function.
4664         (hildon_pannable_area_button_release_cb): launch the timeout in
4665         case we are in AUTO mode. There are still some constants here that
4666         come from the old implementation that should be reviewed and
4667         handled properly.
4668
4669 2008-05-15  Alberto Garcia  <agarcia@igalia.com>
4670
4671         * doc/hildon-docs.sgml
4672         * doc/hildon.types
4673         * src/Makefile.am
4674         * src/hildon-stackable-window.c
4675         * src/hildon-stackable-window.h
4676         * src/hildon.h
4677         New HildonStackableWindow widget
4678
4679         * examples/hildon-dialog-example.c
4680         * examples/hildon-pannable-area-example.c
4681         Updated copyright
4682
4683 2008-05-14  Alberto Garcia  <agarcia@igalia.com>
4684
4685         * src/hildon-dialog.c
4686         (hildon_dialog_new_with_buttons): New constructor.
4687
4688         * examples/hildon-dialog-example.c
4689         (main): Update the example to use the new
4690         hildon_dialog_new_with_buttons().
4691
4692         * examples/hildon-pannable-area-example.c
4693         (main): Update example.
4694
4695 2008-05-13 Alberto Garcia <agarcia@igalia.com>
4696
4697         * doc/hildon-docs.sgml
4698         * doc/hildon.types
4699         Added HildonPannableArea to the documentation.
4700
4701 2008-05-13 Victor Jaquez <vjaquez@igalia.com>
4702
4703         * doc/visual_index.xml
4704         Fix reference to HildonLoginDialog in documentation
4705
4706         * doc/hildon-docs.sgml
4707         * doc/hildon.types
4708         * examples/Makefile.am
4709         * examples/hildon-dialog-example.c
4710         * src/Makefile.am
4711         * src/hildon-dialog.c
4712         * src/hildon-dialog.h
4713         * src/hildon.h
4714         New HildonDialog widget.
4715
4716 2008-05-09 Alberto Garcia <agarcia@igalia.com>
4717
4718         * src/hildon-pannable-area.c
4719         Merge latest changes (r4318, r4342) from libmokoui trunk
4720
4721 2008-05-09 Alberto Garcia <agarcia@igalia.com>
4722
4723         * examples/Makefile.am
4724         * examples/hildon-pannable-area-example.c
4725         * src/Makefile.am
4726         * src/hildon-pannable-area.c
4727         * src/hildon-pannable-area.h
4728         * src/hildon.h
4729         New HildonPannableArea widget.
4730
4731 2008-04-15 18:05:19    <timj@imendio.com>
4732
4733         * src/hildon-banner.c: revert the recent change, that introduced
4734         gtk_window_present() calls. this reopens:
4735           Bug 78481 - [freetest] information banners are hidden under browser menu
4736         But resolves another variant of:
4737           Bug 83953 - Lock dialog is not visible when device is locked for the first time after flash
4738
4739 2008-04-15 13:21:13    <timj@imendio.com>
4740
4741         * src/hildon-banner.c: refetch layout pointer after GtkLabel possibly
4742         recreated its layout, spotted by Kris. this fixes all remaining
4743         artefacts and stability issues with the banner code. in particular:
4744         Bug 83953 - Lock dialog is not visible when device is locked for the first time after flash
4745
4746 2008-04-14 16:52:59    <timj@imendio.com>
4747
4748         * src/hildon-banner.c: guard force_to_wrap_truncated() against
4749         operating on unrealized widgets, fixes:
4750         Bug 83953 - Lock dialog is not visible when device is locked for the first time after flash
4751
4752         * src/hildon-banner-private.h: coalesce boolean fields into bitfield.
4753
4754 2008-04-09  Kristian Rietveld  <kris@imendio.com>
4755
4756         Fixes: NB#77775: Media Player, Save Now playing list, too long name
4757         makes banner disappear.
4758         Fixes: NB#79182: info banner flickering with certain message lengts.
4759
4760         * src/hildon-banner.c (hildon_banner_constructor),
4761         (hildon_banner_init), (hildon_banner_set_text),
4762         (hildon_banner_set_markup): call hildon_banner_reset_wrap_state(),
4763         (hildon_banner_reset_wrap_state): new function: reset wrap flags to
4764         FALSE, reset size requests of label and banner,
4765         (force_to_wrap_truncated): when the text is too wide, always enforce
4766         the maximum possible width instead of recalculating it from the
4767         layout; enforce the maximum banner height of 3 lines,
4768         (hildon_banner_init): set WORD_CHAR wrapping, this will result in
4769         nicer wrapping and no truncated chars if space gets tight.
4770
4771         * src/hildon-banner-private.h: add has_been_wrapped and
4772         has_been_truncated fields.
4773
4774 2008-04-07  Sven Herzberg  <sven@imendio.com>
4775
4776         Fixes: NB#78896: libhildon code inspection/coverity: uninitialised
4777         local values in hildon_date_editor_size_allocate
4778
4779         * src/hildon-date-editor.c: moved the real allocation code into the
4780         if() branch
4781
4782 2008-04-07  Sven Herzberg  <sven@imendio.com>
4783
4784         Prepares: NB#78896: libhildon code inspection/coverity: uninitialised
4785         local values in hildon_date_editor_size_allocate
4786
4787         * src/hildon-date-editor.c: merged the two if() branches together
4788
4789 2008-04-07  Sven Herzberg  <sven@imendio.com>
4790
4791         Prepares: NB#78896: libhildon code inspection/coverity: uninitialised
4792         local values in hildon_date_editor_size_allocate
4793
4794         * src/hildon-date-editor.c: changed the arguments of the if()
4795         conditions
4796
4797 2008-04-07  Sven Herzberg  <sven@imendio.com>
4798
4799         Prepares: NB#78896: libhildon code inspection/coverity: uninitialised
4800         local values in hildon_date_editor_size_allocate
4801
4802         * src/hildon-date-editor.c: split the calculation of the allocation
4803         from the real allocation
4804
4805 2008-03-27  Michael Natterer  <mitch@imendio.com>
4806
4807         Fixes: NB#81696: The passcode is not overwritten even after
4808         selecting
4809
4810         * src/hildon-code-dialog.c
4811         (hildon_code_dialog_button_clicked)
4812         (hildon_code_dialog_im_commit): don't use gtk_entry_append_text()
4813         because that doesn't overwrite selected text. Instead, emit the
4814         "commit" signal on the entry's im_context so the entry's normal
4815         insert logic is triggered. Set the cursor to the end of the entry
4816         after each insert operation so that we *only* insert in the middle
4817         of the text if something was selected.
4818
4819 2008-03-27  Michael Natterer  <mitch@imendio.com>
4820
4821         Enable fixing: NB#79916 and NB#79918: The help topic for Color
4822         selector cannot be opened
4823
4824         * src/hildon-color-button.c: add signal "setup-dialog" and emit it
4825         when the popup color selector is created. Please connect to this
4826         signal in order to set the dialog's help ID.
4827
4828 2008-03-25  Sven Herzberg  <sven@imendio.com>
4829
4830         Fixes: MB#1212: Hide info banners (infoprints) on click
4831
4832         * src/hildon-banner.c: (simulate_close), (hildon_banner_timeout):
4833         extracted the close event simulation into an extra function
4834         (hildon_banner_button_press_event): simulate a close event and destroy
4835         the widget if the event wasn't handled
4836         (hildon_banner_class_init): added the button_press_event handler
4837         (hildon_banner_init): added button-press events to the widget
4838
4839 2008-03-25  Sven Herzberg  <sven@imendio.com>
4840
4841         Fixes: MB:#924: Hildon widgets doesn't support RTL mode
4842         Patch from: Mohammad Anwari  <mdamt@maemo.org>
4843
4844         * src/hildon-banner.c: let the HildonBanners pop up on the left side
4845         instead of the right in RTL mode
4846         * src/hildon-bread-crumb-trail.c: mirror the appearance of the
4847         breadcrumb button list in RTL mode
4848         * src/hildon-caption.c: mirror the appearance of the caption widget in
4849         RTL mode
4850         * src/hildon-date-editor.c: mirror appearance of the date editor in
4851         RTL mode
4852         * src/hildon-time-editor.c: mirror appearance of the time editor in
4853         RTL mode
4854         * src/hildon-window.c: fix the position of the popup in RTL mode
4855
4856 2008-03-25  Sven Herzberg  <sven@imendio.com>
4857
4858         Amendment to the fix of NB#22072. Fix compilation.
4859
4860         * src/hildon-banner.c: (hildon_banner_timeout): fix compilation
4861
4862 2008-03-19  Sven Herzberg  <sven@imendio.com>
4863
4864         Fixes: NB#22072: Revisiting fix for "Implement robust timer handling
4865         in Info Banner" bug
4866
4867         * src/hildon-banner.c: (hildon_banner_timeout): reset the current
4868         timeout id properly when the timeout will disappear this leaves no
4869         artifacts around in the destroy(); there will only be the timeout
4870         created by hildon_banner_ensure_timeout() and adding a new timeout
4871         will also work if the timeout gets removed because the timeout_handler
4872         returned FALSE
4873
4874 2008-03-19  Michael Natterer  <mitch@imendio.com>
4875
4876         Fixes: NB#79791: Cannot set focus to Master volume using stylus
4877
4878         * src/hildon-volumebar.c
4879         * src/hildon-vvolumebar.c
4880         * src/hildon-hvolumebar.c (init): remove UNSET_FLAGS(CAN_FOCUS) so
4881         the widget becomes focussable at all.
4882
4883         * src/hildon-volumebar.c: implement GtkWidget::grab_focus() and
4884         set the focus to wither the mute button or the volumebar.
4885
4886         Remove own "can-focus" property and instead listen to
4887         notify::can-focus in order to update the widget's state.
4888
4889         Implement GtkWidget::focus() and make sure we can also *leave* the
4890         widget, not only enter it, depending on volumebar orientation and
4891         requested focus direction.
4892
4893         Clean up set_mute() to cooperate nicely with all the above.
4894
4895 2008-03-04  Michael Natterer  <mitch@imendio.com>
4896
4897         Fixes: NB#78481: information banners are hidden under browser menu
4898
4899         * src/hildon-banner.c: call gtk_window_present() on the banners so
4900         they are risen if they are already visible.
4901
4902 2008-03-03  Sven Herzberg  <sven@imendio.com>
4903
4904         Fixes: MB#1220: HildonWindow should take GtkMenu accel_group into account
4905
4906         * examples/hildon-window-menu-example.c: (main): extended the window
4907         menu example to serve as a testcase for automatically added
4908         accelerator groups, too
4909         * src/hildon-window.c: (hildon_window_add_accel_group),
4910         (hildon_window_set_menu): added patch by Tommi Komulainen
4911
4912 2008-03-03  Sven Herzberg  <sven@imendio.com>
4913
4914         Fixes: MB#1276: wrong allocators used in hildon_window_get_borders
4915
4916         * src/hildon-window.c: (hildon_window_get_borders): don't imply any
4917         knowledge about the border allocators used within GTK+
4918
4919 2008-02-26  Sven Herzberg  <sven@imendio.com>
4920
4921         Fixes: MB#2981: Build with asserts broken
4922
4923         * src/hildon-date-editor.c,
4924         * src/hildon-number-editor.c,
4925         * src/hildon-time-editor.c,
4926         * src/hildon-weekday-picker.c: replace HILDON_IS_EDITOR_EDITOR by a
4927         the proper GType instance check
4928
4929 2008-02-25  Sven Herzberg  <sven@imendio.com>
4930
4931         Fixed: MB#1221: HildonWindow shouldn't call show_all for GtkMenu
4932
4933         * doc/Makefile.am: tell gtk-doc about HILDON_DISABLE_DEPRECATED
4934         * examples/hildon-window-menu-example.c: (main): explicitly show
4935         the menu item
4936         * src/hildon-window.c:
4937         (hildon_window_set_main_menu): moved most of the code from set_menu()
4938         to this place; skipped the call to gtk_widget_show_all(); also didn't
4939         introduce gtk_widget_show() as gtk_menu_popup() will call that anyways
4940         (hildon_window_set_menu): removed most of the code, just keep the
4941         questionable gtk_widget_show_all()
4942         * src/hildon-window.h: added the new function and deprecate the old
4943         one
4944
4945 2008-01-10  Xan Lopez  <xan.lopez@nokia.com>
4946
4947         [2.0.1-1 release]
4948
4949         * NEWS:
4950         * configure.ac:
4951         * debian/changelog: Updating.
4952
4953 2008-01-10  Xan Lopez  <xan.lopez@nokia.com>
4954
4955         * configure.ac:
4956         * pkgconfig/Makefile.am:
4957         * pkgconfig/hildon.pc.in:
4958         * src/Makefile.am:
4959
4960         Do not use PACKAGE_VERSION_MAJOR as the API revision,
4961         use newly created API_MAJOR_VERSION.
4962
4963 2008-01-09  Xan Lopez  <xan.lopez@nokia.com>
4964
4965         [2.0.0-1 release]
4966
4967         * NEWS:
4968         * configure.ac:
4969         * debian/changelog: Updating.
4970
4971 2008-01-09  Xan Lopez  <xan.lopez@nokia.com>
4972
4973         * src/hildon-color-chooser.c (hildon_color_chooser_class_init):
4974
4975         Add outer_border style property, we use it but don't define it (!).
4976
4977         Fixes NB#75310
4978
4979 2007-12-21  Xan Lopez  <xan.lopez@nokia.com>
4980
4981         * examples/hildon-bread-crumb-trail-example.c (main):
4982
4983         Add clear button.
4984
4985         * src/hildon-bread-crumb-trail.c (hildon_bread_crumb_trail_remove):
4986
4987         Fix logic for the bread crumb trail node removal.
4988
4989         Fixes: NB#78616
4990
4991 2007-12-14  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
4992
4993         [1.99.1-1 release]
4994
4995         * NEWS:
4996         * configure.ac:
4997         * debian/changelog: Updating.
4998
4999 2007-11-08  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5000
5001         Patch by Alejandro to get/set passwords dialogs accesibility.
5002
5003         * hildon-1/src/hildon-get-password-dialog.c:
5004         * hildon-1/src/hildon-set-password-dialog.c:
5005         Set atk_set_name to the passwd entries in order to allow
5006         accessibility by name on this entries.
5007
5008 2007-10-11  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5009
5010         [1.99.0-2 release]
5011
5012         * debian/changelog:
5013         * debian/control: Updating gtk dep.
5014
5015 2007-10-10  Mohammad Anwari  <Mohammad.Anwari@nokia.com>
5016
5017         * configure.ac, pkgconfig/hildon-1.pc: Turn on -DMAEMO_CHANGES only if
5018         USE_MAEMO_GTK is enabled.
5019
5020 2007-10-10  Xan Lopez  <xan.lopez@nokia.com>
5021
5022         * src/hildon-code-dialog.c (hildon_code_dialog_init): check for
5023         MAEMO_GTK or GTK+ > 2.11 before using GTK_BUTTONBOX_CENTER mode.
5024
5025 2007-10-10  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5026
5027         [1.99.0-1 release]
5028
5029         * NEWS:
5030         * configure.ac:
5031         * debian/changelog: Updating.
5032
5033 2007-10-10  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5034
5035         * examples/Makefile.am:
5036         * examples/hildon-logical-color-example.c:
5037         * src/hildon-helper.c: Fixing the way logical colors/fonts are being
5038         applied + adding a test case. Fixes: NB#71660.
5039
5040 2007-10-08  Xan Lopez  <xan.lopez@nokia.com>
5041
5042         * src/hildon-window.c (hildon_window_map): only map the vbox if it's supposed
5043         to be visible, fixes warning on map for windows without toolbars.
5044
5045 2007-10-02  Xan Lopez  <xan.lopez@nokia.com>
5046
5047         * src/hildon-seekbar.c: gtk_range_get_fill_level is available in GTK+ since
5048         2.11.0, add a check for that besides the MAEMO_GTK check.
5049
5050 2007-09-28  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5051
5052         [1.0.17-1 release]
5053
5054         * NEWS:
5055         * configure.ac:
5056         * debian/changelog: Updating.
5057
5058 2007-09-26  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5059
5060         * src/hildon-window.c: Applying patches by Xan to fix the toolbar
5061         visibility. Fixes: NB#70842 and MB#615.
5062
5063 2007-09-25  Xan Lopez  <xan.lopez@nokia.com>
5064
5065         * src/hildon-bread-crumb-widget.c (hildon_bread_crumb_widget_constructor):
5066         set the separator as no-show-all so it doesn't unintentionally appear when
5067         someone does a show_all.
5068
5069 2007-09-25  Xan Lopez  <xan.lopez@nokia.com>
5070
5071         * src/hildon-bread-crumb-trail.c (hildon_bread_crumb_trail_push_text)
5072         (hildon_bread_crumb_trail_push_icon): Do not show the separator for the
5073         toplevel item. Fixes: NB#62031
5074
5075 2007-09-24  Xan Lopez  <xan.lopez@nokia.com>
5076
5077         * src/hildon-bread-crumb-trail.c (hildon_bread_crumb_trail_push_icon):
5078         fix the name of the function in the docs.
5079
5080 2007-09-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5081
5082         [1.0.16-1 release]
5083
5084         * NEWS:
5085         * configure.ac:
5086         * debian/changelog: Updating.
5087
5088 2007-09-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5089
5090         * examples/hildon-banner-long-example.c: Adding a test-case for long
5091         hildon banner.
5092
5093         * src/hildon-find-toolbar.c: Fixing the get_last_index function.
5094
5095 2007-09-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5096
5097         * src/hildon-color-chooser-dialog.c:
5098         * src/hildon-color-chooser.c:
5099         * src/hildon-font-selection-dialog.c: Adding two patches by Tommi to fix
5100         memory leaks in font selector and color selector. Fixes: NB#70499 and
5101         NB#70474.
5102
5103 2007-09-20  Johan Bilien  <johan.bilien@nokia.com>
5104
5105         * src/hildon-helper.c: Fixed the leak of the a GList. Fixes: NB#70273.
5106
5107 2007-09-18  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5108
5109         * src/hildon-code-dialog.c: Making the hardcoded WIDTH/HEIGHT values a
5110         little bit bigger. Fixes: #NB63694.
5111
5112 2007-09-17  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5113
5114         [1.0.15-1 release]
5115
5116         * NEWS:
5117         * configure.ac:
5118         * debian/changelog: Updating.
5119
5120 2007-09-14  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5121
5122         * doc/Makefile.am:
5123         * doc/hildon-docs.sgml:
5124         * doc/images/bread-crumb-trail.png:
5125         * doc/images/calendar-popup.png:
5126         * doc/images/caption.png:
5127         * doc/images/code-dialog.png:
5128         * doc/images/color-button.png:
5129         * doc/images/color-chooser-dialog.png:
5130         * doc/images/color-chooser.png:
5131         * doc/images/controlbar.png:
5132         * doc/images/date-editor.png:
5133         * doc/images/font-selection-dialog.png:
5134         * doc/images/get-password-dialog.png:
5135         * doc/images/hvolumebar.png:
5136         * doc/images/login-dialog.png:
5137         * doc/images/note.png:
5138         * doc/images/number-editor.png:
5139         * doc/images/range-editor.png:
5140         * doc/images/seekbar.png:
5141         * doc/images/set-password-dialog.png:
5142         * doc/images/sort-dialog.png:
5143         * doc/images/time-editor.png:
5144         * doc/images/time-picker.png:
5145         * doc/images/vvolumebar.png:
5146         * doc/images/weekday-picker.png: Adding the new generated widget shots.
5147         Adding the bread-crumb-trial and helpers to the documentation.
5148
5149 2007-09-14  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5150
5151         * examples/hildon-find-toolbar-example.c:
5152         * src/hildon-find-toolbar.c:
5153         * src/hildon-find-toolbar.h: FIxing the default history-append handler to
5154         actually continue firing the other handlers if connected. Adding a new
5155         function:
5156         hildon_find_toolbar_get_last_index that gets the index of the most
5157         recently added (last) item. Fixes: NB#52301.
5158
5159 2007-09-10  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5160
5161         * src/hildon-caption.c: Applying a patch by Tommi to fix the focus
5162         behaviour. Fixes: NB#68610.
5163
5164 2007-09-10  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5165
5166         * src/hildon-banner.c: Actually reverting the previous change. It somehow
5167         looks a bit worse.
5168
5169 2007-09-06  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5170
5171         * src/hildon-banner.c: Changing the infobanner background pixmap to NULL
5172         when realizing the banner. Should make the infonbanner effect a bit more
5173         bearable.
5174
5175 2007-09-05  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5176
5177         * src/hildon-volumebar.c:
5178         * src/hildon-volumebar.h: Changing the GtkWidget to HildonVolumebar in
5179         hildon_volumebar_set_range_insensitive_message and
5180         hildon_volumebar_set_range_insensitive_messagef. Fixes MB#1848.
5181
5182 2007-09-05  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5183
5184         * src/hildon-window.c: Fixing the border freeing on destroy.
5185
5186 2007-09-05  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5187
5188         * src/hildon-code-dialog-private.h:
5189         * src/hildon-code-dialog.c: Adding a patch by Tomas Junnonen to fix the
5190         kw keyboard support in HildonCodeDialog.
5191
5192 2007-08-24  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5193
5194         [1.0.14-1 release]
5195
5196         * NEWS:
5197         * configure.ac:
5198         * debian/changelog: Updating.
5199
5200 2007-08-24  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5201
5202         * src/hildon-date-editor.c:
5203         * src/hildon-number-editor.c:
5204         * src/hildon-private.c:
5205         * src/hildon-private.h:
5206         * src/hildon-time-editor.c:
5207         * src/hildon-weekday-picker.c: A patch by Xan Lopez to fix focus
5208         handling in subclassed composite widgets. Fixes: NB#66628.
5209
5210 2007-08-24  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5211
5212         * src/hildon-window.c: Removing extra gtk_main_iteration () processing
5213         from destroy_ callback as it introduces problems in async dbus signal
5214         handlers. Fixes NB#66673.
5215
5216 2007-08-24  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5217
5218         * examples/hildon-hvolumebar-example.c:
5219         * src/hildon-volumebar.c: Improving the focus handling in the
5220         volumebar widgets. Fixes NB#63955 and NB#65155. Also fixing the
5221         set_property accessor so that "mute" property can be actually set. I'm
5222         scared that nobody noticed it's totally broken.
5223
5224 2007-08-23  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5225
5226         * debian/control: Use libesd0-dev or osso-esd-dev as esd dependancy.
5227         Fixes NB#66548.
5228
5229 2007-08-23  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5230
5231         * src/hildon-calendar.c:
5232         * src/hildon-number-editor.c:
5233         * src/hildon-time-picker.c: Changing the timeout repeat so that it
5234         matches the spec of 6 chars per second. Fixes: NB#60489.
5235
5236 2007-08-22  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5237
5238         * src/hildon-helper.c: Really fixing NB#58352. Looks like
5239         gtk_style_lookup_color sometime returns FALSE even though color was
5240         found and values were filled properly. Weird. Removing the warning for the
5241         time being.
5242
5243 2007-08-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5244
5245         * src/hildon-find-toolbar.c: Puting the combobox inside alignment to not
5246         expand vertically. Adding some extra space to the find toolbar buttons to
5247         make them thumbable. Fixes NB#66060.
5248
5249 2007-08-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5250
5251         * src/hildon-calendar-popup.c: Replacing the "Done" button in the calendar
5252         popup with "Ok" and "Cancel". Fixes NB#59299.
5253
5254 2007-08-20  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5255
5256         * src/hildon-calendar.c: Process all window updates before executing next
5257         timeout. Fixes: NB#54146.
5258
5259 2007-08-17  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5260
5261         [1.0.13-1 release]
5262
5263         * NEWS:
5264         * configure.ac:
5265         * debian/changelog: Updating.
5266
5267 2007-08-16  Xan Lopez  <xan.lopez@nokia.com>
5268
5269         * src/hildon-banner.c: (hildon_banner_client_event): connect directly to
5270         the client event and ignore it, since we use the delete event to close
5271         after timeouts.
5272
5273 2007-08-16  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5274
5275         * src/hildon-helper.c: Remove the bogus warning about color not being
5276         found. Fixes NB#58352.
5277
5278 2007-08-16  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5279
5280         * examples/Makefile.am:
5281         * examples/hildon-toolbar-seekbar-example.c: Adding an example to test a
5282         HildonSeekbar widget inside a toolbar.
5283
5284 2007-08-16  Xan Lopez  <xan.lopez@nokia.com>
5285
5286         * src/hildon-banner.c (hildon_banner_init): mark the banners as
5287         temporary, depends on maemo-gtk >= 2.10.12-osso7. Also ignore the
5288         delete event that will come from _GTK_DELETE_TEMPORARIES, as we
5289         don't want to be closed by non-temporary windows on map.
5290
5291         Also use G_DEFINE_TYPE instead of manually typed code.
5292
5293 2007-08-06  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5294
5295         [1.0.12-1 release]
5296
5297         * NEWS:
5298         * configure.ac:
5299         * debian/changelog:
5300         * debian/rules: Updating.
5301
5302 2007-08-01  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5303
5304         * examples/Makefile.am:
5305         * examples/hildon-hvolumebar-timer-example.c: Adding an exmaple to debug
5306         bug NB#61128. Strangely it works.
5307
5308 2007-08-01  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5309
5310         * src/hildon-date-editor.c: When the date editor entry has been changed
5311         but the numbers of characters < max, turn off the skip validation flag.
5312         Prevents a situation when we enter first a valid year and later re-write
5313         it with an invalid one. Fixes NB#60154.
5314
5315 2007-07-26  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5316
5317         * src/hildon-code-dialog.c: Fixing the dialog button alignment inside the
5318         code dialog. Fixes NB#64355.
5319
5320 2007-07-25  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5321
5322         * src/hildon-wizard-dialog.c: Don't call the _set_sensitivity again after
5323         switching the page. Fixes NB#49374.
5324
5325         * examples/Makefile.am:
5326         * examples/hildon-wizard-dialog-example.c: Adding an example for
5327         HildonWizardDialog that shows how to handle manual sensitivity setting on
5328         the wizard dialog.
5329
5330 2007-07-25  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5331
5332         * configure.ac:
5333         * src/Makefile.am:
5334         * src/hildon-version.h.in:
5335         * src/hildon.h: Adding the HILDON_CHECK_VERSION macro. Fixes: NB#62061.
5336
5337 2007-07-25  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5338
5339         * src/hildon-volumebar.c: Updating the docs.
5340
5341 2007-07-25  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5342
5343         [1.0.11-1 release]
5344
5345         * NEWS:
5346         * configure.ac:
5347         * debian/changelog: Updating.
5348
5349 2007-07-24  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5350
5351         * src/hildon-find-toolbar.c:
5352         * src/hildon-find-toolbar.h: Adding a few new functions to control the
5353         selected item: hildon_find_toolbar_set_active,
5354         hildon_find_toolbar_set_active_iter, hildon_find_toolbar_get_active,
5355         hildon_find_toolbar_get_active_iter . They correspond to respective
5356         GtkComboBox functions.
5357
5358         * examples/Makefile.am:
5359         * examples/hildon-find-toolbar-example.c: Adding the example to test the
5360         new functionality.
5361
5362 2007-07-23  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5363
5364         * examples/Makefile.am:
5365         * examples/hildon-seekbar-example.c: Adding the seekbar example to check
5366         theming easily.
5367
5368         * src/hildon-font-selection-dialog.c: Fixing the default focus for dialog
5369         when font size > 32 and we pack a focusable widget inside. Actually using
5370         the default response would work too, but since we don't show default
5371         response state in any way (no theming) it would not be visible to the
5372         user. Fixes NB#63430.
5373
5374 2007-07-23  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5375
5376         * src/hildon-date-editor.c: Adding the missing variable setter in the
5377         set_property handler. Fixes NB#54182.
5378
5379 2007-07-23  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5380
5381         * src/hildon-window.h: Changing the long key press time from 1500ms to
5382         800ms as requested in NB#63700. I have a bad feeling about this, let's
5383         see... Fixes NB#63700.
5384
5385 2007-07-12  Tommi Komulainen  <tommi.komulainen@nokia.com>
5386
5387         * src/hildon-time-picker.c (hildon_time_picker_class_init,
5388         hildon_time_picker_map, hildon_time_picker_realize,
5389         hildon_time_picker_style_set): Split the contents of map to more
5390         appropriate functions; set window decorations on realize and update
5391         arrows' size requisitions on style-set. Avoids unnecessary resizing.
5392
5393 2007-07-02  Xan Lopez <xan.lopez@nokia.com>
5394
5395         [1.0.10-2 release]
5396
5397         * NEWS:
5398         * debian/changelog: Updating.
5399
5400 2007-07-02  Johan Bilien  <johan.bilien@nokia.com>
5401
5402         * src/Makefile.am: fixed installation of the header files
5403
5404 2007-06-29  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5405
5406         [1.0.10-1 release]
5407
5408         * NEWS:
5409         * configure.ac:
5410         * debian/changelog: Updating.
5411
5412 2007-06-27  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5413
5414         * configure.ac: Removing some remaining of --enable-xan.
5415
5416 2007-06-26  Xan Lopez  <xan.lopez@nokia.com>
5417
5418         * src/hildon-date-editor.c: (hildon_date_editor_keypress):
5419         * src/hildon-time-editor.c: (hildon_time_editor_entry_keypress):
5420
5421         Move all focus crazyness to the rc files. This depends on gtk+2.0 >=
5422         2.10.12-osso6 because the move-focus signal needs to be available in
5423         GtkWidget.
5424
5425 2007-06-25  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5426
5427         * examples/Makefile.am:
5428         * examples/hildon-hvolumebar-insensitive-map-example.c: Adding an example
5429         that makes a HildonVolumebar insensitive before mapping it. Seems to work
5430         fine. Prolly NB#61128 is fixed now.
5431
5432 2007-06-19  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5433
5434         * src/hildon-volumebar.c:
5435         * src/hildon-volumebar.h: Adding the
5436         hildon_volumebar_set_range_insensitive_message and
5437         hildon_volumebar_set_range_insensitive_messagef functions to set
5438         insensitive message on the slider of the volumebar. Fixes NB#61129.
5439
5440         * examples/Makefile.am:
5441         * examples/hildon-hvolumebar-insensitive-example.c: Adding an example to
5442         test the new insensitive messsage functionality on HildonVolumebar.
5443
5444 2007-06-14  Xan Lopez  <xan.lopez@nokia.com>
5445
5446         * src/hildon-private.c (hildon_private_composite_focus): make the focus handler
5447         work again.
5448
5449 2007-06-13  Xan Lopez  <xan.lopez@nokia.com>
5450
5451         * src/hildon-bread-crumb-trail.c (hildon_bread_crumb_trail_clear): workaround
5452         http://bugzilla.gnome.org/show_bug.cgi?id=56070 hiding and showing the back
5453         button on after clearing the trail.
5454
5455 2007-06-13  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5456
5457         * src/hildon-code-dialog.c: Removing the separator from the dialog.
5458
5459 2007-06-12  Xan Lopez  <xan.lopez@nokia.com>
5460
5461         * src/Makefile.am: remove circular dependency in hildon-enum-types.h creation
5462         by splitting the installed headers in generated and non-generated groups. Use
5463         only the non-generated headers to create the hildon-enum-types.h file.
5464
5465         * src/hildon-seekbar.h: gtkscale.h already includes gtkrange.h.
5466
5467 2007-06-12  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5468
5469         * src/hildon-window.c: Hide the window before performing the destroy.
5470         Should make the app closing a little tiny bit more snappy.
5471
5472 2007-06-12  Xan Lopez  <xan.lopez@nokia.com>
5473
5474         * src/hildon-seekbar.c: add gtkrange.h header
5475         * src/hildon-caption.c: remove unused variable
5476
5477 2007-06-08  Tommi Komulainen  <tommi.komulainen@nokia.com>
5478
5479         * configure.ac: Remove dysfunctional AC_ARG_ENABLE. Pointed out by
5480         Loic Minier.
5481
5482 2007-06-07  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5483
5484         [1.0.9-1 release]
5485
5486         * NEWS:
5487         * configure.ac:
5488         * debian/changelog: Updating.
5489
5490 2007-06-07  Tommi Komulainen  <tommi.komulainen@nokia.com>
5491
5492         * src/hildon-window.c (hildon_window_window_state_event,
5493         hildon_window_is_topmost_notify, hildon_window_class_init): Stop the
5494         escape timeout on focus-out-event rather than notify::is-topmost; the
5495         latter doesn't get called when menus pop up. Fixes: NB#52946, MB#1101
5496
5497 2007-06-07  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5498
5499         * src/hildon-window.c: Adding a patch from Tommi Komulainen to pass the
5500         correct timestamp and button to gtk_menu_popup. Fixes MB#1466.
5501
5502 2007-06-07  Xan Lopez  <xan.lopez@nokia.com>
5503
5504         * src/hildon-window: actually, you need to use the macro always, there's
5505         no private pointer in the instance structure. We should have cleaned this up
5506         when we had the chance...
5507
5508 2007-06-07  Xan Lopez  <xan.lopez@nokia.com>
5509
5510         * src/hildon-window.c: do not get the private date from HildonWindow before
5511         it passes the g_return_if_fail check. Once it's passed the test, there's no
5512         need to g_assert that it exists. Do not create a HildonWindowPrivate variable
5513         if you are only going to access the data once. Whitespace cleanups.
5514
5515 2007-06-04  Xan Lopez  <xan.lopez@nokia.com>
5516
5517         * src/hildon-bread-crumb-trail.c: set children visible before allocation.
5518         * src/hildon-bread-crumb-widget.c: set xalign to 0.0 for labels.
5519
5520 2007-06-01  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5521
5522         [1.0.8-1 release]
5523
5524         * NEWS:
5525         * configure.ac:
5526         * debian/changelog: Updating.
5527
5528 2007-06-01  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5529
5530         * src/hildon-window.c: When destroying the window, remove (if exists) the
5531         escape timeout handler. Fixes #NB59276.
5532
5533 2007-06-01  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5534
5535         * src/hildon-banner.c: When realizing the widget, set the window
5536         transiency. Setting the transiency in the gobject constructor is not
5537         good, as the widget is not realized at that point. Fixes: #NB56624.
5538
5539 2007-05-30  Xan Lopez  <xan.lopez@nokia.com>
5540
5541         * src/hildon-bread-crumb-trail.h (struct _HildonBreadCrumbTrailClass):
5542         Add padding for future expansions.
5543
5544 2007-05-30  Xan Lopez  <xan.lopez@nokia.com>
5545
5546         * src/hildon-bread-crumb-trail.c (hildon_bread_crumb_trail_class_init):
5547         Add a new signal "move-parent", bind Escape and BackSpace to it. The handler
5548         will fake an activation on the previous to the last item of the trail, so
5549         the effect can be overrided by the developer as usual.
5550         Also change the callback for the back button to do the same thing, so its
5551         effect can be overrided too. Fixes: NB#58982
5552
5553 2007-05-30  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5554
5555         * src/hildon-caption.c: Implementing the proper focus grabbing in the
5556         HildonCaption. Fixes NB#52379.
5557
5558 2007-05-30  Xan Lopez  <xan.lopez@nokia.com>
5559
5560         * src/hildon-bread-crumb-trail.c (crumb_activated_cb): be very paranoid about
5561         the internal state of the trail after the user has had the chance of executing
5562         his handler for the signal. Specifically, it may happen that the activated button
5563         is removed and the user still lets the default handler run. This would segfault
5564         previously.
5565
5566 2007-05-28  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5567
5568         * src/hildon-font-selection-dialog.c: When the font is really big, add the
5569         scrollbar to the preview dialog. Fixes NB#54147.
5570
5571 2007-05-28  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5572
5573         * src/hildon-date-editor.c: Changing the default max year to 2037. The
5574         max/min year properties can be altered, so the client can modify it
5575         anyways. 1970 - 2037 sounds like a sane default. Fixes NB#54147.
5576
5577 2007-05-28  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5578
5579         * src/hildon-calendar.c: Removing the unused 'hildonlike' property, making
5580         hildonlike by default. Fixing a problem with disappearing arrows when
5581         scrolling through months and years. Fixes NB#54127.
5582
5583 2007-05-28  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5584
5585         * examples/hildon-date-editor-example.c: Adding error callback to the date
5586         editor example.
5587
5588 2007-05-25  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5589
5590         [1.0.7-1 release]
5591
5592         * NEWS:
5593         * debian/changelog:
5594         * configure.ac: Updating.
5595
5596 2007-05-24  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5597
5598         * configure.ac: Adding a special '--enable-xan' configure option that
5599         turns off the -Werror compilation setting. Usefull for development.
5600
5601         * src/hildon-calendar.c:
5602         * src/hildon-number-editor.c:
5603         * src/hildon-time-picker.c: Adding the 5* multiplier to
5604         gtk-timeout-update.
5605
5606 2007-05-24  Xan Lopez  <xan.lopez@nokia.com>
5607
5608         * src/hildon-note.c (hildon_note_init): Use g_object_ref_sink
5609         instead of g_object_ref + gtk_object_sink.
5610
5611 2007-05-22  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5612
5613         [1.0.6-1 release]
5614
5615         * NEWS:
5616         * configure.ac:
5617         * debian/changelog: Updating.
5618
5619 2007-05-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5620
5621         * src/hildon-color-chooser-dialog.c:
5622         * src/hildon-color-chooser.c: A few more GdkColor struct allocation fixes
5623         straight from Tommi labs.
5624
5625 2007-05-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5626
5627         * examples/hildon-finger-example.c: Correcting the header file path.
5628
5629         * src/hildon-color-chooser-dialog.c: Allocate the color on the stack for
5630         the changed signal. Fixes a small memory leak.
5631
5632 2007-05-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5633
5634         * autogen.sh:
5635         * debian/rules:
5636         * src/hildon-banner.c: Importing several usefull fixes from the
5637         ubuntu-mobile branch.
5638
5639 2007-05-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5640
5641         * examples/Makefile.am:
5642         * examples/hildon-finger-example.c: Adding a finger-checking code
5643         example.
5644
5645         * src/hildon-font-selection-dialog.c: Do not allocate the color
5646         structure using the g_new. Fixes NB#54061.
5647
5648 2007-05-09  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5649
5650         * src/hildon-helper.c: Correcting tabs in file.
5651
5652 2007-05-08  Xan Lopez  <xan.lopez@nokia.com>
5653
5654         * src/hildon-bread-crumb-trail.c: Use set_child_visible only to
5655         control the visibility of the children.
5656
5657         * examples/hildon-bread-crumb-trail-example.c: Plug leak.
5658
5659 2007-05-07  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5660
5661         [1.0.5-1 release]
5662
5663         * NEWS:
5664         * configure.ac:
5665         * debian/changelog: Updating.
5666
5667 2007-05-04  Xan Lopez  <xan.lopez@nokia.com>
5668
5669         * src/hildon-bread-crumb-trail.c:
5670         (hildon_bread_crumb_trail_size_allocate):
5671
5672         Make the back button always a square.
5673
5674 2007-05-04  Xan Lopez  <xan.lopez@nokia.com>
5675
5676         * src/hildon-bread-crumb-trail.h: Include hildon-bread-crumb-widget.h
5677         from the .c file as it's a private file.
5678
5679 2007-05-03  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5680
5681         * examples/hildon-vvolumebar-example.c: The VVolumebar example now
5682         uses slightly bigger height.
5683
5684         * src/hildon-font-selection-dialog.c: Adding some checks before
5685         freeing memory in the font selection dialog.
5686
5687 2007-05-02  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5688
5689         * src/hildon-font-selection-dialog.c: Adding a small check when
5690         freeing memory.
5691
5692         * src/hildon-wizard-dialog.c: Applying a patch by Iain Holmes to fix
5693         buttons sensitivity on page switching.
5694
5695 2007-04-27  Xan Lopez  <xan.lopez@nokia.com>
5696
5697         * src/hildon-bread-crumb-trail.c: make the add method handle all the
5698         internal details of adding a bread crumb to the trail.
5699
5700 2007-04-26  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5701
5702         [1.0.4-1 release]
5703
5704         * README:
5705         * configure.ac:
5706         * debian/changelog: Updating.
5707
5708         * src/hildon-bread-crumb-trail.h:
5709         * src/hildon-bread-crumb.h: Changing the API guard to
5710         HILDON_ENABLE_UNSTABLE_API.
5711
5712 2007-04-26  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5713
5714         [1.0.3-1 release]
5715
5716         * NEWS:
5717         * configure.ac:
5718         * debian/changelog:
5719         * debian/rules:
5720         * src/hildon-helper.h: Updating.
5721
5722 2007-04-25  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5723
5724         [1.0.2-1 release]
5725
5726         * NEWS:
5727         * configure.ac:
5728         * debian/changelog:
5729
5730 2007-04-25  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5731
5732         * README:
5733         * configure.ac:
5734         * src/hildon-helper.h: Small fix to make the package actually compile.
5735
5736 2007-04-25  Xan Lopez  <xan.lopez@nokia.com>
5737
5738         * src/hildon-bread-crumb-trail.h:
5739         * src/hildon-bread-crumb.h:
5740
5741         Guard with ENABLE_UNSTABLE_API. To use the bread crumb you'll need
5742         to define ENABLE_UNSTABLE_API in the code that includes these headers.
5743
5744 2007-04-25  Xan Lopez  <xan.lopez@nokia.com>
5745
5746         * examples/hildon-bread-crumb-trail-example.c:
5747         * src/Makefile.am:
5748         * src/hildon-bread-crumb-trail.c:
5749         * src/hildon-bread-crumb-trail.h:
5750         * src/hildon-bread-crumb.c:
5751         * src/hildon-bread-crumb.h:
5752         * src/hildon-marshalers.list:
5753         * src/hildon-bread-crumb-widget.c:
5754         * src/hildon-bread-crumb-widget.h:
5755
5756         Slight change in the widget design. The bread crumb trail API is
5757         unchanged, but HildonBreadCrumb is now an interface. A *private*
5758         implementation, hildon-bread-crumb-widget, is provided and used
5759         internally by the trail for the push_text/push_icon functions.
5760
5761         The generic push API is still available, so anyone can implement
5762         and use its own bread crumb widget.
5763
5764 2007-04-19  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5765
5766         * debian/rules: Fixing the shlibs.
5767
5768 2007-04-19  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5769
5770         * src/hildon-banner.c: Fixing a problem with timed banners having
5771         their parrent destroyed before they are.
5772
5773 2007-04-17  Xan Lopez  <xan.lopez@nokia.com>
5774
5775         * src/hildon-bread-crumb.c:
5776         * src/hildon-bread-crumb.h:
5777
5778         Make the get_natural_size function a vfunc.
5779
5780 2007-04-16  Xan Lopez  <xan.lopez@nokia.com>
5781
5782         * src/hildon-bread-crumb.c:
5783         * src/hildon-bread-crumb-trail.c:
5784
5785         Some cleanups.
5786
5787 2007-04-16  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5788
5789         [1.0.1-1 release]
5790
5791         * AUTHORS:
5792         * NEWS:
5793         * configure.ac:
5794         * debian/changelog: Updating for release.
5795
5796 2007-04-16  Xan Lopez  <xan.lopez@nokia.com>
5797
5798         * src/hildon-bread-crumb.c (hildon_bread_crumb_get_natural_size):
5799         don't leak the pango layout.
5800
5801 2007-04-16  Xan Lopez  <xan.lopez@nokia.com>
5802
5803         * src/hildon.h:
5804         * examples/hildon-bread-crumb-trail-example.c:
5805
5806         Fix example.
5807
5808 2007-04-16  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5809
5810         * debian/changelog: Removing the bug-fixed entries that were actually
5811         resolved as WONTFIX.
5812
5813         * src/hildon-date-editor.c: Removing a redundant check. Fixes
5814         NB#54182.
5815
5816 2007-04-13  Xan Lopez  <xan.lopez@nokia.com>
5817
5818         * src/hildon-bread-crumb-trail.c:
5819         * src/hildon-bread-crumb-trail.h:
5820         * src/hildon-bread-crumb.c:
5821         * src/hildon-bread-crumb.h:
5822
5823         Untabify.
5824
5825 2007-04-13  Xan Lopez  <xan.lopez@nokia.com>
5826
5827         * src/hildon-bread-crumb-trail.c: don't use the priv data of bct
5828         until it's passed the type check.
5829
5830 2007-04-12  Xan Lopez  <xan.lopez@nokia.com>
5831
5832         * examples/hildon-bread-crumb-trail-example.c
5833
5834         Add license.
5835
5836 2007-04-12  Xan Lopez  <xan.lopez@nokia.com>
5837
5838         * examples/Makefile.am
5839         * examples/hildon-bread-crumb-trail-example.c
5840         * src/Makefile.am
5841         * src/hildon-bread-crumb-trail.c
5842         * src/hildon-bread-crumb-trail.h
5843         * src/hildon-bread-crumb.c
5844         * src/hildon-bread-crumb.h
5845
5846         New HildonBreadCrumbTrail widget.
5847
5848 2007-04-02  Lucas Rocha  <lucas.rocha@nokia.com>
5849
5850         * src/hildon-range-editor.c (hildon_range_editor_init),
5851         src/hildon-seekbar.c (hildon_seekbar_get_fraction,
5852         hildon_seekbar_set_fraction, hildon_seekbar_set_position),
5853         src/hildon-time-editor.c (hildon_time_editor_tap_and_hold_setup,
5854         hildon_time_editor_class_init, hildon_time_editor_init),
5855         src/hildon-get-password-dialog.c (invalid_input,
5856         hildon_get_password_set_property, hildon_get_password_get_property,
5857         create_contents, hildon_get_password_dialog_set_max_characters),
5858         src/hildon-set-password-dialog.c (create_contents),
5859         src/hildon-date-editor.c (hildon_date_editor_init),
5860         src/hildon-login-dialog.c (hildon_login_dialog_init),
5861         src/hildon-number-editor.c (hildon_number_editor_init),
5862         src/hildon-find-toolbar.c (hildon_find_toolbar_emit_invalid_input,
5863         hildon_find_toolbar_emit_close, hildon_find_toolbar_init): made all
5864         the Maemo GTK+ specific API optional by adding a --with-maemo-gtk
5865          configure option and adding the respective checks in the code.
5866         * src/hildon-calendar.c (hildon_calendar_paint_week_numbers,
5867         hildon_calendar_drag_data_received): fixed some build warnings.
5868
5869 2007-03-29  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
5870
5871         * debian/changelog: A 1.0.0 release notes.
5872