summaryrefslogtreecommitdiff
path: root/plugins/HistoryPlusPlus/PassForm.dfm
blob: ced13628fe3c4d08bbeeb330ad098395e0b8a667 (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
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
object fmPass: TfmPass
  Left = 359
  Top = 180
  BorderIcons = [biSystemMenu]
  BorderStyle = bsDialog
  Caption = 'History++ Password Protection'
  ClientHeight = 329
  ClientWidth = 300
  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 Image1: TImage
    Left = 10
    Top = 10
    Width = 32
    Height = 29
    AutoSize = True
    Transparent = True
  end
  object laPassState: TLabel
    Left = 106
    Top = 254
    Width = 174
    Height = 25
    AutoSize = False
    Caption = '-'
    Layout = tlCenter
    WordWrap = True
  end
  object Bevel1: TBevel
    Left = 10
    Top = 291
    Width = 280
    Height = 2
  end
  object Label1: TLabel
    Left = 50
    Top = 10
    Width = 102
    Height = 13
    Caption = 'Password Options'
    Font.Charset = DEFAULT_CHARSET
    Font.Color = clWindowText
    Font.Height = -11
    Font.Name = 'MS Sans Serif'
    Font.Style = [fsBold]
    ParentFont = False
  end
  object rbProtAll: TRadioButton
    Left = 10
    Top = 53
    Width = 280
    Height = 17
    Caption = 'Protect all contacts'
    Checked = True
    TabOrder = 0
    TabStop = True
    OnClick = rbProtSelClick
  end
  object rbProtSel: TRadioButton
    Left = 10
    Top = 73
    Width = 280
    Height = 17
    Caption = 'Protect only selected contacts'
    TabOrder = 1
    TabStop = True
    OnClick = rbProtSelClick
  end
  object lvCList: TListView
    Left = 10
    Top = 93
    Width = 280
    Height = 150
    Checkboxes = True
    Columns = <
      item
        Width = 276
      end>
    ReadOnly = True
    RowSelect = True
    PopupMenu = PopupMenu1
    ShowColumnHeaders = False
    SortType = stText
    TabOrder = 2
    ViewStyle = vsReport
  end
  object bnPass: TButton
    Left = 10
    Top = 254
    Width = 89
    Height = 25
    Caption = 'Password...'
    TabOrder = 3
    OnClick = bnPassClick
  end
  object bnCancel: TButton
    Left = 215
    Top = 299
    Width = 75
    Height = 25
    Cancel = True
    Caption = 'Cancel'
    TabOrder = 5
    OnClick = bnCancelClick
  end
  object bnOK: TButton
    Left = 135
    Top = 299
    Width = 75
    Height = 25
    Caption = 'OK'
    TabOrder = 4
    OnClick = bnOKClick
  end
  object PopupMenu1: TPopupMenu
    Left = 186
    Top = 144
    object Refresh1: TMenuItem
      Caption = '&Refresh List'
      OnClick = Refresh1Click
    end
  end
end