This repository has been archived by the owner on Jun 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Taiizor
authored and
Taiizor
committed
Apr 11, 2021
1 parent
a0fc8c2
commit ee67b12
Showing
5 changed files
with
266 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
namespace Taskbar.Enum | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public class Enums | ||
{ | ||
#region Enums | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public enum LocationType | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
Unknown = -1, | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
Left, | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
Top, | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
Right, | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
Bot | ||
} | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public enum EdgeType : uint | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
Left = 0, | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
Top = 1, | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
Right = 2, | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
Bottom = 3 | ||
} | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public enum MessageType : uint | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
New = 0x00000000, | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
Remove = 0x00000001, | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
QueryPos = 0x00000002, | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
SetPos = 0x00000003, | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
GetState = 0x00000004, | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
GetTaskbarPos = 0x00000005, | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
Activate = 0x00000006, | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
GetAutoHideBar = 0x00000007, | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
SetAutoHideBar = 0x00000008, | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
WindowPosChanged = 0x00000009, | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
SetState = 0x0000000A, | ||
} | ||
|
||
public enum StateType | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
Hide = 0x01, | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
Show = 0x02 | ||
} | ||
#endregion | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.