comparison dwt/browser/WindowEvent.d @ 346:2e591eb01162

Browser Package now compiles (phase 2 complete)
author John Reimer <terminal.node@gmail.com>
date Wed, 29 Oct 2008 20:06:08 -0700
parents 3f4a5c7d138f
children
comparison
equal deleted inserted replaced
345:5abc6f7f7a95 346:2e591eb01162
9 * IBM Corporation - initial API and implementation 9 * IBM Corporation - initial API and implementation
10 * Port to the D programming language: 10 * Port to the D programming language:
11 * John Reimer <terminal.node@gmail.com> 11 * John Reimer <terminal.node@gmail.com>
12 *******************************************************************************/ 12 *******************************************************************************/
13 module dwt.browser.WindowEvent; 13 module dwt.browser.WindowEvent;
14
15 import tango.text.convert.Format;
14 16
15 import dwt.dwthelper.utils; 17 import dwt.dwthelper.utils;
16 18
17 import dwt.events.TypedEvent; 19 import dwt.events.TypedEvent;
18 import dwt.graphics.Point; 20 import dwt.graphics.Point;
199 * 201 *
200 * @return a string representation of the event 202 * @return a string representation of the event
201 */ 203 */
202 204
203 public String toString() { 205 public String toString() {
204 return Format( "{} {required = {}, browser = {}, location = {}, size = {}, addressbar = {}, menubar = {}, statusbar = {}, toobar = {}}", 206 return Format( "{} {required = {}, browser = {}, location = {}, size = {}, addressbar = {}, menubar = {}, statusbar = {}, toolbar = {}}",
205 super.toString[1 .. $-2], 207 super.toString[1 .. $-2],
206 required, browser, 208 required, browser,
207 location, size, addressbar, 209 location, size, addressBar,
208 menubar, statusbar, toolbar ); 210 menuBar, statusBar, toolBar );
209 } 211 }
210 } 212 }