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 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
|
-----------------------------------------------------------------------
-- GtkAda - Ada95 binding for the Gimp Toolkit --
-- --
-- Copyright (C) 1998-1999 --
-- Emmanuel Briot, Joel Brobecker and Arnaud Charlet --
-- --
-- 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 Unchecked_Conversion;
with Glib; use Glib;
with Gdk.Cursor; use Gdk.Cursor;
with Gdk.Drawable; use Gdk.Drawable;
with Gdk.Event; use Gdk.Event;
with Gdk.GC; use Gdk.GC;
with Gdk.Window; use Gdk.Window;
with Gtk.Adjustment; use Gtk.Adjustment;
with Gtk.Box; use Gtk.Box;
with Gtk.Drawing_Area; use Gtk.Drawing_Area;
with Gtk.Enums; use Gtk.Enums;
with Gtk.Label; use Gtk.Label;
with Gtk.Handlers; use Gtk.Handlers;
with Gtk.Spin_Button; use Gtk.Spin_Button;
with Gtk.Style; use Gtk.Style;
with Gtk.Widget; use Gtk.Widget;
with Gtk; use Gtk;
with Ada.Text_IO; use Ada.Text_IO;
package body Create_Cursors is
type My_Spin_Button_Record is new Gtk_Spin_Button_Record with record
Label : Gtk_Label;
end record;
type My_Spin_Button is access all My_Spin_Button_Record;
package Spin2_Cb is new Handlers.User_Callback
(My_Spin_Button_Record, Gtk_Drawing_Area);
package Spin3_Cb is new Handlers.User_Return_Callback
(Gtk_Widget_Record, Gint, My_Spin_Button);
package Da_Cb is new Handlers.Return_Callback
(Gtk_Drawing_Area_Record, Gint);
----------
-- Help --
----------
function Help return String is
begin
return "Multiple kind of cursors can be used in your application. Even"
& " though you can define your own pixmaps for cursors, a number of"
& " cursors are predefined."
& ASCII.LF
& "This demo also shows a basic example on how to draw into a"
& " @bGtk_Drawing_Area@B.";
end Help;
-------------------------
-- Cursor_Expose_Event --
-------------------------
function Cursor_Expose_Event (Darea : access Gtk_Drawing_Area_Record'Class)
return Gint
is
Style : constant Gtk_Style := Get_Style (Darea);
Draw : constant Gdk_Drawable := Gdk_Drawable (Get_Window (Darea));
White_GC : constant Gdk_GC := Get_White_GC (Style);
Black_GC : constant Gdk_GC := Get_Black_GC (Style);
Gray_GC : constant Gdk_GC := Get_Bg_GC (Style, State_Normal);
Max_Width : constant Gint := Get_Allocation_Width (Darea);
Max_Height : constant Gint := Get_Allocation_Height (Darea);
begin
Draw_Rectangle (Draw, White_GC, True, 0, 0,
Max_Width, Max_Height / 2);
Draw_Rectangle (Draw, Black_GC, True, 0, Max_Height / 2,
Max_Width, Max_Height / 2);
Draw_Rectangle (Draw, Gray_GC, True, Max_Width / 3,
Max_Height / 3, Max_Width / 3,
Max_Height / 3);
return 0;
end Cursor_Expose_Event;
----------------
-- Set_Cursor --
----------------
procedure Set_Cursor (Spinner : access My_Spin_Button_Record'Class;
Widget : in Gtk_Drawing_Area)
is
pragma Warnings (Off);
function To_Cursor is new Unchecked_Conversion
(Gint, Gdk_Cursor_Type);
pragma Warnings (On);
C : Gint := Get_Value_As_Int (Spinner);
Window : constant Gdk_Window := Get_Window (Widget);
Cursor : Gdk_Cursor := Null_Cursor;
begin
C := C mod 154;
Gdk_New (Cursor, To_Cursor (C));
Set_Cursor (Window, Cursor);
Set_Text (Spinner.Label, Gdk_Cursor_Type'Image (To_Cursor (C)));
-- Note: the cursor pixmap is copied to the server, which keeps it as
-- long at it needs. On the client side, it is possible to delete the
-- cursor right now.
Destroy (Cursor);
end Set_Cursor;
------------------
-- Cursor_Event --
------------------
function Cursor_Event
(Darea : access Gtk_Widget_Record'Class;
Event : Gdk_Event;
Spinner : My_Spin_Button) return Gint
is
pragma Warnings (Off, Darea);
begin
if Get_Button (Event) = 1 then
Spin
(Spinner, Spin_Step_Forward,
Get_Step_Increment (Get_Adjustment (Spinner)));
elsif Get_Button (Event) = 3 then
Spin
(Spinner, Spin_Step_Backward,
Get_Step_Increment (Get_Adjustment (Spinner)));
else
Put_Line ("Unknown button : " & Guint'Image (Get_Button (Event)));
end if;
return 0;
end Cursor_Event;
---------
-- Run --
---------
procedure Run (Frame : access Gtk.Frame.Gtk_Frame_Record'Class) is
Vbox,
Hbox : Gtk_Box;
Label : Gtk_Label;
Adj : Gtk_Adjustment;
Spinner : My_Spin_Button;
Frame2 : Gtk_Frame;
Darea : Gtk_Drawing_Area;
begin
Set_Label (Frame, "Cursors");
Gtk_New_Vbox (Vbox, False, 5);
Set_Border_Width (Vbox, 10);
Add (Frame, Vbox);
Gtk_New_Hbox (Hbox, False, 0);
Set_Border_Width (Hbox, 5);
Pack_Start (Vbox, Hbox, False, False, 0);
Gtk_New (Label, "Cursor Value:");
Set_Alignment (Label, 0.0, 0.5);
Pack_Start (Hbox, Label, False, True, 0);
Gtk_New (Adj, 0.0, 0.0, 152.0, 2.0, 10.0, 0.0);
Spinner := new My_Spin_Button_Record;
Initialize (Spinner, Adj, 0.0, 0);
Pack_Start (Hbox, Spinner, True, True, 0);
Gtk_New (Frame2, "Cursor Area");
Set_Shadow_Type (Frame2, Shadow_Etched_In);
Set_Label_Align (Frame2, 0.5, 0.0);
Set_Border_Width (Frame2, 10);
Pack_Start (Vbox, Frame2);
Gtk_New (Darea);
Set_USize (Darea, 80, 80);
Add (Frame2, Darea);
Da_Cb.Object_Connect
(Darea, "expose_event",
Da_Cb.To_Marshaller (Cursor_Expose_Event'Access),
Darea);
Unrealize (Darea); -- Required for the call to Set_Events
Set_Events (Darea, Exposure_Mask or Button_Press_Mask);
Spin3_Cb.Connect (Darea, "button_press_event",
Spin3_Cb.To_Marshaller (Cursor_Event'Access),
Spinner);
Spin2_Cb.Connect (Spinner, "changed",
Spin2_Cb.To_Marshaller (Set_Cursor'Access),
Darea);
Gtk_New (Spinner.Label, "XXX");
Pack_Start (Vbox, Spinner.Label, False, False, 0);
Show_All (Frame);
end Run;
end Create_Cursors;
|