/* 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.Command { /// /// order constants /// public static class CommandInfoProviderOrder { /// Default public const double Default = 100000; /// Text editor public const double TextEditor = 50000; /// Text references public const double TextReferences = TextEditor - 2000; /// Document viewer public const double DocumentViewer = TextEditor - 3000; /// Document viewer public const double Bookmarks = TextEditor - 4000; /// REPL editor public const double REPL = TextEditor - 3000; /// Output logger text pane public const double OutputTextPane = TextEditor - 3000; /// Edit Code public const double EditCode = TextEditor - 3000; /// Hex editor public const double HexEditor = TextEditor; } }