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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
//
// System.Windows.Forms.Design.MenuCommands.cs
//
// Author:
// Gert Driesen (drieseng@users.sourceforge.net)
// (C) 2004 Ximian, Inc. http://www.ximian.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 System.ComponentModel.Design;
namespace System.Windows.Forms.Design
{
public sealed class MenuCommands : StandardCommands
{
#region Public Instance Constructors
public MenuCommands()
{
// LAMESPEC having a public constructor but only static methods
}
#endregion Public Instance Constructors
#region Static Constructor
static MenuCommands()
{
MenuCommands.wfMenuGroup = new Guid ("{74D21312-2AEE-11d1-8BFB-00A0C90F26F7}");
MenuCommands.wfCommandSet = new Guid ("{74D21313-2AEE-11d1-8BFB-00A0C90F26F7}");
MenuCommands.guidVSStd2K = new Guid ("{1496A755-94DE-11D0-8C3F-00C04FC2AAE2}");
MenuCommands.SelectionMenu = new CommandID (MenuCommands.wfMenuGroup, 1280);
MenuCommands.ContainerMenu = new CommandID (MenuCommands.wfMenuGroup, 1281);
MenuCommands.TraySelectionMenu = new CommandID (MenuCommands.wfMenuGroup, 1283);
MenuCommands.ComponentTrayMenu = new CommandID (MenuCommands.wfMenuGroup, 1286);
MenuCommands.DesignerProperties = new CommandID (MenuCommands.wfCommandSet, 4097);
MenuCommands.KeyCancel = new CommandID (MenuCommands.guidVSStd2K, 103);
MenuCommands.KeyReverseCancel = new CommandID (MenuCommands.wfCommandSet, 16385);
MenuCommands.KeyDefaultAction = new CommandID (MenuCommands.guidVSStd2K, 3);
MenuCommands.KeyMoveUp = new CommandID (MenuCommands.guidVSStd2K, 11);
MenuCommands.KeyMoveDown = new CommandID (MenuCommands.guidVSStd2K, 13);
MenuCommands.KeyMoveLeft = new CommandID (MenuCommands.guidVSStd2K, 7);
MenuCommands.KeyMoveRight = new CommandID (MenuCommands.guidVSStd2K, 9);
MenuCommands.KeyNudgeUp = new CommandID (MenuCommands.guidVSStd2K, 1227);
MenuCommands.KeyNudgeDown = new CommandID (MenuCommands.guidVSStd2K, 1225);
MenuCommands.KeyNudgeLeft = new CommandID (MenuCommands.guidVSStd2K, 1224);
MenuCommands.KeyNudgeRight = new CommandID (MenuCommands.guidVSStd2K, 1226);
MenuCommands.KeySizeWidthIncrease = new CommandID (MenuCommands.guidVSStd2K, 10);
MenuCommands.KeySizeHeightIncrease = new CommandID (MenuCommands.guidVSStd2K, 12);
MenuCommands.KeySizeWidthDecrease = new CommandID (MenuCommands.guidVSStd2K, 8);
MenuCommands.KeySizeHeightDecrease = new CommandID (MenuCommands.guidVSStd2K, 14);
MenuCommands.KeyNudgeWidthIncrease = new CommandID (MenuCommands.guidVSStd2K, 1231);
MenuCommands.KeyNudgeHeightIncrease = new CommandID (MenuCommands.guidVSStd2K, 1228);
MenuCommands.KeyNudgeWidthDecrease = new CommandID (MenuCommands.guidVSStd2K, 1230);
MenuCommands.KeyNudgeHeightDecrease = new CommandID (MenuCommands.guidVSStd2K, 1229);
MenuCommands.KeySelectNext = new CommandID (MenuCommands.guidVSStd2K, 4);
MenuCommands.KeySelectPrevious = new CommandID (MenuCommands.guidVSStd2K, 5);
MenuCommands.KeyTabOrderSelect = new CommandID (MenuCommands.wfCommandSet, 16405);
}
#endregion Static Constructor
#region Public Static Fields
public static readonly CommandID ComponentTrayMenu;
public static readonly CommandID ContainerMenu;
public static readonly CommandID DesignerProperties;
public static readonly CommandID KeyCancel;
public static readonly CommandID KeyDefaultAction;
public static readonly CommandID KeyMoveDown;
public static readonly CommandID KeyMoveLeft;
public static readonly CommandID KeyMoveRight;
public static readonly CommandID KeyMoveUp;
public static readonly CommandID KeyNudgeDown;
public static readonly CommandID KeyNudgeHeightDecrease;
public static readonly CommandID KeyNudgeHeightIncrease;
public static readonly CommandID KeyNudgeLeft;
public static readonly CommandID KeyNudgeRight;
public static readonly CommandID KeyNudgeUp;
public static readonly CommandID KeyNudgeWidthDecrease;
public static readonly CommandID KeyNudgeWidthIncrease;
public static readonly CommandID KeyReverseCancel;
public static readonly CommandID KeySelectNext;
public static readonly CommandID KeySelectPrevious;
public static readonly CommandID KeySizeHeightDecrease;
public static readonly CommandID KeySizeHeightIncrease;
public static readonly CommandID KeySizeWidthDecrease;
public static readonly CommandID KeySizeWidthIncrease;
public static readonly CommandID KeyTabOrderSelect;
public static readonly CommandID SelectionMenu;
public static readonly CommandID TraySelectionMenu;
#endregion Public Static Fields
#region Private Static Fields
private static readonly Guid guidVSStd2K;
private static readonly Guid wfCommandSet;
private static readonly Guid wfMenuGroup;
#endregion Private Static Fields
}
}
|