comparison dwtx/jface/text/source/projection/SourceViewerInformationControl.d @ 133:7d818bd32d63

Fix ctors to this with gvim regexp
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 01:29:22 +0200
parents c4fb132a086c
children 51e6e63f930e
comparison
equal deleted inserted replaced
132:77bd3bb3d7b8 133:7d818bd32d63
100 * @param isResizable <code>true</code> if resizable 100 * @param isResizable <code>true</code> if resizable
101 * @param symbolicFontName the symbolic font name 101 * @param symbolicFontName the symbolic font name
102 * @param statusFieldText the text to be used in the optional status field or <code>null</code> 102 * @param statusFieldText the text to be used in the optional status field or <code>null</code>
103 * if the status field should be hidden 103 * if the status field should be hidden
104 */ 104 */
105 public SourceViewerInformationControl(Shell parent, bool isResizable, String symbolicFontName, String statusFieldText) { 105 public this(Shell parent, bool isResizable, String symbolicFontName, String statusFieldText) {
106 GridLayout layout; 106 GridLayout layout;
107 GridData gd; 107 GridData gd;
108 108
109 int shellStyle= DWT.TOOL | DWT.ON_TOP | (isResizable ? DWT.RESIZE : 0); 109 int shellStyle= DWT.TOOL | DWT.ON_TOP | (isResizable ? DWT.RESIZE : 0);
110 int textStyle= isResizable ? DWT.V_SCROLL | DWT.H_SCROLL : DWT.NONE; 110 int textStyle= isResizable ? DWT.V_SCROLL | DWT.H_SCROLL : DWT.NONE;