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

« back to all changes in this revision

Viewing changes to components/codetools/ide/addassignmethoddlg.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 AddAssignMethodDialog: TAddAssignMethodDialog
 
2
  Left = 173
 
3
  Height = 484
 
4
  Top = 217
 
5
  Width = 569
 
6
  Caption = 'AddAssignMethodDialog'
 
7
  ClientHeight = 484
 
8
  ClientWidth = 569
 
9
  OnCreate = FormCreate
 
10
  OnDestroy = FormDestroy
 
11
  Position = poScreenCenter
 
12
  LCLVersion = '0.9.31'
 
13
  object ButtonPanel1: TButtonPanel
 
14
    Left = 6
 
15
    Height = 42
 
16
    Top = 436
 
17
    Width = 557
 
18
    OKButton.Name = 'OKButton'
 
19
    OKButton.OnClick = OkButtonClick
 
20
    HelpButton.Name = 'HelpButton'
 
21
    HelpButton.OnClick = HelpButtonClick
 
22
    CloseButton.Name = 'CloseButton'
 
23
    CancelButton.Name = 'CancelButton'
 
24
    TabOrder = 3
 
25
    ShowButtons = [pbOK, pbCancel, pbHelp]
 
26
  end
 
27
  object MembersGroupBox: TGroupBox
 
28
    AnchorSideTop.Control = InheritedGroupBox
 
29
    AnchorSideTop.Side = asrBottom
 
30
    Left = 6
 
31
    Height = 142
 
32
    Top = 288
 
33
    Width = 557
 
34
    Align = alBottom
 
35
    Anchors = [akTop, akLeft, akRight, akBottom]
 
36
    BorderSpacing.Around = 6
 
37
    Caption = 'MembersGroupBox'
 
38
    ClientHeight = 121
 
39
    ClientWidth = 549
 
40
    TabOrder = 2
 
41
    object MembersTreeView: TCodyTreeView
 
42
      Left = 0
 
43
      Height = 121
 
44
      Top = 0
 
45
      Width = 549
 
46
      Align = alClient
 
47
      DefaultItemHeight = 19
 
48
      Images = ImageList1
 
49
      ReadOnly = True
 
50
      TabOrder = 0
 
51
      OnMouseDown = MembersTreeViewMouseDown
 
52
      Options = [tvoAutoItemHeight, tvoHideSelection, tvoKeepCollapsedNodes, tvoReadOnly, tvoShowButtons, tvoShowLines, tvoShowRoot, tvoToolTips, tvoThemedDraw]
 
53
    end
 
54
  end
 
55
  object InheritedGroupBox: TGroupBox
 
56
    Left = 6
 
57
    Height = 144
 
58
    Top = 138
 
59
    Width = 557
 
60
    Align = alTop
 
61
    AutoSize = True
 
62
    BorderSpacing.Around = 6
 
63
    Caption = 'InheritedGroupBox'
 
64
    ClientHeight = 123
 
65
    ClientWidth = 549
 
66
    TabOrder = 1
 
67
    object InheritedLabel: TLabel
 
68
      AnchorSideLeft.Control = InheritedGroupBox
 
69
      AnchorSideTop.Control = InheritedEdit
 
70
      AnchorSideTop.Side = asrCenter
 
71
      Left = 6
 
72
      Height = 18
 
73
      Top = 10
 
74
      Width = 100
 
75
      BorderSpacing.Left = 6
 
76
      BorderSpacing.Top = 6
 
77
      Caption = 'InheritedLabel'
 
78
      ParentColor = False
 
79
    end
 
80
    object InheritedEdit: TEdit
 
81
      AnchorSideLeft.Control = InheritedLabel
 
82
      AnchorSideLeft.Side = asrBottom
 
83
      AnchorSideTop.Control = InheritedGroupBox
 
84
      AnchorSideRight.Control = InheritedGroupBox
 
85
      AnchorSideRight.Side = asrBottom
 
86
      Left = 112
 
87
      Height = 27
 
88
      Top = 6
 
89
      Width = 431
 
90
      Anchors = [akTop, akLeft, akRight]
 
91
      BorderSpacing.Left = 6
 
92
      BorderSpacing.Top = 6
 
93
      BorderSpacing.Right = 6
 
94
      TabOrder = 0
 
95
      Text = 'InheritedEdit'
 
96
    end
 
97
    object InhOverrideCheckBox: TCheckBox
 
98
      AnchorSideLeft.Control = InheritedLabel
 
99
      AnchorSideTop.Control = InheritedEdit
 
100
      AnchorSideTop.Side = asrBottom
 
101
      Left = 12
 
102
      Height = 22
 
103
      Top = 39
 
104
      Width = 174
 
105
      BorderSpacing.Around = 6
 
106
      Caption = 'InhOverrideCheckBox'
 
107
      TabOrder = 1
 
108
    end
 
109
    object InhCallCheckBox: TCheckBox
 
110
      AnchorSideLeft.Control = InheritedLabel
 
111
      AnchorSideTop.Control = InhOverrideCheckBox
 
112
      AnchorSideTop.Side = asrBottom
 
113
      Left = 12
 
114
      Height = 22
 
115
      Top = 67
 
116
      Width = 140
 
117
      BorderSpacing.Around = 6
 
118
      Caption = 'InhCallCheckBox'
 
119
      TabOrder = 2
 
120
    end
 
121
    object InhCallOnlyInElseCheckBox: TCheckBox
 
122
      AnchorSideLeft.Control = InheritedLabel
 
123
      AnchorSideTop.Control = InhCallCheckBox
 
124
      AnchorSideTop.Side = asrBottom
 
125
      Left = 12
 
126
      Height = 22
 
127
      Top = 95
 
128
      Width = 209
 
129
      BorderSpacing.Around = 6
 
130
      Caption = 'InhCallOnlyInElseCheckBox'
 
131
      TabOrder = 3
 
132
    end
 
133
  end
 
134
  object DeclGroupBox: TGroupBox
 
135
    Left = 6
 
136
    Height = 126
 
137
    Top = 6
 
138
    Width = 557
 
139
    Align = alTop
 
140
    AutoSize = True
 
141
    BorderSpacing.Around = 6
 
142
    Caption = 'DeclGroupBox'
 
143
    ClientHeight = 105
 
144
    ClientWidth = 549
 
145
    TabOrder = 0
 
146
    object ParamTypeLabel: TLabel
 
147
      AnchorSideLeft.Control = ProcNameLabel
 
148
      AnchorSideTop.Control = ParamTypeEdit
 
149
      AnchorSideTop.Side = asrCenter
 
150
      Left = 6
 
151
      Height = 18
 
152
      Top = 76
 
153
      Width = 115
 
154
      Caption = 'ParamTypeLabel'
 
155
      ParentColor = False
 
156
    end
 
157
    object ParamTypeEdit: TEdit
 
158
      AnchorSideLeft.Control = ParamTypeLabel
 
159
      AnchorSideLeft.Side = asrBottom
 
160
      AnchorSideTop.Control = ParamNameEdit
 
161
      AnchorSideTop.Side = asrBottom
 
162
      Left = 127
 
163
      Height = 27
 
164
      Top = 72
 
165
      Width = 141
 
166
      BorderSpacing.Around = 6
 
167
      OnChange = ParamTypeEditChange
 
168
      TabOrder = 2
 
169
      Text = 'ParamTypeEdit'
 
170
    end
 
171
    object ParamNameEdit: TEdit
 
172
      AnchorSideLeft.Control = ParamNameLabel
 
173
      AnchorSideLeft.Side = asrBottom
 
174
      AnchorSideTop.Control = ProcNameEdit
 
175
      AnchorSideTop.Side = asrBottom
 
176
      Left = 135
 
177
      Height = 27
 
178
      Top = 39
 
179
      Width = 136
 
180
      BorderSpacing.Around = 6
 
181
      OnChange = ParamNameEditChange
 
182
      TabOrder = 1
 
183
      Text = 'ParamNameEdit'
 
184
    end
 
185
    object ParamNameLabel: TLabel
 
186
      AnchorSideLeft.Control = ProcNameLabel
 
187
      AnchorSideTop.Control = ParamNameEdit
 
188
      AnchorSideTop.Side = asrCenter
 
189
      Left = 6
 
190
      Height = 18
 
191
      Top = 43
 
192
      Width = 123
 
193
      Caption = 'ParamNameLabel'
 
194
      ParentColor = False
 
195
    end
 
196
    object ProcNameEdit: TEdit
 
197
      AnchorSideLeft.Control = ProcNameLabel
 
198
      AnchorSideLeft.Side = asrBottom
 
199
      AnchorSideTop.Control = DeclGroupBox
 
200
      Left = 122
 
201
      Height = 27
 
202
      Top = 6
 
203
      Width = 147
 
204
      BorderSpacing.Around = 6
 
205
      OnChange = ProcNameEditChange
 
206
      TabOrder = 0
 
207
      Text = 'ProcNameEdit'
 
208
    end
 
209
    object ProcNameLabel: TLabel
 
210
      AnchorSideLeft.Control = DeclGroupBox
 
211
      AnchorSideTop.Control = ProcNameEdit
 
212
      AnchorSideTop.Side = asrCenter
 
213
      Left = 6
 
214
      Height = 18
 
215
      Top = 10
 
216
      Width = 110
 
217
      BorderSpacing.Left = 6
 
218
      Caption = 'ProcNameLabel'
 
219
      ParentColor = False
 
220
    end
 
221
    object ProcNameErrorLabel: TLabel
 
222
      AnchorSideLeft.Control = ProcNameEdit
 
223
      AnchorSideLeft.Side = asrBottom
 
224
      AnchorSideTop.Control = ProcNameEdit
 
225
      AnchorSideTop.Side = asrCenter
 
226
      Left = 275
 
227
      Height = 18
 
228
      Top = 10
 
229
      Width = 145
 
230
      Caption = 'ProcNameErrorLabel'
 
231
      Font.Color = clRed
 
232
      ParentColor = False
 
233
      ParentFont = False
 
234
    end
 
235
    object ParamNameErrorLabel: TLabel
 
236
      AnchorSideLeft.Control = ParamNameEdit
 
237
      AnchorSideLeft.Side = asrBottom
 
238
      AnchorSideTop.Control = ParamNameEdit
 
239
      AnchorSideTop.Side = asrCenter
 
240
      Left = 277
 
241
      Height = 18
 
242
      Top = 43
 
243
      Width = 158
 
244
      Caption = 'ParamNameErrorLabel'
 
245
      Font.Color = clRed
 
246
      ParentColor = False
 
247
      ParentFont = False
 
248
    end
 
249
    object ParamTypeErrorLabel: TLabel
 
250
      AnchorSideLeft.Control = ParamTypeEdit
 
251
      AnchorSideLeft.Side = asrBottom
 
252
      AnchorSideTop.Control = ParamTypeEdit
 
253
      AnchorSideTop.Side = asrCenter
 
254
      Left = 274
 
255
      Height = 18
 
256
      Top = 76
 
257
      Width = 150
 
258
      Caption = 'ParamTypeErrorLabel'
 
259
      Font.Color = clRed
 
260
      ParentColor = False
 
261
      ParentFont = False
 
262
    end
 
263
  end
 
264
  object ImageList1: TImageList
 
265
    left = 306
 
266
    top = 288
 
267
  end
 
268
end