mirror of
https://github.com/kangyu-california/PersistentWindows.git
synced 2025-05-11 21:15:38 +02:00
remove Ninjacrab from name space
This commit is contained in:
parent
42a91fd801
commit
9717dae16b
41 changed files with 2039 additions and 2039 deletions
|
@ -7,7 +7,7 @@
|
||||||
<ProjectGuid>{4CC8B3FB-214B-42AB-8AAE-E7DC5E266EF0}</ProjectGuid>
|
<ProjectGuid>{4CC8B3FB-214B-42AB-8AAE-E7DC5E266EF0}</ProjectGuid>
|
||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
<RootNamespace>Ninjacrab.PersistentWindows.Common</RootNamespace>
|
<RootNamespace>PersistentWindows.Common</RootNamespace>
|
||||||
<AssemblyName>PersistentWindows.Common</AssemblyName>
|
<AssemblyName>PersistentWindows.Common</AssemblyName>
|
||||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
<FileAlignment>512</FileAlignment>
|
<FileAlignment>512</FileAlignment>
|
|
@ -2,7 +2,7 @@
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
|
|
||||||
namespace Ninjacrab.PersistentWindows.Common.Diagnostics
|
namespace PersistentWindows.Common.Diagnostics
|
||||||
{
|
{
|
||||||
public class Log
|
public class Log
|
||||||
{
|
{
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
namespace Ninjacrab.PersistentWindows.Common
|
namespace PersistentWindows.Common
|
||||||
{
|
{
|
||||||
partial class LaunchProcess
|
partial class LaunchProcess
|
||||||
{
|
{
|
|
@ -2,7 +2,7 @@
|
||||||
using System.Drawing;
|
using System.Drawing;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
|
|
||||||
namespace Ninjacrab.PersistentWindows.Common
|
namespace PersistentWindows.Common
|
||||||
{
|
{
|
||||||
public partial class LaunchProcess : Form
|
public partial class LaunchProcess : Form
|
||||||
{
|
{
|
|
@ -1,7 +1,7 @@
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
using System.Drawing;
|
using System.Drawing;
|
||||||
|
|
||||||
namespace Ninjacrab.PersistentWindows.Common
|
namespace PersistentWindows.Common
|
||||||
{
|
{
|
||||||
partial class LayoutProfile
|
partial class LayoutProfile
|
||||||
{
|
{
|
|
@ -1,7 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
|
|
||||||
namespace Ninjacrab.PersistentWindows.Common
|
namespace PersistentWindows.Common
|
||||||
{
|
{
|
||||||
public partial class LayoutProfile : Form
|
public partial class LayoutProfile : Form
|
||||||
{
|
{
|
|
@ -1,9 +1,9 @@
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
using Ninjacrab.PersistentWindows.Common.WinApiBridge;
|
using PersistentWindows.Common.WinApiBridge;
|
||||||
using Ninjacrab.PersistentWindows.Common.Diagnostics;
|
using PersistentWindows.Common.Diagnostics;
|
||||||
|
|
||||||
namespace Ninjacrab.PersistentWindows.Common.Models
|
namespace PersistentWindows.Common.Models
|
||||||
{
|
{
|
||||||
public class DeadAppPosition
|
public class DeadAppPosition
|
||||||
{
|
{
|
|
@ -1,8 +1,8 @@
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using Ninjacrab.PersistentWindows.Common.WinApiBridge;
|
using PersistentWindows.Common.WinApiBridge;
|
||||||
|
|
||||||
namespace Ninjacrab.PersistentWindows.Common.Models
|
namespace PersistentWindows.Common.Models
|
||||||
{
|
{
|
||||||
public class DesktopDisplayMetrics
|
public class DesktopDisplayMetrics
|
||||||
{
|
{
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
namespace Ninjacrab.PersistentWindows.Common
|
namespace PersistentWindows.Common
|
||||||
{
|
{
|
||||||
partial class NameDbEntry
|
partial class NameDbEntry
|
||||||
{
|
{
|
|
@ -8,7 +8,7 @@ using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
|
|
||||||
namespace Ninjacrab.PersistentWindows.Common
|
namespace PersistentWindows.Common
|
||||||
{
|
{
|
||||||
public partial class NameDbEntry : Form
|
public partial class NameDbEntry : Form
|
||||||
{
|
{
|
|
@ -14,11 +14,11 @@ using Microsoft.Win32;
|
||||||
|
|
||||||
using LiteDB;
|
using LiteDB;
|
||||||
|
|
||||||
using Ninjacrab.PersistentWindows.Common.Diagnostics;
|
using PersistentWindows.Common.Diagnostics;
|
||||||
using Ninjacrab.PersistentWindows.Common.Models;
|
using PersistentWindows.Common.Models;
|
||||||
using Ninjacrab.PersistentWindows.Common.WinApiBridge;
|
using PersistentWindows.Common.WinApiBridge;
|
||||||
|
|
||||||
namespace Ninjacrab.PersistentWindows.Common
|
namespace PersistentWindows.Common
|
||||||
{
|
{
|
||||||
public class PersistentWindowProcessor : IDisposable
|
public class PersistentWindowProcessor : IDisposable
|
||||||
{
|
{
|
|
@ -1,7 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace Ninjacrab.PersistentWindows.Common.WinApiBridge
|
namespace PersistentWindows.Common.WinApiBridge
|
||||||
{
|
{
|
||||||
[StructLayout(LayoutKind.Sequential)]
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
public struct CallWindowProcedureParam
|
public struct CallWindowProcedureParam
|
|
@ -2,7 +2,7 @@
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace Ninjacrab.PersistentWindows.Common.WinApiBridge
|
namespace PersistentWindows.Common.WinApiBridge
|
||||||
{
|
{
|
||||||
public class Display
|
public class Display
|
||||||
{
|
{
|
|
@ -1,6 +1,6 @@
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace Ninjacrab.PersistentWindows.Common.WinApiBridge
|
namespace PersistentWindows.Common.WinApiBridge
|
||||||
{
|
{
|
||||||
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]
|
||||||
public struct MonitorInfo
|
public struct MonitorInfo
|
|
@ -1,6 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Ninjacrab.PersistentWindows.Common.WinApiBridge
|
namespace PersistentWindows.Common.WinApiBridge
|
||||||
{
|
{
|
||||||
[Flags()]
|
[Flags()]
|
||||||
public enum SetWindowPosFlags : uint
|
public enum SetWindowPosFlags : uint
|
|
@ -1,4 +1,4 @@
|
||||||
namespace Ninjacrab.PersistentWindows.Common.WinApiBridge
|
namespace PersistentWindows.Common.WinApiBridge
|
||||||
{
|
{
|
||||||
public enum ShowWindowCommands
|
public enum ShowWindowCommands
|
||||||
{
|
{
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace Ninjacrab.PersistentWindows.Common.WinApiBridge
|
namespace PersistentWindows.Common.WinApiBridge
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* This is a subset of events from winuser.h.
|
* This is a subset of events from winuser.h.
|
|
@ -1,6 +1,6 @@
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace Ninjacrab.PersistentWindows.Common.WinApiBridge
|
namespace PersistentWindows.Common.WinApiBridge
|
||||||
{
|
{
|
||||||
//[StructLayout(LayoutKind.Sequential)]
|
//[StructLayout(LayoutKind.Sequential)]
|
||||||
public struct WindowPlacement
|
public struct WindowPlacement
|
|
@ -1,6 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Ninjacrab.PersistentWindows.Common.WinApiBridge
|
namespace PersistentWindows.Common.WinApiBridge
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Windows Messages
|
/// Windows Messages
|
|
@ -1,7 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace Ninjacrab.PersistentWindows.Common.WinApiBridge
|
namespace PersistentWindows.Common.WinApiBridge
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
[StructLayout(LayoutKind.Sequential)]
|
[StructLayout(LayoutKind.Sequential)]
|
|
@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio 15
|
# Visual Studio 15
|
||||||
VisualStudioVersion = 15.0.28307.960
|
VisualStudioVersion = 15.0.28307.960
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ninjacrab.PersistentWindows.Common", "Ninjacrab.PersistentWindows.Common\Ninjacrab.PersistentWindows.Common.csproj", "{4CC8B3FB-214B-42AB-8AAE-E7DC5E266EF0}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PersistentWindows.Common", "Common\Common.csproj", "{4CC8B3FB-214B-42AB-8AAE-E7DC5E266EF0}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ninjacrab.PersistentWindows.SystrayShell", "Ninjacrab.PersistentWindows.SystrayShell\Ninjacrab.PersistentWindows.SystrayShell.csproj", "{A728279C-F567-4E54-8BC6-90A66DC3EF57}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PersistentWindows.SystrayShell", "SystrayShell\SystrayShell.csproj", "{A728279C-F567-4E54-8BC6-90A66DC3EF57}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
|
|
@ -4,11 +4,11 @@ using System.Threading;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
|
|
||||||
using Ninjacrab.PersistentWindows.Common;
|
using PersistentWindows.Common;
|
||||||
using Ninjacrab.PersistentWindows.Common.WinApiBridge;
|
using PersistentWindows.Common.WinApiBridge;
|
||||||
using Ninjacrab.PersistentWindows.Common.Diagnostics;
|
using PersistentWindows.Common.Diagnostics;
|
||||||
|
|
||||||
namespace Ninjacrab.PersistentWindows.SystrayShell
|
namespace PersistentWindows.SystrayShell
|
||||||
{
|
{
|
||||||
static class Program
|
static class Program
|
||||||
{
|
{
|
|
@ -8,7 +8,7 @@
|
||||||
// </auto-generated>
|
// </auto-generated>
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
namespace Ninjacrab.PersistentWindows.SystrayShell.Properties {
|
namespace PersistentWindows.SystrayShell.Properties {
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ namespace Ninjacrab.PersistentWindows.SystrayShell.Properties {
|
||||||
// class via a tool like ResGen or Visual Studio.
|
// class via a tool like ResGen or Visual Studio.
|
||||||
// To add or remove a member, edit your .ResX file then rerun ResGen
|
// To add or remove a member, edit your .ResX file then rerun ResGen
|
||||||
// with the /str option, or rebuild your VS project.
|
// with the /str option, or rebuild your VS project.
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
internal class Resources {
|
internal class Resources {
|
||||||
|
@ -39,7 +39,7 @@ namespace Ninjacrab.PersistentWindows.SystrayShell.Properties {
|
||||||
internal static global::System.Resources.ResourceManager ResourceManager {
|
internal static global::System.Resources.ResourceManager ResourceManager {
|
||||||
get {
|
get {
|
||||||
if (object.ReferenceEquals(resourceMan, null)) {
|
if (object.ReferenceEquals(resourceMan, null)) {
|
||||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Ninjacrab.PersistentWindows.SystrayShell.Properties.Resources", typeof(Resources).Assembly);
|
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("PersistentWindows.SystrayShell.Properties.Resources", typeof(Resources).Assembly);
|
||||||
resourceMan = temp;
|
resourceMan = temp;
|
||||||
}
|
}
|
||||||
return resourceMan;
|
return resourceMan;
|
||||||
|
@ -69,6 +69,10 @@ namespace Ninjacrab.PersistentWindows.SystrayShell.Properties {
|
||||||
return ((System.Drawing.Icon)(obj));
|
return ((System.Drawing.Icon)(obj));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Icon similar to (Icon).
|
||||||
|
/// </summary>
|
||||||
internal static System.Drawing.Icon pwIconBusy {
|
internal static System.Drawing.Icon pwIconBusy {
|
||||||
get {
|
get {
|
||||||
object obj = ResourceManager.GetObject("pwIconBusy", resourceCulture);
|
object obj = ResourceManager.GetObject("pwIconBusy", resourceCulture);
|
|
@ -1,28 +1,24 @@
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// <auto-generated>
|
// <auto-generated>
|
||||||
// This code was generated by a tool.
|
// This code was generated by a tool.
|
||||||
// Runtime Version:4.0.30319.34014
|
// Runtime Version:4.0.30319.42000
|
||||||
//
|
//
|
||||||
// Changes to this file may cause incorrect behavior and will be lost if
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
// the code is regenerated.
|
// the code is regenerated.
|
||||||
// </auto-generated>
|
// </auto-generated>
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
namespace Ninjacrab.PersistentWindows.SystrayShell.Properties
|
namespace PersistentWindows.SystrayShell.Properties {
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.10.0.0")]
|
||||||
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
|
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
|
||||||
{
|
|
||||||
|
|
||||||
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
||||||
|
|
||||||
public static Settings Default
|
public static Settings Default {
|
||||||
{
|
get {
|
||||||
get
|
|
||||||
{
|
|
||||||
return defaultInstance;
|
return defaultInstance;
|
||||||
}
|
}
|
||||||
}
|
}
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
|
@ -1,6 +1,6 @@
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
|
|
||||||
namespace Ninjacrab.PersistentWindows.SystrayShell
|
namespace PersistentWindows.SystrayShell
|
||||||
{
|
{
|
||||||
partial class SplashForm
|
partial class SplashForm
|
||||||
{
|
{
|
|
@ -1,7 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
|
|
||||||
namespace Ninjacrab.PersistentWindows.SystrayShell
|
namespace PersistentWindows.SystrayShell
|
||||||
{
|
{
|
||||||
public partial class SplashForm : Form
|
public partial class SplashForm : Form
|
||||||
{
|
{
|
|
@ -1,6 +1,6 @@
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
|
|
||||||
namespace Ninjacrab.PersistentWindows.SystrayShell
|
namespace PersistentWindows.SystrayShell
|
||||||
{
|
{
|
||||||
static class Globals
|
static class Globals
|
||||||
{
|
{
|
|
@ -7,11 +7,11 @@ using System.Timers;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.IO.Compression;
|
using System.IO.Compression;
|
||||||
|
|
||||||
using Ninjacrab.PersistentWindows.Common;
|
using PersistentWindows.Common;
|
||||||
using Ninjacrab.PersistentWindows.Common.Diagnostics;
|
using PersistentWindows.Common.Diagnostics;
|
||||||
using Ninjacrab.PersistentWindows.Common.WinApiBridge;
|
using PersistentWindows.Common.WinApiBridge;
|
||||||
|
|
||||||
namespace Ninjacrab.PersistentWindows.SystrayShell
|
namespace PersistentWindows.SystrayShell
|
||||||
{
|
{
|
||||||
public partial class SystrayForm : Form
|
public partial class SystrayForm : Form
|
||||||
{
|
{
|
|
@ -7,7 +7,7 @@
|
||||||
<ProjectGuid>{A728279C-F567-4E54-8BC6-90A66DC3EF57}</ProjectGuid>
|
<ProjectGuid>{A728279C-F567-4E54-8BC6-90A66DC3EF57}</ProjectGuid>
|
||||||
<OutputType>WinExe</OutputType>
|
<OutputType>WinExe</OutputType>
|
||||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
<RootNamespace>Ninjacrab.PersistentWindows.SystrayShell</RootNamespace>
|
<RootNamespace>PersistentWindows.SystrayShell</RootNamespace>
|
||||||
<AssemblyName>PersistentWindows</AssemblyName>
|
<AssemblyName>PersistentWindows</AssemblyName>
|
||||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
<FileAlignment>512</FileAlignment>
|
<FileAlignment>512</FileAlignment>
|
||||||
|
@ -107,9 +107,9 @@
|
||||||
</None>
|
</None>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Ninjacrab.PersistentWindows.Common\Ninjacrab.PersistentWindows.Common.csproj">
|
<ProjectReference Include="..\Common\Common.csproj">
|
||||||
<Project>{4cc8b3fb-214b-42ab-8aae-e7dc5e266ef0}</Project>
|
<Project>{4cc8b3fb-214b-42ab-8aae-e7dc5e266ef0}</Project>
|
||||||
<Name>Ninjacrab.PersistentWindows.Common</Name>
|
<Name>PersistentWindows.Common</Name>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
Loading…
Add table
Add a link
Reference in a new issue