comparison dwtx/jface/text/IPainter.d @ 159:7926b636c282

...
author Frank Benoit <benoit@tionex.de>
date Wed, 27 Aug 2008 01:57:58 +0200
parents eb21d3dfc767
children
comparison
equal deleted inserted replaced
158:25f1f92fa3df 159:7926b636c282
192 public interface IPainter { 192 public interface IPainter {
193 193
194 /** 194 /**
195 * Constant describing the reason of a repaint request: selection changed. 195 * Constant describing the reason of a repaint request: selection changed.
196 */ 196 */
197 int SELECTION= 0; 197 static const int SELECTION= 0;
198 /** 198 /**
199 * Constant describing the reason of a repaint request: text changed. 199 * Constant describing the reason of a repaint request: text changed.
200 */ 200 */
201 int TEXT_CHANGE= 1; 201 static const int TEXT_CHANGE= 1;
202 /** 202 /**
203 * Constant describing the reason of a repaint request: key pressed. 203 * Constant describing the reason of a repaint request: key pressed.
204 */ 204 */
205 int KEY_STROKE= 2; 205 static const int KEY_STROKE= 2;
206 /** 206 /**
207 * Constant describing the reason of a repaint request: mouse button pressed. 207 * Constant describing the reason of a repaint request: mouse button pressed.
208 */ 208 */
209 int MOUSE_BUTTON= 4; 209 static const int MOUSE_BUTTON= 4;
210 /** 210 /**
211 * Constant describing the reason of a repaint request: paint manager internal change. 211 * Constant describing the reason of a repaint request: paint manager internal change.
212 */ 212 */
213 int INTERNAL= 8; 213 static const int INTERNAL= 8;
214 /** 214 /**
215 * Constant describing the reason of a repaint request: paint manager or painter configuration changed. 215 * Constant describing the reason of a repaint request: paint manager or painter configuration changed.
216 */ 216 */
217 int CONFIGURATION= 16; 217 static const int CONFIGURATION= 16;
218 218
219 219
220 /** 220 /**
221 * Disposes this painter. Prior to disposing, a painter should be deactivated. A disposed 221 * Disposes this painter. Prior to disposing, a painter should be deactivated. A disposed
222 * painter can not be reactivated. 222 * painter can not be reactivated.