/* 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 . */ namespace dnSpy.Contracts.Text.Editor { /// /// Z-indexes /// public static class GlyphTextMarkerServiceZIndexes { /// /// Z-index of disabled bookmarks /// public const int DisabledBookmark = 990; /// /// Z-index of enabled bookmarks /// public const int Bookmark = 1000; /// /// (Debugger) Z-index of disabled breakpoints /// public const int DisabledBreakpoint = 2000; /// /// (Debugger) Z-index of advanced disabled breakpoints /// public const int DisabledAdvancedBreakpoint = 2010; /// /// (Debugger) Z-index of enabled breakpoints /// public const int EnabledBreakpoint = 2500; /// /// (Debugger) Z-index of advanced enabled breakpoints /// public const int EnabledAdvancedBreakpoint = 2530; /// /// (Debugger) Z-index of breakpoints with warnings /// public const int BreakpointWarning = 2540; /// /// (Debugger) Z-index of breakpoints with errors /// public const int BreakpointError = 2550; /// /// (Debugger) Z-index of advanced breakpoints with warnings /// public const int AdvancedBreakpointWarning = 2560; /// /// (Debugger) Z-index of advanced breakpoints with errors /// public const int AdvancedBreakpointError = 2570; /// /// (Debugger) Z-index of disabled tracepionts /// public const int DisabledTracepoint = 2600; /// /// (Debugger) Z-index of advanced disabled tracepoints /// public const int DisabledAdvancedTracepoint = 2610; /// /// (Debugger) Z-index of enabled tracepoints /// public const int EnabledTracepoint = 2620; /// /// (Debugger) Z-index of advanced enabled tracepoints /// public const int EnabledAdvancedTracepoint = 2630; /// /// (Debugger) Z-index of tracepoints with warnings /// public const int TracepointWarning = 2640; /// /// (Debugger) Z-index of tracepoints with errors /// public const int TracepointError = 2650; /// /// (Debugger) Z-index of advanced tracepoints with warnings /// public const int AdvancedTracepointWarning = 2660; /// /// (Debugger) Z-index of advanced tracepoints with errors /// public const int AdvancedTracepointError = 2670; /// /// (Debugger) Z-index of current statement /// public const int CurrentStatement = 3000; /// /// (Debugger) Z-index of return statement /// public const int ReturnStatement = 4000; } }