Changeset 5:1de00968e454

Show
Ignore:
Timestamp:
02/11/08 17:28:15 (4 years ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

Added ProgressBarTab?, ScaleTab?, SliderTab?, SpinnerTab? for windows

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dsss.conf

    r4 r5  
    2929buildflags+=-g -gc -debug 
    3030version(Windows){ 
    31     buildflags+= -L/SUBSYSTEM:windows:5 
     31    buildflags+= -L/SUBSYSTEM:console:5 
    3232    buildflags+= -L/RC:sample.res 
    3333} 
  • dwtexamples/controlexample/ControlExample.d

    r4 r5  
    7777    void main(){ 
    7878        Stdout.formatln( "The ControlExample: still work left" ); 
    79         Stdout.formatln( "todo: search for //PORTING_LEFT" ); 
    8079        Stdout.formatln( "todo: Implement Get/Set API reflection" ); 
    8180        Stdout.formatln( "todo: DateTimeTab not implemented" ); 
     81        Stdout.formatln( "" ); 
     82        version(Windows){ 
     83        Stdout.formatln( "On Windows:" ); 
     84        Stdout.formatln( "todo: DialogTab not implemented" ); 
     85        Stdout.formatln( "bug:  Tooltip not working" ); 
     86        Stdout.formatln( "" ); 
     87        Stdout.formatln( "On Win2K:" ); 
     88        Stdout.formatln( "note: Buttons text+image do show only the image" ); 
     89        Stdout.formatln( "        in java it behaves the same" ); 
     90        Stdout.formatln( "        it is not supported on all plattforms" ); 
     91        Stdout.formatln( "" ); 
     92        } 
     93        version(linux){ 
    8294        Stdout.formatln( "todo: ExpandBarTab looks strange" ); 
    83         Stdout.formatln( "" ); 
    8495        Stdout.formatln( "On linux GTK:" ); 
    8596        Stdout.formatln( "bug:  ProgressBarTab crash on vertical" ); 
     
    91102        Stdout.formatln( "        http://bugzilla.gnome.org/show_bug.cgi?id=475909" ); 
    92103        Stdout.formatln( "" ); 
     104        } 
    93105        Stdout.formatln( "please report problems" ); 
    94106        ControlExample.main( null ); 
     
    164176            new ListTab (this), 
    165177            new MenuTab (this), 
    166             //new ProgressBarTab (this), // crash on start 
     178            new ProgressBarTab (this), 
    167179            new SashTab (this), 
    168             //new ScaleTab (this),       // crash on start 
     180            new ScaleTab (this), 
    169181            shellTab = new ShellTab(this), 
    170             //new SliderTab (this),      // crash on start 
    171             //new SpinnerTab (this),     // crash on start 
     182            new SliderTab (this), 
     183            new SpinnerTab (this), 
    172184            new TabFolderTab (this), 
    173185            new TableTab (this), 
  • dwtexamples/controlexample/RangeTab.d

    r0 r5  
    1 /******************************************************************************* 
     1/******************************************************************************* 
    22 * Copyright (c) 2000, 2007 IBM Corporation and others. 
    33 * All rights reserved. This program and the accompanying materials