* src/hildon-app-menu.c (hildon_app_menu_popup): Use also the default window size...
[hildon] / ChangeLog
1 2008-05-26  Alberto Garcia  <agarcia@igalia.com>
2
3         * src/hildon-app-menu.h
4         * src/hildon-app-menu.c
5         Renamed API variables for consistency
6
7         (hildon_app_menu_popup): Use also the default window size to
8         decide where to place the menu
9
10 2008-05-26  Michael Natterer  <mitch@imendio.com>
11
12         * src/hildon-time-editor.c (hildon_time_editor_class_init): The
13         widget_class->tap_and_hold_setup signal slot doesn't exist any
14         longer, stop overriding it.
15
16         (hildon_time_editor_init): g_signal_connect() to the
17         tap-and-hold-setup signal instead.
18
19         (hildon_time_editor_entry_keypress): add cast to fix warning.
20
21 2008-05-23  Alberto Garcia  <agarcia@igalia.com>
22
23         * doc/hildon-docs.sgml
24         * doc/hildon.types
25         * examples/Makefile.am
26         * examples/hildon-app-menu-example.c
27         * src/Makefile.am
28         * src/hildon-app-menu-private.h
29         * src/hildon-app-menu.c
30         * src/hildon-app-menu.h
31         * src/hildon.h
32         New HildonAppMenu widget
33
34 2008-05-21 Alejandro G. Castro <alex@igalia.com>
35
36         Rearranged the inheritance of the pannable area, now it inherits
37         from GtkBin. This will allow us to control the event_window and
38         the allocation process of the widget, required for some effects.
39         
40         * src/hildon-pannable-area.h: Replaced GtkEventBox structures with
41         GtkBin structures.  * src/hildon-pannable-area.c: Added the
42         event_window variable.
43         (hildon_pannable_area_button_press_cb):
44         (hildon_pannable_area_button_release_cb):
45         (hildon_pannable_area_motion_notify_cb): 
46         Changed the signature of the method, now we override the event
47         callback instead of connecting to the signal.
48
49         (hildon_pannable_area_realize):
50         (hildon_pannable_area_unrealize):
51         (hildon_pannable_area_map):
52         (hildon_pannable_area_unmap):
53         (hildon_pannable_area_size_allocate):
54         Added functions to control the widget construction. We add a 
55         INPUT_ONLY window and we put it over the widgets inside the 
56         container, this event_window handles the events.
57
58         (hildon_pannable_area_class_init):
59         Replaced the signal connections with overrides of the event 
60         callbacks.
61         
62 2008-05-20 Alejandro G. Castro <alex@igalia.com>
63
64         Bouncing effect added when touching the borders, you can change
65         the elasticity of the border changing the ELASTICITY define.
66         
67         * src/hildon-pannable-area.c: Added ELASTICITY define.
68         (hildon_pannable_area_timeout): Added inverse velocity when
69         touching the border of the child widget, that causes a bounce.
70
71 2008-05-20 Alejandro G. Castro <alex@igalia.com>
72
73         Improved performance, we now do not go to the X server in order to
74         get the list of window children. Apparently the effect is the
75         same, we have to be careful and check if this breaks something in
76         any corner case.
77         
78         * src/hildon-pannable-area.c:
79         (get_ordered_children): Removed this function.
80         (hildon_pannable_area_get_topmost): Replaced the ad-hoc search of
81         the children windows function with gdk_window_get_children.
82         
83 2008-05-20 Alejandro G. Castro <alex@igalia.com>
84
85         * src/hildon-pannable-area.c:
86         (hildon_pannable_area_dispose): Fixed a crash when closing the
87         window and kinetics is activated.
88         
89 2008-05-19  Alberto Garcia  <agarcia@igalia.com>
90
91         * src/hildon-pannable-area.h
92         * src/hildon-pannable-area.c
93         Changed indentation style to meet the one used in Hildon
94
95 2008-05-19 Alejandro G. Castro <alex@igalia.com>
96
97         Reviewed the interaction of the AUTO mode, now we use the time
98         attribute of the events and calculate the velocity in the motion,
99         doing a gimp like calculation. The velocity is calculated in each
100         motion event using the last velocity and the current one, the
101         SMOOTH_FACTOR controls the percentage of the new velocity we use.
102         
103         * src/hildon-pannable-area.c: Replaced the time based algorithm
104         for the AUTO mode.
105         (hildon_pannable_area_motion_notify_cb): now we do not launch the
106         timeout for the AUTO mode when we are still moving the cursor. We
107         added also the velocity calculation in this function.
108         (hildon_pannable_area_button_release_cb): launch the timeout in
109         case we are in AUTO mode. There are still some constants here that
110         come from the old implementation that should be reviewed and
111         handled properly.
112         
113 2008-05-15  Alberto Garcia  <agarcia@igalia.com>
114
115         * doc/hildon-docs.sgml
116         * doc/hildon.types
117         * src/Makefile.am
118         * src/hildon-stackable-window.c
119         * src/hildon-stackable-window.h
120         * src/hildon.h
121         New HildonStackableWindow widget
122
123         * examples/hildon-dialog-example.c
124         * examples/hildon-pannable-area-example.c
125         Updated copyright
126
127 2008-05-14  Alberto Garcia  <agarcia@igalia.com>
128
129         * src/hildon-dialog.c
130         (hildon_dialog_new_with_buttons): New constructor.
131
132         * examples/hildon-dialog-example.c
133         (main): Update the example to use the new
134         hildon_dialog_new_with_buttons().
135
136         * examples/hildon-pannable-area-example.c
137         (main): Update example.
138
139 2008-05-13 Alberto Garcia <agarcia@igalia.com>
140
141         * doc/hildon-docs.sgml
142         * doc/hildon.types
143         Added HildonPannableArea to the documentation.
144
145 2008-05-13 Victor Jaquez <vjaquez@igalia.com>
146
147         * doc/visual_index.xml
148         Fix reference to HildonLoginDialog in documentation
149
150         * doc/hildon-docs.sgml
151         * doc/hildon.types
152         * examples/Makefile.am
153         * examples/hildon-dialog-example.c
154         * src/Makefile.am
155         * src/hildon-dialog.c
156         * src/hildon-dialog.h
157         * src/hildon.h
158         New HildonDialog widget.
159
160 2008-05-09 Alberto Garcia <agarcia@igalia.com>
161
162         * src/hildon-pannable-area.c
163         Merge latest changes (r4318, r4342) from libmokoui trunk
164
165 2008-05-09 Alberto Garcia <agarcia@igalia.com>
166
167         * examples/Makefile.am
168         * examples/hildon-pannable-area-example.c
169         * src/Makefile.am
170         * src/hildon-pannable-area.c
171         * src/hildon-pannable-area.h
172         * src/hildon.h
173         New HildonPannableArea widget.
174
175 2008-04-15 18:05:19    <timj@imendio.com>
176
177         * src/hildon-banner.c: revert the recent change, that introduced
178         gtk_window_present() calls. this reopens:
179           Bug 78481 - [freetest] information banners are hidden under browser menu
180         But resolves another variant of:
181           Bug 83953 - Lock dialog is not visible when device is locked for the first time after flash
182
183 2008-04-15 13:21:13    <timj@imendio.com>
184
185         * src/hildon-banner.c: refetch layout pointer after GtkLabel possibly
186         recreated its layout, spotted by Kris. this fixes all remaining
187         artefacts and stability issues with the banner code. in particular:
188         Bug 83953 - Lock dialog is not visible when device is locked for the first time after flash
189
190 2008-04-14 16:52:59    <timj@imendio.com>
191
192         * src/hildon-banner.c: guard force_to_wrap_truncated() against
193         operating on unrealized widgets, fixes:
194         Bug 83953 - Lock dialog is not visible when device is locked for the first time after flash
195
196         * src/hildon-banner-private.h: coalesce boolean fields into bitfield.
197
198 2008-04-09  Kristian Rietveld  <kris@imendio.com>
199
200         Fixes: NB#77775: Media Player, Save Now playing list, too long name
201         makes banner disappear.
202         Fixes: NB#79182: info banner flickering with certain message lengts.
203
204         * src/hildon-banner.c (hildon_banner_constructor),
205         (hildon_banner_init), (hildon_banner_set_text),
206         (hildon_banner_set_markup): call hildon_banner_reset_wrap_state(),
207         (hildon_banner_reset_wrap_state): new function: reset wrap flags to
208         FALSE, reset size requests of label and banner,
209         (force_to_wrap_truncated): when the text is too wide, always enforce
210         the maximum possible width instead of recalculating it from the
211         layout; enforce the maximum banner height of 3 lines,
212         (hildon_banner_init): set WORD_CHAR wrapping, this will result in
213         nicer wrapping and no truncated chars if space gets tight.
214
215         * src/hildon-banner-private.h: add has_been_wrapped and
216         has_been_truncated fields.
217
218 2008-04-07  Sven Herzberg  <sven@imendio.com>
219
220         Fixes: NB#78896: libhildon code inspection/coverity: uninitialised
221         local values in hildon_date_editor_size_allocate
222
223         * src/hildon-date-editor.c: moved the real allocation code into the
224         if() branch
225
226 2008-04-07  Sven Herzberg  <sven@imendio.com>
227
228         Prepares: NB#78896: libhildon code inspection/coverity: uninitialised
229         local values in hildon_date_editor_size_allocate
230
231         * src/hildon-date-editor.c: merged the two if() branches together
232
233 2008-04-07  Sven Herzberg  <sven@imendio.com>
234
235         Prepares: NB#78896: libhildon code inspection/coverity: uninitialised
236         local values in hildon_date_editor_size_allocate
237
238         * src/hildon-date-editor.c: changed the arguments of the if()
239         conditions
240
241 2008-04-07  Sven Herzberg  <sven@imendio.com>
242
243         Prepares: NB#78896: libhildon code inspection/coverity: uninitialised
244         local values in hildon_date_editor_size_allocate
245
246         * src/hildon-date-editor.c: split the calculation of the allocation
247         from the real allocation
248
249 2008-03-27  Michael Natterer  <mitch@imendio.com>
250
251         Fixes: NB#81696: The passcode is not overwritten even after
252         selecting
253
254         * src/hildon-code-dialog.c
255         (hildon_code_dialog_button_clicked)
256         (hildon_code_dialog_im_commit): don't use gtk_entry_append_text()
257         because that doesn't overwrite selected text. Instead, emit the
258         "commit" signal on the entry's im_context so the entry's normal
259         insert logic is triggered. Set the cursor to the end of the entry
260         after each insert operation so that we *only* insert in the middle
261         of the text if something was selected.
262
263 2008-03-27  Michael Natterer  <mitch@imendio.com>
264
265         Enable fixing: NB#79916 and NB#79918: The help topic for Color
266         selector cannot be opened
267
268         * src/hildon-color-button.c: add signal "setup-dialog" and emit it
269         when the popup color selector is created. Please connect to this
270         signal in order to set the dialog's help ID.
271
272 2008-03-25  Sven Herzberg  <sven@imendio.com>
273
274         Fixes: MB#1212: Hide info banners (infoprints) on click
275
276         * src/hildon-banner.c: (simulate_close), (hildon_banner_timeout):
277         extracted the close event simulation into an extra function
278         (hildon_banner_button_press_event): simulate a close event and destroy
279         the widget if the event wasn't handled
280         (hildon_banner_class_init): added the button_press_event handler
281         (hildon_banner_init): added button-press events to the widget
282
283 2008-03-25  Sven Herzberg  <sven@imendio.com>
284
285         Fixes: MB:#924: Hildon widgets doesn't support RTL mode
286         Patch from: Mohammad Anwari  <mdamt@maemo.org>
287
288         * src/hildon-banner.c: let the HildonBanners pop up on the left side
289         instead of the right in RTL mode
290         * src/hildon-bread-crumb-trail.c: mirror the appearance of the
291         breadcrumb button list in RTL mode
292         * src/hildon-caption.c: mirror the appearance of the caption widget in
293         RTL mode
294         * src/hildon-date-editor.c: mirror appearance of the date editor in
295         RTL mode
296         * src/hildon-time-editor.c: mirror appearance of the time editor in
297         RTL mode
298         * src/hildon-window.c: fix the position of the popup in RTL mode
299
300 2008-03-25  Sven Herzberg  <sven@imendio.com>
301
302         Amendment to the fix of NB#22072. Fix compilation.
303
304         * src/hildon-banner.c: (hildon_banner_timeout): fix compilation
305
306 2008-03-19  Sven Herzberg  <sven@imendio.com>
307
308         Fixes: NB#22072: Revisiting fix for "Implement robust timer handling
309         in Info Banner" bug
310
311         * src/hildon-banner.c: (hildon_banner_timeout): reset the current
312         timeout id properly when the timeout will disappear this leaves no
313         artifacts around in the destroy(); there will only be the timeout
314         created by hildon_banner_ensure_timeout() and adding a new timeout
315         will also work if the timeout gets removed because the timeout_handler
316         returned FALSE
317
318 2008-03-19  Michael Natterer  <mitch@imendio.com>
319
320         Fixes: NB#79791: Cannot set focus to Master volume using stylus
321
322         * src/hildon-volumebar.c
323         * src/hildon-vvolumebar.c
324         * src/hildon-hvolumebar.c (init): remove UNSET_FLAGS(CAN_FOCUS) so
325         the widget becomes focussable at all.
326
327         * src/hildon-volumebar.c: implement GtkWidget::grab_focus() and
328         set the focus to wither the mute button or the volumebar.
329
330         Remove own "can-focus" property and instead listen to
331         notify::can-focus in order to update the widget's state.
332
333         Implement GtkWidget::focus() and make sure we can also *leave* the
334         widget, not only enter it, depending on volumebar orientation and
335         requested focus direction.
336
337         Clean up set_mute() to cooperate nicely with all the above.
338
339 2008-03-04  Michael Natterer  <mitch@imendio.com>
340
341         Fixes: NB#78481: information banners are hidden under browser menu
342
343         * src/hildon-banner.c: call gtk_window_present() on the banners so
344         they are risen if they are already visible.
345
346 2008-03-03  Sven Herzberg  <sven@imendio.com>
347
348         Fixes: MB#1220: HildonWindow should take GtkMenu accel_group into account
349
350         * examples/hildon-window-menu-example.c: (main): extended the window
351         menu example to serve as a testcase for automatically added
352         accelerator groups, too
353         * src/hildon-window.c: (hildon_window_add_accel_group),
354         (hildon_window_set_menu): added patch by Tommi Komulainen
355
356 2008-03-03  Sven Herzberg  <sven@imendio.com>
357
358         Fixes: MB#1276: wrong allocators used in hildon_window_get_borders
359
360         * src/hildon-window.c: (hildon_window_get_borders): don't imply any
361         knowledge about the border allocators used within GTK+
362
363 2008-02-26  Sven Herzberg  <sven@imendio.com>
364
365         Fixes: MB#2981: Build with asserts broken
366
367         * src/hildon-date-editor.c,
368         * src/hildon-number-editor.c,
369         * src/hildon-time-editor.c,
370         * src/hildon-weekday-picker.c: replace HILDON_IS_EDITOR_EDITOR by a
371         the proper GType instance check
372
373 2008-02-25  Sven Herzberg  <sven@imendio.com>
374
375         Fixed: MB#1221: HildonWindow shouldn't call show_all for GtkMenu
376
377         * doc/Makefile.am: tell gtk-doc about HILDON_DISABLE_DEPRECATED
378         * examples/hildon-window-menu-example.c: (main): explicitly show
379         the menu item
380         * src/hildon-window.c:
381         (hildon_window_set_main_menu): moved most of the code from set_menu()
382         to this place; skipped the call to gtk_widget_show_all(); also didn't
383         introduce gtk_widget_show() as gtk_menu_popup() will call that anyways
384         (hildon_window_set_menu): removed most of the code, just keep the
385         questionable gtk_widget_show_all()
386         * src/hildon-window.h: added the new function and deprecate the old
387         one
388
389 2008-01-10  Xan Lopez  <xan.lopez@nokia.com>
390
391         [2.0.1-1 release]
392
393         * NEWS:
394         * configure.ac:
395         * debian/changelog: Updating.
396
397 2008-01-10  Xan Lopez  <xan.lopez@nokia.com>
398
399         * configure.ac:
400         * pkgconfig/Makefile.am:
401         * pkgconfig/hildon.pc.in:
402         * src/Makefile.am:
403
404         Do not use PACKAGE_VERSION_MAJOR as the API revision,
405         use newly created API_MAJOR_VERSION.
406         
407 2008-01-09  Xan Lopez  <xan.lopez@nokia.com>
408
409         [2.0.0-1 release]
410
411         * NEWS:
412         * configure.ac:
413         * debian/changelog: Updating.
414
415 2008-01-09  Xan Lopez  <xan.lopez@nokia.com>
416
417         * src/hildon-color-chooser.c (hildon_color_chooser_class_init): 
418
419         Add outer_border style property, we use it but don't define it (!).
420
421         Fixes NB#75310
422
423 2007-12-21  Xan Lopez  <xan.lopez@nokia.com>
424
425         * examples/hildon-bread-crumb-trail-example.c (main): 
426
427         Add clear button.
428
429         * src/hildon-bread-crumb-trail.c (hildon_bread_crumb_trail_remove): 
430
431         Fix logic for the bread crumb trail node removal.
432
433         Fixes: NB#78616
434
435 2007-12-14  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
436
437         [1.99.1-1 release]
438
439         * NEWS:
440         * configure.ac:
441         * debian/changelog: Updating.
442
443 2007-11-08  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
444
445         Patch by Alejandro to get/set passwords dialogs accesibility.
446
447         * hildon-1/src/hildon-get-password-dialog.c:
448         * hildon-1/src/hildon-set-password-dialog.c: 
449         Set atk_set_name to the passwd entries in order to allow 
450         accessibility by name on this entries.
451         
452 2007-10-11  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
453
454         [1.99.0-2 release]
455
456         * debian/changelog:
457         * debian/control: Updating gtk dep.
458
459 2007-10-10  Mohammad Anwari  <Mohammad.Anwari@nokia.com>
460
461         * configure.ac, pkgconfig/hildon-1.pc: Turn on -DMAEMO_CHANGES only if
462         USE_MAEMO_GTK is enabled.
463
464 2007-10-10  Xan Lopez  <xan.lopez@nokia.com>
465
466         * src/hildon-code-dialog.c (hildon_code_dialog_init): check for
467         MAEMO_GTK or GTK+ > 2.11 before using GTK_BUTTONBOX_CENTER mode.
468
469 2007-10-10  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
470
471         [1.99.0-1 release]
472
473         * NEWS:
474         * configure.ac:
475         * debian/changelog: Updating.
476
477 2007-10-10  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
478
479         * examples/Makefile.am:
480         * examples/hildon-logical-color-example.c:
481         * src/hildon-helper.c: Fixing the way logical colors/fonts are being
482         applied + adding a test case. Fixes: NB#71660.
483
484 2007-10-08  Xan Lopez  <xan.lopez@nokia.com>
485
486         * src/hildon-window.c (hildon_window_map): only map the vbox if it's supposed
487         to be visible, fixes warning on map for windows without toolbars.
488
489 2007-10-02  Xan Lopez  <xan.lopez@nokia.com>
490
491         * src/hildon-seekbar.c: gtk_range_get_fill_level is available in GTK+ since
492         2.11.0, add a check for that besides the MAEMO_GTK check.
493
494 2007-09-28  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
495
496         [1.0.17-1 release]
497
498         * NEWS:
499         * configure.ac:
500         * debian/changelog: Updating.
501
502 2007-09-26  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
503
504         * src/hildon-window.c: Applying patches by Xan to fix the toolbar
505         visibility. Fixes: NB#70842 and MB#615.
506
507 2007-09-25  Xan Lopez  <xan.lopez@nokia.com>
508
509         * src/hildon-bread-crumb-widget.c (hildon_bread_crumb_widget_constructor):
510         set the separator as no-show-all so it doesn't unintentionally appear when
511         someone does a show_all.
512
513 2007-09-25  Xan Lopez  <xan.lopez@nokia.com>
514
515         * src/hildon-bread-crumb-trail.c (hildon_bread_crumb_trail_push_text)
516         (hildon_bread_crumb_trail_push_icon): Do not show the separator for the
517         toplevel item. Fixes: NB#62031
518
519 2007-09-24  Xan Lopez  <xan.lopez@nokia.com>
520
521         * src/hildon-bread-crumb-trail.c (hildon_bread_crumb_trail_push_icon):
522         fix the name of the function in the docs.
523
524 2007-09-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
525
526         [1.0.16-1 release]
527
528         * NEWS:
529         * configure.ac:
530         * debian/changelog: Updating.
531
532 2007-09-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
533
534         * examples/hildon-banner-long-example.c: Adding a test-case for long
535         hildon banner.
536
537         * src/hildon-find-toolbar.c: Fixing the get_last_index function.
538
539 2007-09-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
540
541         * src/hildon-color-chooser-dialog.c:
542         * src/hildon-color-chooser.c:
543         * src/hildon-font-selection-dialog.c: Adding two patches by Tommi to fix
544         memory leaks in font selector and color selector. Fixes: NB#70499 and
545         NB#70474.
546
547 2007-09-20  Johan Bilien  <johan.bilien@nokia.com> 
548
549         * src/hildon-helper.c: Fixed the leak of the a GList. Fixes: NB#70273.
550
551 2007-09-18  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
552
553         * src/hildon-code-dialog.c: Making the hardcoded WIDTH/HEIGHT values a
554         little bit bigger. Fixes: #NB63694.
555
556 2007-09-17  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
557
558         [1.0.15-1 release]
559
560         * NEWS:
561         * configure.ac:
562         * debian/changelog: Updating.
563
564 2007-09-14  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
565
566         * doc/Makefile.am:
567         * doc/hildon-docs.sgml:
568         * doc/images/bread-crumb-trail.png:
569         * doc/images/calendar-popup.png:
570         * doc/images/caption.png:
571         * doc/images/code-dialog.png:
572         * doc/images/color-button.png:
573         * doc/images/color-chooser-dialog.png:
574         * doc/images/color-chooser.png:
575         * doc/images/controlbar.png:
576         * doc/images/date-editor.png:
577         * doc/images/font-selection-dialog.png:
578         * doc/images/get-password-dialog.png:
579         * doc/images/hvolumebar.png:
580         * doc/images/login-dialog.png:
581         * doc/images/note.png:
582         * doc/images/number-editor.png:
583         * doc/images/range-editor.png:
584         * doc/images/seekbar.png:
585         * doc/images/set-password-dialog.png:
586         * doc/images/sort-dialog.png:
587         * doc/images/time-editor.png:
588         * doc/images/time-picker.png:
589         * doc/images/vvolumebar.png:
590         * doc/images/weekday-picker.png: Adding the new generated widget shots.
591         Adding the bread-crumb-trial and helpers to the documentation.
592
593 2007-09-14  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
594
595         * examples/hildon-find-toolbar-example.c:
596         * src/hildon-find-toolbar.c:
597         * src/hildon-find-toolbar.h: FIxing the default history-append handler to
598         actually continue firing the other handlers if connected. Adding a new
599         function:
600         hildon_find_toolbar_get_last_index that gets the index of the most
601         recently added (last) item. Fixes: NB#52301.
602
603 2007-09-10  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
604
605         * src/hildon-caption.c: Applying a patch by Tommi to fix the focus
606         behaviour. Fixes: NB#68610. 
607
608 2007-09-10  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
609
610         * src/hildon-banner.c: Actually reverting the previous change. It somehow
611         looks a bit worse.
612
613 2007-09-06  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
614
615         * src/hildon-banner.c: Changing the infobanner background pixmap to NULL
616         when realizing the banner. Should make the infonbanner effect a bit more
617         bearable.
618
619 2007-09-05  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
620
621         * src/hildon-volumebar.c:
622         * src/hildon-volumebar.h: Changing the GtkWidget to HildonVolumebar in
623         hildon_volumebar_set_range_insensitive_message and
624         hildon_volumebar_set_range_insensitive_messagef. Fixes MB#1848.
625
626 2007-09-05  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
627
628         * src/hildon-window.c: Fixing the border freeing on destroy.
629
630 2007-09-05  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
631
632         * src/hildon-code-dialog-private.h:
633         * src/hildon-code-dialog.c: Adding a patch by Tomas Junnonen to fix the
634         kw keyboard support in HildonCodeDialog.
635
636 2007-08-24  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
637
638         [1.0.14-1 release]
639
640         * NEWS:
641         * configure.ac:
642         * debian/changelog: Updating.
643
644 2007-08-24  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
645
646         * src/hildon-date-editor.c:
647         * src/hildon-number-editor.c:
648         * src/hildon-private.c:
649         * src/hildon-private.h:
650         * src/hildon-time-editor.c:
651         * src/hildon-weekday-picker.c: A patch by Xan Lopez to fix focus
652         handling in subclassed composite widgets. Fixes: NB#66628.
653
654 2007-08-24  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
655
656         * src/hildon-window.c: Removing extra gtk_main_iteration () processing
657         from destroy_ callback as it introduces problems in async dbus signal
658         handlers. Fixes NB#66673.
659
660 2007-08-24  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
661
662         * examples/hildon-hvolumebar-example.c:
663         * src/hildon-volumebar.c: Improving the focus handling in the
664         volumebar widgets. Fixes NB#63955 and NB#65155. Also fixing the
665         set_property accessor so that "mute" property can be actually set. I'm
666         scared that nobody noticed it's totally broken.
667
668 2007-08-23  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
669
670         * debian/control: Use libesd0-dev or osso-esd-dev as esd dependancy.
671         Fixes NB#66548.
672
673 2007-08-23  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
674
675         * src/hildon-calendar.c:
676         * src/hildon-number-editor.c:
677         * src/hildon-time-picker.c: Changing the timeout repeat so that it
678         matches the spec of 6 chars per second. Fixes: NB#60489.
679
680 2007-08-22  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
681
682         * src/hildon-helper.c: Really fixing NB#58352. Looks like
683         gtk_style_lookup_color sometime returns FALSE even though color was
684         found and values were filled properly. Weird. Removing the warning for the
685         time being.
686
687 2007-08-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
688
689         * src/hildon-find-toolbar.c: Puting the combobox inside alignment to not
690         expand vertically. Adding some extra space to the find toolbar buttons to
691         make them thumbable. Fixes NB#66060.
692
693 2007-08-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
694
695         * src/hildon-calendar-popup.c: Replacing the "Done" button in the calendar
696         popup with "Ok" and "Cancel". Fixes NB#59299.
697
698 2007-08-20  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
699
700         * src/hildon-calendar.c: Process all window updates before executing next
701         timeout. Fixes: NB#54146.
702
703 2007-08-17  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
704
705         [1.0.13-1 release]
706
707         * NEWS:
708         * configure.ac:
709         * debian/changelog: Updating.
710
711 2007-08-16  Xan Lopez  <xan.lopez@nokia.com>
712
713         * src/hildon-banner.c: (hildon_banner_client_event): connect directly to
714         the client event and ignore it, since we use the delete event to close
715         after timeouts.
716
717 2007-08-16  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
718
719         * src/hildon-helper.c: Remove the bogus warning about color not being
720         found. Fixes NB#58352.
721
722 2007-08-16  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
723
724         * examples/Makefile.am:
725         * examples/hildon-toolbar-seekbar-example.c: Adding an example to test a
726         HildonSeekbar widget inside a toolbar.
727
728 2007-08-16  Xan Lopez  <xan.lopez@nokia.com>
729
730         * src/hildon-banner.c (hildon_banner_init): mark the banners as
731         temporary, depends on maemo-gtk >= 2.10.12-osso7. Also ignore the
732         delete event that will come from _GTK_DELETE_TEMPORARIES, as we
733         don't want to be closed by non-temporary windows on map.
734
735         Also use G_DEFINE_TYPE instead of manually typed code.
736
737 2007-08-06  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
738
739         [1.0.12-1 release]
740
741         * NEWS:
742         * configure.ac:
743         * debian/changelog:
744         * debian/rules: Updating.
745
746 2007-08-01  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
747
748         * examples/Makefile.am:
749         * examples/hildon-hvolumebar-timer-example.c: Adding an exmaple to debug
750         bug NB#61128. Strangely it works.
751
752 2007-08-01  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
753
754         * src/hildon-date-editor.c: When the date editor entry has been changed
755         but the numbers of characters < max, turn off the skip validation flag.
756         Prevents a situation when we enter first a valid year and later re-write
757         it with an invalid one. Fixes NB#60154.
758
759 2007-07-26  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
760
761         * src/hildon-code-dialog.c: Fixing the dialog button alignment inside the
762         code dialog. Fixes NB#64355.
763
764 2007-07-25  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
765
766         * src/hildon-wizard-dialog.c: Don't call the _set_sensitivity again after
767         switching the page. Fixes NB#49374.
768
769         * examples/Makefile.am:
770         * examples/hildon-wizard-dialog-example.c: Adding an example for
771         HildonWizardDialog that shows how to handle manual sensitivity setting on
772         the wizard dialog.
773
774 2007-07-25  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
775
776         * configure.ac:
777         * src/Makefile.am:
778         * src/hildon-version.h.in:
779         * src/hildon.h: Adding the HILDON_CHECK_VERSION macro. Fixes: NB#62061.
780
781 2007-07-25  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
782
783         * src/hildon-volumebar.c: Updating the docs.
784
785 2007-07-25  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
786
787         [1.0.11-1 release]
788
789         * NEWS:
790         * configure.ac:
791         * debian/changelog: Updating.
792
793 2007-07-24  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
794
795         * src/hildon-find-toolbar.c:
796         * src/hildon-find-toolbar.h: Adding a few new functions to control the
797         selected item: hildon_find_toolbar_set_active,
798         hildon_find_toolbar_set_active_iter, hildon_find_toolbar_get_active, 
799         hildon_find_toolbar_get_active_iter . They correspond to respective
800         GtkComboBox functions. 
801
802         * examples/Makefile.am:
803         * examples/hildon-find-toolbar-example.c: Adding the example to test the
804         new functionality.
805
806 2007-07-23  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
807
808         * examples/Makefile.am:
809         * examples/hildon-seekbar-example.c: Adding the seekbar example to check
810         theming easily.
811
812         * src/hildon-font-selection-dialog.c: Fixing the default focus for dialog
813         when font size > 32 and we pack a focusable widget inside. Actually using
814         the default response would work too, but since we don't show default
815         response state in any way (no theming) it would not be visible to the
816         user. Fixes NB#63430.
817
818 2007-07-23  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
819
820         * src/hildon-date-editor.c: Adding the missing variable setter in the
821         set_property handler. Fixes NB#54182.
822
823 2007-07-23  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
824
825         * src/hildon-window.h: Changing the long key press time from 1500ms to
826         800ms as requested in NB#63700. I have a bad feeling about this, let's
827         see... Fixes NB#63700.
828
829 2007-07-12  Tommi Komulainen  <tommi.komulainen@nokia.com>
830
831         * src/hildon-time-picker.c (hildon_time_picker_class_init,
832         hildon_time_picker_map, hildon_time_picker_realize,
833         hildon_time_picker_style_set): Split the contents of map to more
834         appropriate functions; set window decorations on realize and update
835         arrows' size requisitions on style-set. Avoids unnecessary resizing.
836
837 2007-07-02  Xan Lopez <xan.lopez@nokia.com>
838
839         [1.0.10-2 release]
840
841         * NEWS:
842         * debian/changelog: Updating.
843
844 2007-07-02  Johan Bilien  <johan.bilien@nokia.com>
845
846         * src/Makefile.am: fixed installation of the header files
847
848 2007-06-29  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
849
850         [1.0.10-1 release]
851
852         * NEWS:
853         * configure.ac:
854         * debian/changelog: Updating.
855
856 2007-06-27  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
857
858         * configure.ac: Removing some remaining of --enable-xan.
859
860 2007-06-26  Xan Lopez  <xan.lopez@nokia.com>
861
862         * src/hildon-date-editor.c: (hildon_date_editor_keypress):
863         * src/hildon-time-editor.c: (hildon_time_editor_entry_keypress):
864
865         Move all focus crazyness to the rc files. This depends on gtk+2.0 >=
866         2.10.12-osso6 because the move-focus signal needs to be available in
867         GtkWidget.
868
869 2007-06-25  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
870
871         * examples/Makefile.am:
872         * examples/hildon-hvolumebar-insensitive-map-example.c: Adding an example
873         that makes a HildonVolumebar insensitive before mapping it. Seems to work
874         fine. Prolly NB#61128 is fixed now.
875
876 2007-06-19  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
877
878         * src/hildon-volumebar.c:
879         * src/hildon-volumebar.h: Adding the
880         hildon_volumebar_set_range_insensitive_message and
881         hildon_volumebar_set_range_insensitive_messagef functions to set
882         insensitive message on the slider of the volumebar. Fixes NB#61129.
883
884         * examples/Makefile.am:
885         * examples/hildon-hvolumebar-insensitive-example.c: Adding an example to
886         test the new insensitive messsage functionality on HildonVolumebar.
887
888 2007-06-14  Xan Lopez  <xan.lopez@nokia.com>
889
890         * src/hildon-private.c (hildon_private_composite_focus): make the focus handler
891         work again.
892
893 2007-06-13  Xan Lopez  <xan.lopez@nokia.com>
894
895         * src/hildon-bread-crumb-trail.c (hildon_bread_crumb_trail_clear): workaround
896         http://bugzilla.gnome.org/show_bug.cgi?id=56070 hiding and showing the back
897         button on after clearing the trail.
898
899 2007-06-13  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
900
901         * src/hildon-code-dialog.c: Removing the separator from the dialog.
902
903 2007-06-12  Xan Lopez  <xan.lopez@nokia.com>
904
905         * src/Makefile.am: remove circular dependency in hildon-enum-types.h creation
906         by splitting the installed headers in generated and non-generated groups. Use
907         only the non-generated headers to create the hildon-enum-types.h file.
908
909         * src/hildon-seekbar.h: gtkscale.h already includes gtkrange.h.
910
911 2007-06-12  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
912
913         * src/hildon-window.c: Hide the window before performing the destroy.
914         Should make the app closing a little tiny bit more snappy. 
915
916 2007-06-12  Xan Lopez  <xan.lopez@nokia.com>
917
918         * src/hildon-seekbar.c: add gtkrange.h header
919         * src/hildon-caption.c: remove unused variable
920
921 2007-06-08  Tommi Komulainen  <tommi.komulainen@nokia.com>
922
923         * configure.ac: Remove dysfunctional AC_ARG_ENABLE. Pointed out by
924         Loic Minier.
925
926 2007-06-07  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
927
928         [1.0.9-1 release]
929
930         * NEWS:
931         * configure.ac:
932         * debian/changelog: Updating.
933
934 2007-06-07  Tommi Komulainen  <tommi.komulainen@nokia.com>
935
936         * src/hildon-window.c (hildon_window_window_state_event,
937         hildon_window_is_topmost_notify, hildon_window_class_init): Stop the
938         escape timeout on focus-out-event rather than notify::is-topmost; the
939         latter doesn't get called when menus pop up. Fixes: NB#52946, MB#1101
940
941 2007-06-07  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
942
943         * src/hildon-window.c: Adding a patch from Tommi Komulainen to pass the
944         correct timestamp and button to gtk_menu_popup. Fixes MB#1466. 
945
946 2007-06-07  Xan Lopez  <xan.lopez@nokia.com>
947
948         * src/hildon-window: actually, you need to use the macro always, there's
949         no private pointer in the instance structure. We should have cleaned this up
950         when we had the chance...
951         
952 2007-06-07  Xan Lopez  <xan.lopez@nokia.com>
953
954         * src/hildon-window.c: do not get the private date from HildonWindow before
955         it passes the g_return_if_fail check. Once it's passed the test, there's no
956         need to g_assert that it exists. Do not create a HildonWindowPrivate variable
957         if you are only going to access the data once. Whitespace cleanups.
958
959 2007-06-04  Xan Lopez  <xan.lopez@nokia.com>
960
961         * src/hildon-bread-crumb-trail.c: set children visible before allocation.
962         * src/hildon-bread-crumb-widget.c: set xalign to 0.0 for labels.
963
964 2007-06-01  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
965
966         [1.0.8-1 release]
967
968         * NEWS:
969         * configure.ac:
970         * debian/changelog: Updating.
971
972 2007-06-01  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
973
974         * src/hildon-window.c: When destroying the window, remove (if exists) the
975         escape timeout handler. Fixes #NB59276.
976
977 2007-06-01  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
978
979         * src/hildon-banner.c: When realizing the widget, set the window
980         transiency. Setting the transiency in the gobject constructor is not
981         good, as the widget is not realized at that point. Fixes: #NB56624.
982
983 2007-05-30  Xan Lopez  <xan.lopez@nokia.com>
984
985         * src/hildon-bread-crumb-trail.h (struct _HildonBreadCrumbTrailClass):
986         Add padding for future expansions.
987
988 2007-05-30  Xan Lopez  <xan.lopez@nokia.com>
989
990         * src/hildon-bread-crumb-trail.c (hildon_bread_crumb_trail_class_init):
991         Add a new signal "move-parent", bind Escape and BackSpace to it. The handler
992         will fake an activation on the previous to the last item of the trail, so
993         the effect can be overrided by the developer as usual.
994         Also change the callback for the back button to do the same thing, so its
995         effect can be overrided too. Fixes: NB#58982
996
997 2007-05-30  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
998
999         * src/hildon-caption.c: Implementing the proper focus grabbing in the
1000         HildonCaption. Fixes NB#52379. 
1001
1002 2007-05-30  Xan Lopez  <xan.lopez@nokia.com>
1003
1004         * src/hildon-bread-crumb-trail.c (crumb_activated_cb): be very paranoid about
1005         the internal state of the trail after the user has had the chance of executing
1006         his handler for the signal. Specifically, it may happen that the activated button
1007         is removed and the user still lets the default handler run. This would segfault
1008         previously.
1009
1010 2007-05-28  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1011
1012         * src/hildon-font-selection-dialog.c: When the font is really big, add the
1013         scrollbar to the preview dialog. Fixes NB#54147.
1014
1015 2007-05-28  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1016
1017         * src/hildon-date-editor.c: Changing the default max year to 2037. The
1018         max/min year properties can be altered, so the client can modify it
1019         anyways. 1970 - 2037 sounds like a sane default. Fixes NB#54147.
1020
1021 2007-05-28  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1022
1023         * src/hildon-calendar.c: Removing the unused 'hildonlike' property, making
1024         hildonlike by default. Fixing a problem with disappearing arrows when
1025         scrolling through months and years. Fixes NB#54127. 
1026
1027 2007-05-28  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1028
1029         * examples/hildon-date-editor-example.c: Adding error callback to the date
1030         editor example. 
1031
1032 2007-05-25  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1033
1034         [1.0.7-1 release]
1035
1036         * NEWS:
1037         * debian/changelog:
1038         * configure.ac: Updating.
1039
1040 2007-05-24  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1041
1042         * configure.ac: Adding a special '--enable-xan' configure option that
1043         turns off the -Werror compilation setting. Usefull for development.
1044
1045         * src/hildon-calendar.c:
1046         * src/hildon-number-editor.c:
1047         * src/hildon-time-picker.c: Adding the 5* multiplier to
1048         gtk-timeout-update.
1049
1050 2007-05-24  Xan Lopez  <xan.lopez@nokia.com>
1051
1052         * src/hildon-note.c (hildon_note_init): Use g_object_ref_sink
1053         instead of g_object_ref + gtk_object_sink.
1054
1055 2007-05-22  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1056
1057         [1.0.6-1 release]
1058
1059         * NEWS:
1060         * configure.ac:
1061         * debian/changelog: Updating.
1062
1063 2007-05-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1064
1065         * src/hildon-color-chooser-dialog.c:
1066         * src/hildon-color-chooser.c: A few more GdkColor struct allocation fixes
1067         straight from Tommi labs.
1068
1069 2007-05-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1070
1071         * examples/hildon-finger-example.c: Correcting the header file path.
1072
1073         * src/hildon-color-chooser-dialog.c: Allocate the color on the stack for 
1074         the changed signal. Fixes a small memory leak.
1075
1076 2007-05-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1077
1078         * autogen.sh:
1079         * debian/rules:
1080         * src/hildon-banner.c: Importing several usefull fixes from the
1081         ubuntu-mobile branch.
1082
1083 2007-05-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1084
1085         * examples/Makefile.am:
1086         * examples/hildon-finger-example.c: Adding a finger-checking code
1087         example. 
1088
1089         * src/hildon-font-selection-dialog.c: Do not allocate the color
1090         structure using the g_new. Fixes NB#54061.
1091
1092 2007-05-09  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1093
1094         * src/hildon-helper.c: Correcting tabs in file.
1095
1096 2007-05-08  Xan Lopez  <xan.lopez@nokia.com>
1097
1098         * src/hildon-bread-crumb-trail.c: Use set_child_visible only to
1099         control the visibility of the children.
1100
1101         * examples/hildon-bread-crumb-trail-example.c: Plug leak.
1102
1103 2007-05-07  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1104
1105         [1.0.5-1 release]
1106
1107         * NEWS:
1108         * configure.ac:
1109         * debian/changelog: Updating.
1110
1111 2007-05-04  Xan Lopez  <xan.lopez@nokia.com>
1112
1113         * src/hildon-bread-crumb-trail.c:
1114         (hildon_bread_crumb_trail_size_allocate): 
1115
1116         Make the back button always a square.
1117
1118 2007-05-04  Xan Lopez  <xan.lopez@nokia.com>
1119
1120         * src/hildon-bread-crumb-trail.h: Include hildon-bread-crumb-widget.h
1121         from the .c file as it's a private file. 
1122
1123 2007-05-03  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1124
1125         * examples/hildon-vvolumebar-example.c: The VVolumebar example now
1126         uses slightly bigger height.
1127
1128         * src/hildon-font-selection-dialog.c: Adding some checks before
1129         freeing memory in the font selection dialog.
1130
1131 2007-05-02  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1132
1133         * src/hildon-font-selection-dialog.c: Adding a small check when
1134         freeing memory. 
1135
1136         * src/hildon-wizard-dialog.c: Applying a patch by Iain Holmes to fix
1137         buttons sensitivity on page switching.
1138
1139 2007-04-27  Xan Lopez  <xan.lopez@nokia.com>
1140
1141         * src/hildon-bread-crumb-trail.c: make the add method handle all the
1142         internal details of adding a bread crumb to the trail.
1143
1144 2007-04-26  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1145
1146         [1.0.4-1 release]
1147
1148         * README:
1149         * configure.ac:
1150         * debian/changelog: Updating.
1151
1152         * src/hildon-bread-crumb-trail.h:
1153         * src/hildon-bread-crumb.h: Changing the API guard to
1154         HILDON_ENABLE_UNSTABLE_API.
1155
1156 2007-04-26  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1157
1158         [1.0.3-1 release]
1159
1160         * NEWS:
1161         * configure.ac:
1162         * debian/changelog:
1163         * debian/rules:
1164         * src/hildon-helper.h: Updating.
1165
1166 2007-04-25  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1167
1168         [1.0.2-1 release]
1169
1170         * NEWS:
1171         * configure.ac:
1172         * debian/changelog:
1173
1174 2007-04-25  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1175
1176         * README:
1177         * configure.ac:
1178         * src/hildon-helper.h: Small fix to make the package actually compile.
1179
1180 2007-04-25  Xan Lopez  <xan.lopez@nokia.com>
1181
1182         * src/hildon-bread-crumb-trail.h:
1183         * src/hildon-bread-crumb.h:
1184
1185         Guard with ENABLE_UNSTABLE_API. To use the bread crumb you'll need
1186         to define ENABLE_UNSTABLE_API in the code that includes these headers.
1187         
1188 2007-04-25  Xan Lopez  <xan.lopez@nokia.com>
1189         
1190         * examples/hildon-bread-crumb-trail-example.c:
1191         * src/Makefile.am:
1192         * src/hildon-bread-crumb-trail.c:
1193         * src/hildon-bread-crumb-trail.h:
1194         * src/hildon-bread-crumb.c:
1195         * src/hildon-bread-crumb.h:
1196         * src/hildon-marshalers.list:
1197         * src/hildon-bread-crumb-widget.c:
1198         * src/hildon-bread-crumb-widget.h:
1199
1200         Slight change in the widget design. The bread crumb trail API is
1201         unchanged, but HildonBreadCrumb is now an interface. A *private*
1202         implementation, hildon-bread-crumb-widget, is provided and used
1203         internally by the trail for the push_text/push_icon functions.
1204
1205         The generic push API is still available, so anyone can implement
1206         and use its own bread crumb widget.
1207         
1208 2007-04-19  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1209
1210         * debian/rules: Fixing the shlibs.
1211
1212 2007-04-19  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1213
1214         * src/hildon-banner.c: Fixing a problem with timed banners having
1215         their parrent destroyed before they are.
1216
1217 2007-04-17  Xan Lopez  <xan.lopez@nokia.com>
1218
1219         * src/hildon-bread-crumb.c:
1220         * src/hildon-bread-crumb.h:
1221
1222         Make the get_natural_size function a vfunc.
1223
1224 2007-04-16  Xan Lopez  <xan.lopez@nokia.com>
1225
1226         * src/hildon-bread-crumb.c:
1227         * src/hildon-bread-crumb-trail.c:
1228
1229         Some cleanups.
1230
1231 2007-04-16  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1232
1233         [1.0.1-1 release]
1234
1235         * AUTHORS:
1236         * NEWS:
1237         * configure.ac:
1238         * debian/changelog: Updating for release.
1239
1240 2007-04-16  Xan Lopez  <xan.lopez@nokia.com>
1241
1242         * src/hildon-bread-crumb.c (hildon_bread_crumb_get_natural_size):
1243         don't leak the pango layout.
1244
1245 2007-04-16  Xan Lopez  <xan.lopez@nokia.com>
1246
1247         * src/hildon.h:
1248         * examples/hildon-bread-crumb-trail-example.c:
1249
1250         Fix example.
1251
1252 2007-04-16  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1253
1254         * debian/changelog: Removing the bug-fixed entries that were actually
1255         resolved as WONTFIX.
1256
1257         * src/hildon-date-editor.c: Removing a redundant check. Fixes
1258         NB#54182.
1259
1260 2007-04-13  Xan Lopez  <xan.lopez@nokia.com>
1261
1262         * src/hildon-bread-crumb-trail.c:
1263         * src/hildon-bread-crumb-trail.h:
1264         * src/hildon-bread-crumb.c:
1265         * src/hildon-bread-crumb.h:
1266
1267         Untabify.
1268         
1269 2007-04-13  Xan Lopez  <xan.lopez@nokia.com>
1270
1271         * src/hildon-bread-crumb-trail.c: don't use the priv data of bct
1272         until it's passed the type check.
1273
1274 2007-04-12  Xan Lopez  <xan.lopez@nokia.com>
1275
1276         * examples/hildon-bread-crumb-trail-example.c
1277
1278         Add license.
1279         
1280 2007-04-12  Xan Lopez  <xan.lopez@nokia.com>
1281
1282         * examples/Makefile.am
1283         * examples/hildon-bread-crumb-trail-example.c
1284         * src/Makefile.am
1285         * src/hildon-bread-crumb-trail.c
1286         * src/hildon-bread-crumb-trail.h
1287         * src/hildon-bread-crumb.c
1288         * src/hildon-bread-crumb.h
1289
1290         New HildonBreadCrumbTrail widget.
1291
1292 2007-04-02  Lucas Rocha  <lucas.rocha@nokia.com>
1293
1294         * src/hildon-range-editor.c (hildon_range_editor_init),
1295         src/hildon-seekbar.c (hildon_seekbar_get_fraction,
1296         hildon_seekbar_set_fraction, hildon_seekbar_set_position),
1297         src/hildon-time-editor.c (hildon_time_editor_tap_and_hold_setup,
1298         hildon_time_editor_class_init, hildon_time_editor_init),
1299         src/hildon-get-password-dialog.c (invalid_input,
1300         hildon_get_password_set_property, hildon_get_password_get_property,
1301         create_contents, hildon_get_password_dialog_set_max_characters),
1302         src/hildon-set-password-dialog.c (create_contents),
1303         src/hildon-date-editor.c (hildon_date_editor_init),
1304         src/hildon-login-dialog.c (hildon_login_dialog_init),
1305         src/hildon-number-editor.c (hildon_number_editor_init),
1306         src/hildon-find-toolbar.c (hildon_find_toolbar_emit_invalid_input,
1307         hildon_find_toolbar_emit_close, hildon_find_toolbar_init): made all
1308         the Maemo GTK+ specific API optional by adding a --with-maemo-gtk
1309          configure option and adding the respective checks in the code.
1310         * src/hildon-calendar.c (hildon_calendar_paint_week_numbers,
1311         hildon_calendar_drag_data_received): fixed some build warnings.
1312
1313 2007-03-29  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1314
1315         * debian/changelog: A 1.0.0 release notes.
1316