Skip to content

Commit 78a57e3

Browse files
authored
Sync from PC
1 parent 9082ce3 commit 78a57e3

15 files changed

+2537
-0
lines changed

src-RDP_C&C/LicenseUnit.dcu

5.66 KB
Binary file not shown.

src-RDP_C&C/LicenseUnit.dfm

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
object LicenseForm: TLicenseForm
2+
Left = 0
3+
Top = 0
4+
BorderIcons = []
5+
BorderStyle = bsDialog
6+
Caption = 'License Agreement'
7+
ClientHeight = 346
8+
ClientWidth = 539
9+
Color = clBtnFace
10+
Font.Charset = DEFAULT_CHARSET
11+
Font.Color = clWindowText
12+
Font.Height = -11
13+
Font.Name = 'Tahoma'
14+
Font.Style = []
15+
Position = poOwnerFormCenter
16+
PixelsPerInch = 96
17+
TextHeight = 13
18+
object mText: TMemo
19+
Left = 8
20+
Top = 8
21+
Width = 523
22+
Height = 297
23+
Font.Charset = DEFAULT_CHARSET
24+
Font.Color = clWindowText
25+
Font.Height = -13
26+
Font.Name = 'Tahoma'
27+
Font.Style = []
28+
ParentFont = False
29+
ReadOnly = True
30+
ScrollBars = ssVertical
31+
TabOrder = 0
32+
WordWrap = False
33+
end
34+
object bAccept: TButton
35+
Left = 91
36+
Top = 311
37+
Width = 150
38+
Height = 30
39+
Caption = '&Accept'
40+
Font.Charset = DEFAULT_CHARSET
41+
Font.Color = clWindowText
42+
Font.Height = -13
43+
Font.Name = 'Tahoma'
44+
Font.Style = [fsBold]
45+
ModalResult = 1
46+
ParentFont = False
47+
TabOrder = 1
48+
end
49+
object bDecline: TButton
50+
Left = 292
51+
Top = 311
52+
Width = 150
53+
Height = 30
54+
Caption = '&Decline'
55+
Font.Charset = DEFAULT_CHARSET
56+
Font.Color = clWindowText
57+
Font.Height = -13
58+
Font.Name = 'Tahoma'
59+
Font.Style = [fsBold]
60+
ModalResult = 2
61+
ParentFont = False
62+
TabOrder = 2
63+
end
64+
end

src-RDP_C&C/LicenseUnit.pas

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
Copyright 2014 Stas'M Corp.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
}
16+
17+
unit LicenseUnit;
18+
19+
interface
20+
21+
uses
22+
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
23+
Dialogs, StdCtrls;
24+
25+
type
26+
TLicenseForm = class(TForm)
27+
mText: TMemo;
28+
bAccept: TButton;
29+
bDecline: TButton;
30+
private
31+
{ Private declarations }
32+
public
33+
{ Public declarations }
34+
end;
35+
36+
var
37+
LicenseForm: TLicenseForm;
38+
39+
implementation
40+
41+
{$R *.dfm}
42+
43+
end.

src-RDP_C&C/MainUnit.dcu

31.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)