mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-05-06 05:34:05 +02:00
29 lines
898 B
C#
29 lines
898 B
C#
using System;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Windows.Forms;
|
|
using TweetDuck.Controls;
|
|
|
|
namespace TweetDuck.Browser.Notification.Screenshot{
|
|
[SuppressMessage("ReSharper", "UnusedMember.Global")]
|
|
sealed class ScreenshotBridge{
|
|
private readonly Control owner;
|
|
|
|
private readonly Action<int> safeSetHeight;
|
|
private readonly Action safeTriggerScreenshot;
|
|
|
|
public ScreenshotBridge(Control owner, Action<int> safeSetHeight, Action safeTriggerScreenshot){
|
|
this.owner = owner;
|
|
this.safeSetHeight = safeSetHeight;
|
|
this.safeTriggerScreenshot = safeTriggerScreenshot;
|
|
}
|
|
|
|
public void SetHeight(int tweetHeight){
|
|
owner.InvokeSafe(() => safeSetHeight(tweetHeight));
|
|
}
|
|
|
|
public void TriggerScreenshot(){
|
|
owner.InvokeSafe(safeTriggerScreenshot);
|
|
}
|
|
}
|
|
}
|