]> Pileus Git - ~andy/gtk/blobdiff - ChangeLog
Doc fixes
[~andy/gtk] / ChangeLog
index 40972e5eddb76beac21511ad45c9fb063b75d063..e24c7fd5de97de328b79b7486a0fb1800a4f5b2b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,152 @@
+2008-12-28  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkprintsettings.c:
+       * gtk/gtkbindings.c:
+       * gtk/gtkstyle.c: Doc fixes
+
+2008-12-28  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkscrolledwindow.c: 
+       * gtk/gtkscale.c: Merge docs inline.
+
+2008-12-28  Ryan Lortie  <desrt@desrt.ca>
+
+       small fix for "Paned Window Widgets" example
+
+       * docs/tutorial/gtk-tut.sgml: use gtk_container_add rather than
+       add_with_viewport for putting a GtkTreeView into a ScrolledWindow
+
+       Spotted by Benjamin Herrenschmidt
+
+2008-12-28  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkimmodule.c:
+       * gtk/gtkseparatortoolitem.c: Doc fixes
+
+       * gtk/gtkfontsel.c:
+       * gtk/gtkeditable.c: Merge docs inline.
+
+2008-12-28  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkhsv.c:
+       * gtk/gtkwidget.c: 
+       * gtk/gtkaccelgroup.c: Documentation fixes
+
+       * gtk/gtkstatusicon.c:
+       * gtk/gtkentry.c:
+       * gtk/gtkeditable.[hc]: Make parameter names match to make gtk-doc
+       happy.
+
+2008-12-27  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkentry.c: Expand the docs some more.
+
+2008-12-26  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkentry.c: Don't emit ::icon-pressed on nonactivatable
+       icons. Fix up docs to match actual api.
+
+       * tests/testentryicons.c: Reshuffle tests a bit. Add a DND test.
+
+2008-12-26  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkentry.c: Fix interaction between icons and widget sensitivity.
+       Also fix a few typos.
+
+       * tests/testentryicons.c: Add property editors.
+       * tests/Makefile.am: Glue
+
+2008-12-26  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkentry.c: Allow builtin icons when loading themed icons,
+       and don't leak a GtkIconInfo.
+
+2008-12-26  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkentry.c: Emit ::icon-pressed regardless which button was
+       pressed. Also make it explicit in the signal signature that the
+       position parameter is a GtkEntryIconPosition.
+
+2008-12-26  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkentry.c: Emit property notification for the text-length
+       property.
+
+2008-12-26  Matthias Clasen  <mclasen@redhat.com>
+
+       * demos/gtk-demo/search_entry.c: Add a demo for new entry features.
+       * demos/gtk-demo/Makefile.am: Glue
+
+2008-12-25  Matthias Clasen  <mclasen@redhat.com>
+
+       * gdk/gdkapplaunchcontext.c:
+       * gdk/gdkkeys.c:
+       * gdk/x11/gdkdnd-x11.c:
+       * gdk/x11/gdkkeyx-x11.c:
+       * gdk/x11/gdktestutils-x11.c: Typo fixes and other small
+       doc improvements.
+
+2008-12-23  Li Yuan  <li.yuan@sun.com>
+
+       * gtk/gtkiconview.c: (gtk_icon_view_accessible_model_row_changed):
+       Bug #549251. No need to set name if there is no a11y item object.
+
+2008-12-21  Yair Hershkovitz  <yairhr@gmail.com>
+
+       Bug 565203: RTL locales: icons are misplaced when horizontal 
+                   gtkiconview is contained in a gtkscrolledwindow.
+
+       * gtk/gtkiconview.c (gtk_icon_view_layout_single_row):
+       Fix horizontal icon positions when in RTL locale.
+
+2008-12-19  Matthias Clasen  <mclasen@redhat.com>
+
+       * NEWS: Update
+
+2008-12-19  Matthias Clasen  <mclasen@redhat.com>
+
+       Bug 564881 – gtkstatusicon.c: 'event' bug again
+
+       * gtk/gtkstatusicon.c (button_callback): Fix the build.
+       Patch by Christian Dywan.
+
+2008-12-19  Cody Russell  <bratsche@gnome.org>
+
+       Bug 85292 – add an icon to gtkentry
+
+       * gtk/gtkmarshalers.list: Add VOID:INT,BOXED
+       * tests/testentryicons.c: Initial icon entry test
+       * tests/Makefile.am: Add testentryicons
+       * gtk/gtkentry.[ch]: Add API for setting primary/secondary icons
+       and other features related to them.
+       
+2008-12-19  Marek Kasik  <mkasik@redhat.com>
+
+       Bug 339318 - Allow page rendering to (optionally) happen in a thread
+
+       * gtk/gtk.symbols: API change
+       * doc/reference/gtk/gtk-sections.txt: API change
+       * gtk/gtkprintoperation-private.h
+       * gtk/gtkprintoperation.h
+       * gtk/gtkprintoperation.c: Adds 2 new functions
+          gtk_print_operation_set_defer_drawing()
+            - Sets up the GtkPrintOperation to wait for calling of
+              gtk_print_operation_draw_page_finish() from application. It can
+              be used for drawing page in another thread.
+              This function must be called in the callback of "draw-page"
+              signal.
+          gtk_print_operation_draw_page_finish()
+            - Signalize that drawing of particular page is complete.
+              It is called after completion of page drawing (e.g. drawing
+              in another thread).
+              If gtk_print_operation_set_defer_drawing() was called before,
+              then this function has to be called by application. In another
+              case it is called by the library itself.
+
+2008-12-15  Matthias Clasen  <mclasen@redhat.com>
+
+        * gtk/gtkprintunixdialog.c: Don't export emit_ok_response
+
 2008-12-15  Tomas Bzatek  <tbzatek@redhat.com>
 
        * gtk/gtkfilechooserdefault.c: (list_row_activated):