lazarus/ide/tododlg.lfm
2007-12-10 11:14:11 +00:00

97 lines
1.7 KiB
Plaintext

object TodoDialog: TTodoDialog
Left = 342
Height = 248
Top = 202
Width = 483
HorzScrollBar.Page = 482
VertScrollBar.Page = 247
ActiveControl = OkButton
Caption = 'Insert Todo'
ClientHeight = 248
ClientWidth = 483
OnCreate = FormCreate
object TodoLabel: TLabel
Left = 8
Height = 14
Top = 8
Width = 27
Caption = 'Text:'
FocusControl = TodoMemo
ParentColor = False
end
object PriorityLabel: TLabel
Left = 10
Height = 14
Top = 167
Width = 35
Caption = 'Priority'
ParentColor = False
end
object OwnerLabel: TLabel
Left = 56
Height = 14
Top = 168
Width = 33
Caption = 'Owner'
ParentColor = False
end
object CategoryLabel: TLabel
Left = 248
Height = 14
Top = 168
Width = 46
Caption = 'Category'
ParentColor = False
end
object OkButton: TButton
Left = 312
Height = 25
Top = 216
Width = 75
Caption = 'Ok'
Default = True
ModalResult = 1
TabOrder = 4
end
object CancelButton: TButton
Left = 397
Height = 25
Top = 216
Width = 75
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 5
end
object TodoMemo: TMemo
Left = 8
Height = 136
Top = 24
Width = 464
ScrollBars = ssAutoBoth
TabOrder = 0
end
object PriorityEdit: TEdit
Left = 8
Height = 23
Top = 181
Width = 38
OnKeyPress = PriorityEditKeyPress
TabOrder = 1
end
object OwnerEdit: TEdit
Left = 56
Height = 23
Top = 181
Width = 182
TabOrder = 2
end
object CategoryEdit: TEdit
Left = 248
Height = 23
Top = 181
Width = 224
TabOrder = 3
end
end