File: charactermapdlg.lfm

package info (click to toggle)
lazarus 2.0.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 214,460 kB
  • sloc: pascal: 1,862,622; xml: 265,709; cpp: 56,595; sh: 3,008; java: 609; makefile: 535; perl: 297; sql: 222; ansic: 137
file content (281 lines) | stat: -rw-r--r-- 7,992 bytes parent folder | download | duplicates (3)
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
object CharacterMapDialog: TCharacterMapDialog
  Left = 242
  Height = 477
  Top = 126
  Width = 590
  BorderStyle = bsSizeToolWin
  Caption = 'CharacterMapDialog'
  ClientHeight = 477
  ClientWidth = 590
  FormStyle = fsStayOnTop
  KeyPreview = True
  OnCreate = FormCreate
  OnKeyDown = FormKeyDown
  OnShow = FormShow
  Position = poScreenCenter
  LCLVersion = '1.9.0.0'
  object ButtonPanel: TButtonPanel
    Left = 6
    Height = 26
    Top = 445
    Width = 578
    OKButton.Name = 'OKButton'
    OKButton.DefaultCaption = True
    OKButton.Enabled = False
    HelpButton.Name = 'HelpButton'
    HelpButton.DefaultCaption = True
    HelpButton.OnClick = HelpButtonClick
    CloseButton.Name = 'CloseButton'
    CloseButton.DefaultCaption = True
    CancelButton.Name = 'CancelButton'
    CancelButton.DefaultCaption = True
    CancelButton.Enabled = False
    TabOrder = 1
    ShowButtons = [pbClose, pbHelp]
    ShowBevel = False
  end
  object PageControl1: TPageControl
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = Owner
    AnchorSideRight.Control = Owner
    AnchorSideRight.Side = asrBottom
    AnchorSideBottom.Control = ButtonPanel
    Left = 6
    Height = 433
    Top = 6
    Width = 578
    ActivePage = pgAnsi
    Anchors = [akTop, akLeft, akRight, akBottom]
    BorderSpacing.Around = 6
    TabIndex = 1
    TabOrder = 0
    object pgUnicode: TTabSheet
      Caption = 'Unicode'
      ClientHeight = 405
      ClientWidth = 570
      object UnicodeCharInfoLabel: TLabel
        AnchorSideLeft.Control = Owner
        AnchorSideTop.Control = cbUniRange
        AnchorSideTop.Side = asrCenter
        Left = 6
        Height = 15
        Top = 380
        Width = 118
        BorderSpacing.Around = 6
        Caption = 'UnicodeCharInfoLabel'
        ParentColor = False
      end
      object UnicodeGrid: TStringGrid
        AnchorSideLeft.Control = pgUnicode
        AnchorSideTop.Control = pgUnicode
        AnchorSideRight.Control = pgUnicode
        AnchorSideRight.Side = asrBottom
        AnchorSideBottom.Control = cbUniRange
        Left = 0
        Height = 370
        Top = 0
        Width = 570
        Anchors = [akTop, akLeft, akRight, akBottom]
        AutoFillColumns = True
        ColCount = 16
        DefaultColWidth = 16
        DefaultDrawing = False
        FixedCols = 0
        FixedRows = 0
        Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goDrawFocusSelected, goSmoothScroll]
        RowCount = 15
        TabOrder = 0
        OnKeyPress = StringGridKeyPress
        OnMouseDown = StringGridMouseDown
        OnMouseMove = UnicodeGridMouseMove
        OnPrepareCanvas = GridPrepareCanvas
        OnSelectCell = UnicodeGridSelectCell
        ColWidths = (
          35
          35
          35
          35
          35
          35
          35
          35
          35
          35
          35
          35
          35
          35
          35
          41
        )
      end
      object cbUniRange: TComboBox
        AnchorSideTop.Control = UnicodeGrid
        AnchorSideRight.Control = SortUniRangeListButton
        AnchorSideBottom.Control = pgUnicode
        AnchorSideBottom.Side = asrBottom
        Left = 242
        Height = 23
        Top = 376
        Width = 291
        Anchors = [akRight, akBottom]
        BorderSpacing.Around = 6
        DropDownCount = 25
        ItemHeight = 15
        OnSelect = cbUniRangeSelect
        Style = csDropDownList
        TabOrder = 1
      end
      object RangeLabel: TLabel
        AnchorSideTop.Control = cbUniRange
        AnchorSideTop.Side = asrCenter
        AnchorSideRight.Control = cbUniRange
        Left = 203
        Height = 15
        Top = 380
        Width = 33
        Anchors = [akTop, akRight]
        Caption = 'Range'
        ParentColor = False
      end
      object SortUniRangeListButton: TSpeedButton
        AnchorSideTop.Control = cbUniRange
        AnchorSideTop.Side = asrCenter
        AnchorSideRight.Control = pgUnicode
        AnchorSideRight.Side = asrBottom
        AnchorSideBottom.Control = pgUnicode
        Left = 539
        Height = 25
        Top = 375
        Width = 25
        AllowAllUp = True
        Anchors = [akTop, akRight]
        BorderSpacing.Around = 6
        GroupIndex = 1
        OnClick = SortUniRangeListButtonClick
        ShowHint = True
        ParentShowHint = False
      end
    end
    object pgAnsi: TTabSheet
      Caption = 'ANSI'
      ClientHeight = 405
      ClientWidth = 570
      object AnsiCharInfoLabel: TLabel
        AnchorSideLeft.Control = pgAnsi
        AnchorSideTop.Control = cbCodePage
        AnchorSideTop.Side = asrCenter
        AnchorSideRight.Control = pgAnsi
        AnchorSideRight.Side = asrBottom
        AnchorSideBottom.Control = pgAnsi
        AnchorSideBottom.Side = asrBottom
        Left = 6
        Height = 15
        Top = 380
        Width = 97
        BorderSpacing.Around = 6
        Caption = 'AnsiCharInfoLabel'
        ParentColor = False
      end
      object AnsiGrid: TStringGrid
        AnchorSideLeft.Control = pgAnsi
        AnchorSideTop.Control = pgAnsi
        AnchorSideRight.Control = pgAnsi
        AnchorSideRight.Side = asrBottom
        AnchorSideBottom.Control = cbCodePage
        Left = 0
        Height = 370
        Top = 0
        Width = 570
        Anchors = [akTop, akLeft, akRight, akBottom]
        ColCount = 17
        DefaultColWidth = 16
        DefaultDrawing = False
        Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goDrawFocusSelected, goSmoothScroll]
        RowCount = 15
        TabOrder = 0
        OnKeyPress = StringGridKeyPress
        OnMouseDown = StringGridMouseDown
        OnMouseMove = AnsiGridMouseMove
        OnPrepareCanvas = GridPrepareCanvas
        OnSelectCell = AnsiGridSelectCell
        ColWidths = (
          16
          34
          34
          34
          34
          34
          34
          34
          34
          34
          34
          34
          34
          34
          34
          34
          40
        )
      end
      object cbCodePage: TComboBox
        AnchorSideTop.Control = AnsiGrid
        AnchorSideTop.Side = asrCenter
        AnchorSideRight.Control = pgAnsi
        AnchorSideRight.Side = asrBottom
        AnchorSideBottom.Control = pgAnsi
        AnchorSideBottom.Side = asrBottom
        Left = 245
        Height = 23
        Top = 376
        Width = 319
        Anchors = [akRight, akBottom]
        BorderSpacing.Around = 6
        DropDownCount = 25
        ItemHeight = 15
        Items.Strings = (
          'cp1250 - Central and East European Latin'
          'cp1251 - Cyrillic'
          'cp1252 - West European Latin'
          'cp1253 - Greek'
          'cp1254 - Turkish'
          'cp1255 - Hebrew'
          'cp1256 - Arabic'
          'cp1257 - Baltic'
          'cp1258 - Vietnamese'
          'cp437 - Original IBM PC hardware'
          'cp850 - Latin-1'
          'cp852 - Latin-2'
          'cp866 - Belarusian, Russian, Ukrainian'
          'cp874 - Thai'
          'cp932 - Japanese'
          'cp936 - ANSI/OEM Simplified Chinese'
          'cp949 - Korean'
          'cp950 - Traditional Chinese'
          'macintosh - MAC Roman (Western Europe)'
          'koi8 - Ukrainian, Cyrillic'
          'iso88591 - ISO Latin-1 (Western Europe)'
          'iso88592 - ISO Latin-2 (Central and Eastern Europe)'
          'iso885915 - ISO Latin-9 (Western Europe)'
        )
        OnSelect = cbCodePageSelect
        Style = csDropDownList
        TabOrder = 1
      end
      object CodePageLabel: TLabel
        AnchorSideLeft.Control = AnsiCharInfoLabel
        AnchorSideTop.Control = cbCodePage
        AnchorSideTop.Side = asrCenter
        AnchorSideRight.Control = cbCodePage
        Left = 182
        Height = 15
        Top = 380
        Width = 57
        Anchors = [akTop, akRight]
        Caption = 'Code page'
        ParentColor = False
      end
    end
  end
end