forked from pyscripter/pyscripter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dlgCommandLine.dfm
137 lines (137 loc) · 3.48 KB
/
dlgCommandLine.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
133
134
135
136
137
inherited CommandLineDlg: TCommandLineDlg
HelpContext = 910
ActiveControl = SynParameters
Caption = 'Command Line Parameters'
ClientHeight = 150
ClientWidth = 446
OnDestroy = FormDestroy
ExplicitWidth = 452
ExplicitHeight = 178
PixelsPerInch = 96
TextHeight = 13
object Panel: TSpTBXPanel
Left = 0
Top = 0
Width = 446
Height = 150
Align = alClient
TabOrder = 0
TBXStyleBackground = True
DesignSize = (
446
150)
object SynParameters: TSynEdit
Left = 8
Top = 61
Width = 405
Height = 18
Anchors = [akLeft, akRight, akBottom]
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Courier New'
Font.Style = []
TabOrder = 0
OnEnter = SynParametersEnter
Gutter.Font.Charset = DEFAULT_CHARSET
Gutter.Font.Color = clWindowText
Gutter.Font.Height = -11
Gutter.Font.Name = 'Courier New'
Gutter.Font.Style = []
Gutter.Width = 0
HideSelection = True
Options = [eoAutoIndent, eoDragDropEditing, eoEnhanceEndKey, eoGroupUndo, eoShowScrollHint, eoSmartTabDelete, eoSmartTabs, eoTabsToSpaces]
ScrollBars = ssNone
WantReturns = False
end
object OKButton: TSpTBXButton
Left = 100
Top = 115
Width = 75
Height = 25
Caption = '&OK'
Anchors = [akRight, akBottom]
TabOrder = 1
OnClick = OKButtonClick
Default = True
ModalResult = 1
end
object BitBtn2: TSpTBXButton
Left = 194
Top = 115
Width = 75
Height = 25
Caption = '&Cancel'
Anchors = [akRight, akBottom]
TabOrder = 2
Cancel = True
ModalResult = 2
end
object HelpButton: TSpTBXButton
Left = 289
Top = 115
Width = 75
Height = 25
Caption = '&Help'
Anchors = [akRight, akBottom]
TabOrder = 3
OnClick = btnHelpClick
end
object TBXButton1: TSpTBXButton
Left = 419
Top = 61
Width = 17
Height = 19
Hint = 'History'
Anchors = [akRight, akBottom]
ParentShowHint = False
ShowHint = True
TabOrder = 5
DropDownMenu = TBXPopupHistory
end
object cbUseCommandLine: TSpTBXCheckBox
Left = 8
Top = 5
Width = 177
Height = 21
Caption = 'Use Command Line Parameters?'
ParentColor = True
TabOrder = 4
end
object Label1: TSpTBXLabel
Left = 8
Top = 27
Width = 421
Height = 28
Caption =
'Please enter parameters to be appended to the command line:'#13#10'Not' +
'e that the script name is automatically inserted as the first ar' +
'gument.'
Anchors = [akLeft, akBottom]
AutoSize = False
Wrapping = twWrap
end
object Label3: TSpTBXLabel
Left = 8
Top = 87
Width = 258
Height = 19
Caption = 'Parameters : Shift+Ctrl+P, Modifiers : Shift+Ctrl+M '
Anchors = [akLeft, akBottom]
Enabled = False
end
end
object TBXPopupHistory: TSpTBXPopupMenu
OnPopup = TBXPopupHistoryPopup
Left = 392
Top = 96
object EmptyHistoryPopupItem: TSpTBXItem
Caption = '(Empty History)'
end
object mnCommandHistoryMRU: TSpTBXMRUListItem
HidePathExtension = False
MaxItems = 6
OnClick = mnCommandHistoryMRUClick
end
end
end