Re: How do you use D to launch/open a window?

2016-04-24 Thread Satoshi via Digitalmars-d-learn
On Friday, 22 April 2016 at 21:13:31 UTC, anonymousuer wrote: What code is needed to tell D to open a window? Thank you in advance. You can choose between existing libraries or wrappers for GUI implementation like: DlangUI, Qt, ..., (or my new GUI framework called Rikarin what will be avaiabl

Re: How do you use D to launch/open a window?

2016-04-23 Thread Kagamin via Digitalmars-d-learn
http://wiki.dlang.org/Libraries_and_Frameworks#GUI_Libraries

Re: How do you use D to launch/open a window?

2016-04-23 Thread Jacob Carlborg via Digitalmars-d-learn
On 2016-04-23 08:53, Mike Parker wrote: If you need a complete, cross-platform GUI toolkit, there are D bindings for Gtk (GtkD) and SWT (DWT). Technically DWT is not bindings to SWT. It's the full source completely translated to D. -- /Jacob Carlborg

Re: How do you use D to launch/open a window?

2016-04-23 Thread thedeemon via Digitalmars-d-learn
On Friday, 22 April 2016 at 21:13:31 UTC, anonymousuer wrote: What code is needed to tell D to open a window? Thank you in advance. import dlangui; mixin APP_ENTRY_POINT; extern (C) int UIAppMain(string[] args) { Window window = Platform.instance.createWindow("Window caption", null);

Re: How do you use D to launch/open a window?

2016-04-22 Thread Mike Parker via Digitalmars-d-learn
On Friday, 22 April 2016 at 21:29:29 UTC, anonymousuer wrote: On Friday, 22 April 2016 at 21:26:25 UTC, ciechowoj wrote: On Friday, 22 April 2016 at 21:13:31 UTC, anonymousuer wrote: What code is needed to tell D to open a window? Thank you in advance. Could you specify what kind of window do

Re: How do you use D to launch/open a window?

2016-04-22 Thread rikki cattermole via Digitalmars-d-learn
On 23/04/2016 9:29 AM, anonymousuer wrote: On Friday, 22 April 2016 at 21:26:25 UTC, ciechowoj wrote: On Friday, 22 April 2016 at 21:13:31 UTC, anonymousuer wrote: What code is needed to tell D to open a window? Thank you in advance. Could you specify what kind of window do you need? As in

Re: How do you use D to launch/open a window?

2016-04-22 Thread anonymousuer via Digitalmars-d-learn
On Friday, 22 April 2016 at 21:26:25 UTC, ciechowoj wrote: On Friday, 22 April 2016 at 21:13:31 UTC, anonymousuer wrote: What code is needed to tell D to open a window? Thank you in advance. Could you specify what kind of window do you need? As in a regular Windows window, for example when y

Re: How do you use D to launch/open a window?

2016-04-22 Thread ciechowoj via Digitalmars-d-learn
On Friday, 22 April 2016 at 21:13:31 UTC, anonymousuer wrote: What code is needed to tell D to open a window? Thank you in advance. Could you specify what kind of window do you need?

How do you use D to launch/open a window?

2016-04-22 Thread anonymousuer via Digitalmars-d-learn
What code is needed to tell D to open a window? Thank you in advance.