using GLib; using Gtk; using Goo; public class Critago.Table : Canvas { CanvasItem root; CanvasRect button; construct { var req = new Requisition (); req.width = 800; req.height = 600; size_request (req); set_bounds (0, 0, 800, 600); root = get_root_item (); button = new CanvasRect (root, 0, 0, 80, 80); } }