File: pango-context.adb

package info (click to toggle)
libgtkada2 2.14.2-4
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 11,952 kB
  • ctags: 748
  • sloc: ada: 104,059; perl: 4,578; ansic: 4,403; sh: 4,135; makefile: 949; xml: 19
file content (81 lines) | stat: -rw-r--r-- 3,249 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
-----------------------------------------------------------------------
--              GtkAda - Ada95 binding for Gtk+/Gnome                --
--                                                                   --
--                Copyright (C) 2001-2002 ACT-Europe                 --
--                                                                   --
-- This library is free software; you can redistribute it and/or     --
-- modify it under the terms of the GNU General Public               --
-- License as published by the Free Software Foundation; either      --
-- version 2 of the License, or (at your option) any later version.  --
--                                                                   --
-- This library is distributed in the hope that it will be useful,   --
-- but WITHOUT ANY WARRANTY; without even the implied warranty of    --
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU --
-- General Public License for more details.                          --
--                                                                   --
-- You should have received a copy of the GNU General Public         --
-- License along with this library; if not, write to the             --
-- Free Software Foundation, Inc., 59 Temple Place - Suite 330,      --
-- Boston, MA 02111-1307, USA.                                       --
--                                                                   --
-----------------------------------------------------------------------

with Glib;        use Glib;
with Glib.Object; use Glib.Object;
with Pango.Font;  use Pango.Font;
with System;      use System;

package body Pango.Context is

   --------------------------
   -- Get_Font_Description --
   --------------------------

   function Get_Font_Description
     (Context : Pango_Context)
      return Pango.Font.Pango_Font_Description
   is
      function Internal (Context : System.Address)
         return Pango_Font_Description;
      pragma Import
        (C, Internal, "pango_context_get_font_description");
   begin
      return Internal (Get_Object (Context));
   end Get_Font_Description;

   --------------------------
   -- Set_Font_Description --
   --------------------------

   procedure Set_Font_Description
     (Context     : Pango_Context;
      Description : Pango.Font.Pango_Font_Description)
   is
      procedure Internal (Context : System.Address;
                          Description : Pango_Font_Description);
      pragma Import
        (C, Internal, "pango_context_set_font_description");
   begin
      Internal (Get_Object (Context), Description);
   end Set_Font_Description;

   ---------------
   -- Load_Font --
   ---------------

   function Load_Font
     (Context : access Pango_Context_Record'Class;
      Descr   : Pango.Font.Pango_Font_Description)
      return Pango.Font.Pango_Font
   is
      function Internal (Context : System.Address;
                         Descr   : Pango_Font_Description)
         return System.Address;
      pragma Import (C, Internal, "pango_context_load_font");
      Stub : Pango_Font_Record;
   begin
      return Pango_Font
        (Get_User_Data (Internal (Get_Object (Context), Descr), Stub));
   end Load_Font;

end Pango.Context;