starting with GUI

anonymous anonymous at example.com
Tue Apr 30 10:20:10 PDT 2013


On Tuesday, 30 April 2013 at 17:03:07 UTC, Carlos wrote:
> I;m trying to add a Entry but I get the following error:
>
> "mywindow.d(12): Error: undefined identifier Entry"
>
> Here is my code :
>
> "window.add(new Entry("Minsit"));"
>
> I'm just guessing to see if everything is that simple. So I 
> have to define the Entry. How do I do that ? ( Any tutorials 
> from the web are welcome )
>
[...]
>
> This is the code I compiled with GTKD :
> "
> import gtk.MainWindow;
> import gtk.Label;
> import gtk.Main;
>
> void main (string[] args)
> {
> Main.init(args);
> auto window = new MainWindow("My Window");
> window.show();
> window.setDefaultSize(200, 100);
> window.add(new Label("Hello!"));
> window.showAll();
> Main.run;
> }
> "
>
> So basicly what I'm missing is a good way on learning to use 
> this GTKD but for the moment I only want to define a Entry.
> THank you for your time.

A wild guess: import gtk.Entry;


More information about the Digitalmars-d-learn mailing list