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