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