//----------------------------------------------------------
        //--------------------- CONSTRUCTEURS ----------------------
        //----------------------------------------------------------
        public AutoCompletionEngine(CGEeditor editorParent)
        {
            this.editorParent = editorParent;
            this.Categories = new List<APICategory>();
            this.Items = new List<APIItem>();
            CurrentWord = "";

            methodsImg = XpmConverter.ConvertToXPM(Properties.Resources.pubmethod);
            classesImg = XpmConverter.ConvertToXPM(Properties.Resources.pubclass);
            propsImg = XpmConverter.ConvertToXPM(Properties.Resources.pubproperty);
            fieldsImg = XpmConverter.ConvertToXPM(Properties.Resources.pubfield);
        }
        //----------------------------------------------------------
        //--------------------- CONSTRUCTEURS ----------------------
        //----------------------------------------------------------

        public AutoCompletionEngine(CGEeditor editorParent)
        {
            this.editorParent = editorParent;
            this.Categories   = new List <APICategory>();
            this.Items        = new List <APIItem>();
            CurrentWord       = "";

            methodsImg = XpmConverter.ConvertToXPM(Properties.Resources.pubmethod);
            classesImg = XpmConverter.ConvertToXPM(Properties.Resources.pubclass);
            propsImg   = XpmConverter.ConvertToXPM(Properties.Resources.pubproperty);
            fieldsImg  = XpmConverter.ConvertToXPM(Properties.Resources.pubfield);
        }
Beispiel #3
0
        //----------------------------------------------------------
        //--------------------- CONSTRUCTEURS ----------------------
        //----------------------------------------------------------
        public AutoCompletionEngine(CGEeditor editorParent)
        {
            this.editorParent = editorParent;
            this.StaticCategories = new List<APICategory>();
            this.StaticItems = new List<APIItem>();
            this.DynamicCategories = new List<APICategory>();
            this.DynamicItems = new List<APIItem>();

            methodsImg = XpmConverter.ConvertToXPM(Properties.Resources.pubmethod);
            classesImg = XpmConverter.ConvertToXPM(Properties.Resources.pubclass);
            propsImg = XpmConverter.ConvertToXPM(Properties.Resources.pubproperty);
            fieldsImg = XpmConverter.ConvertToXPM(Properties.Resources.pubfield);

            this.RefreshDynamicList();
        }