-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathDetachedVideoFormUnit.pas
238 lines (215 loc) · 7.49 KB
/
DetachedVideoFormUnit.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
unit DetachedVideoFormUnit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Menus, TntMenus;
type
TDetachedVideoForm = class(TForm)
VideoPopupMenu: TTntPopupMenu;
pmiVideoFullscreen: TTntMenuItem;
pmiVideoNormalSize: TTntMenuItem;
procedure FormDblClick(Sender: TObject);
procedure pmiVideoFullscreenClick(Sender: TObject);
procedure pmiVideoNormalSizeClick(Sender: TObject);
procedure VideoPopupMenuPopup(Sender: TObject);
private
{ Private declarations }
FNormalLeft, FNormalTop, FNormalWidth, FNormalHeight : Integer;
function IsFullscreen : Boolean;
protected
procedure WMNCHitTest(var Message: TWMNCHitTest); message WM_NCHITTEST;
public
{ Public declarations }
procedure CreateParams(var Params: TCreateParams); override;
procedure SetNormalPos(NormalLeft, NormalTop, NormalWidth, NormalHeight: Integer);
procedure SetVideo25Size;
procedure SetVideo33Size;
procedure SetVideo50Size;
procedure SetVideo75Size;
procedure SetVideoFullSize;
procedure SetVideo125Size;
procedure SetVideo150Size;
property NormalLeft : Integer read FNormalLeft;
property NormalTop : Integer read FNormalTop;
property NormalWidth : Integer read FNormalWidth;
property NormalHeight : Integer read FNormalHeight;
end;
var
DetachedVideoForm: TDetachedVideoForm;
implementation
{$R *.dfm}
uses Main;
procedure TDetachedVideoForm.CreateParams(var Params: TCreateParams);
begin
inherited CreateParams(Params);
Params.Style := (Params.Style or WS_THICKFRAME);
FNormalLeft := 0;
FNormalTop := 0;
FNormalWidth := 320;
FNormalHeight := 240;
end;
procedure TDetachedVideoForm.FormDblClick(Sender: TObject);
begin
MainForm.ActionDetachVideo.Execute;
end;
procedure TDetachedVideoForm.pmiVideoFullscreenClick(Sender: TObject);
var Monitor : TMonitor;
begin
if (not IsFullscreen) then
begin
FNormalLeft := Self.Left;
FNormalTop := Self.Top;
FNormalWidth := Self.Width;
FNormalHeight := Self.Height;
Monitor := Screen.MonitorFromWindow(Self.Handle);
Self.SetBounds(Monitor.Left, Monitor.Top, Monitor.Width, Monitor.Height);
end;
end;
procedure TDetachedVideoForm.pmiVideoNormalSizeClick(Sender: TObject);
begin
if IsFullscreen then
begin
if FNormalWidth = 0 then
FNormalWidth := 320;
if (FNormalHeight = 0) then
FNormalHeight := 240;
Self.SetBounds(FNormalLeft, FNormalTop, FNormalWidth, FNormalHeight);
end;
end;
function TDetachedVideoForm.IsFullscreen : Boolean;
var Monitor : TMonitor;
begin
Monitor := Screen.MonitorFromWindow(Self.Handle);
Result := (Monitor.Left = Self.Left) and (Monitor.Top = Self.Top) and
(Monitor.Width = Self.Width) and (Monitor.Height = Self.Height);
end;
procedure TDetachedVideoForm.VideoPopupMenuPopup(Sender: TObject);
begin
pmiVideoNormalSize.Checked := not IsFullscreen;
pmiVideoNormalSize.Enabled := IsFullscreen;
pmiVideoFullscreen.Checked := IsFullscreen;
pmiVideoFullscreen.Enabled := not IsFullscreen;
end;
procedure TDetachedVideoForm.SetNormalPos(NormalLeft, NormalTop, NormalWidth, NormalHeight : Integer);
begin
FNormalLeft := NormalLeft;
FNormalTop := NormalTop;
FNormalWidth := NormalWidth;
FNormalHeight := NormalHeight;
end;
procedure TDetachedVideoForm.SetVideo150Size;
begin
if MainForm.ConfigObject.DoubledSubResolution AND
(StrToInt(MainForm.CurrentProject.VideoWidth) < 1280) AND
(StrToInt(MainForm.CurrentProject.VideoHeight) < 720) then
begin
Self.SetBounds(FNormalLeft, FNormalTop, MainForm.VideoRenderer.VideoWidth div 2 + MainForm.VideoRenderer.VideoWidth div 2 div 2,
MainForm.VideoRenderer.VideoHeight div 2 + MainForm.VideoRenderer.VideoHeight div 2 div 2);
end
else
begin
Self.SetBounds(FNormalLeft, FNormalTop, MainForm.VideoRenderer.VideoWidth + MainForm.VideoRenderer.VideoWidth div 2,
MainForm.VideoRenderer.VideoHeight + MainForm.VideoRenderer.VideoHeight div 2);
end;
end;
procedure TDetachedVideoForm.SetVideo125Size;
begin
if MainForm.ConfigObject.DoubledSubResolution AND
(StrToInt(MainForm.CurrentProject.VideoWidth) < 1280) AND
(StrToInt(MainForm.CurrentProject.VideoHeight) < 720) then
begin
Self.SetBounds(FNormalLeft, FNormalTop, MainForm.VideoRenderer.VideoWidth div 2 + MainForm.VideoRenderer.VideoWidth div 2 div 4,
MainForm.VideoRenderer.VideoHeight div 2 + MainForm.VideoRenderer.VideoHeight div 2 div 4);
end
else
begin
Self.SetBounds(FNormalLeft, FNormalTop, MainForm.VideoRenderer.VideoWidth + MainForm.VideoRenderer.VideoWidth div 4,
MainForm.VideoRenderer.VideoHeight + MainForm.VideoRenderer.VideoHeight div 4);
end;
end;
procedure TDetachedVideoForm.SetVideoFullSize;
begin
if MainForm.ConfigObject.DoubledSubResolution AND
(StrToInt(MainForm.CurrentProject.VideoWidth) < 1280) AND
(StrToInt(MainForm.CurrentProject.VideoHeight) < 720) then
begin
Self.SetBounds(FNormalLeft, FNormalTop, MainForm.VideoRenderer.VideoWidth div 2,
MainForm.VideoRenderer.VideoHeight div 2);
end
else
begin
Self.SetBounds(FNormalLeft, FNormalTop, MainForm.VideoRenderer.VideoWidth,
MainForm.VideoRenderer.VideoHeight);
end;
end;
procedure TDetachedVideoForm.SetVideo75Size;
begin
if MainForm.ConfigObject.DoubledSubResolution AND
(StrToInt(MainForm.CurrentProject.VideoWidth) < 1280) AND
(StrToInt(MainForm.CurrentProject.VideoHeight) < 720) then
begin
Self.SetBounds(FNormalLeft, FNormalTop, MainForm.VideoRenderer.VideoWidth div 2 * 3 div 4,
MainForm.VideoRenderer.VideoHeight div 2 * 3 div 4);
end
else
begin
Self.SetBounds(FNormalLeft, FNormalTop, MainForm.VideoRenderer.VideoWidth * 3 div 4,
MainForm.VideoRenderer.VideoHeight * 3 div 4);
end;
end;
procedure TDetachedVideoForm.SetVideo50Size;
begin
if MainForm.ConfigObject.DoubledSubResolution AND
(StrToInt(MainForm.CurrentProject.VideoWidth) < 1280) AND
(StrToInt(MainForm.CurrentProject.VideoHeight) < 720) then
begin
Self.SetBounds(FNormalLeft, FNormalTop, MainForm.VideoRenderer.VideoWidth div 2 div 2,
MainForm.VideoRenderer.VideoHeight div 2 div 2);
end
else
begin
Self.SetBounds(FNormalLeft, FNormalTop, MainForm.VideoRenderer.VideoWidth div 2,
MainForm.VideoRenderer.VideoHeight div 2);
end;
end;
procedure TDetachedVideoForm.SetVideo33Size;
begin
if MainForm.ConfigObject.DoubledSubResolution AND
(StrToInt(MainForm.CurrentProject.VideoWidth) < 1280) AND
(StrToInt(MainForm.CurrentProject.VideoHeight) < 720) then
begin
Self.SetBounds(FNormalLeft, FNormalTop, MainForm.VideoRenderer.VideoWidth div 2 div 3,
MainForm.VideoRenderer.VideoHeight div 2 div 3);
end
else
begin
Self.SetBounds(FNormalLeft, FNormalTop, MainForm.VideoRenderer.VideoWidth div 3,
MainForm.VideoRenderer.VideoHeight div 3);
end;
end;
procedure TDetachedVideoForm.SetVideo25Size;
begin
if MainForm.ConfigObject.DoubledSubResolution AND
(StrToInt(MainForm.CurrentProject.VideoWidth) < 1280) AND
(StrToInt(MainForm.CurrentProject.VideoHeight) < 720) then
begin
Self.SetBounds(FNormalLeft, FNormalTop, MainForm.VideoRenderer.VideoWidth div 2 div 4,
MainForm.VideoRenderer.VideoHeight div 2 div 4);
end
else
begin
Self.SetBounds(FNormalLeft, FNormalTop, MainForm.VideoRenderer.VideoWidth div 4,
MainForm.VideoRenderer.VideoHeight div 4);
end;
end;
procedure TDetachedVideoForm.WMNCHitTest(var Message: TWMNCHitTest);
var
Pt: TPoint;
begin
Pt := ScreenToClient(SmallPointToPoint(Message.Pos));
if Pt.Y < 2 then
Message.Result := HTCAPTION
else
inherited;
end;
end.