summaryrefslogtreecommitdiff
path: root/gdk/gdkapplaunchcontext.c
Commit message (Collapse)AuthorAgeFilesLines
* docs: fix broken linksBilal Elmoussaoui2021-05-271-1/+1
|
* gdk: Clean up docs syntaxMatthias Clasen2021-05-221-1/+1
| | | | Replace leftover gtk-doc syntax (#Type) with backquotes.
* docs: Reduce redundancyMatthias Clasen2021-05-201-2/+2
| | | | | | | | Remove a boatload of "or %NULL" from nullable parameters and return values. gi-docgen generates suitable text from the annotation that we don't need to duplicate. This adds a few missing nullable annotations too.
* introspection: Stop using allow-noneMatthias Clasen2021-05-201-2/+2
| | | | | allow-none has been deprecated for a long time already. Instead use optional and nullable everywhere.
* applaunchcontext: Add property annotationsMatthias Clasen2021-03-111-1/+6
| | | | Connect properties and getters with annotations.
* docs: Rework the gdk docsMatthias Clasen2021-03-111-29/+25
| | | | Convert links, make things more concise.
* Replace "gchar" with "char"Benjamin Otte2020-07-251-5/+5
|
* Replace "gint" with "int"Benjamin Otte2020-07-251-1/+1
|
* docs: Fix several missing references in the documentationCorentin Noël2020-05-111-1/+1
| | | | This fixes several typos and missing references
* Add missing ownership transfer annotationsEmmanuele Bassi2020-02-261-1/+1
|
* Add a getter for GdkAppLaunchContext::displayMatthias Clasen2020-02-241-7/+23
|
* events: reorganize gettersMatthias Clasen2020-02-211-1/+1
| | | | | | | | | | Restructure the getters for event fields to be more targeted at particular event types. Update all callers, and replace all direct event struct access with getters. As a side-effect, this drops some unused getters.
* The big versioning cleanupMatthias Clasen2018-02-061-8/+0
| | | | | | | Remove all the old 2.x and 3.x version annotations. GTK+ 4 is a new start, and from the perspective of a GTK+ 4 developer all these APIs have been around since the beginning.
* More documentation additionsMatthias Clasen2017-12-261-0/+6
|
* Stop including gdkscreen.hMatthias Clasen2017-11-171-1/+1
| | | | It is not used anymore.
* Drop gdk_app_launch_context_set_screenMatthias Clasen2017-10-301-37/+1
| | | | This function is not necessary, since we already know the display.
* Remove deprecated gdk_app_launch_context_set_displayMatthias Clasen2016-10-251-22/+0
|
* Remove deprecated gdk_app_launch_context_newMatthias Clasen2016-10-251-17/+0
|
* applaunchcontext: Ignore screen nameBenjamin Otte2016-10-161-3/+0
| | | | It's guaranteed to be identical to the display name.
* docs: replace all <examples> with markdown headingsWilliam Jon McCann2014-02-041-3/+3
|
* docs: Use markdown for ulinksWilliam Jon McCann2014-02-041-2/+1
|
* docs: Identify examples that are C codeWilliam Jon McCann2014-01-291-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=723119
* docs: use |[ ]| instead of <programlisting></programlisting>William Jon McCann2014-01-291-4/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=723119
* Change FSF AddressJavier Jardón2012-02-271-3/+1
|
* gdkapplaunchcontext: Add tags to code exampleJavier Jardón2012-01-251-0/+2
|
* Add deprecation guards for deprecated GdkAppLaunchContext APIMatthias Clasen2010-12-241-2/+2
| | | | Also adapt the docs to not use deprecated API.
* Make GdkAppLaunchContext work againMatthias Clasen2010-12-211-0/+50
| | | | | We didn't set the display, ever. Add a construct-only property for this purpose.
* Explode gdkinternals.h into per-class private headersMatthias Clasen2010-12-211-43/+29
| | | | | At the same time, move some more class and instance structs out of public headers.
* Make GdkAppLaunchContext display-dependentMatthias Clasen2010-12-211-32/+49
| | | | | | | | | Add a GdkDisplay::get_app_launch_context vfunc, and a gdk_display_get_app_launch_context that for X11 returns a subclass. For win32 and quartz, the implementations were trivial, so we just return a new GdkAppLaunchContext without subclassing. Since the type of the context now depends on the display, gdk_app_launch_context_set_display is deprecated.
* docs: Move documentation to inline comments: gdkapplaunchcontextJavier Jardón2010-11-161-0/+28
|
* Inclusion cleanups in sourcesMatthias Clasen2010-10-141-0/+1
| | | | Try to do inclusions in the same sequence, more or less.
* gdk/: fully remove gdkalias hacksJavier Jardón2010-07-101-4/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=623845
* [annotations] Add allow-noneJohan Dahlin2010-02-191-2/+2
| | | | | | | | This commit was created using a script that searched for all docstrings containing a parameter and the string 'or %NULL'. Gdk backends and demos excluded as they are not part of a public API https://bugzilla.gnome.org/show_bug.cgi?id=610474
* Typo fixes and small doc improvementsMatthias Clasen2008-12-261-1/+6
| | | | svn path=/trunk/; revision=21929
* reorder functions to be in standard order, add prototypes and namespace toMichael Natterer2008-10-211-38/+52
| | | | | | | | | | | 2008-10-21 Michael Natterer <mitch@imendio.com> * gdk/gdkapplaunchcontext.c: reorder functions to be in standard order, add prototypes and namespace to static functions, add g_return_if_fail()s which were missing all over the place. svn path=/trunk/; revision=21692
* examples/gtkdial/gtkdial.c gdk/gdkapplaunchcontext.c gdk/gdkpango.cMichael Natterer2008-08-121-1/+1
| | | | | | | | | | | | | | | | | | | | | 2008-08-12 Michael Natterer <mitch@imendio.com> * examples/gtkdial/gtkdial.c * gdk/gdkapplaunchcontext.c * gdk/gdkpango.c * gtk/gtkcellrendererpixbuf.c * gtk/gtkcellrenderertext.c * gtk/gtkcellview.c * gtk/gtkcombobox.c * gtk/gtkfontsel.c * gtk/gtkinvisible.c * gtk/gtkliststore.c * gtk/gtktexttag.c * gtk/gtktexttagtable.c: remove dereferencing from some function pointers i missed before. svn path=/trunk/; revision=21089
* Improve docsMatthias Clasen2008-08-021-6/+21
| | | | svn path=/trunk/; revision=20929
* Include "config.h" instead of <config.h> Command used: find -nameJohan Dahlin2008-06-221-1/+1
| | | | | | | | | | | | 2008-06-21 Johan Dahlin <jdahlin@async.com.br> * *.[ch]: Include "config.h" instead of <config.h> Command used: find -name \*.[ch]|xargs perl -p -i -e 's/^#include <config.h>/#include "config.h"/g' Rubberstamped by Mitch and Tim svn path=/trunk/; revision=20669
* Go back to 2.13.0 as version for now, as there was no consensus to do theMatthias Clasen2008-02-151-7/+7
| | | | | | | | | | | | | 2008-02-15 Matthias Clasen <mclasen@redhat.com> * configure.in: Go back to 2.13.0 as version for now, as there was no consensus to do the jump. * many other places: Update Since: tags. svn path=/trunk/; revision=19586
* Remove unneeded includes. (#505411, Kazuki IWAMOTO)Matthias Clasen2007-12-251-3/+0
| | | | | | | | | | | 2007-12-24 Matthias Clasen <mclasen@redhat.com> * gdk/gdkapplaunchcontext.c: Remove unneeded includes. (#505411, Kazuki IWAMOTO) svn path=/trunk/; revision=19235
* gdk/gdkinternals.h #include <gio/gio.h> instead of individual files.Michael Natterer2007-12-141-2/+0
| | | | | | | | | | | | | | | 2007-12-14 Michael Natterer <mitch@imendio.com> * gdk/gdkinternals.h * gdk/gdkapplaunchcontext.h: #include <gio/gio.h> instead of individual files. * gdk/gdkapplaunchcontext.c * gdk/x11/gdkapplaunchcontext-x11.c: remove all gio includes, the header already includes everything now. svn path=/trunk/; revision=19180
* Add docsMatthias Clasen2007-12-131-1/+78
| | | | svn path=/trunk/; revision=19167
* Implement GAppLaunchContext in gdk, providing startup notification.Matthias Clasen2007-12-131-0/+186
2007-12-12 Matthias Clasen <mclasen@redhat.com> * gdk/gdkapplaunchcontext.[hc]: Implement GAppLaunchContext in gdk, providing startup notification. (#503203) * gdk/x11/gdkapplaunchcontext-x11.c: * gdk/win32/gdkapplaunchcontext-win32.c: * gdk/quartz/gdkapplaunchcontext-quartz.c: * gdk/directfb/gdkapplaunchcontext-directfb.c: Backend-specific parts. All but X11 are just empty stubs for now. * gdk/gdk.symbols: * gdk/gdkinternals.h: * gdk/Makefile.am: * gdk/x11/Makefile.am: * gdk/win32/Makefile.am: * gdk/quartz/Makefile.am: * gdk/directfb/Makefile.am: Necessary glue. svn path=/trunk/; revision=19165