-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Better Overlay and AppVeyor Happifier
- Loading branch information
1 parent
770c6f0
commit 0b7cfb9
Showing
10 changed files
with
623 additions
and
56 deletions.
There are no files selected for viewing
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Drawing; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Windows.Forms; | ||
|
||
namespace Overlay { | ||
internal interface IOverlay { | ||
|
||
bool AutoSize { get; set; } | ||
string Text { get; set; } | ||
Font Font { get; set; } | ||
|
||
Size Size { get; set; } | ||
Point Location { get; set; } | ||
|
||
Color TextBackColor { get; set; } | ||
Color TextForeColor { get; set; } | ||
|
||
IntPtr Handle { get; } | ||
|
||
FormWindowState WindowState { get; set; } | ||
double Opacity { get; set; } | ||
|
||
bool CanInvoke(); | ||
|
||
void Invoke(Delegate Method); | ||
void Close(); | ||
void Show(); | ||
void Dispose(); | ||
void Hide(); | ||
void Focus(); | ||
} | ||
} |
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.