Simon Krauter

Results 61 comments of Simon Krauter

This is currently not implemented, but would be possible, I think. On Gtk it would use gdk_pixbuf_new_from_stream() instead of gdk_pixbuf_new_from_file(). On Windows it would use GdipCreateBitmapFromStream() instead of GdipCreateBitmapFromFile().

Currently buttons don't support a custom background color or custom drawing through a canvas. As far as I know there is no easy way to implement this.

Oh right. What I said above only applies for a native button. You can use your own button based on the type ``Button``. Then your code is responsible for drawing...

As far as I know, the underlying platforms Gtk and WinAPI do not allow to change the background color of a button (resp. it has no effect). This is something...

Yes. Same issue than #152.

Reordering of widgets is not yet supported other than rebuilding the list. There is no grid layout. You can use multiple horizontal and vertical containers. NiGui is written in Nim...

You're right, good point.

No, so far there is no table view or list view.

@Yardanico I don't like additional complexity and don't see an advantage of using such macros as of now.

You are right, it's not implemented yet. I found this comment: ```nim method `wrap=`(textArea: NativeTextArea, wrap: bool) = procCall textArea.TextArea.`wrap=`(wrap) # TODO: allow to enable/disable word draw at runtime #...