Mike> Is it possible to add lined borders to Gtk container widgets such
    Mike> as GtkTable and the Gtk H/V Boxes? (Also other widgets in general
    Mike> but I'm focused on these at the moment)

Sure.  Just enclose them in a frame widget:

    ...
    # Frame to make the canvas "pretty"
    frame = GtkFrame()
    vbox.pack_start(frame)
    frame.show()
    
    # Create canvas.
    self.canvas = GnomeCanvas()
    self.canvas.set_usize(self.width, self.height)
    self.canvas.set_scroll_region(0,0, self.width, self.height)
    frame.add(self.canvas)
    self.canvas.show()
    ...

-- 
Skip Montanaro ([EMAIL PROTECTED])
(847)971-7098
_______________________________________________
pygtk mailing list   [EMAIL PROTECTED]
http://www.daa.com.au/mailman/listinfo/pygtk

Reply via email to