~chronoscz/vcard-studio/trunk

« back to all changes in this revision

Viewing changes to Forms/FormNormalize.lfm

  • Committer: chronos
  • Date: 2023-06-06 15:05:18 UTC
  • Revision ID: svn-v4:b2f690cb-8b89-471c-b043-dbd4632e1e77:trunk:152
* Added: VCardProcessor class for processing contacts available from VCard package.
* Added: Normalize menu action for normalization of contact property values.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
object FormNormalize: TFormNormalize
 
2
  Left = 460
 
3
  Height = 674
 
4
  Top = 476
 
5
  Width = 959
 
6
  Caption = 'Normalize'
 
7
  ClientHeight = 674
 
8
  ClientWidth = 959
 
9
  DesignTimePPI = 144
 
10
  OnClose = FormClose
 
11
  OnCreate = FormCreate
 
12
  OnShow = FormShow
 
13
  LCLVersion = '2.2.6.0'
 
14
  object ScrollBox1: TScrollBox
 
15
    Left = 8
 
16
    Height = 608
 
17
    Top = 8
 
18
    Width = 937
 
19
    HorzScrollBar.Page = 600
 
20
    VertScrollBar.Page = 211
 
21
    Anchors = [akTop, akLeft, akRight, akBottom]
 
22
    ClientHeight = 606
 
23
    ClientWidth = 935
 
24
    TabOrder = 0
 
25
    object CheckBoxRemovePhoneSpaces: TCheckBox
 
26
      Left = 20
 
27
      Height = 30
 
28
      Top = 16
 
29
      Width = 318
 
30
      Caption = 'Remove spaces in phone numbers'
 
31
      TabOrder = 0
 
32
    end
 
33
    object CheckBoxAddPhonePrefix: TCheckBox
 
34
      Left = 20
 
35
      Height = 30
 
36
      Top = 55
 
37
      Width = 306
 
38
      Caption = 'Add default country phone prefix'
 
39
      TabOrder = 1
 
40
    end
 
41
    object CheckBoxRemoveExactDuplicates: TCheckBox
 
42
      Left = 20
 
43
      Height = 30
 
44
      Top = 96
 
45
      Width = 236
 
46
      Caption = 'Remove exact duplicates'
 
47
      TabOrder = 2
 
48
    end
 
49
    object EditPhoneCountryCode: TEdit
 
50
      Left = 480
 
51
      Height = 43
 
52
      Top = 55
 
53
      Width = 120
 
54
      TabOrder = 3
 
55
    end
 
56
    object CheckBoxRemovePhotos: TCheckBox
 
57
      Left = 20
 
58
      Height = 30
 
59
      Top = 136
 
60
      Width = 158
 
61
      Caption = 'Remove photos'
 
62
      TabOrder = 4
 
63
    end
 
64
    object CheckBoxConvertInternationaCallPrefixToCountryCode: TCheckBox
 
65
      Left = 20
 
66
      Height = 30
 
67
      Top = 176
 
68
      Width = 429
 
69
      Caption = 'Convert international call prefix to country code'
 
70
      TabOrder = 5
 
71
    end
 
72
    object EditPhoneInternationalCallPrefix: TEdit
 
73
      Left = 480
 
74
      Height = 43
 
75
      Top = 168
 
76
      Width = 120
 
77
      TabOrder = 6
 
78
    end
 
79
  end
 
80
  object ButtonCancel: TButton
 
81
    Left = 832
 
82
    Height = 38
 
83
    Top = 624
 
84
    Width = 113
 
85
    Caption = 'Cancel'
 
86
    ModalResult = 2
 
87
    TabOrder = 1
 
88
  end
 
89
  object ButtonProcess: TButton
 
90
    Left = 696
 
91
    Height = 38
 
92
    Top = 624
 
93
    Width = 113
 
94
    Caption = 'Process'
 
95
    ModalResult = 1
 
96
    OnClick = ButtonProcessClick
 
97
    TabOrder = 2
 
98
  end
 
99
end