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

« back to all changes in this revision

Viewing changes to ide/initialsetupdlgs.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 InitialSetupDialog: TInitialSetupDialog
 
2
  AnchorSideBottom.Side = asrBottom
 
3
  Left = 253
 
4
  Height = 385
 
5
  Top = 253
 
6
  Width = 620
 
7
  Caption = 'InitialSetupDialog'
 
8
  ClientHeight = 385
 
9
  ClientWidth = 620
 
10
  OnCreate = FormCreate
 
11
  OnDestroy = FormDestroy
 
12
  Position = poScreenCenter
 
13
  LCLVersion = '0.9.31'
 
14
  object PropertiesTreeView: TTreeView
 
15
    AnchorSideLeft.Control = Owner
 
16
    AnchorSideTop.Control = WelcomePaintBox
 
17
    AnchorSideTop.Side = asrBottom
 
18
    AnchorSideRight.Control = Splitter1
 
19
    AnchorSideBottom.Control = BtnPanel
 
20
    Left = 6
 
21
    Height = 289
 
22
    Top = 54
 
23
    Width = 159
 
24
    Anchors = [akTop, akLeft, akRight, akBottom]
 
25
    BorderSpacing.Left = 6
 
26
    BorderSpacing.Top = 6
 
27
    DefaultItemHeight = 18
 
28
    Images = ImageList1
 
29
    ReadOnly = True
 
30
    ScrollBars = ssNone
 
31
    ShowButtons = False
 
32
    ShowLines = False
 
33
    ShowRoot = False
 
34
    TabOrder = 0
 
35
    OnSelectionChanged = PropertiesTreeViewSelectionChanged
 
36
    Options = [tvoAutoItemHeight, tvoHideSelection, tvoKeepCollapsedNodes, tvoReadOnly, tvoToolTips, tvoThemedDraw]
 
37
  end
 
38
  object Splitter1: TSplitter
 
39
    AnchorSideTop.Control = PropertiesTreeView
 
40
    AnchorSideBottom.Control = PropertiesTreeView
 
41
    AnchorSideBottom.Side = asrBottom
 
42
    Left = 165
 
43
    Height = 289
 
44
    Top = 54
 
45
    Width = 5
 
46
    Align = alNone
 
47
    Anchors = [akTop, akLeft, akBottom]
 
48
  end
 
49
  object BtnPanel: TPanel
 
50
    Left = 10
 
51
    Height = 22
 
52
    Top = 353
 
53
    Width = 600
 
54
    Align = alBottom
 
55
    AutoSize = True
 
56
    BorderSpacing.Around = 10
 
57
    BevelOuter = bvNone
 
58
    ClientHeight = 22
 
59
    ClientWidth = 600
 
60
    TabOrder = 2
 
61
    object StartIDEBitBtn: TBitBtn
 
62
      Left = 489
 
63
      Height = 22
 
64
      Top = 0
 
65
      Width = 111
 
66
      Align = alRight
 
67
      AutoSize = True
 
68
      Caption = 'StartIDEBitBtn'
 
69
      Constraints.MinWidth = 100
 
70
      OnClick = StartIDEBitBtnClick
 
71
      TabOrder = 0
 
72
    end
 
73
  end
 
74
  object PropertiesPageControl: TPageControl
 
75
    AnchorSideLeft.Control = Splitter1
 
76
    AnchorSideLeft.Side = asrBottom
 
77
    AnchorSideTop.Control = Splitter1
 
78
    AnchorSideRight.Control = Owner
 
79
    AnchorSideRight.Side = asrBottom
 
80
    AnchorSideBottom.Control = Splitter1
 
81
    AnchorSideBottom.Side = asrBottom
 
82
    Left = 170
 
83
    Height = 289
 
84
    Top = 54
 
85
    Width = 444
 
86
    ActivePage = FPCSourcesTabSheet
 
87
    Anchors = [akTop, akLeft, akRight, akBottom]
 
88
    BorderSpacing.Right = 6
 
89
    TabIndex = 2
 
90
    TabOrder = 3
 
91
    OnChange = PropertiesPageControlChange
 
92
    Options = [nboHidePageListPopup]
 
93
    object LazarusTabSheet: TTabSheet
 
94
      Caption = 'LazarusTabSheet'
 
95
      ChildSizing.LeftRightSpacing = 6
 
96
      ChildSizing.TopBottomSpacing = 6
 
97
      ChildSizing.HorizontalSpacing = 6
 
98
      ChildSizing.VerticalSpacing = 6
 
99
      ClientHeight = 255
 
100
      ClientWidth = 442
 
101
      object LazDirLabel: TLabel
 
102
        Left = 6
 
103
        Height = 14
 
104
        Top = 6
 
105
        Width = 424
 
106
        Align = alTop
 
107
        Caption = 'LazDirLabel'
 
108
        ParentColor = False
 
109
        WordWrap = True
 
110
      end
 
111
      object LazDirComboBox: TComboBox
 
112
        AnchorSideLeft.Control = LazarusTabSheet
 
113
        AnchorSideTop.Control = LazDirLabel
 
114
        AnchorSideTop.Side = asrBottom
 
115
        AnchorSideRight.Control = LazarusTabSheet
 
116
        AnchorSideRight.Side = asrBottom
 
117
        Left = 6
 
118
        Height = 21
 
119
        Top = 26
 
120
        Width = 424
 
121
        Anchors = [akTop, akLeft, akRight]
 
122
        ItemHeight = 0
 
123
        OnChange = LazDirComboBoxChange
 
124
        TabOrder = 0
 
125
        Text = 'LazDirComboBox'
 
126
      end
 
127
      object LazDirMemo: TMemo
 
128
        AnchorSideTop.Control = LazDirBrowseButton
 
129
        AnchorSideTop.Side = asrBottom
 
130
        Left = 6
 
131
        Height = 174
 
132
        Top = 82
 
133
        Width = 424
 
134
        Align = alBottom
 
135
        Anchors = [akTop, akLeft, akRight, akBottom]
 
136
        Lines.Strings = (
 
137
          'LazDirMemo'
 
138
          ''
 
139
          ''
 
140
          ''
 
141
        )
 
142
        ReadOnly = True
 
143
        TabOrder = 1
 
144
      end
 
145
      object LazDirBrowseButton: TButton
 
146
        AnchorSideLeft.Control = LazarusTabSheet
 
147
        AnchorSideTop.Control = LazDirComboBox
 
148
        AnchorSideTop.Side = asrBottom
 
149
        AnchorSideRight.Side = asrBottom
 
150
        Left = 6
 
151
        Height = 23
 
152
        Top = 53
 
153
        Width = 122
 
154
        AutoSize = True
 
155
        Caption = 'LazDirBrowseButton'
 
156
        OnClick = LazDirBrowseButtonClick
 
157
        TabOrder = 2
 
158
      end
 
159
    end
 
160
    object CompilerTabSheet: TTabSheet
 
161
      Caption = 'CompilerTabSheet'
 
162
      ChildSizing.LeftRightSpacing = 6
 
163
      ChildSizing.TopBottomSpacing = 6
 
164
      ChildSizing.HorizontalSpacing = 6
 
165
      ChildSizing.VerticalSpacing = 6
 
166
      ClientHeight = 250
 
167
      ClientWidth = 438
 
168
      object CompilerLabel: TLabel
 
169
        Left = 6
 
170
        Height = 17
 
171
        Top = 6
 
172
        Width = 426
 
173
        Align = alTop
 
174
        Caption = 'CompilerLabel'
 
175
        ParentColor = False
 
176
        WordWrap = True
 
177
      end
 
178
      object CompilerComboBox: TComboBox
 
179
        AnchorSideLeft.Control = CompilerTabSheet
 
180
        AnchorSideTop.Control = CompilerLabel
 
181
        AnchorSideTop.Side = asrBottom
 
182
        AnchorSideRight.Control = CompilerTabSheet
 
183
        AnchorSideRight.Side = asrBottom
 
184
        Left = 6
 
185
        Height = 21
 
186
        Top = 29
 
187
        Width = 426
 
188
        Anchors = [akTop, akLeft, akRight]
 
189
        ItemHeight = 0
 
190
        OnChange = CompilerComboBoxChange
 
191
        TabOrder = 0
 
192
        Text = 'CompilerComboBox'
 
193
      end
 
194
      object CompilerBrowseButton: TButton
 
195
        AnchorSideLeft.Control = CompilerTabSheet
 
196
        AnchorSideTop.Control = CompilerComboBox
 
197
        AnchorSideTop.Side = asrBottom
 
198
        Left = 6
 
199
        Height = 20
 
200
        Top = 56
 
201
        Width = 168
 
202
        AutoSize = True
 
203
        Caption = 'CompilerBrowseButton'
 
204
        OnClick = CompilerBrowseButtonClick
 
205
        TabOrder = 1
 
206
      end
 
207
      object CompilerMemo: TMemo
 
208
        AnchorSideLeft.Control = CompilerTabSheet
 
209
        AnchorSideTop.Control = CompilerBrowseButton
 
210
        AnchorSideTop.Side = asrBottom
 
211
        AnchorSideRight.Control = CompilerTabSheet
 
212
        AnchorSideRight.Side = asrBottom
 
213
        AnchorSideBottom.Control = CompilerTabSheet
 
214
        AnchorSideBottom.Side = asrBottom
 
215
        Left = 6
 
216
        Height = 162
 
217
        Top = 82
 
218
        Width = 426
 
219
        Anchors = [akTop, akLeft, akRight, akBottom]
 
220
        Lines.Strings = (
 
221
          'CompilerMemo'
 
222
          ''
 
223
          ''
 
224
        )
 
225
        ReadOnly = True
 
226
        TabOrder = 2
 
227
      end
 
228
    end
 
229
    object FPCSourcesTabSheet: TTabSheet
 
230
      Caption = 'FPCSourcesTabSheet'
 
231
      ChildSizing.LeftRightSpacing = 6
 
232
      ChildSizing.TopBottomSpacing = 6
 
233
      ChildSizing.HorizontalSpacing = 6
 
234
      ChildSizing.VerticalSpacing = 6
 
235
      ClientHeight = 250
 
236
      ClientWidth = 438
 
237
      object FPCSrcDirLabel: TLabel
 
238
        Left = 6
 
239
        Height = 17
 
240
        Top = 6
 
241
        Width = 426
 
242
        Align = alTop
 
243
        Caption = 'FPCSrcDirLabel'
 
244
        ParentColor = False
 
245
        WordWrap = True
 
246
      end
 
247
      object FPCSrcDirComboBox: TComboBox
 
248
        Left = 6
 
249
        Height = 21
 
250
        Top = 29
 
251
        Width = 426
 
252
        Align = alTop
 
253
        ItemHeight = 0
 
254
        OnChange = FPCSrcDirComboBoxChange
 
255
        TabOrder = 0
 
256
        Text = 'FPCSrcDirComboBox'
 
257
      end
 
258
      object FPCSrcDirBrowseButton: TButton
 
259
        AnchorSideLeft.Control = FPCSourcesTabSheet
 
260
        AnchorSideTop.Control = FPCSrcDirComboBox
 
261
        AnchorSideTop.Side = asrBottom
 
262
        Left = 6
 
263
        Height = 20
 
264
        Top = 56
 
265
        Width = 171
 
266
        AutoSize = True
 
267
        Caption = 'FPCSrcDirBrowseButton'
 
268
        OnClick = FPCSrcDirBrowseButtonClick
 
269
        TabOrder = 1
 
270
      end
 
271
      object FPCSrcDirMemo: TMemo
 
272
        AnchorSideTop.Control = FPCSrcDirBrowseButton
 
273
        AnchorSideTop.Side = asrBottom
 
274
        Left = 6
 
275
        Height = 162
 
276
        Top = 82
 
277
        Width = 426
 
278
        Align = alBottom
 
279
        Anchors = [akTop, akLeft, akRight, akBottom]
 
280
        Lines.Strings = (
 
281
          'FPCSrcDirMemo'
 
282
          ''
 
283
          ''
 
284
        )
 
285
        ReadOnly = True
 
286
        TabOrder = 2
 
287
      end
 
288
    end
 
289
  end
 
290
  object WelcomePaintBox: TPaintBox
 
291
    Left = 0
 
292
    Height = 48
 
293
    Top = 0
 
294
    Width = 620
 
295
    Align = alTop
 
296
    OnPaint = WelcomePaintBoxPaint
 
297
  end
 
298
  object ImageList1: TImageList
 
299
    left = 55
 
300
    top = 145
 
301
  end
 
302
end