Skip to content

Commit 2b49180

Browse files
author
tmcdos
committed
First commit
0 parents  commit 2b49180

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+61559
-0
lines changed

AboutDlg.dfm

+2,683
Large diffs are not rendered by default.

AboutDlg.pas

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
unit AboutDlg;
2+
3+
interface
4+
5+
uses
6+
Windows, Messages, SysUtils, Classes, Graphics,
7+
Controls, Forms, Dialogs, StdCtrls, Buttons, jpeg, ExtCtrls, ComCtrls;
8+
9+
type
10+
TFAboutDlg=class(TForm)
11+
Panel3: TPanel;
12+
Button2: TButton;
13+
PageControl1: TPageControl;
14+
tsIDR: TTabSheet;
15+
tsCrypto: TTabSheet;
16+
Icon: TImage;
17+
lProduct: TLabel;
18+
Shape1: TShape;
19+
Shape2: TShape;
20+
lVer: TLabel;
21+
lEmail: TLabel;
22+
lWWW: TLabel;
23+
Label1: TLabel;
24+
Label2: TLabel;
25+
Label3: TLabel;
26+
Label4: TLabel;
27+
Label5: TLabel;
28+
Label6: TLabel;
29+
Image1: TImage;
30+
bDonate: TBitBtn;
31+
Label7: TLabel;
32+
Label8: TLabel;
33+
lblHint: TLabel;
34+
procedure FormCreate(Sender : TObject);
35+
procedure lEmailClick(Sender : TObject);
36+
procedure lWWWClick(Sender : TObject);
37+
procedure bDonateClick(Sender : TObject);
38+
private
39+
{ Private declarations }
40+
public
41+
{ Public declarations }
42+
end;
43+
44+
var
45+
FAboutDlg:TFAboutDlg;
46+
47+
implementation
48+
49+
{$R *.DFM}
50+
51+
Uses Misc,ShellAPI;
52+
53+
procedure TFAboutDlg.FormCreate(Sender : TObject);
54+
begin
55+
lVer.Caption:='Version: '+IDRVersion;
56+
end;
57+
58+
procedure TFAboutDlg.lEmailClick(Sender : TObject);
59+
begin
60+
ShellExecute(Handle,'open','mailto:[email protected]',Nil,Nil,SHOW_OPENWINDOW);
61+
end;
62+
63+
procedure TFAboutDlg.lWWWClick(Sender : TObject);
64+
begin
65+
ShellExecute(Handle,'open','http://kpnc.org/idr32/en/',Nil,Nil,SHOW_OPENWINDOW);
66+
end;
67+
68+
procedure TFAboutDlg.bDonateClick(Sender : TObject);
69+
begin
70+
ShellExecute(Handle,'open','http://kpnc.org/idr32/en/donation.htm',Nil,Nil,SHOW_OPENWINDOW);
71+
end;
72+
73+
end.

ActiveProcesses.dfm

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
object FActiveProcesses: TFActiveProcesses
2+
Left = 390
3+
Top = 440
4+
BorderStyle = bsSingle
5+
Caption = 'Active Processes'
6+
ClientHeight = 310
7+
ClientWidth = 792
8+
Color = clBtnFace
9+
Font.Charset = DEFAULT_CHARSET
10+
Font.Color = clWindowText
11+
Font.Height = -10
12+
Font.Name = 'MS Sans Serif'
13+
Font.Style = []
14+
OldCreateOrder = False
15+
Position = poScreenCenter
16+
OnCreate = FormCreate
17+
OnDestroy = FormDestroy
18+
OnShow = FormShow
19+
PixelsPerInch = 96
20+
TextHeight = 13
21+
object btnDump: TButton
22+
Left = 171
23+
Top = 286
24+
Width = 61
25+
Height = 20
26+
Caption = 'Dump'
27+
TabOrder = 1
28+
OnClick = btnDumpClick
29+
end
30+
object btnCancel: TButton
31+
Left = 561
32+
Top = 286
33+
Width = 61
34+
Height = 20
35+
Caption = 'Cancel'
36+
TabOrder = 2
37+
OnClick = btnCancelClick
38+
end
39+
object lvProcesses: TListView
40+
Left = 0
41+
Top = 0
42+
Width = 792
43+
Height = 280
44+
Align = alTop
45+
Columns = <
46+
item
47+
Caption = 'PID'
48+
Width = 65
49+
end
50+
item
51+
Caption = 'Name'
52+
Width = 325
53+
end
54+
item
55+
Caption = 'Image Size'
56+
Width = 122
57+
end
58+
item
59+
Caption = 'EP'
60+
Width = 122
61+
end
62+
item
63+
Caption = 'Base'
64+
Width = 122
65+
end>
66+
Font.Charset = RUSSIAN_CHARSET
67+
Font.Color = clWindowText
68+
Font.Height = -12
69+
Font.Name = 'Courier New'
70+
Font.Style = []
71+
RowSelect = True
72+
ParentFont = False
73+
TabOrder = 0
74+
ViewStyle = vsReport
75+
OnClick = lvProcessesClick
76+
end
77+
end

0 commit comments

Comments
 (0)