lazarus/ide/tododlg.lfm
laurent 2c8a855666 Load glyph form resource
git-svn-id: trunk@16693 -
2008-09-24 06:55:26 +00:00

145 lines
3.1 KiB
Plaintext

object TodoDialog: TTodoDialog
Left = 342
Height = 269
Top = 202
Width = 475
Caption = 'Insert Todo'
ClientHeight = 269
ClientWidth = 475
OnCreate = FormCreate
ParentFont = False
LCLVersion = '0.9.25'
object TodoLabel: TLabel
Left = 8
Height = 14
Top = 8
Width = 27
Caption = 'Text:'
FocusControl = TodoMemo
ParentColor = False
end
object PriorityLabel: TLabel
AnchorSideTop.Side = asrBottom
AnchorSideBottom.Control = PriorityEdit
Left = 10
Height = 14
Top = 185
Width = 35
Anchors = [akLeft, akBottom]
BorderSpacing.Bottom = 2
Caption = 'Priority'
ParentColor = False
end
object OwnerLabel: TLabel
AnchorSideTop.Control = PriorityLabel
Left = 75
Height = 14
Top = 185
Width = 33
Caption = 'Owner'
ParentColor = False
end
object CategoryLabel: TLabel
AnchorSideTop.Control = PriorityLabel
Left = 248
Height = 14
Top = 185
Width = 46
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 = 155
Top = 24
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
AnchorSideBottom.Control = BtnPanel
Left = 6
Height = 27
Top = 201
Width = 38
Anchors = [akLeft, akBottom]
AutoSize = True
BorderSpacing.Bottom = 6
OnKeyPress = PriorityEditKeyPress
TabOrder = 1
end
object OwnerEdit: TEdit
AnchorSideTop.Control = PriorityEdit
Left = 76
Height = 27
Top = 201
Width = 162
AutoSize = True
TabOrder = 2
end
object CategoryEdit: TEdit
AnchorSideTop.Control = PriorityEdit
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 248
Height = 27
Top = 201
Width = 221
Anchors = [akTop, akLeft, akRight]
AutoSize = True
BorderSpacing.Right = 6
TabOrder = 3
end
object BtnPanel: TPanel
Height = 35
Top = 234
Width = 475
Align = alBottom
AutoSize = True
BevelOuter = bvNone
ClientHeight = 35
ClientWidth = 475
TabOrder = 4
object CancelButton: TBitBtn
Left = 394
Height = 23
Top = 6
Width = 75
Align = alRight
AutoSize = True
BorderSpacing.Around = 6
Cancel = True
Caption = 'Cancel'
Constraints.MinWidth = 75
ModalResult = 2
NumGlyphs = 0
TabOrder = 0
end
object OkButton: TBitBtn
Left = 313
Height = 23
Top = 6
Width = 75
Align = alRight
AutoSize = True
BorderSpacing.Around = 6
Caption = 'Ok'
Constraints.MinWidth = 75
Default = True
ModalResult = 1
NumGlyphs = 0
TabOrder = 1
end
end
end