~ubuntu-branches/ubuntu/saucy/lazarus/saucy

« back to all changes in this revision

Viewing changes to components/codetools/ide/ppulistdlg.lfm

  • Committer: Package Import Robot
  • Author(s): Paul Gevers, Abou Al Montacir, Bart Martens, Paul Gevers
  • Date: 2013-06-08 14:12:17 UTC
  • mfrom: (1.1.9)
  • Revision ID: package-import@ubuntu.com-20130608141217-7k0cy9id8ifcnutc
Tags: 1.0.8+dfsg-1
[ Abou Al Montacir ]
* New upstream major release and multiple maintenace release offering many
  fixes and new features marking a new milestone for the Lazarus development
  and its stability level.
  - The detailed list of changes can be found here:
    http://wiki.lazarus.freepascal.org/Lazarus_1.0_release_notes
    http://wiki.lazarus.freepascal.org/Lazarus_1.0_fixes_branch
* LCL changes:
  - LCL is now a normal package.
      + Platform independent parts of the LCL are now in the package LCLBase
      + LCL is automatically recompiled when switching the target platform,
        unless pre-compiled binaries for this target are already installed.
      + No impact on existing projects.
      + Linker options needed by LCL are no more added to projects that do
        not use the LCL package.
  - Minor changes in LCL basic classes behaviour
      + TCustomForm.Create raises an exception if a form resource is not
        found.
      + TNotebook and TPage: a new implementation of these classes was added.
      + TDBNavigator: It is now possible to have focusable buttons by setting
        Options = [navFocusableButtons] and TabStop = True, useful for
        accessibility and for devices with neither mouse nor touch screen.
      + Names of TControlBorderSpacing.GetSideSpace and GetSpace were swapped
        and are now consistent. GetSideSpace = Around + GetSpace.
      + TForm.WindowState=wsFullscreen was added
      + TCanvas.TextFitInfo was added to calculate how many characters will
        fit into a specified Width. Useful for word-wrapping calculations.
      + TControl.GetColorResolvingParent and
        TControl.GetRGBColorResolvingParent were added, simplifying the work
        to obtain the final color of the control while resolving clDefault
        and the ParentColor.
      + LCLIntf.GetTextExtentExPoint now has a good default implementation
        which works in any platform not providing a specific implementation.
        However, Widgetset specific implementation is better, when available.
      + TTabControl was reorganized. Now it has the correct class hierarchy
        and inherits from TCustomTabControl as it should.
  - New unit in the LCL:
      + lazdialogs.pas: adds non-native versions of various native dialogs,
        for example TLazOpenDialog, TLazSaveDialog, TLazSelectDirectoryDialog.
        It is used by widgetsets which either do not have a native dialog, or
        do not wish to use it because it is limited. These dialogs can also be
        used by user applications directly.
      + lazdeviceapis.pas: offers an interface to more hardware devices such
        as the accelerometer, GPS, etc. See LazDeviceAPIs
      + lazcanvas.pas: provides a TFPImageCanvas descendent implementing
        drawing in a LCL-compatible way, but 100% in Pascal.
      + lazregions.pas. LazRegions is a wholly Pascal implementation of
        regions for canvas clipping, event clipping, finding in which control
        of a region tree one an event should reach, for drawing polygons, etc.
      + customdrawncontrols.pas, customdrawndrawers.pas,
        customdrawn_common.pas, customdrawn_android.pas and
        customdrawn_winxp.pas: are the Lazarus Custom Drawn Controls -controls
        which imitate the standard LCL ones, but with the difference that they
        are non-native and support skinning.
  - New APIs added to the LCL to improve support of accessibility software
    such as screen readers.
* IDE changes:
  - Many improvments.
  - The detailed list of changes can be found here:
    http://wiki.lazarus.freepascal.org/New_IDE_features_since#v1.0_.282012-08-29.29
    http://wiki.lazarus.freepascal.org/Lazarus_1.0_release_notes#IDE_Changes
* Debugger / Editor changes:
  - Added pascal sources and breakpoints to the disassembler
  - Added threads dialog.
* Components changes:
  - TAChart: many fixes and new features
  - CodeTool: support Delphi style generics and new syntax extensions.
  - AggPas: removed to honor free licencing. (Closes: Bug#708695)
[Bart Martens]
* New debian/watch file fixing issues with upstream RC release.
[Abou Al Montacir]
* Avoid changing files in .pc hidden directory, these are used by quilt for
  internal purpose and could lead to surprises during build.
[Paul Gevers]
* Updated get-orig-source target and it compinion script orig-tar.sh so that they
  repack the source file, allowing bug 708695 to be fixed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
object PPUListDialog: TPPUListDialog
 
2
  Left = 276
 
3
  Height = 531
 
4
  Top = 249
 
5
  Width = 740
 
6
  Caption = 'PPUListDialog'
 
7
  ClientHeight = 531
 
8
  ClientWidth = 740
 
9
  OnClose = FormClose
 
10
  OnCreate = FormCreate
 
11
  OnDestroy = FormDestroy
 
12
  Position = poScreenCenter
 
13
  LCLVersion = '0.9.31'
 
14
  object ButtonPanel1: TButtonPanel
 
15
    Left = 6
 
16
    Height = 42
 
17
    Top = 483
 
18
    Width = 728
 
19
    OKButton.Name = 'OKButton'
 
20
    HelpButton.Name = 'HelpButton'
 
21
    HelpButton.OnClick = HelpButtonClick
 
22
    CloseButton.Name = 'CloseButton'
 
23
    CancelButton.Name = 'CancelButton'
 
24
    TabOrder = 0
 
25
    ShowButtons = [pbClose, pbHelp]
 
26
  end
 
27
  object ScopeLabel: TLabel
 
28
    Left = 6
 
29
    Height = 18
 
30
    Top = 6
 
31
    Width = 728
 
32
    Align = alTop
 
33
    BorderSpacing.Around = 6
 
34
    Caption = 'ScopeLabel'
 
35
    ParentColor = False
 
36
  end
 
37
  object PageControl1: TPageControl
 
38
    Left = 0
 
39
    Height = 447
 
40
    Top = 30
 
41
    Width = 740
 
42
    ActivePage = UnitsTabSheet
 
43
    Align = alClient
 
44
    TabIndex = 0
 
45
    TabOrder = 1
 
46
    object UnitsTabSheet: TTabSheet
 
47
      Caption = 'UnitsTabSheet'
 
48
      ClientHeight = 414
 
49
      ClientWidth = 736
 
50
      object UnitsStringGrid: TStringGrid
 
51
        Left = 6
 
52
        Height = 209
 
53
        Top = 6
 
54
        Width = 724
 
55
        Align = alTop
 
56
        AutoFillColumns = True
 
57
        BorderSpacing.Around = 6
 
58
        ColCount = 6
 
59
        Columns = <        
 
60
          item
 
61
            SizePriority = 10
 
62
            Title.Caption = 'Unit'
 
63
            Width = 120
 
64
          end        
 
65
          item
 
66
            SizePriority = 10
 
67
            Title.Caption = 'Size of .ppu file'
 
68
            Width = 120
 
69
          end        
 
70
          item
 
71
            SizePriority = 10
 
72
            Title.Caption = 'Size of .o file'
 
73
            Width = 120
 
74
          end        
 
75
          item
 
76
            SizePriority = 5
 
77
            Title.Caption = 'Uses'
 
78
            Width = 120
 
79
          end        
 
80
          item
 
81
            SizePriority = 5
 
82
            Title.Caption = 'Used by'
 
83
            Width = 120
 
84
          end        
 
85
          item
 
86
            Title.Caption = 'Package'
 
87
            Width = 122
 
88
          end>
 
89
        DefaultColWidth = 150
 
90
        FixedCols = 0
 
91
        FixedRows = 2
 
92
        Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goDrawFocusSelected, goColSizing, goThumbTracking, goColSpanning, goDblClickAutoSize, goSmoothScroll]
 
93
        TabOrder = 0
 
94
        OnMouseDown = UnitsStringGridMouseDown
 
95
        OnSelectCell = UnitsStringGridSelectCell
 
96
        ColWidths = (
 
97
          120
 
98
          120
 
99
          120
 
100
          120
 
101
          120
 
102
          122
 
103
        )
 
104
      end
 
105
      object Splitter1: TSplitter
 
106
        Cursor = crVSplit
 
107
        Left = 0
 
108
        Height = 5
 
109
        Top = 221
 
110
        Width = 736
 
111
        Align = alTop
 
112
        ResizeAnchor = akTop
 
113
      end
 
114
      object UnitGroupBox: TGroupBox
 
115
        Left = 6
 
116
        Height = 176
 
117
        Top = 232
 
118
        Width = 724
 
119
        Align = alClient
 
120
        BorderSpacing.Around = 6
 
121
        Caption = 'UnitGroupBox'
 
122
        ClientHeight = 155
 
123
        ClientWidth = 716
 
124
        TabOrder = 2
 
125
        object UnitPageControl: TPageControl
 
126
          Left = 0
 
127
          Height = 155
 
128
          Top = 0
 
129
          Width = 716
 
130
          ActivePage = UnitLinkedFilesTabSheet
 
131
          Align = alClient
 
132
          TabIndex = 4
 
133
          TabOrder = 0
 
134
          object InfoTabSheet: TTabSheet
 
135
            Caption = 'InfoTabSheet'
 
136
            ClientHeight = 128
 
137
            ClientWidth = 712
 
138
            object SourceFileLabel: TLabel
 
139
              Left = 9
 
140
              Height = 18
 
141
              Top = 14
 
142
              Width = 109
 
143
              Caption = 'SourceFileLabel'
 
144
              ParentColor = False
 
145
            end
 
146
            object PPUFileLabel: TLabel
 
147
              AnchorSideTop.Control = SourceFileLabel
 
148
              AnchorSideTop.Side = asrBottom
 
149
              Left = 9
 
150
              Height = 18
 
151
              Top = 38
 
152
              Width = 91
 
153
              BorderSpacing.Top = 6
 
154
              Caption = 'PPUFileLabel'
 
155
              ParentColor = False
 
156
            end
 
157
          end
 
158
          object UsesTabSheet: TTabSheet
 
159
            Caption = 'UsesTabSheet'
 
160
            ClientHeight = 128
 
161
            ClientWidth = 712
 
162
            object UsesStringGrid: TStringGrid
 
163
              Left = 0
 
164
              Height = 128
 
165
              Top = 0
 
166
              Width = 712
 
167
              Align = alClient
 
168
              AutoFillColumns = True
 
169
              ColCount = 1
 
170
              Columns = <              
 
171
                item
 
172
                  Title.Caption = 'Unit'
 
173
                  Width = 710
 
174
                end>
 
175
              FixedCols = 0
 
176
              Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goDrawFocusSelected, goThumbTracking, goSmoothScroll]
 
177
              TabOrder = 0
 
178
              OnMouseDown = UnitStringGridMouseDown
 
179
              ColWidths = (
 
180
                710
 
181
              )
 
182
            end
 
183
          end
 
184
          object UsedByTabSheet: TTabSheet
 
185
            Caption = 'UsedByTabSheet'
 
186
            ClientHeight = 128
 
187
            ClientWidth = 712
 
188
            object UsedByStringGrid: TStringGrid
 
189
              Left = 0
 
190
              Height = 128
 
191
              Top = 0
 
192
              Width = 712
 
193
              Align = alClient
 
194
              AutoFillColumns = True
 
195
              ColCount = 1
 
196
              Columns = <              
 
197
                item
 
198
                  Title.Caption = 'Unit'
 
199
                  Width = 710
 
200
                end>
 
201
              FixedCols = 0
 
202
              Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goDrawFocusSelected, goThumbTracking, goSmoothScroll]
 
203
              TabOrder = 0
 
204
              OnMouseDown = UnitStringGridMouseDown
 
205
              ColWidths = (
 
206
                710
 
207
              )
 
208
            end
 
209
          end
 
210
          object UsesPathTabSheet: TTabSheet
 
211
            Caption = 'UsesPathTabSheet'
 
212
            ClientHeight = 128
 
213
            ClientWidth = 712
 
214
            object UsesPathStringGrid: TStringGrid
 
215
              Left = 0
 
216
              Height = 128
 
217
              Top = 0
 
218
              Width = 712
 
219
              Align = alClient
 
220
              AutoFillColumns = True
 
221
              ColCount = 1
 
222
              Columns = <              
 
223
                item
 
224
                  Title.Caption = 'Unit'
 
225
                  Width = 710
 
226
                end>
 
227
              FixedCols = 0
 
228
              Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goDrawFocusSelected, goSmoothScroll]
 
229
              TabOrder = 0
 
230
              OnMouseDown = UnitStringGridMouseDown
 
231
              ColWidths = (
 
232
                710
 
233
              )
 
234
            end
 
235
          end
 
236
          object UnitLinkedFilesTabSheet: TTabSheet
 
237
            Caption = 'UnitLinkedFilesTabSheet'
 
238
            ClientHeight = 122
 
239
            ClientWidth = 712
 
240
            object UnitLinkedFilesStringGrid: TStringGrid
 
241
              Left = 0
 
242
              Height = 122
 
243
              Top = 0
 
244
              Width = 712
 
245
              Align = alClient
 
246
              AutoFillColumns = True
 
247
              ColCount = 3
 
248
              Columns = <              
 
249
                item
 
250
                  Title.Caption = 'Type'
 
251
                  Width = 236
 
252
                end              
 
253
                item
 
254
                  Title.Caption = 'File'
 
255
                  Width = 236
 
256
                end              
 
257
                item
 
258
                  Title.Caption = 'Flags'
 
259
                  Width = 238
 
260
                end>
 
261
              FixedCols = 0
 
262
              Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goDrawFocusSelected, goColSizing, goThumbTracking, goColSpanning, goSmoothScroll]
 
263
              TabOrder = 0
 
264
              ColWidths = (
 
265
                236
 
266
                236
 
267
                238
 
268
              )
 
269
            end
 
270
          end
 
271
        end
 
272
      end
 
273
    end
 
274
    object LinkedFilesTabSheet: TTabSheet
 
275
      Caption = 'LinkedFilesTabSheet'
 
276
      ClientHeight = 414
 
277
      ClientWidth = 736
 
278
      object LinkedFilesTreeView: TTreeView
 
279
        Left = 0
 
280
        Height = 414
 
281
        Top = 0
 
282
        Width = 736
 
283
        Align = alClient
 
284
        DefaultItemHeight = 19
 
285
        ReadOnly = True
 
286
        TabOrder = 0
 
287
        OnDblClick = LinkedFilesTreeViewDblClick
 
288
        Options = [tvoAutoItemHeight, tvoHideSelection, tvoKeepCollapsedNodes, tvoReadOnly, tvoShowButtons, tvoShowLines, tvoShowRoot, tvoToolTips, tvoThemedDraw]
 
289
      end
 
290
    end
 
291
  end
 
292
end