digitalmars.D.learn - Recommended GUI library?
- K.K. (14/14) Oct 17 2014 I'm looking for suggestions for a GUI library, to create a
- Jeremy DeHaan (4/4) Oct 17 2014 I highly recommend gtkD.
- K.K. (3/7) Oct 17 2014 ooo looks pretty good. I'll go try it out;
- Gary Willoughby (3/18) Oct 17 2014 If you want something small and simple you could try this:
- Jacob Carlborg (6/9) Oct 18 2014 Have a look at DWT [1]. It's basically the only D GUI framework that
- K.K. (1/1) Oct 18 2014 Thanks for the extra suggestions! I'll check them out.
I'm looking for suggestions for a GUI library, to create a somewhat light GUI that can also be created without too much fuss, and support for Windows & Linux. The GUI I'm looking to make would be one that is just one window, with support for tabs (just like the ones in the properties page for items on Windows), and support for opening up file browsing (just normal system one is good). Then pretty much each of the tabs are just gonna be for setting up info to send to a bunch of smaller programs. Ive used Tcl/Tk with Python before, and I briefly tried out a D version, with choppy results. So what library would anyone suggest for what I'm looking to do, or which library have you taken a liking to? Thanks, for any suggestions!
Oct 17 2014
I highly recommend gtkD. It works on Windows, OSX, and Linux and provides a very nice OO interface to Gtk+. http://gtkd.org/
Oct 17 2014
On Friday, 17 October 2014 at 16:41:21 UTC, Jeremy DeHaan wrote:I highly recommend gtkD. It works on Windows, OSX, and Linux and provides a very nice OO interface to Gtk+. http://gtkd.org/ooo looks pretty good. I'll go try it out; Thanks, Jeremy!
Oct 17 2014
On Friday, 17 October 2014 at 16:34:04 UTC, K.K. wrote:I'm looking for suggestions for a GUI library, to create a somewhat light GUI that can also be created without too much fuss, and support for Windows & Linux. The GUI I'm looking to make would be one that is just one window, with support for tabs (just like the ones in the properties page for items on Windows), and support for opening up file browsing (just normal system one is good). Then pretty much each of the tabs are just gonna be for setting up info to send to a bunch of smaller programs. Ive used Tcl/Tk with Python before, and I briefly tried out a D version, with choppy results. So what library would anyone suggest for what I'm looking to do, or which library have you taken a liking to? Thanks, for any suggestions!If you want something small and simple you could try this: https://github.com/nomad-software/tkd
Oct 17 2014
On 2014-10-17 18:34, K.K. wrote:I'm looking for suggestions for a GUI library, to create a somewhat light GUI that can also be created without too much fuss, and support for Windows & Linux.Have a look at DWT [1]. It's basically the only D GUI framework that doesn't have any dependencies except for system libraries. [1] https://github.com/d-widget-toolkit/dwt -- /Jacob Carlborg
Oct 18 2014
Thanks for the extra suggestions! I'll check them out.
Oct 18 2014