File: common.adb

package info (click to toggle)
libgtkada2 2.4.0-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 18,400 kB
  • ctags: 4,705
  • sloc: ada: 90,819; ansic: 32,798; perl: 4,017; sh: 2,747; makefile: 1,023
file content (194 lines) | stat: -rw-r--r-- 7,505 bytes parent folder | download
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
-----------------------------------------------------------------------
--          GtkAda - Ada95 binding for the Gimp Toolkit              --
--                                                                   --
--                     Copyright (C) 1998-1999                       --
--        Emmanuel Briot, Joel Brobecker and Arnaud Charlet          --
--                     Copyright (C) 2003 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.                                       --
--                                                                   --
-- As a special exception, if other files instantiate generics from  --
-- this unit, or you link this unit with other files to produce an   --
-- executable, this  unit  does not  by itself cause  the resulting  --
-- executable to be covered by the GNU General Public License. This  --
-- exception does not however invalidate any other reasons why the   --
-- executable file  might be covered by the  GNU Public License.     --
-----------------------------------------------------------------------

with Gtk.Menu;             use Gtk.Menu;
with Gtk.Radio_Menu_Item;  use Gtk.Radio_Menu_Item;
with Gtk.Widget;           use Gtk.Widget;
with Gtk.Enums;            use Gtk.Enums;
with Gtk.Extra.Plot;       use Gtk.Extra.Plot;
with Gdk.Color;            use Gdk.Color;

with Ada.Strings.Fixed;

package body Common is

   -------------------------
   --  Build_Option_Menu  --
   -------------------------

   procedure Build_Option_Menu
     (Omenu   : out Gtk.Option_Menu.Gtk_Option_Menu;
      Gr      : in out Widget_Slist.GSlist;
      Items   : Chars_Ptr_Array;
      History : Gint;
      Cb      : Widget_Handler.Marshallers.Void_Marshaller.Handler)

   is
      Menu      : Gtk_Menu;
      Menu_Item : Gtk_Radio_Menu_Item;

   begin
      Gtk.Option_Menu.Gtk_New (OMenu);
      Gtk_New (Menu);

      for I in Items'Range loop
         Gtk_New (Menu_Item, Gr, ICS.Value (Items (I)));
         Widget_Handler.Object_Connect (Menu_Item, "activate",
                                        Widget_Handler.To_Marshaller (Cb),
                                        Slot_Object => Menu_Item);
         Gr := Get_Group (Menu_Item);
         Append (Menu, Menu_Item);
         if Gint (I) = History then
            Set_Active (Menu_Item, True);
         end if;
         Show (Menu_Item);
      end loop;
      Gtk.Option_Menu.Set_Menu (Omenu, Menu);
      Gtk.Option_Menu.Set_History (Omenu, Gint (History));
   end Build_Option_Menu;


   --------------------
   -- Destroy_Window --
   --------------------

   procedure Destroy_Window (Win : access Gtk.Window.Gtk_Window_Record'Class;
                             Ptr : in Gtk_Window_Access) is
      pragma Warnings (Off, Win);
   begin
      Ptr.all := null;
   end Destroy_Window;

   --------------------
   -- Destroy_Dialog --
   --------------------

   procedure Destroy_Dialog (Win : access Gtk.Dialog.Gtk_Dialog_Record'Class;
                             Ptr : in Gtk_Dialog_Access) is
      pragma Warnings (Off, Win);
   begin
      Ptr.all := null;
   end Destroy_Dialog;

   --------------
   -- Image_Of --
   --------------

   function Image_Of (I : in Gint) return String is
   begin
      return Ada.Strings.Fixed.Trim (Gint'Image (I), Ada.Strings.Left);
   end Image_Of;

   ---------------------------------
   -- Set_Default_Plot_Attributes --
   ---------------------------------

   procedure Set_Default_Plot_Attributes
     (Plot : access Gtk_Plot_Record'Class) is
   begin
      Legends_Set_Attributes
        (Plot, "Helvetica", 6,
         Black (Get_Default_Colormap), White (Get_Default_Colormap));
      Axis_Set_Labels_Attributes
        (Plot, Axis_Top,
         Font          => "Helvetica",
         Height        => 4,
         Angle         => Angle_0,
         Foreground    => Black (Get_Default_Colormap),
         Background    => White (Get_Default_Colormap),
         Transparent   => True,
         Justification => Justify_Left);
      Axis_Set_Labels_Attributes
        (Plot, Axis_Bottom,
         Font          => "Helvetica",
         Height        => 4,
         Angle         => Angle_0,
         Foreground    => Black (Get_Default_Colormap),
         Background    => White (Get_Default_Colormap),
         Transparent   => True,
         Justification => Justify_Left);
      Axis_Set_Labels_Attributes
        (Plot, Axis_Left,
         Font          => "Helvetica",
         Height        => 4,
         Angle         => Angle_90,
         Foreground    => Black (Get_Default_Colormap),
         Background    => White (Get_Default_Colormap),
         Transparent   => True,
         Justification => Justify_Left);
      Axis_Set_Labels_Attributes
        (Plot, Axis_Right,
         Font          => "Helvetica",
         Height        => 4,
         Angle         => Angle_90,
         Foreground    => Black (Get_Default_Colormap),
         Background    => White (Get_Default_Colormap),
         Transparent   => True,
         Justification => Justify_Left);

      Axis_Title_Set_Attributes
        (Plot, Axis_Top,
         Font          => "Helvetica",
         Height        => 6,
         Angle         => Angle_0,
         Foreground    => Black (Get_Default_Colormap),
         Background    => White (Get_Default_Colormap),
         Transparent   => True,
         Justification => Justify_Left);
      Axis_Title_Set_Attributes
        (Plot, Axis_Bottom,
         Font          => "Helvetica",
         Height        => 6,
         Angle         => Angle_0,
         Foreground    => Black (Get_Default_Colormap),
         Background    => White (Get_Default_Colormap),
         Transparent   => True,
         Justification => Justify_Left);
      Axis_Title_Set_Attributes
        (Plot, Axis_Left,
         Font          => "Helvetica",
         Height        => 6,
         Angle         => Angle_90,
         Foreground    => Black (Get_Default_Colormap),
         Background    => White (Get_Default_Colormap),
         Transparent   => True,
         Justification => Justify_Left);
      Axis_Title_Set_Attributes
        (Plot, Axis_Right,
         Font          => "Helvetica",
         Height        => 6,
         Angle         => Angle_90,
         Foreground    => Black (Get_Default_Colormap),
         Background    => White (Get_Default_Colormap),
         Transparent   => True,
         Justification => Justify_Left);
   end Set_Default_Plot_Attributes;

end Common;