File: searchfrm.lfm

package info (click to toggle)
lazarus 2.0.10%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 219,188 kB
  • sloc: pascal: 1,867,962; xml: 265,716; cpp: 56,595; sh: 3,005; java: 609; makefile: 568; perl: 297; sql: 222; ansic: 137
file content (115 lines) | stat: -rw-r--r-- 2,756 bytes parent folder | download | duplicates (6)
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
object SearchProgressForm: TSearchProgressForm
  Left = 384
  Height = 167
  Top = 387
  Width = 700
  BorderIcons = [biSystemMenu, biMinimize]
  Caption = 'Searching....'
  ClientHeight = 167
  ClientWidth = 700
  Constraints.MinWidth = 700
  OnClose = FormClose
  OnCreate = SearchFormCREATE
  OnDestroy = SearchFormDESTROY
  OnShow = FormShow
  Position = poScreenCenter
  LCLVersion = '1.7'
  Visible = True
  object Panel2: TPanel
    Left = 0
    Height = 167
    Top = 0
    Width = 700
    Align = alClient
    BevelOuter = bvNone
    ClientHeight = 167
    ClientWidth = 700
    FullRepaint = False
    TabOrder = 0
    object lblMatches: TLabel
      AnchorSideTop.Control = MatchesLabel
      AnchorSideTop.Side = asrCenter
      Left = 121
      Height = 1
      Top = 99
      Width = 1
      ParentColor = False
      ShowAccelChar = False
    end
    object MatchesLabel: TLabel
      AnchorSideTop.Control = SearchingLabel
      AnchorSideTop.Side = asrBottom
      Left = 16
      Height = 18
      Top = 90
      Width = 51
      BorderSpacing.Top = 18
      Caption = 'Matches'
      ParentColor = False
    end
    object lblProgress: TLabel
      AnchorSideTop.Control = SearchingLabel
      AnchorSideTop.Side = asrCenter
      Left = 121
      Height = 1
      Top = 63
      Width = 1
      ParentColor = False
      ShowAccelChar = False
    end
    object SearchingLabel: TLabel
      AnchorSideTop.Control = SearchTextLabel
      AnchorSideTop.Side = asrBottom
      Left = 16
      Height = 18
      Top = 54
      Width = 62
      BorderSpacing.Top = 18
      Caption = 'Searching:'
      ParentColor = False
    end
    object SearchTextLabel: TLabel
      AnchorSideTop.Control = Panel2
      Left = 16
      Height = 18
      Top = 18
      Width = 72
      BorderSpacing.Top = 18
      Caption = 'Search Text:'
      ParentColor = False
    end
    object lblSearchText: TLabel
      AnchorSideTop.Control = SearchTextLabel
      AnchorSideTop.Side = asrCenter
      Left = 121
      Height = 1
      Top = 27
      Width = 1
      ParentColor = False
      ShowAccelChar = False
    end
    object btnCancel: TBitBtn
      AnchorSideLeft.Control = Panel2
      AnchorSideLeft.Side = asrCenter
      AnchorSideTop.Side = asrBottom
      AnchorSideRight.Side = asrBottom
      AnchorSideBottom.Control = Panel2
      AnchorSideBottom.Side = asrBottom
      Left = 310
      Height = 26
      Top = 135
      Width = 80
      Anchors = [akLeft, akBottom]
      AutoSize = True
      BorderSpacing.Top = 12
      BorderSpacing.Bottom = 6
      Cancel = True
      Caption = 'Cancel'
      Constraints.MinWidth = 80
      Kind = bkCancel
      ModalResult = 2
      OnClick = btnAbortCLICK
      TabOrder = 0
    end
  end
end