comparison dwtx/jface/text/contentassist/ContentAssistant.d @ 147:000f9136b8f7

final
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 22:35:05 +0200
parents 75302ef3f92f
children f70d9508c95c
comparison
equal deleted inserted replaced
146:75302ef3f92f 147:000f9136b8f7
115 /** 115 /**
116 * Content assist command identifier for 'select next proposal'. 116 * Content assist command identifier for 'select next proposal'.
117 * 117 *
118 * @since 3.4 118 * @since 3.4
119 */ 119 */
120 public static final String SELECT_NEXT_PROPOSAL_COMMAND_ID= "dwtx.ui.edit.text.contentAssist.selectNextProposal"; //$NON-NLS-1$ 120 public static const String SELECT_NEXT_PROPOSAL_COMMAND_ID= "dwtx.ui.edit.text.contentAssist.selectNextProposal"; //$NON-NLS-1$
121 /** 121 /**
122 * Content assist command identifier for 'select previous proposal'. 122 * Content assist command identifier for 'select previous proposal'.
123 * 123 *
124 * @since 3.4 124 * @since 3.4
125 */ 125 */
126 public static final String SELECT_PREVIOUS_PROPOSAL_COMMAND_ID= "dwtx.ui.edit.text.contentAssist.selectPreviousProposal"; //$NON-NLS-1$ 126 public static const String SELECT_PREVIOUS_PROPOSAL_COMMAND_ID= "dwtx.ui.edit.text.contentAssist.selectPreviousProposal"; //$NON-NLS-1$
127 127
128 128
129 /** 129 /**
130 * A generic closer class used to monitor various interface events in order to determine whether 130 * A generic closer class used to monitor various interface events in order to determine whether
131 * content-assist should be terminated and all associated windows closed. 131 * content-assist should be terminated and all associated windows closed.
869 /** 869 /**
870 * Dialog store constants. 870 * Dialog store constants.
871 * 871 *
872 * @since 3.0 872 * @since 3.0
873 */ 873 */
874 public static final String STORE_SIZE_X= "size.x"; //$NON-NLS-1$ 874 public static const String STORE_SIZE_X= "size.x"; //$NON-NLS-1$
875 public static final String STORE_SIZE_Y= "size.y"; //$NON-NLS-1$ 875 public static const String STORE_SIZE_Y= "size.y"; //$NON-NLS-1$
876 876
877 // Content-Assist Listener types 877 // Content-Assist Listener types
878 final static int CONTEXT_SELECTOR= 0; 878 final static int CONTEXT_SELECTOR= 0;
879 final static int PROPOSAL_SELECTOR= 1; 879 final static int PROPOSAL_SELECTOR= 1;
880 final static int CONTEXT_INFO_POPUP= 2; 880 final static int CONTEXT_INFO_POPUP= 2;
883 * The popup priority: &gt; linked position proposals and hover pop-ups. Default value: 883 * The popup priority: &gt; linked position proposals and hover pop-ups. Default value:
884 * <code>20</code>; 884 * <code>20</code>;
885 * 885 *
886 * @since 3.0 886 * @since 3.0
887 */ 887 */
888 public static final int WIDGET_PRIORITY= 20; 888 public static const int WIDGET_PRIORITY= 20;
889 889
890 private static final int DEFAULT_AUTO_ACTIVATION_DELAY= 500; 890 private static const int DEFAULT_AUTO_ACTIVATION_DELAY= 500;
891 891
892 private IInformationControlCreator fInformationControlCreator; 892 private IInformationControlCreator fInformationControlCreator;
893 private int fAutoActivationDelay= DEFAULT_AUTO_ACTIVATION_DELAY; 893 private int fAutoActivationDelay= DEFAULT_AUTO_ACTIVATION_DELAY;
894 private bool fIsAutoActivated= false; 894 private bool fIsAutoActivated= false;
895 private bool fIsAutoInserting= false; 895 private bool fIsAutoInserting= false;