digitalmars.D.dwt - DWT in Google Summer of Code?
- Mr. Anonymous (4/4) Mar 03 2012 Hello,
- Sandeep Datta (15/20) Mar 03 2012 +1 to that. But I think using using SWT as inspiration for a GUI
- Jesse Phillips (22/29) Mar 07 2012 At this time we shouldn't be creating a GUI from the ground up,
- Tim Keating (14/16) Mar 16 2012 At a cursory glance? The fact that there are numerous library
- Jacob Carlborg (6/19) Mar 17 2012 We're trying to keep to code as close to the original Java code as
- a (3/21) Mar 30 2012 The examples also all use the horrible anonymous class thing. A
- Jacob Carlborg (4/6) Mar 31 2012 You can use delegates as well.
- Jacob Carlborg (4/8) Mar 04 2012 I think it's a great idea.
- Mr. Anonymous (3/11) Mar 04 2012 For beginning, you might want to add it here:
- Jacob Carlborg (5/17) Mar 05 2012 Do you think we should add an entry specific for DWT or an entry for a
- Mr. Anonymous (3/19) Mar 05 2012 In my opinion, an entry for a GUI-library in general, while
Hello, How about improving DWT as part of Google Summer of Code? I thing a stable GUI library is very important for D. What do you think?
Mar 03 2012
I thing a stable GUI library is very important for D.+1 to that. But I think using using SWT as inspiration for a GUI library may not be the best possible choice. I would like to see an API which uses D well. Small things like using properties instead of getters and setters come to the mind first. I haven't looked at the DWT source code but I suspect it may suffer from some of the same short comings as SWT. I have been looking for a good cross platform GUI library but the choices available so far (Qt, wxWidgets, GTK+) all come from the C++ world (where garbage collection is almost absent) thus entangling memory management issues with the GUI API and its architecture in general. I would love to hear some recommendations on terse and powerful GUI libraries even if they are not cross platform. I'd seriously consider contributing to such a project. On Saturday, 3 March 2012 at 19:54:56 UTC, Mr. Anonymous wrote:Hello, How about improving DWT as part of Google Summer of Code? I thing a stable GUI library is very important for D. What do you think?
Mar 03 2012
On Saturday, 3 March 2012 at 21:12:19 UTC, Sandeep Datta wrote:At this time we shouldn't be creating a GUI from the ground up, they do exist (DFL, DUI?). It is however beneficial to have access to a GUI API available in other languages, SWT, GTK, Qt, WX. Now many of these are reaching a state I suppose is considered complete (with exception to be not supporting the latest). Possibly selecting one to build a nice D API on top of would be reasonable. As for SWT, I don't know what you mean by short comings. All GUI toolkits have them, but maybe you mean the API is not D like. Personally the experience I have had with SWT (older DWT) has impressed me. I really enjoyed the design behind it, my favorite so for for toolkits I've used. And it seems JFace is the higher level API, which is great, but I kind of feel that would be a great place to build a D like API over DWT (but having the same JFace API is good for current SWT users). D needs a GUI that is pretty easy to use and really easy to set up. Then we can move to a nice D layer, then once D has gotten a true market it will get native implementations and APIs. And also getting a more complete Entice Designer will also be needed to really hit that larger market.I thing a stable GUI library is very important for D.+1 to that. But I think using using SWT as inspiration for a GUI library may not be the best possible choice. I would like to see an API which uses D well. Small things like using properties instead of getters and setters come to the mind first. I haven't looked at the DWT source code but I suspect it may suffer from some of the same short comings as SWT.
Mar 07 2012
On Wednesday, 7 March 2012 at 17:13:02 UTC, Jesse Phillips wrote:As for SWT, I don't know what you mean by short comings. All GUI toolkits have them, but maybe you mean the API is not D like.At a cursory glance? The fact that there are numerous library classes for interfacing with files, etc. (in base) that duplicate functionality that is in both Phobos & Tango, instead of modifying the libraries to rely on Phobos or Tango. The fact that the packages under base have "java" as their TLD. The fact that the packages for the main widget library seem hopelessly intertwingled with Eclipse. The fact that the library has duplicate code in separate packages per platform, rather than using a canonical D pattern for supporting this, such as "version." These are a few things that jumped out at me in five minutes of browsing the git repo. TK
Mar 16 2012
On 2012-03-16 21:24, Tim Keating wrote:At a cursory glance? The fact that there are numerous library classes for interfacing with files, etc. (in base) that duplicate functionality that is in both Phobos & Tango, instead of modifying the libraries to rely on Phobos or Tango. The fact that the packages under base have "java" as their TLD. The fact that the packages for the main widget library seem hopelessly intertwingled with Eclipse. The fact that the library has duplicate code in separate packages per platform, rather than using a canonical D pattern for supporting this, such as "version." These are a few things that jumped out at me in five minutes of browsing the git repo. TKWe're trying to keep to code as close to the original Java code as possible. This is all due to making it easier to port future versions of SWT. -- /Jacob Carlborg
Mar 17 2012
On Friday, 16 March 2012 at 20:24:52 UTC, Tim Keating wrote:On Wednesday, 7 March 2012 at 17:13:02 UTC, Jesse Phillips wrote:The examples also all use the horrible anonymous class thing. A GUI library really should use delegates for callbacks.As for SWT, I don't know what you mean by short comings. All GUI toolkits have them, but maybe you mean the API is not D like.At a cursory glance? The fact that there are numerous library classes for interfacing with files, etc. (in base) that duplicate functionality that is in both Phobos & Tango, instead of modifying the libraries to rely on Phobos or Tango. The fact that the packages under base have "java" as their TLD. The fact that the packages for the main widget library seem hopelessly intertwingled with Eclipse. The fact that the library has duplicate code in separate packages per platform, rather than using a canonical D pattern for supporting this, such as "version." These are a few things that jumped out at me in five minutes of browsing the git repo. TK
Mar 30 2012
On 2012-03-30 17:51, a wrote:The examples also all use the horrible anonymous class thing. A GUI library really should use delegates for callbacks.You can use delegates as well. -- /Jacob Carlborg
Mar 31 2012
On 2012-03-03 20:54, Mr. Anonymous wrote:Hello, How about improving DWT as part of Google Summer of Code? I thing a stable GUI library is very important for D. What do you think?I think it's a great idea. -- /Jacob Carlborg
Mar 04 2012
On Sunday, 4 March 2012 at 16:31:35 UTC, Jacob Carlborg wrote:On 2012-03-03 20:54, Mr. Anonymous wrote:For beginning, you might want to add it here: http://prowiki.org/wiki4d/wiki.cgi?GSOC_2012_IdeasHello, How about improving DWT as part of Google Summer of Code? I thing a stable GUI library is very important for D. What do you think?I think it's a great idea.
Mar 04 2012
On 2012-03-04 21:46, Mr. Anonymous wrote:On Sunday, 4 March 2012 at 16:31:35 UTC, Jacob Carlborg wrote:Do you think we should add an entry specific for DWT or an entry for a GUI-library in general? -- /Jacob CarlborgOn 2012-03-03 20:54, Mr. Anonymous wrote:For beginning, you might want to add it here: http://prowiki.org/wiki4d/wiki.cgi?GSOC_2012_IdeasHello, How about improving DWT as part of Google Summer of Code? I thing a stable GUI library is very important for D. What do you think?I think it's a great idea.
Mar 05 2012
On Monday, 5 March 2012 at 09:33:53 UTC, Jacob Carlborg wrote:On 2012-03-04 21:46, Mr. Anonymous wrote:In my opinion, an entry for a GUI-library in general, while mentioning DWT as the number one option in the comments.On Sunday, 4 March 2012 at 16:31:35 UTC, Jacob Carlborg wrote:Do you think we should add an entry specific for DWT or an entry for a GUI-library in general?On 2012-03-03 20:54, Mr. Anonymous wrote:For beginning, you might want to add it here: http://prowiki.org/wiki4d/wiki.cgi?GSOC_2012_IdeasHello, How about improving DWT as part of Google Summer of Code? I thing a stable GUI library is very important for D. What do you think?I think it's a great idea.
Mar 05 2012