Example #1
0
        public Gtk.Widget CreatePathWidget(int index)
        {
            PathEntry[] path = CurrentPath;
            if (null == path || 0 > index || path.Length <= index)
            {
                return(null);
            }

            object tag = path[index].Tag;

            DropDownBoxListWindow.IListDataProvider provider = null;
            if (tag is ParsedDocument)
            {
                provider = new CompilationUnitDataProvider(Document);
            }
            else
            {
                provider = new DataProvider(Document, tag, GetAmbience());
            }

            DropDownBoxListWindow window = new DropDownBoxListWindow(provider);

            window.SelectItem(tag);
            return(window);
        }
Example #2
0
        public Control CreatePathWidget(int index)
        {
            PathEntry[] path = CurrentPath;
            if (null == path || 0 > index || path.Length <= index)
            {
                return(null);
            }

            object tag = path[index].Tag;

            DropDownBoxListWindow.IListDataProvider provider = null;
            if (tag is ParsedDocument)
            {
                provider = new CompilationUnitDataProvider(Editor, DocumentContext);
            }
            else
            {
                // TODO: Roslyn port
                //provider = new DataProvider (Editor, DocumentContext, tag, new NetAmbience ());
            }

            DropDownBoxListWindow window = new DropDownBoxListWindow(provider);

            window.SelectItem(tag);
            return(window);
        }
		public Gtk.Widget CreatePathWidget (int index)
		{
			PathEntry[] path = CurrentPath;
			if (path == null || index < 0 || index >= path.Length)
				return null;
			var tag = path [index].Tag;
			DropDownBoxListWindow.IListDataProvider provider;
			if (tag is ICompilationUnit) {
				provider = new CompilationUnitDataProvider (Document);
				tag = Document.ParsedDocument.GetUserRegion (document.Editor.Caret.Line, document.Editor.Caret.Column);
			} else {
				provider = new DataProvider (Document, tag, GetAmbience ());
			}
			
			DropDownBoxListWindow window = new DropDownBoxListWindow (provider);
			window.SelectItem (tag);
			return window;
		}