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
|
//
// Sample program demostrating using Cairo with Gtk#
//
using Gtk;
using Gdk;
using System;
using Cairo;
class X {
static DrawingArea a, b;
static void Main ()
{
Application.Init ();
Gtk.Window w = new Gtk.Window ("Hello");
a = new DrawingArea ();
a.ExposeEvent += new ExposeEventHandler (LineExposeHandler);
b = new DrawingArea ();
b.ExposeEvent += new ExposeEventHandler (CirclesExposeHandler);
b.SizeAllocated += new SizeAllocatedHandler (SizeAllocatedHandler);
Box box = new HBox (true, 0);
//box.Add (a);
box.Add (b);
w.Add (box);
w.ShowAll ();
Application.Run ();
}
static void LineExposeHandler (object obj, ExposeEventArgs args)
{
int offx, offy;
using (Cairo.Graphics o = GtkCairo.GraphicsFromWindow (args.Event.Window, out offx, out offy)){
o.SetRGBColor (1, 0, 0);
o.Translate (-offx, -offy);
o.MoveTo (0, 0);
o.LineTo (100, 100);
o.Stroke ();
}
}
static Rectangle rect;
static void SizeAllocatedHandler (object obj, SizeAllocatedArgs args)
{
rect = args.Allocation;
}
static void CirclesExposeHandler (object obj, ExposeEventArgs args)
{
Rectangle area = args.Event.Area;
Gdk.Window window = args.Event.Window;
Pixmap p = new Pixmap (window, area.Width, area.Height, -1);
int x, y;
//Cairo.Object o = p.CairoGraphics ();
using (Cairo.Graphics o = GtkCairo.GraphicsFromWindow (window, out x, out y))
{
o.Translate (-area.X, -area.Y);
DrawCircles (o, rect);
//using (Gdk.GC gc = new Gdk.GC (window)){
//window.DrawDrawable (gc, p, 0, 0, area.x, area.y, area.height, area.width);
//}
}
}
static void DrawCircles (Cairo.Graphics o, Gdk.Rectangle rect)
{
FillChecks (o, rect);
}
const int CS = 32;
static void FillChecks (Cairo.Graphics o, Gdk.Rectangle rect)
{
Surface check;
// Draw the check
o.Save ();
using (check = Surface.CreateSimilar (o.TargetSurface, Format.RGB24, 2 * CS, 2 * CS)){
#if true
o.Save ();
check.Repeat = 1;
o.TargetSurface = check;
o.Operator = Operator.Src;
o.SetRGBColor (0.4, 0.4, 0.4);
// Clear the background
o.Rectangle (0, 0, 2*CS, 2*CS);
o.Fill ();
o.SetRGBColor (0.7, 0.7, 0.7);
o.Rectangle (0, CS, CS, CS *2);
o.Fill ();
o.Rectangle (CS, 0, CS*2, CS);
o.Fill ();
o.Restore ();
// Fill the surface with the check
//o.SetPattern (check);
o.Rectangle (0, 0, rect.Width, rect.Height);
o.Fill ();
#endif
}
o.Restore ();
o.SetRGBColor (1, 0, 0);
o.Alpha = 0.5;
Console.WriteLine (rect);
o.MoveTo (0, 0);
o.LineTo (rect.Width, rect.Height);
o.Stroke ();
}
}
|