lazarus/ideintf/actionseditor.lfm
mattias cf9646b109 fixed deleting an action in TActionListEditor
git-svn-id: trunk@7517 -
2005-08-17 10:55:31 +00:00

266 lines
6.1 KiB
Plaintext

object ActionListEditor: TActionListEditor
Caption = 'ActionListEditor'
ClientHeight = 300
ClientWidth = 400
KeyPreview = True
OnClose = ActionListEditorClose
OnKeyDown = ActionListEditorKeyDown
OnKeyPress = ActionListEditorKeyPress
PixelsPerInch = 112
Position = poScreenCenter
HorzScrollBar.Page = 399
VertScrollBar.Page = 299
Left = 290
Height = 300
Top = 159
Width = 400
object PanelDescr: TPanel
Align = alTop
BevelOuter = bvNone
ClientHeight = 26
ClientWidth = 400
FullRepaint = False
PopupMenu = PopMenuActions
TabOrder = 1
Height = 26
Top = 26
Width = 400
object lblCategory: TLabel
Caption = 'Categories:'
Color = clNone
Left = 6
Height = 17
Top = 6
Width = 69
end
object lblName: TLabel
Caption = 'Actions:'
Color = clNone
Left = 162
Height = 17
Top = 6
Width = 49
end
end
object Splitter: TSplitter
AutoSnap = False
Height = 248
ParentColor = True
OnCanResize = SplitterCanResize
Cursor = crHSplit
Left = 152
Height = 248
Top = 52
Width = 5
end
object PanelToolbar: TPanel
Align = alTop
BevelInner = bvRaised
BevelOuter = bvLowered
ClientHeight = 26
ClientWidth = 400
FullRepaint = False
TabOrder = 0
Height = 26
Width = 400
object btnAdd: TSpeedButton
Action = ActNew
Flat = True
NumGlyphs = 0
Spacing = 0
ShowHint = True
ParentShowHint = False
Left = 1
Height = 22
Top = 2
Width = 24
end
object btnDelete: TSpeedButton
Action = ActDelete
Flat = True
NumGlyphs = 0
Spacing = 0
ShowHint = True
ParentShowHint = False
Left = 35
Height = 22
Top = 2
Width = 24
end
object btnUp: TSpeedButton
Action = ActMoveUp
Flat = True
NumGlyphs = 0
Spacing = 0
ShowHint = True
ParentShowHint = False
Left = 64
Height = 22
Top = 2
Width = 24
end
object btnDown: TSpeedButton
Action = ActMoveDown
Flat = True
NumGlyphs = 0
Spacing = 0
ShowHint = True
ParentShowHint = False
Left = 89
Height = 22
Top = 2
Width = 24
end
object SBShowMenuNewActions: TSpeedButton
AllowAllUp = True
BorderSpacing.OnChange = nil
Flat = True
Glyph.Data = {
720000002F2A2058504D202A2F0A7374617469632063686172202A2062746E5F
646F776E6172726F775F78706D5B5D203D207B0A2235203320322031222C0A22
200963204E6F6E65222C0A222E09632023303030303030222C0A222E2E2E2E2E
222C0A22202E2E2E20222C0A2220202E2020227D3B0A
}
GroupIndex = 1
NumGlyphs = 0
Spacing = 0
OnClick = SBShowMenuNewActionsClick
ShowHint = True
ParentShowHint = False
Left = 25
Height = 22
Top = 2
Width = 10
end
end
object lstActionName: TListBox
Align = alClient
OnClick = lstActionNameClick
OnDblClick = lstActionNameDblClick
OnKeyDown = lstActionNameKeyDown
OnMouseDown = lstActionNameMouseDown
PopupMenu = PopMenuActions
TabOrder = 2
TopIndex = -1
Left = 157
Height = 248
Top = 52
Width = 243
end
object lstCategory: TListBox
Align = alLeft
OnClick = lstCategoryClick
OnMouseDown = lstActionNameMouseDown
PopupMenu = PopMenuActions
TabOrder = 3
TopIndex = -1
Height = 248
Top = 52
Width = 152
end
object ActionListSelf: TActionList
top = 240
object ActDelete: TAction
OnExecute = ActDeleteExecute
OnUpdate = ActDeleteUpdate
ShortCut = 46
Category = 'AddDelete'
end
object ActNew: TAction
OnExecute = ActNewExecute
ShortCut = 45
Category = 'AddDelete'
end
object ActNewStd: TAction
OnExecute = ActNewStdExecute
ShortCut = 16429
Category = 'AddDelete'
end
object ActMoveUp: TAction
OnExecute = ActMoveDownExecute
OnUpdate = ActMoveUpUpdate
ShortCut = 16422
Category = 'MoveUpDown'
end
object ActMoveDown: TAction
OnExecute = ActMoveDownExecute
OnUpdate = ActMoveDownUpdate
ShortCut = 16424
Category = 'MoveUpDown'
end
object ActPanelDescr: TAction
AutoCheck = True
Caption = 'ActPanelDescr'
Checked = True
OnExecute = ActPanelDescrExecute
Category = 'Panels'
end
object ActPanelToolBar: TAction
AutoCheck = True
Caption = 'ActPanelToolBar'
Checked = True
OnExecute = ActPanelToolBarExecute
Category = 'Panels'
end
end
object PopMenuActions: TPopupMenu
left = 160
top = 261
object mItemActListNewAction: TMenuItem
Action = ActNew
Caption = 'New Action'
OnClick = ActNewExecute
end
object mItemActListNewStdAction: TMenuItem
Action = ActNewStd
OnClick = ActNewStdExecute
end
object MenuItem8: TMenuItem
Caption = '-'
end
object mItemActListMoveUpAction: TMenuItem
Action = ActMoveUp
Caption = 'Move Up'
OnClick = ActMoveDownExecute
end
object mItemActListMoveDownAction: TMenuItem
Action = ActMoveDown
Caption = 'Move Down'
OnClick = ActMoveDownExecute
end
object MenuItem6: TMenuItem
Caption = '-'
end
object mItemActListDelAction: TMenuItem
Action = ActDelete
Caption = 'Delete'
OnClick = ActDeleteExecute
end
object MenuItem1: TMenuItem
Caption = '-'
end
object mItemActListPanelDescr: TMenuItem
Action = ActPanelDescr
AutoCheck = True
OnClick = ActPanelDescrExecute
end
object MenuItem2: TMenuItem
Action = ActPanelToolBar
AutoCheck = True
OnClick = ActPanelToolBarExecute
end
end
object PopMenuToolBarActions: TPopupMenu
top = 200
object mItemToolBarNewAction: TMenuItem
Action = ActNew
Default = True
OnClick = ActNewExecute
end
object mItemToolBarNewStdAction: TMenuItem
Action = ActNewStd
OnClick = ActNewStdExecute
end
end
end