comparison dwtx/jface/text/contentassist/ContentAssistant.d @ 146:75302ef3f92f

final
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 22:34:04 +0200
parents 26688fec6d23
children 000f9136b8f7
comparison
equal deleted inserted replaced
145:02cd5f1224d3 146:75302ef3f92f
283 private Thread fThread; 283 private Thread fThread;
284 private bool fIsReset= false; 284 private bool fIsReset= false;
285 private Object fMutex= new Object(); 285 private Object fMutex= new Object();
286 private int fShowStyle; 286 private int fShowStyle;
287 287
288 private final static int SHOW_PROPOSALS= 1; 288 private const static int SHOW_PROPOSALS= 1;
289 private final static int SHOW_CONTEXT_INFO= 2; 289 private const static int SHOW_CONTEXT_INFO= 2;
290 290
291 protected this() { 291 protected this() {
292 } 292 }
293 293
294 protected void start(int showStyle) { 294 protected void start(int showStyle) {
426 */ 426 */
427 class LayoutManager : Listener { 427 class LayoutManager : Listener {
428 428
429 // Presentation types. 429 // Presentation types.
430 /** The presentation type for the proposal selection popup. */ 430 /** The presentation type for the proposal selection popup. */
431 public final static int LAYOUT_PROPOSAL_SELECTOR= 0; 431 public const static int LAYOUT_PROPOSAL_SELECTOR= 0;
432 /** The presentation type for the context selection popup. */ 432 /** The presentation type for the context selection popup. */
433 public final static int LAYOUT_CONTEXT_SELECTOR= 1; 433 public const static int LAYOUT_CONTEXT_SELECTOR= 1;
434 /** The presentation type for the context information hover . */ 434 /** The presentation type for the context information hover . */
435 public final static int LAYOUT_CONTEXT_INFO_POPUP= 2; 435 public const static int LAYOUT_CONTEXT_INFO_POPUP= 2;
436 436
437 int fContextType= LAYOUT_CONTEXT_SELECTOR; 437 int fContextType= LAYOUT_CONTEXT_SELECTOR;
438 Shell[] fShells= new Shell[3]; 438 Shell[] fShells= new Shell[3];
439 Object[] fPopups= new Object[3]; 439 Object[] fPopups= new Object[3];
440 440