Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,6 @@
<Compile Include="System\Windows\Input\Command\InputBindingCollection.cs" />
<Compile Include="System\Windows\Input\Command\InputGesture.cs" />
<Compile Include="System\Windows\Input\Command\InputGestureCollection.cs" />
<Compile Include="System\Windows\Input\Command\ISecureCommand.cs" />
<Compile Include="System\Windows\Input\Command\KeyBinding.cs" />
<Compile Include="System\Windows\Input\Command\KeyGesture.cs" />
<Compile Include="System\Windows\Input\Command\KeyGestureConverter.cs" />
Expand All @@ -628,7 +627,6 @@
<Compile Include="System\Windows\Input\Command\NavigationCommands.cs" />
<Compile Include="System\Windows\Input\Command\RoutedCommand.cs" />
<Compile Include="System\Windows\Input\Command\RoutedUICommand.cs" />
<Compile Include="System\Windows\Input\Command\SecureUICommand.cs" />
<Compile Include="System\Windows\Input\Stylus\Common\DynamicRenderer.cs" />
<Compile Include="System\Windows\Input\Stylus\Common\DynamicRendererThreadManager.cs" />
<Compile Include="System\Windows\Input\Stylus\Common\MultiTouchSystemGestureLogic.cs" />
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -61,64 +61,4 @@ internal enum MimeType
Application = 2,
Markup = 3
}

//********************************************************************************************//
// IMPORTANT: IMPORTANT: IMPORTANT: IMPORTANT: //
//********************************************************************************************//
//Start with 8001 , the enum defined on the managed world starts with 8001 as well
//KEEP THESE IN SYNC
//The ApplicationCommands enums in wcp\host\inc\hostservices.idl and IBrowserHostServices.cs
//and the menuIDs wcp\host\docobj\resource.hxx and resources.rc
//
internal enum AppCommands
{
Edit_Cut = 8001,
Edit_Copy,
Edit_Paste,
Edit_SelectAll,
Edit_Find,

Edit_Digitalsignatures,
Edit_Digitalsignatures_SignDocument,
Edit_Digitalsignatures_RequestSignature,
Edit_Digitalsignatures_ViewSignature,

Edit_Permission,
Edit_Permission_Set,
Edit_Permission_View,
Edit_Permission_Restrict,

View_StatusBar,
View_Stop,
View_Refresh,
View_FullScreen,

View_Zoom,
View_Zoom_In,
View_Zoom_Out,
View_Zoom_400,
View_Zoom_250,
View_Zoom_150,
View_Zoom_100,
View_Zoom_75,
View_Zoom_50,
View_Zoom_25,
View_Zoom_PageWidth,
View_Zoom_WholePage,
View_Zoom_TwoPages,
View_Zoom_Thumbnails,
}

internal enum AppMenus
{
EditMenu = 0x3020,
ViewMenu = 0x3040
}

//***Keep in sync with host\Inc\HostServices.idl.
internal enum EditingCommandIds : uint
{
Backspace = 1,
Delete = 2
};
}
Loading