summaryrefslogtreecommitdiff
path: root/plugins/HistoryPlusPlus/PassCheckForm.dfm
blob: 3db1ed206c432300ff84764a7d0df19ec0396c1c (plain)
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
object fmPassCheck: TfmPassCheck
  Left = 398
  Top = 290
  ActiveControl = edPass
  BorderIcons = [biSystemMenu]
  BorderStyle = bsDialog
  Caption = 'Password Check'
  ClientHeight = 166
  ClientWidth = 280
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  KeyPreview = True
  OldCreateOrder = False
  Position = poScreenCenter
  OnClose = FormClose
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  OnKeyDown = FormKeyDown
  PixelsPerInch = 96
  TextHeight = 13
  object Label1: TLabel
    Left = 10
    Top = 92
    Width = 49
    Height = 13
    Caption = 'Password:'
  end
  object Image1: TImage
    Left = 10
    Top = 10
    Width = 32
    Height = 29
    AutoSize = True
    Transparent = True
  end
  object Label2: TLabel
    Left = 50
    Top = 10
    Width = 220
    Height = 31
    AutoSize = False
    Caption = 'Enter password'
    Font.Charset = DEFAULT_CHARSET
    Font.Color = clWindowText
    Font.Height = -11
    Font.Name = 'MS Sans Serif'
    Font.Style = [fsBold]
    ParentFont = False
    WordWrap = True
  end
  object Label3: TLabel
    Left = 10
    Top = 46
    Width = 260
    Height = 37
    AutoSize = False
    Caption = 'To access Password Protection options you need to enter password'
    WordWrap = True
  end
  object Bevel1: TBevel
    Left = 10
    Top = 124
    Width = 260
    Height = 2
  end
  object edPass: TEdit
    Left = 77
    Top = 88
    Width = 193
    Height = 21
    MaxLength = 100
    TabOrder = 0
    PasswordChar = '*'
    OnKeyPress = edPassKeyPress
  end
  object bnOK: TButton
    Left = 118
    Top = 134
    Width = 75
    Height = 25
    Caption = 'OK'
    Default = True
    TabOrder = 1
    OnClick = bnOKClick
  end
  object bnCancel: TButton
    Left = 196
    Top = 134
    Width = 75
    Height = 25
    Cancel = True
    Caption = 'Cancel'
    TabOrder = 2
    OnClick = bnCancelClick
  end
end