Changeset 105:34e9dc2642d5

Show
Ignore:
Timestamp:
01/18/08 13:46:33 (7 months ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

HelloWorld? examples

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • .hgignore

    r4 r105  
    99^dsss.last 
    1010^dsss_imports 
     11^dwtexamples/simple$ 
     12^dwtexamples/helloworld/HelloWorld1$ 
     13^dwtexamples/helloworld/HelloWorld2$ 
     14^dwtexamples/helloworld/HelloWorld3$ 
     15^dwtexamples/helloworld/HelloWorld4$ 
     16^dwtexamples/helloworld/HelloWorld5$ 
    1117 
     18 
     19 
     20 
     21 
  • dsss.conf

    r104 r105  
    3131buildflags+=-g -gc 
    3232 
    33 [dwtexamples/helloworld.d] 
     33[dwtexamples/simple.d] 
    3434[dwtexamples/helloworld/HelloWorld1.d] 
     35[dwtexamples/helloworld/HelloWorld2.d] 
     36[dwtexamples/helloworld/HelloWorld3.d] 
     37[dwtexamples/helloworld/HelloWorld4.d] 
     38[dwtexamples/helloworld/HelloWorld5.d] 
    3539[t.d] 
  • dwt/widgets/Label.d

    r72 r105  
    425425} 
    426426 
     427alias Control.setBounds setBounds; 
    427428int setBounds (int x, int y, int width, int height, bool move, bool resize) { 
    428429    /* 
  • dwtexamples/simple.d

    r104 r105  
    1 module helloworld
     1module dwtexample.simple
    22 
    33import dwt.DWT; 
    44import dwt.widgets.Display; 
    55import dwt.widgets.Shell; 
    6 import dwt.widgets.Composite; 
    76import dwt.widgets.Button; 
    87import dwt.widgets.Text;