File: graphstat.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 (133 lines) | stat: -rw-r--r-- 3,060 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
object GraphStatForm: TGraphStatForm
  Left = 652
  Height = 544
  Top = 116
  Width = 637
  Caption = 'Graphical summary'
  ClientHeight = 544
  ClientWidth = 637
  OnActivate = FormActivate
  OnClose = FormClose
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  OnShow = FormShow
  LCLVersion = '1.7'
  object LegendPanel: TPanel
    Left = 0
    Height = 80
    Top = 464
    Width = 637
    Align = alBottom
    ClientHeight = 80
    ClientWidth = 637
    TabOrder = 0
    object TranslatedShape: TShape
      Left = 24
      Height = 16
      Top = 16
      Width = 65
    end
    object UnTranslatedShape: TShape
      Left = 24
      Height = 16
      Top = 35
      Width = 65
    end
    object FuzzyShape: TShape
      Left = 24
      Height = 16
      Top = 54
      Width = 65
    end
    object TranslatedLabel: TLabel
      Left = 104
      Height = 15
      Top = 17
      Width = 83
      Caption = 'TranslatedLabel'
      ParentColor = False
    end
    object UnTranslatedLabel: TLabel
      Left = 104
      Height = 15
      Top = 36
      Width = 98
      Caption = 'UnTranslatedLabel'
      ParentColor = False
    end
    object FuzzyLabel: TLabel
      Left = 104
      Height = 15
      Top = 55
      Width = 57
      Caption = 'FuzzyLabel'
      ParentColor = False
    end
    object StatusLabel: TLabel
      AnchorSideRight.Control = LegendPanel
      AnchorSideRight.Side = asrBottom
      Left = 404
      Height = 25
      Top = 17
      Width = 222
      Anchors = [akTop, akRight]
      BorderSpacing.Right = 10
      Caption = 'Creating icon nr %d of %d'
      Font.Color = clRed
      Font.Height = -19
      ParentColor = False
      ParentFont = False
      Visible = False
    end
  end
  object ListView: TListView
    Left = 40
    Height = 150
    Top = 32
    Width = 250
    AutoSort = False
    Columns = <>
    IconOptions.AutoArrange = True
    ParentShowHint = False
    ReadOnly = True
    ScrollBars = ssAutoBoth
    ShowHint = True
    TabOrder = 1
    ViewStyle = vsIcon
    OnMouseMove = ListViewMouseMove
    OnMouseUp = ListViewMouseUp
  end
  object ContextPopupMenu: TPopupMenu
    left = 453
    top = 66
    object POEditorMenuItem: TMenuItem
      Caption = 'Open file in system PO editor'
      OnClick = POEditorMenuItemClick
    end
    object Separator1MenuItem: TMenuItem
      Caption = '-'
    end
    object ExtEditorMenuItem: TMenuItem
      Caption = 'Open file in external editor'
      Enabled = False
      Visible = False
      OnClick = ExtEditorMenuItemClick
    end
    object IDEEditorMenuItem: TMenuItem
      Caption = 'Open file in IDE editor'
      Visible = False
      OnClick = IDEEditorMenuItemClick
    end
    object Separator2MenuItem: TMenuItem
      Caption = '-'
    end
    object RefreshCurrMenuItem: TMenuItem
      Caption = 'Refresh current translation family'
      OnClick = RefreshCurrMenuItemClick
    end
    object RefreshAllMenuItem: TMenuItem
      Caption = 'Refresh all translation families'
      OnClick = RefreshAllMenuItemClick
    end
  end
end