-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathunit1.lfm
125 lines (125 loc) · 2.76 KB
/
unit1.lfm
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
object Form1: TForm1
Left = 332
Height = 730
Top = 122
Width = 861
Caption = 'Form1'
ClientHeight = 730
ClientWidth = 861
OnCreate = FormCreate
Position = poScreenCenter
LCLVersion = '2.3.0.0'
object Memo1: TMemo
Left = 8
Height = 648
Top = 32
Width = 456
Anchors = [akTop, akLeft, akRight, akBottom]
Font.Name = 'Courier New'
Lines.Strings = (
'{'
' "user:info": {'
' "username":"Corpsman",'
' "referenceCode":"Blubber",'
' "userType":"Normal",'
' "isLoggedIn":true,'
' "dateFormat":"dd.MM.yyyy",'
' "unitSetName":"Metric",'
' "roles":'
' ['
' "Public",'
' "Premium"'
' ],'
' "publicGuid":"424242-4242-4242-4242-424224",'
' "avatarUrl":"https:\/\/img.geocaching.com\/avatar\/424242-4242-4242-4242-424224.png"'
' },'
' "app:options": {'
' "localRegion":"en-US",'
' "coordInfoUrl":"https:\/\/coord.info",'
' "paymentUrl":"https:\/\/payments.geocaching.com"'
' }'
'}'
)
ParentFont = False
ScrollBars = ssAutoBoth
TabOrder = 0
WordWrap = False
end
object Label1: TLabel
Left = 16
Height = 15
Top = 10
Width = 120
Caption = 'Paste your JSON Code:'
ParentColor = False
end
object Button1: TButton
Left = 8
Height = 25
Top = 700
Width = 75
Anchors = [akLeft, akBottom]
Caption = 'Analyze'
OnClick = Button1Click
TabOrder = 1
end
object TreeView1: TTreeView
Left = 480
Height = 648
Top = 32
Width = 369
Anchors = [akTop, akRight, akBottom]
ShowSeparators = False
TabOrder = 2
end
object Button2: TButton
Left = 775
Height = 25
Top = 694
Width = 75
Anchors = [akRight, akBottom]
Caption = 'Close'
OnClick = Button2Click
TabOrder = 3
end
object Label2: TLabel
Left = 96
Height = 15
Top = 702
Width = 47
Anchors = [akLeft, akBottom]
Caption = 'Findpath'
ParentColor = False
end
object Button3: TButton
Left = 472
Height = 25
Top = 694
Width = 75
Anchors = [akLeft, akBottom]
Caption = 'Search'
OnClick = Button3Click
TabOrder = 4
end
object ComboBox1: TComboBox
Left = 152
Height = 23
Top = 702
Width = 312
Anchors = [akLeft, akBottom]
ItemHeight = 15
TabOrder = 5
Text = 'ComboBox1'
end
object CheckBox1: TCheckBox
Left = 8
Height = 19
Top = 680
Width = 120
Anchors = [akLeft, akBottom]
Caption = 'Support comments'
Checked = True
State = cbChecked
TabOrder = 6
end
end