/* 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.ToolWindows.App { /// /// Constants /// public static class AppToolWindowConstants { /// Order of files tool window public static readonly double DEFAULT_CONTENT_ORDER_LEFT_FILES = 1000; /// Order of analyzer tool window public static readonly double DEFAULT_CONTENT_ORDER_BOTTOM_ANALYZER = 10000; /// Order of debugger locals window public static readonly double DEFAULT_CONTENT_ORDER_BOTTOM_DEBUGGER_LOCALS = 20000; /// Order of debugger autos window public static readonly double DEFAULT_CONTENT_ORDER_BOTTOM_DEBUGGER_AUTOS = 20001; /// Order of debugger watch window public static readonly double DEFAULT_CONTENT_ORDER_BOTTOM_DEBUGGER_WATCH = 20002; /// Order of debugger breakpoints tool window public static readonly double DEFAULT_CONTENT_ORDER_BOTTOM_DEBUGGER_CODEBREAKPOINTS = 20003; /// Order of debugger module breakpoints tool window public static readonly double DEFAULT_CONTENT_ORDER_BOTTOM_DEBUGGER_MODULEBREAKPOINTS = 20004; /// Order of debugger call stack tool window public static readonly double DEFAULT_CONTENT_ORDER_BOTTOM_DEBUGGER_CALLSTACK = 20005; /// Order of debugger threads tool window public static readonly double DEFAULT_CONTENT_ORDER_BOTTOM_DEBUGGER_THREADS = 20006; /// Order of debugger exceptions tool window public static readonly double DEFAULT_CONTENT_ORDER_BOTTOM_DEBUGGER_EXCEPTIONS = 20007; /// Order of debugger modules tool window public static readonly double DEFAULT_CONTENT_ORDER_BOTTOM_DEBUGGER_MODULES = 20008; /// Order of debugger modules tool window public static readonly double DEFAULT_CONTENT_ORDER_BOTTOM_DEBUGGER_PROCESSES = 20009; /// Order of debugger memory tool window public static readonly double DEFAULT_CONTENT_ORDER_BOTTOM_DEBUGGER_MEMORY = 20010; /// Order of C# interactive window public static readonly double DEFAULT_CONTENT_ORDER_BOTTOM_SCRIPTING_CSHARP = 21000; /// Order of Visual Basic interactive window public static readonly double DEFAULT_CONTENT_ORDER_BOTTOM_SCRIPTING_VISUALBASIC = 22000; /// Order of bookmarks window public static readonly double DEFAULT_CONTENT_ORDER_BOTTOM_BOOKMARKS = 23000; /// Order of Output window public static readonly double DEFAULT_CONTENT_ORDER_BOTTOM_OUTPUT = 30000; /// Order of search tool window public static readonly double DEFAULT_CONTENT_ORDER_TOP_SEARCH = 10000; } }