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