summaryrefslogtreecommitdiff
path: root/gtk/gtkshow.h
Commit message (Collapse)AuthorAgeFilesLines
* Add annotations to gtk headersMatthias Clasen2013-05-051-0/+1
| | | | Add annotations to all exported functions in GTK+ headers.
* Move single-include guards inside include guardsMatthias Clasen2012-12-281-3/+3
| | | | | | gcc has optimizations for include guards that only work if they are outermost in the the header. https://bugzilla.gnome.org/show_bug.cgi?id=689810
* Change FSF AddressJavier Jardón2012-02-271-3/+1
|
* Revert name changeCody Russell2008-07-011-1/+1
| | | | svn path=/trunk/; revision=20724
* Practically everything changed.Cody Russell2008-06-301-1/+1
| | | | | | | | | | | | | 2008-06-30 Cody Russell <bratsche@gnome.org> * Practically everything changed. Change all references of GIMP Toolkit (and variations of it) to GTK+ Toolkit, showing no mercy at all to our beloved ancestry. (#540529) svn path=/trunk/; revision=20709
* gtk/gtkmountoperation.h gtk/gtktestutils.h remove as many includes asMichael Natterer2008-06-231-2/+0
| | | | | | | | | | | | 2008-06-23 Michael Natterer <mitch@imendio.com> * gtk/gtkmountoperation.h * gtk/gtktestutils.h * gtk/gtkshow.[ch]: remove as many includes as possible from these new files. They can't be included individually, so nothing can break. svn path=/trunk/; revision=20673
* gtk/gtkcellrendereraccel.h gtk/gtkfilechooser.h gtk/gtkfilechooserdialog.hMichael Natterer2008-06-131-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2008-06-13 Michael Natterer <mitch@imendio.com> * gtk/gtkcellrendereraccel.h * gtk/gtkfilechooser.h * gtk/gtkfilechooserdialog.h * gtk/gtkfilechooserwidget.h * gtk/gtkmenutoolbutton.h * gtk/gtkpagesetup.h * gtk/gtkpapersize.h * gtk/gtkprintcontext.h * gtk/gtkprintoperation.h * gtk/gtkprintoperationpreview.h * gtk/gtkprintsettings.h * gtk/gtkradiotoolbutton.h * gtk/gtkrecentchooser.h * gtk/gtkrecentchooserdialog.h * gtk/gtkrecentchoosermenu.h * gtk/gtkrecentchooserwidget.h * gtk/gtkseparatortoolitem.h * gtk/gtkshow.h * gtk/gtktoggletoolbutton.h * gtk/gtktoolbar.h * gtk/gtktoolbutton.h * gtk/gtktooltip.h: #include <gtk/gtkfoo.h> instead of "gtk/gtkfoo.h" or even just "gtkfoo.h" in public headers. svn path=/trunk/; revision=20375
* gtk/gtkmountoperation.h gtk/gtkshow.h gtk/gtktestutils.h no need to allowMichael Natterer2008-05-301-1/+1
| | | | | | | | | | | | | | 2008-05-30 Michael Natterer <mitch@imendio.com> * gtk/gtkmountoperation.h * gtk/gtkshow.h * gtk/gtktestutils.h * gtk/gtktoolshell.h: no need to allow disabling single includes conditionally in these new files. Simply forbid including them individually from the beginning. svn path=/trunk/; revision=20255
* define __GTK_H_INSIDE__ around including all other headers.Michael Natterer2008-05-281-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2008-05-28 Michael Natterer <mitch@imendio.com> * gtk/gtk.h: define __GTK_H_INSIDE__ around including all other headers. * gtk/gtktypebuiltins.h.template * gtk/gtkversion.h.in * gtk/gtk*.h: add single-include guards that #error out if GTK_DISABLE_SINGLE_INCLUDES is defined and any of these files is included individually. * gtk/gtkprintbackend.h * gtk/gtkprinter-private.h * gtk/gtktextlayout.h * gtk/gtktexttagprivate.h * gtk/gtktexttypes.h * gtk/gtktreedatalist.h: include <gtk/gtk.h> instead of individual headers in these private or semi-private headers. * gtk/gtkimmodule.h: also here because it's not in gtk.h. * gtk/gtkpagesetupunixdialog.h * gtk/gtkprinter.h * gtk/gtkprintjob.h * gtk/gtkprintunixdialog.h: likewise in the gtkunixprint headers. * gtk/gtkclist.h * gtk/gtkcombo.h * gtk/gtkctree.h * gtk/gtkfilesel.h * gtk/gtkitemfactory.h * gtk/gtklist.h * gtk/gtklistitem.h * gtk/gtkoldeditable.h * gtk/gtkoptionmenu.h * gtk/gtkpixmap.h * gtk/gtkpreview.h * gtk/gtksignal.h * gtk/gtktipsquery.h: whenever possible, include only <gtk/gtk.h> instead of individual headers in these deprecated headers. They don't get included at all when GTK_DISABLE_DEPRECATED is defined, so if an app needs them anyway, it must undef GTK_DISABLE_DEPRECATED and include them individually, which should continue to work. * gtk/gtkclist.c: include "gtkctree.h" because of the change above. svn path=/trunk/; revision=20221
* include "gdk/gdk.h" instead of "gdk/gdkscreen.h"Michael Natterer2008-05-261-8/+6
| | | | | | | | | | | | | 2008-05-26 Michael Natterer <mitch@imendio.com> * gtk/gtkshow.h: include "gdk/gdk.h" instead of "gdk/gdkscreen.h" * gtk/gtkshow.c: remove inclusion of single files from gdk/ Removed trailing whitespace in both files. svn path=/trunk/; revision=20176
* Formatting fixesMatthias Clasen2008-05-261-4/+4
| | | | | | | | | | | 2008-05-26 Matthias Clasen <mclasen@redhat.com> * gtk/gtkshow.[hc]: Formatting fixes * gtk/gtkmountoperation.c: Add docs svn path=/trunk/; revision=20169
* reviewed by: Matthias ClasenJaap A. Haitsma2008-05-251-0/+40
2008-05-25 Jaap A. Haitsma <jaap@haitsma.org> reviewed by: Matthias Clasen * gtk/Makefile.am: * gtk/gtk.h: * gtk/gtk.symbols: * gtk/gtkshow.c: (gtk_show_uri): * gtk/gtkshow.h: Add gtk_show_uri to make showing uris really easy. Fixes bug #514396 svn path=/trunk/; revision=20143