mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-17 18:29:26 +02:00
110 lines
2.3 KiB
Plaintext
110 lines
2.3 KiB
Plaintext
object TodoDialog: TTodoDialog
|
|
Left = 342
|
|
Height = 267
|
|
Top = 202
|
|
Width = 475
|
|
ActiveControl = TodoMemo
|
|
Caption = 'Insert Todo'
|
|
ClientHeight = 267
|
|
ClientWidth = 475
|
|
OnCreate = FormCreate
|
|
Position = poScreenCenter
|
|
LCLVersion = '0.9.27'
|
|
object TodoLabel: TLabel
|
|
Left = 8
|
|
Height = 18
|
|
Top = 8
|
|
Width = 30
|
|
Caption = 'Text:'
|
|
FocusControl = TodoMemo
|
|
ParentColor = False
|
|
end
|
|
object PriorityLabel: TLabel
|
|
AnchorSideTop.Side = asrBottom
|
|
AnchorSideBottom.Control = PriorityEdit
|
|
Left = 10
|
|
Height = 18
|
|
Top = 179
|
|
Width = 45
|
|
Anchors = [akLeft, akBottom]
|
|
BorderSpacing.Bottom = 2
|
|
Caption = 'Priority'
|
|
ParentColor = False
|
|
end
|
|
object OwnerLabel: TLabel
|
|
AnchorSideTop.Control = PriorityLabel
|
|
Left = 75
|
|
Height = 18
|
|
Top = 179
|
|
Width = 41
|
|
Caption = 'Owner'
|
|
ParentColor = False
|
|
end
|
|
object CategoryLabel: TLabel
|
|
AnchorSideTop.Control = PriorityLabel
|
|
Left = 248
|
|
Height = 18
|
|
Top = 179
|
|
Width = 59
|
|
Caption = 'Category'
|
|
ParentColor = False
|
|
end
|
|
object TodoMemo: TMemo
|
|
AnchorSideTop.Control = TodoLabel
|
|
AnchorSideTop.Side = asrBottom
|
|
AnchorSideRight.Control = Owner
|
|
AnchorSideRight.Side = asrBottom
|
|
AnchorSideBottom.Control = PriorityLabel
|
|
Left = 6
|
|
Height = 145
|
|
Top = 28
|
|
Width = 463
|
|
Anchors = [akTop, akLeft, akRight, akBottom]
|
|
BorderSpacing.Top = 2
|
|
BorderSpacing.Right = 6
|
|
BorderSpacing.Bottom = 6
|
|
ScrollBars = ssAutoBoth
|
|
TabOrder = 0
|
|
end
|
|
object PriorityEdit: TEdit
|
|
AnchorSideTop.Side = asrBottom
|
|
Left = 6
|
|
Height = 27
|
|
Top = 199
|
|
Width = 38
|
|
Anchors = [akLeft, akBottom]
|
|
BorderSpacing.Bottom = 6
|
|
OnKeyPress = PriorityEditKeyPress
|
|
TabOrder = 1
|
|
end
|
|
object OwnerEdit: TEdit
|
|
AnchorSideTop.Control = PriorityEdit
|
|
Left = 76
|
|
Height = 27
|
|
Top = 199
|
|
Width = 162
|
|
TabOrder = 2
|
|
end
|
|
object CategoryEdit: TEdit
|
|
AnchorSideTop.Control = PriorityEdit
|
|
AnchorSideRight.Control = Owner
|
|
AnchorSideRight.Side = asrBottom
|
|
Left = 248
|
|
Height = 27
|
|
Top = 199
|
|
Width = 221
|
|
Anchors = [akTop, akLeft, akRight]
|
|
BorderSpacing.Right = 6
|
|
TabOrder = 3
|
|
end
|
|
object BtnPanel: TButtonPanel
|
|
Left = 6
|
|
Height = 36
|
|
Top = 225
|
|
Width = 463
|
|
TabOrder = 4
|
|
ShowButtons = [pbOK, pbCancel]
|
|
ShowBevel = False
|
|
end
|
|
end
|