~ubuntu-branches/ubuntu/intrepid/libgtkada2/intrepid

« back to all changes in this revision

Viewing changes to src/gtk-clipboard.ads

  • Committer: Bazaar Package Importer
  • Author(s): Ludovic Brenta
  • Date: 2008-07-31 18:10:47 UTC
  • mfrom: (1.1.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 7.
  • Revision ID: james.westby@ubuntu.com-20080731181047-6m1y25zjad0p2yjr
Tags: 2.12.0-2

Correct the project files to add a Library_ALI_Dir and correct the
Library_Name.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
-----------------------------------------------------------------------
2
2
--               GtkAda - Ada95 binding for Gtk+/Gnome               --
3
3
--                                                                   --
 
4
--                 Copyright (C) 2002-2007, AdaCore                  --
4
5
--                                                                   --
5
6
-- This library is free software; you can redistribute it and/or     --
6
7
-- modify it under the terms of the GNU General Public               --
111
111
   --  selection to what the user sees as the clipboard.
112
112
   --
113
113
   --  (Passing Gdk_None is the same as using Atom_Intern ("CLIPBOARD", False).
114
 
   --  See http://www.freedesktop.org/standards/clipboards.txt for a
 
114
   --  See http://standards.freedesktop.org/clipboards-spec/ for a
115
115
   --  detailed discussion of the "CLIPBOARD" vs. "PRIMARY" selections under
116
116
   --  the X window system. On Win32 the Selection_Primary clipboard is
117
117
   --  essentially ignored.)
142
142
   procedure Store (Clipboard : Gtk_Clipboard);
143
143
   --  Stores the current clipboard data somewhere so that it will stay
144
144
   --  around after the application has quit.
 
145
   --  See also Gdk.Display.Supports_Clipboard_Persistence and
 
146
   --  Gdk.Display.Store_Clipboard.
145
147
 
146
148
   function Get_Owner (Clipboard : Gtk_Clipboard) return Glib.Object.GObject;
147
149
   --  If the clipboard contents callbacks were set with Set_With_Owner, and
363
365
   --
364
366
   --  </signals>
365
367
 
366
 
   Signal_Owner_Change : constant String := "owner_change";
 
368
   Signal_Owner_Change : constant Glib.Signal_Name := "owner_change";
367
369
 
368
370
private
369
371
   pragma Import (C, Get_Type,          "gtk_clipboard_get_type");