Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLluis Sanchez <lluis@novell.com>2008-05-15 15:22:04 +0400
committerLluis Sanchez <lluis@novell.com>2008-05-15 15:22:04 +0400
commit548330a5e3b80af2265f51077372c5cbdc145323 (patch)
treec9adfe98b9ea5487af35e1aebcbf557f65151eab /main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Codons
parentfb188e7bdc8e985482ca379b381b638010574586 (diff)
* MonoDevelop.Ide.Commands/ViewCommands.cs, MonoDevelop.Ide.addin.xml,
MonoDevelop.Ide.mdp, Makefile.am, MonoDevelop.Ide.Gui/DefaultWorkbench.cs, MonoDevelop.Ide.Gui/Pad.cs, MonoDevelop.Ide.Codons/CategoryNode.cs: Added support for view pad categories. When a pad is assigned to a category, it will be shown in a submenu in the view menu. * MonoDevelop.Ide.Debugging/DebuggingService.cs: Added support for changing the current frame of the stack. Added Started event. * MonoDevelop.Ide.Gui/ProjectOperations.cs: Disabled workbench context switching when debugging an app. svn path=/trunk/monodevelop/; revision=103259
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Codons')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Codons/CategoryNode.cs42
1 files changed, 42 insertions, 0 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Codons/CategoryNode.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Codons/CategoryNode.cs
new file mode 100644
index 0000000000..e0a7dcf105
--- /dev/null
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Codons/CategoryNode.cs
@@ -0,0 +1,42 @@
+// CategoryNode.cs
+//
+// Author:
+// Lluis Sanchez Gual <lluis@novell.com>
+//
+// Copyright (c) 2008 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining a copy
+// of this software and associated documentation files (the "Software"), to deal
+// in the Software without restriction, including without limitation the rights
+// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+// copies of the Software, and to permit persons to whom the Software is
+// furnished to do so, subject to the following conditions:
+//
+// The above copyright notice and this permission notice shall be included in
+// all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+// THE SOFTWARE.
+//
+//
+
+using System;
+using Mono.Addins;
+
+namespace MonoDevelop.Ide.Codons
+{
+ public class CategoryNode: ExtensionNode
+ {
+ [NodeAttribute("_name", "Category name", Localizable=true, Required=true)]
+ string name;
+
+ public string Name {
+ get { return name; }
+ }
+ }
+}