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

« back to all changes in this revision

Viewing changes to ide/frames/codeobserver_options.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
1
inherited CodeObserverOptionsFrame: TCodeObserverOptionsFrame
2
 
  Height = 428
3
 
  Width = 531
4
 
  ClientHeight = 428
5
 
  ClientWidth = 531
 
2
  Height = 466
 
3
  Width = 557
 
4
  ClientHeight = 466
 
5
  ClientWidth = 557
6
6
  TabOrder = 0
7
 
  DesignLeft = 220
8
 
  DesignTop = 220
 
7
  DesignLeft = 250
 
8
  DesignTop = 214
9
9
  object CodeObsIgnoreConstantsLabel: TLabel[0]
10
10
    AnchorSideLeft.Control = Owner
11
11
    AnchorSideTop.Control = CodeObsCategoriesCheckGroup
12
12
    AnchorSideTop.Side = asrBottom
13
13
    Left = 0
14
 
    Height = 16
15
 
    Top = 196
16
 
    Width = 165
 
14
    Height = 18
 
15
    Top = 226
 
16
    Width = 212
17
17
    BorderSpacing.Top = 6
18
18
    Caption = 'CodeObsIgnoreConstantsLabel'
19
19
    ParentColor = False
22
22
    AnchorSideLeft.Control = CodeObsLeftPanel
23
23
    AnchorSideTop.Control = CodeObsCategoriesCheckGroup
24
24
    AnchorSideTop.Side = asrBottom
25
 
    Left = 269
26
 
    Height = 16
27
 
    Top = 196
28
 
    Width = 152
 
25
    Left = 291
 
26
    Height = 18
 
27
    Top = 226
 
28
    Width = 191
29
29
    BorderSpacing.Top = 6
30
30
    Caption = 'COIgnoreConstInFuncsLabel'
31
31
    ParentColor = False
32
32
  end
33
 
  object Label1: TLabel[2]
34
 
    AnchorSideLeft.Control = Owner
35
 
    AnchorSideLeft.Side = asrCenter
36
 
    Left = 265
37
 
    Height = 1
38
 
    Top = 40
39
 
    Width = 1
40
 
    ParentColor = False
41
 
  end
42
 
  object CodeObsCategoriesCheckGroup: TCheckGroup[3]
 
33
  object CodeObsCategoriesCheckGroup: TCheckGroup[2]
43
34
    AnchorSideLeft.Control = Owner
44
35
    AnchorSideTop.Control = Owner
45
 
    AnchorSideRight.Control = Label1
46
36
    AnchorSideBottom.Control = Owner
47
37
    AnchorSideBottom.Side = asrBottom
48
38
    Left = 0
49
 
    Height = 190
 
39
    Height = 220
50
40
    Top = 0
51
 
    Width = 262
 
41
    Width = 288
52
42
    Anchors = [akTop, akLeft, akRight]
53
43
    AutoFill = True
54
44
    AutoSize = True
62
52
    ChildSizing.ShrinkVertical = crsScaleChilds
63
53
    ChildSizing.Layout = cclLeftToRightThenTopToBottom
64
54
    ChildSizing.ControlsPerLine = 1
65
 
    Constraints.MinHeight = 190
 
55
    Constraints.MinHeight = 220
66
56
    OnItemClick = CodeObsCategoriesCheckGroupItemClick
67
57
    TabOrder = 0
68
58
  end
69
 
  object CodeObsIgnoreConstantsMemo: TMemo[4]
 
59
  object CodeObsIgnoreConstantsMemo: TMemo[3]
70
60
    AnchorSideLeft.Control = CodeObsIgnoreConstantsLabel
71
61
    AnchorSideTop.Control = CodeObsIgnoreConstantsLabel
72
62
    AnchorSideTop.Side = asrBottom
75
65
    AnchorSideBottom.Control = Owner
76
66
    AnchorSideBottom.Side = asrBottom
77
67
    Left = 0
78
 
    Height = 213
79
 
    Top = 215
80
 
    Width = 262
 
68
    Height = 219
 
69
    Top = 247
 
70
    Width = 288
81
71
    Anchors = [akTop, akLeft, akRight, akBottom]
82
72
    BorderSpacing.Top = 3
83
73
    Lines.Strings = (
85
75
    )
86
76
    TabOrder = 1
87
77
  end
88
 
  object CodeObsLeftPanel: TPanel[5]
89
 
    AnchorSideLeft.Control = Label1
 
78
  object CodeObsLeftPanel: TPanel[4]
 
79
    AnchorSideLeft.Control = CodeObsCategoriesCheckGroup
90
80
    AnchorSideLeft.Side = asrBottom
91
81
    AnchorSideTop.Control = Owner
92
 
    Left = 269
93
 
    Height = 169
 
82
    AnchorSideRight.Control = Owner
 
83
    AnchorSideRight.Side = asrBottom
 
84
    Left = 291
 
85
    Height = 211
94
86
    Top = 0
95
 
    Width = 177
 
87
    Width = 266
 
88
    Anchors = [akTop, akLeft, akRight]
96
89
    AutoSize = True
97
90
    BorderSpacing.Left = 3
98
91
    BevelOuter = bvNone
99
 
    ClientHeight = 169
100
 
    ClientWidth = 177
 
92
    ClientHeight = 211
 
93
    ClientWidth = 266
101
94
    TabOrder = 2
102
95
    object NestedProcCountLabel: TLabel
103
96
      AnchorSideLeft.Control = CodeObsLeftPanel
104
97
      AnchorSideTop.Control = LongParamListCountSpinEdit
105
98
      AnchorSideTop.Side = asrBottom
 
99
      AnchorSideRight.Control = CodeObsLeftPanel
 
100
      AnchorSideRight.Side = asrBottom
106
101
      Left = 0
107
 
      Height = 16
108
 
      Top = 102
109
 
      Width = 123
 
102
      Height = 18
 
103
      Top = 114
 
104
      Width = 266
 
105
      Anchors = [akTop, akLeft, akRight]
110
106
      BorderSpacing.Top = 6
111
107
      Caption = 'NestedProcCountLabel'
112
108
      ParentColor = False
 
109
      WordWrap = True
113
110
    end
114
111
    object LongParamListCountLabel: TLabel
115
112
      AnchorSideLeft.Control = CodeObsLeftPanel
116
113
      AnchorSideTop.Control = LongProcLineCountSpinEdit
117
114
      AnchorSideTop.Side = asrBottom
 
115
      AnchorSideRight.Control = CodeObsLeftPanel
 
116
      AnchorSideRight.Side = asrBottom
118
117
      Left = 0
119
 
      Height = 16
120
 
      Top = 54
121
 
      Width = 141
 
118
      Height = 18
 
119
      Top = 60
 
120
      Width = 266
 
121
      Anchors = [akTop, akLeft, akRight]
122
122
      BorderSpacing.Top = 6
123
123
      Caption = 'LongParamListCountLabel'
124
124
      ParentColor = False
 
125
      WordWrap = True
125
126
    end
126
127
    object LongProcLineCountLabel: TLabel
127
128
      AnchorSideLeft.Control = CodeObsLeftPanel
128
129
      AnchorSideTop.Control = CodeObsLeftPanel
 
130
      AnchorSideRight.Control = CodeObsLeftPanel
 
131
      AnchorSideRight.Side = asrBottom
129
132
      Left = 0
130
 
      Height = 16
 
133
      Height = 18
131
134
      Top = 6
132
 
      Width = 135
 
135
      Width = 266
 
136
      Anchors = [akTop, akLeft, akRight]
133
137
      BorderSpacing.Top = 6
134
138
      Caption = 'LongProcLineCountLabel'
135
139
      ParentColor = False
 
140
      WordWrap = True
136
141
    end
137
 
    object CodeObsCharConstCheckBox: TCheckBox
 
142
    object UnnamedCharConstCheckBox: TCheckBox
138
143
      AnchorSideLeft.Control = CodeObsLeftPanel
139
 
      AnchorSideTop.Control = NestedProcCountSpinEdit
 
144
      AnchorSideTop.Control = UnnamedCharConstLabel
140
145
      AnchorSideTop.Side = asrBottom
141
 
      Left = 0
142
 
      Height = 19
143
 
      Top = 150
144
 
      Width = 177
145
 
      BorderSpacing.Top = 6
146
 
      Caption = 'CodeObsCharConstCheckBox'
 
146
      AnchorSideRight.Control = CodeObsLeftPanel
 
147
      AnchorSideRight.Side = asrBottom
 
148
      Left = 6
 
149
      Height = 22
 
150
      Top = 189
 
151
      Width = 260
 
152
      Anchors = [akTop, akLeft, akRight]
 
153
      BorderSpacing.Left = 6
 
154
      BorderSpacing.Top = 3
 
155
      Caption = 'UnnamedCharConstCheckBox'
147
156
      TabOrder = 0
148
157
    end
149
158
    object NestedProcCountSpinEdit: TSpinEdit
150
 
      AnchorSideLeft.Control = CodeObsCharConstCheckBox
 
159
      AnchorSideLeft.Control = UnnamedCharConstCheckBox
151
160
      AnchorSideTop.Control = NestedProcCountLabel
152
161
      AnchorSideTop.Side = asrBottom
153
 
      Left = 6
154
 
      Height = 23
155
 
      Top = 121
 
162
      Left = 12
 
163
      Height = 27
 
164
      Top = 135
156
165
      Width = 60
157
166
      BorderSpacing.Left = 6
158
167
      BorderSpacing.Top = 3
163
172
      AnchorSideTop.Control = LongParamListCountLabel
164
173
      AnchorSideTop.Side = asrBottom
165
174
      Left = 6
166
 
      Height = 23
167
 
      Top = 73
 
175
      Height = 27
 
176
      Top = 81
168
177
      Width = 60
169
178
      BorderSpacing.Left = 6
170
179
      BorderSpacing.Top = 3
175
184
      AnchorSideTop.Control = LongProcLineCountLabel
176
185
      AnchorSideTop.Side = asrBottom
177
186
      Left = 6
178
 
      Height = 23
179
 
      Top = 25
 
187
      Height = 27
 
188
      Top = 27
180
189
      Width = 60
181
190
      BorderSpacing.Left = 6
182
191
      BorderSpacing.Top = 3
183
192
      TabOrder = 3
184
193
    end
 
194
    object UnnamedCharConstLabel: TLabel
 
195
      AnchorSideLeft.Control = CodeObsLeftPanel
 
196
      AnchorSideTop.Control = NestedProcCountSpinEdit
 
197
      AnchorSideTop.Side = asrBottom
 
198
      AnchorSideRight.Control = CodeObsLeftPanel
 
199
      AnchorSideRight.Side = asrBottom
 
200
      Left = 0
 
201
      Height = 18
 
202
      Top = 168
 
203
      Width = 266
 
204
      Anchors = [akTop, akLeft, akRight]
 
205
      BorderSpacing.Top = 6
 
206
      Caption = 'UnnamedCharConstLabel'
 
207
      ParentColor = False
 
208
      WordWrap = True
 
209
    end
185
210
  end
186
 
  object COIgnoreConstInFuncsMemo: TMemo[6]
 
211
  object COIgnoreConstInFuncsMemo: TMemo[5]
187
212
    AnchorSideLeft.Control = CodeObsLeftPanel
188
213
    AnchorSideTop.Control = COIgnoreConstInFuncsLabel
189
214
    AnchorSideTop.Side = asrBottom
191
216
    AnchorSideRight.Side = asrBottom
192
217
    AnchorSideBottom.Control = Owner
193
218
    AnchorSideBottom.Side = asrBottom
194
 
    Left = 269
195
 
    Height = 213
196
 
    Top = 215
197
 
    Width = 262
 
219
    Left = 291
 
220
    Height = 219
 
221
    Top = 247
 
222
    Width = 266
198
223
    Anchors = [akTop, akLeft, akRight, akBottom]
199
224
    BorderSpacing.Top = 3
200
225
    Lines.Strings = (