Re: [julia-users] Tk (Cairo) Canvas not scrollable?

2015-09-02 Thread Jameson Nash
The Canvas object is not a proper Tk object since Tk doesn't support Cairo-based rendering and isn't very friendly to being extended. Switching to a more flexible framework like Gtk should help here. On Tue, Sep 1, 2015 at 2:17 PM Dömötör Gulyás wrote: > I'm trying to

[julia-users] Tk (Cairo) Canvas not scrollable?

2015-09-01 Thread Dömötör Gulyás
I'm trying to build a scrollable Cario canvas in a Tk GUI, but I keep getting "TclError("unknown option -xscrollcommand")" trying to add the scrollbars, apparently the canvas is a frame ("winfo class" returns "Frame"), which is not scrollable. Is there a way to add scrollbars to a Cairo

[julia-users] Tk (Cairo) Canvas not scrollable?

2015-09-01 Thread j verzani
Maybe add a sized Canvas into a TkCanvas and add scroll bars to the latter?