Changeset 5:1de00968e454
- Timestamp:
- 02/11/08 17:28:15 (4 years ago)
- Files:
-
- dsss.conf (modified) (1 diff)
- dwtexamples/controlexample/ControlExample.d (modified) (3 diffs)
- dwtexamples/controlexample/RangeTab.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dsss.conf
r4 r5 29 29 buildflags+=-g -gc -debug 30 30 version(Windows){ 31 buildflags+= -L/SUBSYSTEM: windows:531 buildflags+= -L/SUBSYSTEM:console:5 32 32 buildflags+= -L/RC:sample.res 33 33 } dwtexamples/controlexample/ControlExample.d
r4 r5 77 77 void main(){ 78 78 Stdout.formatln( "The ControlExample: still work left" ); 79 Stdout.formatln( "todo: search for //PORTING_LEFT" );80 79 Stdout.formatln( "todo: Implement Get/Set API reflection" ); 81 80 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){ 82 94 Stdout.formatln( "todo: ExpandBarTab looks strange" ); 83 Stdout.formatln( "" );84 95 Stdout.formatln( "On linux GTK:" ); 85 96 Stdout.formatln( "bug: ProgressBarTab crash on vertical" ); … … 91 102 Stdout.formatln( " http://bugzilla.gnome.org/show_bug.cgi?id=475909" ); 92 103 Stdout.formatln( "" ); 104 } 93 105 Stdout.formatln( "please report problems" ); 94 106 ControlExample.main( null ); … … 164 176 new ListTab (this), 165 177 new MenuTab (this), 166 //new ProgressBarTab (this), // crash on start178 new ProgressBarTab (this), 167 179 new SashTab (this), 168 //new ScaleTab (this), // crash on start180 new ScaleTab (this), 169 181 shellTab = new ShellTab(this), 170 //new SliderTab (this), // crash on start171 //new SpinnerTab (this), // crash on start182 new SliderTab (this), 183 new SpinnerTab (this), 172 184 new TabFolderTab (this), 173 185 new TableTab (this), dwtexamples/controlexample/RangeTab.d
r0 r5 1 /*******************************************************************************1 /******************************************************************************* 2 2 * Copyright (c) 2000, 2007 IBM Corporation and others. 3 3 * All rights reserved. This program and the accompanying materials
