]> Pileus Git - ~andy/gtk/blob - gdk/gdkapplaunchcontext.h
gdk/gdkinternals.h #include <gio/gio.h> instead of individual files.
[~andy/gtk] / gdk / gdkapplaunchcontext.h
1 /* gdkapplaunchcontext.h - Gtk+ implementation for GAppLaunchContext
2
3    Copyright (C) 2007 Red Hat, Inc.
4
5    The Gnome Library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Library General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
10    The Gnome Library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Library General Public License for more details.
14
15    You should have received a copy of the GNU Library General Public
16    License along with the Gnome Library; see the file COPYING.LIB.  If not,
17    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18    Boston, MA 02111-1307, USA.
19
20    Author: Alexander Larsson <alexl@redhat.com>
21 */
22
23 #ifndef __GDK_APP_LAUNCH_CONTEXT_H__
24 #define __GDK_APP_LAUNCH_CONTEXT_H__
25
26 #include <glib.h>
27 #include <gio/gio.h>
28 #include <gdk/gdkdisplay.h>
29
30 G_BEGIN_DECLS
31
32 #define GDK_TYPE_APP_LAUNCH_CONTEXT         (gdk_app_launch_context_get_type ())
33 #define GDK_APP_LAUNCH_CONTEXT(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), GDK_TYPE_APP_LAUNCH_CONTEXT, GdkAppLaunchContext))
34 #define GDK_APP_LAUNCH_CONTEXT_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), GDK_TYPE_APP_LAUNCH_CONTEXT, GdkAppLaunchContextClass))
35 #define GDK_IS_APP_LAUNCH_CONTEXT(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), GDGDK_TYPE_APP_LAUNCH_CONTEXT))
36 #define GDK_IS_APP_LAUNCH_CONTEXT_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), GDK_TYPE_APP_LAUNCH_CONTEXT))
37 #define GDK_APP_LAUNCH_CONTEXT_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GDK_TYPE_APP_LAUNCH_CONTEXT, GdkAppLaunchContextClass))
38
39 typedef struct GdkAppLaunchContext            GdkAppLaunchContext;
40 typedef struct GdkAppLaunchContextClass       GdkAppLaunchContextClass;
41 typedef struct GdkAppLaunchContextPrivate     GdkAppLaunchContextPrivate;
42
43 struct GdkAppLaunchContext
44 {
45         GAppLaunchContext parent_instance;
46         
47         GdkAppLaunchContextPrivate *priv;
48 };
49
50 struct GdkAppLaunchContextClass 
51 {
52         GAppLaunchContextClass parent_class;
53 };
54
55 GType gdk_app_launch_context_get_type (void);
56
57 GdkAppLaunchContext *gdk_app_launch_context_new           (void);
58 void                 gdk_app_launch_context_set_display   (GdkAppLaunchContext *context,
59                                                            GdkDisplay          *display);
60 void                 gdk_app_launch_context_set_screen    (GdkAppLaunchContext *context,
61                                                            GdkScreen           *screen);
62 void                 gdk_app_launch_context_set_desktop   (GdkAppLaunchContext *context,
63                                                            gint                 desktop);
64 void                 gdk_app_launch_context_set_timestamp (GdkAppLaunchContext *context,
65                                                            guint32              timestamp);
66 void                 gdk_app_launch_context_set_icon      (GdkAppLaunchContext *context,
67                                                            GIcon               *icon);
68 void                 gdk_app_launch_context_set_icon_name (GdkAppLaunchContext *context,
69                                                            const char          *icon_name);
70
71 G_END_DECLS
72
73 #endif /* __GDK_APP_LAUNCH_CONTEXT_H__ */
74
75