-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathUFAndroidManifest.pas
53 lines (41 loc) · 1.11 KB
/
UFAndroidManifest.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
unit UFAndroidManifest;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Clipbrd,
Vcl.ExtCtrls;
type
TFManifest = class(TForm)
Label3: TLabel;
MAndrMan: TMemo;
BDissMiss: TButton;
BSaveToClipb: TButton;
BAddManifest: TButton;
procedure BSaveToClipbClick(Sender: TObject);
procedure BDissMissClick(Sender: TObject);
procedure FormShow(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
FManifest: TFManifest;
implementation
uses
UFGetJars;
{$R *.dfm}
procedure TFManifest.BDissMissClick(Sender: TObject);
begin
Self.ModalResult := mrCancel;
end;
procedure TFManifest.BSaveToClipbClick(Sender: TObject);
begin
Clipboard.AsText := MAndrMan.Text;
end;
procedure TFManifest.FormShow(Sender: TObject);
begin
Self.Left := FGetJars.Left + ((FGetJars.Width - Self.Width) div 2);
Self.Top := FGetJars.Top + (FGetJars.Height - Self.Height) - 70;
end;
end.