2014-04-14 Murray Cumming 3.12.0 2014-04-14 Murray Cumming 3.10.0 2014-04-09 Murray Cumming Examples: Remove unnecessary final 0 parameter for Box spacing and padding. 0 is already the default. 2014-04-09 Murray Cumming FlowBox example: Use Gtk::manage(). * examples/book/flowbox/examplewindow.[h|cc]: This is simpler than storing the widget pointers and deleting them later. 2014-04-09 Murray Cumming Flowbox example: Avoid a compiler error. 2014-04-09 Juan R. García Blanco Add Gtk::FlowBox book example 2014-04-08 Murray Cumming Update a comment 2014-04-07 Kjell Ahlstedt Use fallback for symbolic icons * examples/book/actionbar/examplewindow.cc: Don't use magic number for icon size. Allow fallback icons when using symbolic icon names. * examples/book/headerbar/examplewindow.cc: * examples/book/popover/examplewindow.cc: * examples/book/searchbar/examplewindow.cc: Allow fallback icons when using symbolic icon names. Some icon themes lack symbolic icons. Bug #723124. 2014-04-06 Kjell Ahlstedt .gitignore: Update after port to yelp-tools 2014-04-05 Juan R. García Blanco Add Gtk::ActionBar book example 2014-04-04 Murray Cumming Port from gnome-doc-utils to yelp-tools. gnome-doc-utils is deprecated in favour of yelp-tools. 2014-04-03 Kjell Ahlstedt Fix the Popover example with --enable-warnings=fatal * examples/book/popover/examplewindow.cc: Swap entries in the constructor's initialization list. The order shall be the same as in the .h file, or else 'make check' fails when --enable-warnings=fatal. 2014-03-24 Kjell Ahlstedt Fix 'make check' with the latest gtkmm version * examples/book/scrolledwindow/examplewindow.[cc|h]: Use Gtk::Dialog::add_button() instead of the deprecated get_action_area(). 2014-02-15 Juan R. García Blanco Small changes to Gtk::Popover book example * Various style fixes. * Replace cairo_rectangle_int_t with Gdk::Rectangle when accessing Popover::pointing-to property. 2014-02-10 Juan R. García Blanco Added Gtk::Popover book example 2014-01-28 Murray Cumming Remove mention of deprecated Range::set_update_policy(). Bug #703147 (Joris) 2014-01-28 Kjell Ahlstedt App_and_win_menus example: Add a menu item that sends a Gio::Notification * examples/book/application/app_and_win_menus/exampleapplication.[h|cc]: Add on_action_print(). Add actions and menu items for a Gio::Notification. * examples/book/application/app_and_win_menus/examplewindow.[h|cc]: Add on_action_send_notification() and on_action_withdraw_notification(). 2013-12-27 Kjell Ahlstedt Fix broken links * docs/tutorial/C/gtkmm-tutorial-in.xml: Fix broken links to live.gnome.org/gtkmm (shall now link to wiki.gnome.org/Projects/gtkmm) and other broken links. 2013-12-23 Dimitris Spingos Updated Greek translation 2013-12-04 Kjell Ahlstedt Drag and Drop chapter: Correct the description of the DnD signals * docs/tutorial/C/gtkmm-tutorial-in.xml: The drag_motion and drag_drop signals are emitted by the destination widget (were listed under the source widget). 2013-12-04 Kjell Ahlstedt ToolPalette example: Skip non-existent and large icons * examples/book/toolpalette/canvas.h: CanvasItem ctor: get label, if no icon name. * examples/book/toolpalette/canvas.cc: Catch Gtk::IconThemeError. * examples/book/toolpalette/examplewindow.cc: Make the ToolPalette look better by skipping large icons and icons that can't be loaded from the current icon theme. * docs/tutorial/C/figures/toolpalette.png: Updated. 2013-11-23 Kjell Ahlstedt SignalIO example: Add Gio::Application::hold() * examples/book/input/main.cc: Add app->hold(). Necessary to keep the application running without a window. 2013-11-22 Daniel Mustieles Updated Spanish translation 2013-11-22 Kjell Ahlstedt Remove stock items and other deprecated API from the tutorial * docs/tutorial/C/gtkmm-tutorial-in.xml: Remove deprecated API, mainly stock items. Many small updates and fixed typos. 2013-11-22 Kjell Ahlstedt EventBox example: Make it possible to clip the label * examples/book/eventbox/examplewindow.cc: Allow ellipsizing the label. Perhaps the only way to clip a label in gtk+ 3. 2013-11-14 Kjell Ahlstedt InfoBar example: Really show the infobar when it shall be shown * examples/book/infobar/examplewindow.cc: Use show_all() instead of show_all_children(). Not sure why this is necessary. I think only show_all() will realize the infobar.