This repository was archived by the owner on Dec 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathAnalyzerTreeNodeDataContext.cs
More file actions
41 lines (35 loc) · 1.61 KB
/
AnalyzerTreeNodeDataContext.cs
File metadata and controls
41 lines (35 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
Copyright (C) 2014-2019 de4dot@gmail.com
This file is part of dnSpy
dnSpy is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
dnSpy is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with dnSpy. If not, see <http://www.gnu.org/licenses/>.
*/
using dnSpy.Analyzer.TreeNodes;
using dnSpy.Contracts.Decompiler;
using dnSpy.Contracts.Documents;
using dnSpy.Contracts.Images;
using dnSpy.Contracts.TreeView;
using dnSpy.Contracts.TreeView.Text;
namespace dnSpy.Analyzer {
sealed class AnalyzerTreeNodeDataContext : IAnalyzerTreeNodeDataContext {
#pragma warning disable CS8618 // Non-nullable field is uninitialized.
public IDotNetImageService DotNetImageService { get; set; }
public ITreeView TreeView { get; set; }
public IDecompiler Decompiler { get; set; }
public ITreeViewNodeTextElementProvider TreeViewNodeTextElementProvider { get; set; }
public IDsDocumentService DocumentService { get; set; }
public IAnalyzerService AnalyzerService { get; set; }
public bool ShowToken { get; set; }
public bool SingleClickExpandsChildren { get; set; }
public bool SyntaxHighlight { get; set; }
#pragma warning restore CS8618 // Non-nullable field is uninitialized.
}
}