]> Pileus Git - ~andy/gtk/blob - gdk/linux-fb/gdkselection-fb.c
applied patch from Andreas Persenius <ndap@swipnet.se> that updates the
[~andy/gtk] / gdk / linux-fb / gdkselection-fb.c
1 /* GDK - The GIMP Drawing Kit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #include <string.h>
28
29 #include "gdkproperty.h"
30 #include "gdkselection.h"
31 #include "gdkprivate.h"
32 #include "gdkprivate-fb.h"
33
34
35 gint
36 gdk_selection_owner_set (GdkWindow *owner,
37                          GdkAtom    selection,
38                          guint32    time,
39                          gint       send_event)
40 {
41   return FALSE;
42 }
43
44 GdkWindow*
45 gdk_selection_owner_get (GdkAtom selection)
46 {
47   return NULL;
48 }
49
50 void
51 gdk_selection_convert (GdkWindow *requestor,
52                        GdkAtom    selection,
53                        GdkAtom    target,
54                        guint32    time)
55 {
56 }
57
58 gint
59 gdk_selection_property_get (GdkWindow  *requestor,
60                             guchar    **data,
61                             GdkAtom    *ret_type,
62                             gint       *ret_format)
63 {
64   g_return_val_if_fail (requestor != NULL, 0);
65   g_return_val_if_fail (GDK_IS_WINDOW (requestor), 0);
66
67   return 0;
68 }
69
70
71 void
72 gdk_selection_send_notify (guint32  requestor,
73                            GdkAtom  selection,
74                            GdkAtom  target,
75                            GdkAtom  property,
76                            guint32  time)
77 {
78 }
79
80 gint
81 gdk_text_property_to_text_list (GdkAtom encoding, gint format, 
82                                 const guchar *text, gint length,
83                                 gchar ***list)
84 {
85   return 0;
86 }
87
88 void
89 gdk_free_text_list (gchar **list)
90 {
91   g_return_if_fail (list != NULL);
92 }
93
94 gint
95 gdk_string_to_compound_text (const gchar *str,
96                              GdkAtom *encoding, gint *format,
97                              guchar **ctext, gint *length)
98 {
99   return 0;
100 }
101
102 void gdk_free_compound_text (guchar *ctext)
103 {
104 }