summaryrefslogtreecommitdiff
path: root/gio/src/menuitem.ccg
Commit message (Collapse)AuthorAgeFilesLines
* Update the Free Software Foundation address in copyright noticesKjell Ahlstedt2017-08-301-2/+1
| | | | Bug 786824
* Remove deprecated API.Murray Cumming2016-11-141-8/+0
|
* Run clang-format on the .ccg files.Murray Cumming2016-02-261-15/+18
| | | | This seems to work.
* Fix the build with --disable-deprecated-apiKjell Ahlstedt2015-12-051-0/+2
| | | | | | | | | | | | | | | | * examples/thread/threadpool.cc: If --disable-deprecated-api, just print a message and exit. * gio/src/<several>.hg: Add _CONFIGINCLUDE(giommconfig.h). * gio/src/menuitem.ccg: Add a missing _DEPRECATE_IFDEF_START/_END pair. * glib/glibmm/sarray.h: * glib/glibmm/threadpool.[cc|h]: #include <glibmmconfig.h> before ifndef GLIBMM_DISABLE_DEPRECATED. * glib/src/filelist.am: Remove glibmm_files_deprecated_hg. List deprecated files in glibmm_files_any_hg. The config file must be included before #ifndef xxx_DISABLE_DEPRECATED both in the .h file and in the .cc file, or else deprecated API is not properly disabled by --disable-deprecated-api.
* Gio: Use of nullptr instead of 0.Murray Cumming2015-11-201-5/+5
|
* C++11: Use nullptr.Murray Cumming2015-07-161-1/+1
|
* Gio::MenuItem: Add set_action(), unset_target() and unset_action_and_target().Murray Cumming2013-10-081-0/+18
| | | | | * gio/src/menuitem.[hg|ccg]: set_action() and unset_target() replace set_action_and_target(action), which is now deprecated.
* MenuItem: Reimplement the constructors.Murray Cumming2013-07-311-0/+25
| | | | | | | * gio/src/menuitem.[hg|ccg]: Because GMenuItem (and GMenu) do not have any properties and have actual code in their *_new() C convenience functions. Bug #705199 (Pete Woods)
* Gio::MenuItem: Add set/unset_icon().Murray Cumming2013-07-311-0/+5
|
* Strip trailing whitespace.Mark Vender2012-10-291-1/+1
| | | | | | | * gio/giomm/*.[h|cc]: * gio/src/*.[hg|ccg]: * glib/glibmm/*.[h|cc]: * glib/src/*.[hg|ccg]: Strip trailing whitespace. Bug #681072.
* Gio: MenuItem: set_action_and_target(): Add one without the cariant.Murray Cumming2012-03-221-0/+5
| | | | | | * gio/src/menuitem.[hg|ccg]: set_action_and_target(): Rename to set_action() and add a set_action() with just the action name, because the GVariant* is optional.
* Gio: Add Menu and MenuItem.Murray Cumming2012-03-221-0/+23
* tools/extra_defs_gen/generate_defs_gio.cc: Mention the new GTypes here, though they do not seem to have any properties or signals. * gio/src/filelist.am: * gio/src/menu.[hg|ccg]: * gio/src/menuitem.[hg|ccg]: Add these classes, as a way to create the Gio::MenuModel for Gtk::Application::set_app_menu() and set_menubar(). * tools/m4/convert_gio.m4: Add MenuItem conversion. * gio/giomm.h: Mention the new headers here.