220 lines
8.0 KiB
C#
220 lines
8.0 KiB
C#
using System;
|
|
using System.Drawing;
|
|
using System.IO;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.InteropServices.ComTypes;
|
|
|
|
namespace PhotoThumbnail.Definitions
|
|
{
|
|
internal static class HandlerNativeMethods
|
|
{
|
|
internal static readonly Guid IThumbnailProviderGuid = new Guid("e357fccd-a995-4576-b01f-234630154e96");
|
|
|
|
//internal static readonly Guid IInitializeWithFileGuid = new Guid("b7d14566-0509-4cce-a71f-0a554233bd9b");
|
|
internal static readonly Guid IInitializeWithStreamGuid = new Guid("b824b49d-22ac-4161-ac8a-9916e8fa3f7f");
|
|
//internal static readonly Guid IInitializeWithItemGuid = new Guid("7f73be3f-fb79-493c-a6c7-7ee14e245841");
|
|
|
|
internal static readonly Guid IMarshalGuid = new Guid("00000003-0000-0000-C000-000000000046");
|
|
}
|
|
|
|
/// <summary>
|
|
/// This interface exposes the <see cref="ConsructBitmap"/> function for initializing the
|
|
/// Thumbnail Provider with a <typeparamref name="Stream"/>.
|
|
/// If this interfaces is not used, then the handler must opt out of process isolation.
|
|
/// This interface can be used in conjunction with the other intialization interfaces,
|
|
/// but only 1 will be accessed according to the priorities preset by the Windows Shell:
|
|
/// <typeparamref name="IThumbnailFromStream"/>
|
|
/// <typeparamref name="IThumbnailFromShellObject"/>
|
|
/// <typeparamref name="IThumbnailFromFile"/>
|
|
/// </summary>
|
|
public interface IThumbnailFromStream
|
|
{
|
|
/// <summary>
|
|
/// Provides the <typeparamref name="Stream"/> to the item from which a thumbnail should be created.
|
|
/// <remarks>Only 32bpp bitmaps support adornments.
|
|
/// While 24bpp bitmaps will be displayed they will not display adornments.
|
|
/// Additional guidelines for developing thumbnails can be found at http://msdn.microsoft.com/en-us/library/cc144115(v=VS.85).aspx
|
|
/// </remarks>
|
|
/// </summary>
|
|
/// <param name="stream">Stream to initialize the thumbnail</param>
|
|
/// <param name="sideSize">Square side dimension in which the thumbnail should fit; the thumbnail will be scaled otherwise.</param>
|
|
/// <returns></returns>
|
|
Bitmap ConstructBitmap(Stream stream, int sideSize);
|
|
}
|
|
|
|
/// <summary>
|
|
/// The STGM constants are flags that indicate
|
|
/// conditions for creating and deleting the object and access modes
|
|
/// for the object.
|
|
///
|
|
/// You can combine these flags, but you can only choose one flag
|
|
/// from each group of related flags. Typically one flag from each
|
|
/// of the access and sharing groups must be specified for all
|
|
/// functions and methods which use these constants.
|
|
/// </summary>
|
|
[Flags]
|
|
public enum AccessModes
|
|
{
|
|
/// <summary>
|
|
/// Indicates that, in direct mode, each change to a storage
|
|
/// or stream element is written as it occurs.
|
|
/// </summary>
|
|
Direct = 0x00000000,
|
|
|
|
/// <summary>
|
|
/// Indicates that, in transacted mode, changes are buffered
|
|
/// and written only if an explicit commit operation is called.
|
|
/// </summary>
|
|
Transacted = 0x00010000,
|
|
|
|
/// <summary>
|
|
/// Provides a faster implementation of a compound file
|
|
/// in a limited, but frequently used, case.
|
|
/// </summary>
|
|
Simple = 0x08000000,
|
|
|
|
/// <summary>
|
|
/// Indicates that the object is read-only,
|
|
/// meaning that modifications cannot be made.
|
|
/// </summary>
|
|
Read = 0x00000000,
|
|
|
|
/// <summary>
|
|
/// Enables you to save changes to the object,
|
|
/// but does not permit access to its data.
|
|
/// </summary>
|
|
Write = 0x00000001,
|
|
|
|
/// <summary>
|
|
/// Enables access and modification of object data.
|
|
/// </summary>
|
|
ReadWrite = 0x00000002,
|
|
|
|
/// <summary>
|
|
/// Specifies that subsequent openings of the object are
|
|
/// not denied read or write access.
|
|
/// </summary>
|
|
ShareDenyNone = 0x00000040,
|
|
|
|
/// <summary>
|
|
/// Prevents others from subsequently opening the object in Read mode.
|
|
/// </summary>
|
|
ShareDenyRead = 0x00000030,
|
|
|
|
/// <summary>
|
|
/// Prevents others from subsequently opening the object
|
|
/// for Write or ReadWrite access.
|
|
/// </summary>
|
|
ShareDenyWrite = 0x00000020,
|
|
|
|
/// <summary>
|
|
/// Prevents others from subsequently opening the object in any mode.
|
|
/// </summary>
|
|
ShareExclusive = 0x00000010,
|
|
|
|
/// <summary>
|
|
/// Opens the storage object with exclusive access to the most
|
|
/// recently committed version.
|
|
/// </summary>
|
|
Priority = 0x00040000,
|
|
|
|
/// <summary>
|
|
/// Indicates that the underlying file is to be automatically destroyed when the root
|
|
/// storage object is released. This feature is most useful for creating temporary files.
|
|
/// </summary>
|
|
DeleteOnRelease = 0x04000000,
|
|
|
|
/// <summary>
|
|
/// Indicates that, in transacted mode, a temporary scratch file is usually used
|
|
/// to save modifications until the Commit method is called.
|
|
/// Specifying NoScratch permits the unused portion of the original file
|
|
/// to be used as work space instead of creating a new file for that purpose.
|
|
/// </summary>
|
|
NoScratch = 0x00100000,
|
|
|
|
/// <summary>
|
|
/// Indicates that an existing storage object
|
|
/// or stream should be removed before the new object replaces it.
|
|
/// </summary>
|
|
Create = 0x00001000,
|
|
|
|
/// <summary>
|
|
/// Creates the new object while preserving existing data in a stream named "Contents".
|
|
/// </summary>
|
|
Convert = 0x00020000,
|
|
|
|
/// <summary>
|
|
/// Causes the create operation to fail if an existing object with the specified name exists.
|
|
/// </summary>
|
|
FailIfThere = 0x00000000,
|
|
|
|
/// <summary>
|
|
/// This flag is used when opening a storage object with Transacted
|
|
/// and without ShareExclusive or ShareDenyWrite.
|
|
/// In this case, specifying NoSnapshot prevents the system-provided
|
|
/// implementation from creating a snapshot copy of the file.
|
|
/// Instead, changes to the file are written to the end of the file.
|
|
/// </summary>
|
|
NoSnapshot = 0x00200000,
|
|
|
|
/// <summary>
|
|
/// Supports direct mode for single-writer, multireader file operations.
|
|
/// </summary>
|
|
DirectSingleWriterMultipleReader = 0x00400000
|
|
}
|
|
|
|
// <summary>
|
|
/// Thumbnail Alpha Types
|
|
/// </summary>
|
|
public enum ThumbnailAlphaType
|
|
{
|
|
/// <summary>
|
|
/// Let the system decide.
|
|
/// </summary>
|
|
Unknown = 0,
|
|
|
|
/// <summary>
|
|
/// No transparency
|
|
/// </summary>
|
|
NoAlphaChannel = 1,
|
|
|
|
/// <summary>
|
|
/// Has transparency
|
|
/// </summary>
|
|
HasAlphaChannel = 2,
|
|
}
|
|
|
|
/// <summary>
|
|
/// ComVisible interface for native IThumbnailProvider
|
|
/// </summary>
|
|
[ComImport]
|
|
[Guid("e357fccd-a995-4576-b01f-234630154e96")]
|
|
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
|
|
interface IThumbnailProvider
|
|
{
|
|
/// <summary>
|
|
/// Gets a pointer to a bitmap to display as a thumbnail
|
|
/// </summary>
|
|
/// <param name="squareLength"></param>
|
|
/// <param name="bitmapHandle"></param>
|
|
/// <param name="bitmapType"></param>
|
|
void GetThumbnail(uint squareLength, [Out] out IntPtr bitmapHandle, [Out] out uint bitmapType);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Provides means by which to initialize with a stream.
|
|
/// </summary>
|
|
[ComImport]
|
|
[Guid("b824b49d-22ac-4161-ac8a-9916e8fa3f7f")]
|
|
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
|
|
interface IInitializeWithStream
|
|
{
|
|
/// <summary>
|
|
/// Initializes with a stream.
|
|
/// </summary>
|
|
/// <param name="stream"></param>
|
|
/// <param name="fileMode"></param>
|
|
void Initialize(IStream stream, AccessModes fileMode);
|
|
}
|
|
}
|