diff options
| author | Rylan <[email protected]> | 2017-01-14 17:01:07 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-01-14 17:01:07 -0500 |
| commit | 2c93dbec3223271f0fa2276ada706f13973a88a3 (patch) | |
| tree | a259d210ea6e02c0c3841e15e8080142828a8df3 | |
| parent | ed5c1d67d2581593ab6221abd5849be8b4e0f25e (diff) | |
| parent | 25376da8de2bb891fdfa134b514940b7068780b4 (diff) | |
| download | shiftos_thereturn-2c93dbec3223271f0fa2276ada706f13973a88a3.tar.gz shiftos_thereturn-2c93dbec3223271f0fa2276ada706f13973a88a3.tar.bz2 shiftos_thereturn-2c93dbec3223271f0fa2276ada706f13973a88a3.zip | |
Merge pull request #37 from carverh/patch-20
Added Comments (3)
| -rw-r--r-- | ShiftOS.WinForms/Commands.cs | 131 |
1 files changed, 128 insertions, 3 deletions
diff --git a/ShiftOS.WinForms/Commands.cs b/ShiftOS.WinForms/Commands.cs index dd0dc90..a0a1692 100644 --- a/ShiftOS.WinForms/Commands.cs +++ b/ShiftOS.WinForms/Commands.cs @@ -33,24 +33,53 @@ using System.Diagnostics; using System.Runtime.InteropServices; using System.Threading; +/// <summary> +/// Coherence commands. +/// </summary> namespace ShiftOS.WinForms { [Namespace("coherence")] [RequiresUpgrade("kernel_coherence")] public static class CoherenceCommands { + /// <summary> + /// Sets the window position. + /// </summary> + /// <returns>The window position.</returns> + /// <param name="hWnd">H window.</param> + /// <param name="hWndInsertAfter">H window insert after.</param> + /// <param name="X">X.</param> + /// <param name="Y">Y.</param> + /// <param name="cx">Cx.</param> + /// <param name="cy">Cy.</param> + /// <param name="uFlags">U flags.</param> [DllImport("user32.dll")] static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int X, int Y, int cx, int cy, uint uFlags); + /// <summary> + /// The HWN d TOPMOS. + /// </summary> static readonly IntPtr HWND_TOPMOST = new IntPtr(-1); + + /// <summary> + /// The SW p SHOWWINDO. + /// </summary> const UInt32 SWP_SHOWWINDOW = 0x0040; - [DllImport("user32.dll")] + /// <summary> + /// Gets the window rect. + /// </summary> + /// <returns>The window rect.</returns> + /// <param name="hWnd">H window.</param> + /// <param name="lpRect">Lp rect.</param> [return: MarshalAs(UnmanagedType.Bool)] public static extern bool GetWindowRect(IntPtr hWnd, ref RECT lpRect); + /// <summary> + /// REC. + /// </summary> [StructLayout(LayoutKind.Sequential)] public struct RECT { @@ -62,6 +91,11 @@ namespace ShiftOS.WinForms [Command("launch", "process: \"C:\\path\\to\\process\" - The process path to launch.", "Launch a process inside kernel coherence.")] [RequiresArgument("process")] + /// <summary> + /// Launchs the app. + /// </summary> + /// <returns>The app.</returns> + /// <param name="args">Arguments.</param> public static bool LaunchApp(Dictionary<string, object> args) { string process = args["process"].ToString(); @@ -70,6 +104,11 @@ namespace ShiftOS.WinForms return true; } + /// <summary> + /// Starts the coherence. + /// </summary> + /// <returns>The coherence.</returns> + /// <param name="prc">Prc.</param> private static void StartCoherence(Process prc) { RECT rct = new RECT(); @@ -93,26 +132,112 @@ namespace ShiftOS.WinForms } + /// <summary> + /// The W s BORDE. + /// </summary> const int WS_BORDER = 8388608; + + /// <summary> + /// The W s DLGFRAM. + /// </summary> const int WS_DLGFRAME = 4194304; + + /// <summary> + /// The W s CAPTIO. + /// </summary> const int WS_CAPTION = WS_BORDER | WS_DLGFRAME; + + /// <summary> + /// The W s SYSMEN. + /// </summary> const int WS_SYSMENU = 524288; + + /// <summary> + /// The W s THICKFRAM. + /// </summary> const int WS_THICKFRAME = 262144; + + /// <summary> + /// The W s MINIMIZ. + /// </summary> const int WS_MINIMIZE = 536870912; + + /// <summary> + /// The W s MAXIMIZEBO. + /// </summary> const int WS_MAXIMIZEBOX = 65536; + + /// <summary> + /// The GW l STYL. + /// </summary> const int GWL_STYLE = -16; + + /// <summary> + /// The GW l EXSTYL. + /// </summary> const int GWL_EXSTYLE = -20; + + /// <summary> + /// The W s E x DLGMODALFRAM. + /// </summary> const int WS_EX_DLGMODALFRAME = 0x1; + + /// <summary> + /// The SW p NOMOV. + /// </summary> const int SWP_NOMOVE = 0x2; + + /// <summary> + /// The SW p NOSIZ. + /// </summary> const int SWP_NOSIZE = 0x1; + + /// <summary> + /// The SW p FRAMECHANGE. + /// </summary> const int SWP_FRAMECHANGED = 0x20; + + /// <summary> + /// The M f BYPOSITIO. + /// </summary> const uint MF_BYPOSITION = 0x400; + + /// <summary> + /// The M f REMOV. + /// </summary> const uint MF_REMOVE = 0x1000; + + /// <summary> + /// Gets the window long. + /// </summary> + /// <returns>The window long.</returns> + /// <param name="hWnd">H window.</param> + /// <param name="nIndex">N index.</param> [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true, ExactSpelling = true)] public static extern int GetWindowLong(IntPtr hWnd, int nIndex); - [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true, ExactSpelling = true)] + + /// <summary> + /// Sets the window long. + /// </summary> + /// <returns>The window long.</returns> + /// <param name="hWnd">H window.</param> + /// <param name="nIndex">N index.</param> + /// <param name="dwNewLong">Dw new long.</param> + [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true, ExactSpelling = true)] public static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong); - [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true, ExactSpelling = true)] + + /// <summary> + /// Sets the window position. + /// </summary> + /// <returns>The window position.</returns> + /// <param name="hWnd">H window.</param> + /// <param name="hWndInsertAfter">H window insert after.</param> + /// <param name="X">X.</param> + /// <param name="Y">Y.</param> + /// <param name="cx">Cx.</param> + /// <param name="cy">Cy.</param> + /// <param name="uFlags">U flags.</param> + [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true, ExactSpelling = true)] public static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int X, int Y, int cx, int cy, int uFlags); public static void MakeExternalWindowBorderless(IntPtr MainWindowHandle) { |
