summaryrefslogtreecommitdiff
path: root/plugins/HistoryPlusPlus/EmptyHistoryForm.dfm
blob: 8bc9997da0e7ec4ffb8f3e6cef71b3135302cc92 (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
object EmptyHistoryFrm: TEmptyHistoryFrm
  Left = 346
  Top = 283
  BorderStyle = bsDialog
  BorderWidth = 8
  Caption = 'Empty History'
  ClientHeight = 79
  ClientWidth = 274
  Color = clBtnFace
  DefaultMonitor = dmDesktop
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  FormStyle = fsStayOnTop
  KeyPreview = True
  OldCreateOrder = True
  Position = poScreenCenter
  OnCreate = FormCreate
  OnKeyDown = FormKeyDown
  OnShow = FormShow
  DesignSize = (
    274
    79)
  PixelsPerInch = 96
  TextHeight = 13
  object Image: TImage
    Left = 0
    Top = 0
    Width = 32
    Height = 32
  end
  object Text: TLabel
    Left = 42
    Top = 0
    Width = 232
    Height = 32
    Anchors = [akLeft, akTop, akRight]
    AutoSize = False
    Layout = tlCenter
    WordWrap = True
  end
  object paButtons: TPanel
    Left = 0
    Top = 54
    Width = 274
    Height = 25
    Align = alBottom
    AutoSize = True
    BevelOuter = bvNone
    TabOrder = 0
    object btYes: TButton
      Left = 0
      Top = 0
      Width = 75
      Height = 25
      Caption = 'Yes'
      ModalResult = 6
      TabOrder = 0
      OnClick = btYesClick
    end
    object btNo: TButton
      Left = 85
      Top = 0
      Width = 75
      Height = 25
      Cancel = True
      Caption = 'No'
      ModalResult = 7
      TabOrder = 1
    end
  end
  object paContacts: TPanel
    Left = 0
    Top = 31
    Width = 274
    Height = 23
    Align = alBottom
    BevelOuter = bvNone
    TabOrder = 1
    Visible = False
    object cbInclude: TCheckBox
      Left = 0
      Top = 0
      Width = 274
      Height = 23
      Caption = 'Empty history of subcontacts also'
      Checked = True
      State = cbChecked
      TabOrder = 0
    end
  end
end