File: projectinspector.lfm

package info (click to toggle)
lazarus 2.0.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 214,460 kB
  • sloc: pascal: 1,862,622; xml: 265,709; cpp: 56,595; sh: 3,008; java: 609; makefile: 535; perl: 297; sql: 222; ansic: 137
file content (166 lines) | stat: -rw-r--r-- 4,451 bytes parent folder | download
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
object ProjectInspectorForm: TProjectInspectorForm
  Left = 670
  Height = 456
  Top = 134
  Width = 299
  ActiveControl = ItemsTreeView
  AllowDropFiles = True
  Caption = 'ProjectInspectorForm'
  ClientHeight = 456
  ClientWidth = 299
  OnCreate = FormCreate
  OnDropFiles = FormDropFiles
  LCLVersion = '1.9.0.0'
  object ItemsTreeView: TTreeView
    Left = 0
    Height = 378
    Top = 78
    Width = 299
    Align = alClient
    Anchors = [akTop, akLeft, akBottom]
    BorderSpacing.Top = 2
    DragMode = dmAutomatic
    MultiSelect = True
    PopupMenu = ItemsPopupMenu
    ReadOnly = True
    RightClickSelect = True
    TabOrder = 0
    OnAdvancedCustomDrawItem = ItemsTreeViewAdvancedCustomDrawItem
    OnDblClick = ItemsTreeViewDblClick
    OnDragDrop = ItemsTreeViewDragDrop
    OnDragOver = ItemsTreeViewDragOver
    OnKeyDown = ItemsTreeViewKeyDown
    OnSelectionChanged = ItemsTreeViewSelectionChanged
    Options = [tvoAllowMultiselect, tvoAutoItemHeight, tvoHideSelection, tvoKeepCollapsedNodes, tvoReadOnly, tvoRightClickSelect, tvoShowButtons, tvoShowLines, tvoShowRoot, tvoToolTips, tvoThemedDraw]
  end
  object BtnPanel: TPanel
    Left = 0
    Height = 28
    Top = 48
    Width = 299
    Align = alTop
    BevelOuter = bvNone
    ClientHeight = 28
    ClientWidth = 299
    TabOrder = 1
    object OpenButton: TSpeedButton
      AnchorSideLeft.Control = BtnPanel
      AnchorSideTop.Control = BtnPanel
      AnchorSideTop.Side = asrCenter
      Left = 2
      Height = 25
      Top = 2
      Width = 25
      Align = alLeft
      AllowAllUp = True
      AutoSize = True
      BorderSpacing.Around = 2
      Constraints.MinHeight = 25
      Constraints.MinWidth = 25
      OnClick = OpenButtonClick
      ShowHint = True
      ParentShowHint = False
    end
    object DirectoryHierarchyButton: TSpeedButton
      AnchorSideLeft.Control = OpenButton
      AnchorSideLeft.Side = asrBottom
      AnchorSideTop.Control = OpenButton
      AnchorSideTop.Side = asrCenter
      Left = 40
      Height = 25
      Top = 2
      Width = 25
      AllowAllUp = True
      AutoSize = True
      BorderSpacing.Left = 11
      BorderSpacing.Around = 2
      Constraints.MinHeight = 25
      Constraints.MinWidth = 25
      GroupIndex = 1
      OnClick = DirectoryHierarchyButtonClick
      ShowHint = True
      ParentShowHint = False
    end
    object SortAlphabeticallyButton: TSpeedButton
      AnchorSideLeft.Control = DirectoryHierarchyButton
      AnchorSideLeft.Side = asrBottom
      AnchorSideTop.Control = OpenButton
      AnchorSideTop.Side = asrCenter
      Left = 67
      Height = 25
      Top = 2
      Width = 25
      AllowAllUp = True
      AutoSize = True
      BorderSpacing.Around = 2
      Constraints.MinHeight = 25
      Constraints.MinWidth = 25
      GroupIndex = 2
      OnClick = SortAlphabeticallyButtonClick
      ShowHint = True
      ParentShowHint = False
    end
    object FilterEdit: TTreeFilterEdit
      AnchorSideLeft.Control = SortAlphabeticallyButton
      AnchorSideLeft.Side = asrBottom
      AnchorSideTop.Control = SortAlphabeticallyButton
      AnchorSideTop.Side = asrCenter
      Left = 95
      Height = 25
      Top = 2
      Width = 201
      ButtonWidth = 23
      Anchors = [akTop, akLeft, akRight]
      BorderSpacing.Left = 3
      NumGlyphs = 1
      MaxLength = 0
      ParentFont = False
      TabOrder = 0
      OnKeyDown = FilterEditKeyDown
      FilteredTreeview = ItemsTreeView
    end
  end
  object ToolBar: TToolBar
    Left = 0
    Height = 48
    Top = 0
    Width = 299
    AutoSize = True
    ButtonHeight = 46
    ButtonWidth = 23
    ShowCaptions = True
    TabOrder = 2
  end
  object ItemsPopupMenu: TPopupMenu
    OnPopup = ItemsPopupMenuPopup
    left = 72
    top = 112
    object MenuItem1: TMenuItem
      Caption = 'New Item1'
    end
  end
  object AddPopupMenu: TPopupMenu
    left = 74
    top = 163
    object mnuAddDiskFile: TMenuItem
      Caption = 'Add file from disk'
      Default = True
      OnClick = mnuAddBitBtnClick
    end
    object MenuItem2: TMenuItem
      Caption = '-'
    end
    object mnuAddEditorFiles: TMenuItem
      Caption = 'Add editor files'
      OnClick = mnuAddEditorFilesClick
    end
    object mnuAddReq: TMenuItem
      Caption = 'Add requirement'
      OnClick = mnuAddReqClick
    end
    object mnuAddFPMakeReq: TMenuItem
      Caption = 'Add FPMake requirement'
      OnClick = mnuAddFPMakeReqClick
    end
  end
end