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
|
-----------------------------------------------------------------------
-- GtkAda - Ada95 binding for the Gimp Toolkit --
-- --
-- Copyright (C) 1998-2000 --
-- Emmanuel Briot, Joel Brobecker and Arnaud Charlet --
-- Copyright (C) 2001-2013, AdaCore --
-- --
-- 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 Gtk.Table; use Gtk.Table;
with Gtk.Enums; use Gtk.Enums;
with Gtk.Frame; use Gtk.Frame;
with Gtk.Label; use Gtk.Label;
package body Create_Frame is
----------
-- Help --
----------
function Help return String is
begin
return "This demo shows the different kinds of shadows that are"
& " available for frames, as well as the positions that the label"
& " of the frame can have."
& ASCII.LF
& "Note that the label must be displayed at the top of the frame"
& " and can not be displayed elsewhere."
& ASCII.LF
& "If you want to constrained the child to a specific aspect ratio"
& " even when the frame is resized, you should look at the"
& " @bGtk_Aspect_Frame@B widget instead.";
end Help;
---------
-- Run --
---------
procedure Run (Frame : access Gtk.Frame.Gtk_Frame_Record'Class) is
Table : Gtk_Table;
Label : Gtk_Label;
Frame2 : Gtk_Frame;
begin
Gtk.Frame.Set_Label (Frame, "Frames");
Gtk_New (Table, Rows => 3, Columns => 2, Homogeneous => True);
Set_Row_Spacings (Table, Spacing => 5);
Set_Col_Spacings (Table, Spacing => 5);
Set_Border_Width (Table, Border_Width => 10);
Add (Frame, Table);
-- First frame
Gtk_New (Frame2, "");
Set_Shadow_Type (Frame2, Gtk.Enums.Shadow_In);
Attach_Defaults (Table, Frame2, 0, 1, 0, 1);
Gtk_New (Label, "Shadow_In");
Add (Frame2, Label);
-- Second Frame
Gtk_New (Frame2, "");
Set_Shadow_Type (Frame2, Gtk.Enums.Shadow_Out);
Attach_Defaults (Table, Frame2, 1, 2, 0, 1);
Gtk_New (Label, "Shadow_Out");
Add (Frame2, Label);
-- Third Frame
Gtk_New (Frame2, "");
Set_Shadow_Type (Frame2, Gtk.Enums.Shadow_Etched_In);
Attach_Defaults (Table, Frame2, 0, 1, 1, 2);
Gtk_New (Label, "Shadow_Etched_In");
Add (Frame2, Label);
-- Fourth Frame
Gtk_New (Frame2, "");
Set_Shadow_Type (Frame2, Gtk.Enums.Shadow_Etched_Out);
Attach_Defaults (Table, Frame2, 1, 2, 1, 2);
Gtk_New (Label, "Shadow_Etched_Out");
Add (Frame2, Label);
-- Fifth Frame
Gtk_New (Frame2, "Title");
Set_Label_Align (Frame2, Xalign => 0.2, Yalign => 0.0);
Attach_Defaults (Table, Frame2, 0, 1, 2, 3);
Gtk_New (Label, "Label_Align: Xalign = 0.2");
Add (Frame2, Label);
-- Sixth Frame
Gtk_New (Frame2, "Title");
Set_Label_Align (Frame2, Xalign => 0.8, Yalign => 0.0);
Attach_Defaults (Table, Frame2, 1, 2, 2, 3);
Gtk_New (Label, "Label_Align: Xalign = 0.8");
Add (Frame2, Label);
Show_All (Frame);
end Run;
end Create_Frame;
|