-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathWP.GitHub.Setting.dfm
132 lines (132 loc) · 2.56 KB
/
WP.GitHub.Setting.dfm
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
object Frm_Settings: TFrm_Settings
Left = 0
Top = 0
BorderStyle = bsSizeToolWin
Caption = 'Settings'
ClientHeight = 209
ClientWidth = 391
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
OnCreate = FormCreate
TextHeight = 15
object GroupBox1: TGroupBox
Left = 0
Top = 0
Width = 391
Height = 96
Align = alTop
Caption = 'Git'
TabOrder = 0
object Label1: TLabel
Left = 16
Top = 40
Width = 73
Height = 15
Caption = 'Git.exe PATH: '
end
object edt_GitPath: TEdit
Left = 95
Top = 37
Width = 282
Height = 23
TabOrder = 0
Text = 'C:\Program Files\Git\bin\git.exe'
TextHint = 'C:\Program Files\Git\bin\git.exe'
end
object Button1: TButton
Left = 348
Top = 39
Width = 26
Height = 19
Caption = '...'
TabOrder = 1
end
end
object GroupBox2: TGroupBox
Left = 0
Top = 96
Width = 391
Height = 113
Align = alClient
Caption = 'Other Options'
TabOrder = 1
DesignSize = (
391
113)
object Label2: TLabel
Left = 18
Top = 57
Width = 81
Height = 15
Caption = 'Default period: '
end
object Label3: TLabel
Left = 18
Top = 83
Width = 99
Height = 15
Caption = 'Default Language: '
end
object Btn_Close: TButton
Left = 324
Top = 87
Width = 64
Height = 23
Anchors = [akRight, akBottom]
Caption = 'Close'
TabOrder = 4
OnClick = Btn_CloseClick
end
object Btn_Save: TButton
Left = 259
Top = 87
Width = 64
Height = 23
Anchors = [akRight, akBottom]
Caption = 'Save'
TabOrder = 3
OnClick = Btn_SaveClick
end
object cbb_Period: TComboBox
Left = 99
Top = 54
Width = 74
Height = 23
Style = csDropDownList
ItemIndex = 0
TabOrder = 1
Text = 'Daily'
Items.Strings = (
'Daily'
'Weekly'
'Monthly'
'Yearly')
end
object cbb_Lang: TComboBox
Left = 117
Top = 80
Width = 74
Height = 23
Style = csDropDownList
ItemIndex = 0
TabOrder = 2
Text = 'Pascal'
Items.Strings = (
'Pascal'
'C/C++'
'SQL')
end
object chk_StartupLoad: TCheckBox
Left = 18
Top = 24
Width = 119
Height = 17
Caption = 'Load at IDE startup'
TabOrder = 0
end
end
end