-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
1 parent
9fb61ed
commit 3f7d83b
Showing
17 changed files
with
1,727 additions
and
1,720 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,39 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Diagnostics; | ||
using System.Runtime.CompilerServices; | ||
using System.Text; | ||
using System.Windows; | ||
using livelywpf.Model; | ||
|
||
namespace livelywpf.Core | ||
{ | ||
public interface IWallpaper | ||
{ | ||
WallpaperType GetWallpaperType(); | ||
LibraryModel GetWallpaperData(); | ||
IntPtr GetHWND(); | ||
void SetHWND(IntPtr hwnd); | ||
Process GetProcess(); | ||
void Show(); | ||
void Pause(); | ||
void Resume(); | ||
void Play(); | ||
void Stop(); | ||
void Close(); | ||
void Terminate(); | ||
LivelyScreen GetScreen(); | ||
void SetScreen(LivelyScreen display); | ||
void SendMessage(string msg); | ||
string GetLivelyPropertyCopyPath(); | ||
void SetVolume(int volume); | ||
event EventHandler<WindowInitializedArgs> WindowInitialized; | ||
} | ||
|
||
public class WindowInitializedArgs | ||
{ | ||
public bool Success { get; set; } | ||
public Exception Error { get; set; } | ||
public string Msg { get; set; } | ||
} | ||
} |
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
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
Oops, something went wrong.