Skip to content

Commit

Permalink
Merge pull request #3 from xtuaok/overlay-0300-addon
Browse files Browse the repository at this point in the history
Overlay 0300 addon
  • Loading branch information
xtuaok committed Mar 12, 2015
2 parents 7aa2452 + f2f70e4 commit 179b6b3
Show file tree
Hide file tree
Showing 33 changed files with 1,317 additions and 1,847 deletions.
1 change: 1 addition & 0 deletions EnmityPlugin.sln
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Files", "Files", "{84CCF15D
full.exclude = full.exclude
LICENSE.txt = LICENSE.txt
PS-Zip.psm1 = PS-Zip.psm1
README.md = README.md
EndProjectSection
EndProject
Global
Expand Down
17 changes: 12 additions & 5 deletions EnmityPlugin/App.config
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.net>
<settings>
<httpWebRequest useUnsafeHeaderParsing = "true"/>
</settings>
</system.net>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="Tamagawa.EnmityPlugin.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<userSettings>
<Tamagawa.EnmityPlugin.Properties.Settings>
<setting name="IgnoreVersion" serializeAs="String">
<value />
</setting>
</Tamagawa.EnmityPlugin.Properties.Settings>
</userSettings>
</configuration>
55 changes: 0 additions & 55 deletions EnmityPlugin/ConfigEventArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,42 +7,6 @@

namespace Tamagawa.EnmityPlugin
{
public class VisibleStateChangedEventArgs : EventArgs
{
public bool IsVisible { get; private set; }
public VisibleStateChangedEventArgs(bool isVisible)
{
this.IsVisible = isVisible;
}
}

public class ThruStateChangedEventArgs : EventArgs
{
public bool IsClickThru { get; private set; }
public ThruStateChangedEventArgs(bool isClickThru)
{
this.IsClickThru = isClickThru;
}
}

public class UrlChangedEventArgs : EventArgs
{
public string NewUrl { get; private set; }
public UrlChangedEventArgs(string url)
{
this.NewUrl = url;
}
}

public class MaxFrameRateChangedEventArgs : EventArgs
{
public int NewFrameRate { get; private set; }
public MaxFrameRateChangedEventArgs(int frameRate)
{
this.NewFrameRate = frameRate;
}
}

public class ScanIntervalChangedEventArgs : EventArgs
{
public int NewScanInterval { get; private set; }
Expand All @@ -51,23 +15,4 @@ public ScanIntervalChangedEventArgs(int newScanInterval)
this.NewScanInterval = newScanInterval;
}
}

public class GlobalHotkeyEnabledChangedEventArgs : EventArgs
{
public bool NewGlobalHotkeyEnabled { get; private set; }
public GlobalHotkeyEnabledChangedEventArgs(bool globalHotkeyEnabled)
{
this.NewGlobalHotkeyEnabled = globalHotkeyEnabled;
}
}

public class GlobalHotkeyChangedEventArgs : EventArgs
{
public Keys NewHotkey { get; private set; }
public GlobalHotkeyChangedEventArgs(Keys hotkey)
{
this.NewHotkey = hotkey;
}
}

}
Loading

0 comments on commit 179b6b3

Please sign in to comment.