comparison dynamin/gui/file_dialog.d @ 14:e6e201c3a439

Remove ANSI functions from Windows binding and convert inner tabs to spaces in 4 files. Big spacing cleanup in Windows binding.
author Jordan Miner <jminer7@gmail.com>
date Sat, 18 Jul 2009 02:35:24 -0500
parents 4029d5af7542
children 836a064828e8
comparison
equal deleted inserted replaced
13:a3a2aa21fc52 14:e6e201c3a439
113 * Gets or sets whether more than one file can be selected. 113 * Gets or sets whether more than one file can be selected.
114 * The default is true for an OpenFileDialog and false for SaveFileDialog. 114 * The default is true for an OpenFileDialog and false for SaveFileDialog.
115 */ 115 */
116 bool multipleSelection() { return _multipleSelection; } 116 bool multipleSelection() { return _multipleSelection; }
117 /// ditto 117 /// ditto
118 void multipleSelection(bool b) { _multipleSelection = b; } 118 void multipleSelection(bool b) { _multipleSelection = b; }
119 119
120 /// Gets or sets the text that is displayed in the dialog's title bar. 120 /// Gets or sets the text that is displayed in the dialog's title bar.
121 string text() { return _text; } 121 string text() { return _text; }
122 /// ditto 122 /// ditto
123 void text(string str) { _text = str; } 123 void text(string str) { _text = str; }