66 lines
2.3 KiB
C#
66 lines
2.3 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Windows.Forms;
|
|
|
|
namespace SpineViewer.Natives
|
|
{
|
|
internal enum TBPFLAG
|
|
{
|
|
TBPF_NOPROGRESS = 0,
|
|
TBPF_INDETERMINATE = 0x1,
|
|
TBPF_NORMAL = 0x2,
|
|
TBPF_ERROR = 0x4,
|
|
TBPF_PAUSED = 0x8
|
|
}
|
|
|
|
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
|
|
[ComImport, Guid("ea1afb91-9e28-4b86-90e9-9e9f8a5eefaf")]
|
|
internal interface ITaskbarList3
|
|
{
|
|
// ITaskbarList
|
|
void HrInit();
|
|
void AddTab(nint hwnd);
|
|
void DeleteTab(nint hwnd);
|
|
void ActivateTab(nint hwnd);
|
|
void SetActiveAlt(nint hwnd);
|
|
// ITaskbarList2
|
|
void MarkFullscreenWindow(nint hwnd, [MarshalAs(UnmanagedType.Bool)] bool fFullscreen);
|
|
// ITaskbarList3
|
|
void SetProgressValue(nint hwnd, ulong ullCompleted, ulong ullTotal);
|
|
void SetProgressState(nint hwnd, TBPFLAG tbpFlags);
|
|
//void RegisterTab(IntPtr hwndTab, IntPtr hwndMDI);
|
|
//void UnregisterTab(IntPtr hwndTab);
|
|
//void SetTabOrder(IntPtr hwndTab, IntPtr hwndInsertBefore);
|
|
//void SetTabActive(IntPtr hwndTab, IntPtr hwndMDI, uint dwReserved);
|
|
//void ThumbBarAddButtons(IntPtr hwnd, uint cButtons, THUMBBUTTON[] pButton);
|
|
//void ThumbBarUpdateButtons(IntPtr hwnd, uint cButtons, THUMBBUTTON[] pButton);
|
|
//void ThumbBarSetImageList(IntPtr hwnd, IntPtr himl);
|
|
//void SetOverlayIcon(IntPtr hwnd, IntPtr hIcon, string pszDescription);
|
|
//void SetThumbnailTooltip(IntPtr hwnd, string pszTip);
|
|
//void SetThumbnailClip(IntPtr hwnd, ref RECT prcClip);
|
|
}
|
|
|
|
[ComImport, Guid("56FDF344-FD6D-11d0-958A-006097C9A090")]
|
|
internal class TaskbarList { }
|
|
|
|
internal static class TaskbarManager
|
|
{
|
|
private static readonly ITaskbarList3 taskbarList = (ITaskbarList3)new TaskbarList();
|
|
|
|
static TaskbarManager()
|
|
{
|
|
taskbarList.HrInit();
|
|
}
|
|
|
|
public static void SetProgressState(nint windowHandle, TBPFLAG state)
|
|
{
|
|
taskbarList.SetProgressState(windowHandle, state);
|
|
}
|
|
|
|
public static void SetProgressValue(nint windowHandle, ulong completed, ulong total)
|
|
{
|
|
taskbarList.SetProgressValue(windowHandle, completed, total);
|
|
}
|
|
}
|
|
}
|