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

« back to all changes in this revision

Viewing changes to ide/buildprojectdlg.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 CleanBuildProjectDialog: TCleanBuildProjectDialog
 
2
  Left = 275
 
3
  Height = 492
 
4
  Top = 250
 
5
  Width = 537
 
6
  Caption = 'CleanBuildProjectDialog'
 
7
  ClientHeight = 492
 
8
  ClientWidth = 537
 
9
  OnClose = FormClose
 
10
  OnCreate = FormCreate
 
11
  OnDestroy = FormDestroy
 
12
  OnResize = FormResize
 
13
  Position = poScreenCenter
 
14
  LCLVersion = '0.9.31'
 
15
  object ButtonPanel1: TButtonPanel
 
16
    Left = 6
 
17
    Height = 34
 
18
    Top = 452
 
19
    Width = 525
 
20
    OKButton.Name = 'OKButton'
 
21
    OKButton.OnClick = ButtonPanel1OKButtonClick
 
22
    HelpButton.Name = 'HelpButton'
 
23
    CloseButton.Name = 'CloseButton'
 
24
    CancelButton.Name = 'CancelButton'
 
25
    TabOrder = 0
 
26
    ShowButtons = [pbOK, pbCancel, pbHelp]
 
27
  end
 
28
  object ProjOutCheckBox: TCheckBox
 
29
    AnchorSideLeft.Control = Owner
 
30
    AnchorSideTop.Control = ProjOutMaskComboBox
 
31
    AnchorSideTop.Side = asrCenter
 
32
    Left = 10
 
33
    Height = 17
 
34
    Top = 12
 
35
    Width = 102
 
36
    BorderSpacing.Left = 10
 
37
    Caption = 'ProjOutCheckBox'
 
38
    Checked = True
 
39
    OnChange = ProjOutCheckBoxChange
 
40
    State = cbChecked
 
41
    TabOrder = 1
 
42
  end
 
43
  object ProjSrcCheckBox: TCheckBox
 
44
    AnchorSideLeft.Control = ProjOutCheckBox
 
45
    AnchorSideTop.Control = ProjSrcMaskComboBox
 
46
    AnchorSideTop.Side = asrCenter
 
47
    Left = 10
 
48
    Height = 17
 
49
    Top = 39
 
50
    Width = 99
 
51
    Caption = 'ProjSrcCheckBox'
 
52
    Checked = True
 
53
    OnChange = ProjSrcCheckBoxChange
 
54
    State = cbChecked
 
55
    TabOrder = 2
 
56
  end
 
57
  object PkgOutCheckBox: TCheckBox
 
58
    AnchorSideLeft.Control = ProjOutCheckBox
 
59
    AnchorSideTop.Control = PkgOutMaskComboBox
 
60
    AnchorSideTop.Side = asrCenter
 
61
    Left = 10
 
62
    Height = 17
 
63
    Top = 66
 
64
    Width = 100
 
65
    Caption = 'PkgOutCheckBox'
 
66
    Checked = True
 
67
    OnChange = PkgOutCheckBoxChange
 
68
    State = cbChecked
 
69
    TabOrder = 3
 
70
  end
 
71
  object PkgSrcCheckBox: TCheckBox
 
72
    AnchorSideLeft.Control = ProjOutCheckBox
 
73
    AnchorSideTop.Control = PkgSrcMaskComboBox
 
74
    AnchorSideTop.Side = asrCenter
 
75
    Left = 10
 
76
    Height = 17
 
77
    Top = 93
 
78
    Width = 97
 
79
    Caption = 'PkgSrcCheckBox'
 
80
    Checked = True
 
81
    OnChange = PkgSrcCheckBoxChange
 
82
    State = cbChecked
 
83
    TabOrder = 4
 
84
  end
 
85
  object ProjOutMaskComboBox: TComboBox
 
86
    AnchorSideTop.Control = Owner
 
87
    AnchorSideRight.Control = ButtonPanel1
 
88
    AnchorSideRight.Side = asrBottom
 
89
    Left = 241
 
90
    Height = 21
 
91
    Top = 10
 
92
    Width = 280
 
93
    Anchors = [akTop, akLeft, akRight]
 
94
    BorderSpacing.Top = 10
 
95
    BorderSpacing.Right = 10
 
96
    ItemHeight = 13
 
97
    OnChange = ProjOutMaskComboBoxChange
 
98
    TabOrder = 9
 
99
    Text = 'ProjOutMaskComboBox'
 
100
  end
 
101
  object ProjSrcMaskComboBox: TComboBox
 
102
    AnchorSideLeft.Control = ProjOutMaskComboBox
 
103
    AnchorSideTop.Control = ProjOutMaskComboBox
 
104
    AnchorSideTop.Side = asrBottom
 
105
    AnchorSideRight.Control = ProjOutMaskComboBox
 
106
    AnchorSideRight.Side = asrBottom
 
107
    Left = 241
 
108
    Height = 21
 
109
    Top = 37
 
110
    Width = 280
 
111
    Anchors = [akTop, akLeft, akRight]
 
112
    BorderSpacing.Top = 6
 
113
    ItemHeight = 13
 
114
    OnChange = ProjOutMaskComboBoxChange
 
115
    TabOrder = 5
 
116
    Text = 'ProjSrcMaskComboBox'
 
117
  end
 
118
  object PkgOutMaskComboBox: TComboBox
 
119
    AnchorSideLeft.Control = ProjOutMaskComboBox
 
120
    AnchorSideTop.Control = ProjSrcMaskComboBox
 
121
    AnchorSideTop.Side = asrBottom
 
122
    AnchorSideRight.Control = ProjOutMaskComboBox
 
123
    AnchorSideRight.Side = asrBottom
 
124
    Left = 241
 
125
    Height = 21
 
126
    Top = 64
 
127
    Width = 280
 
128
    Anchors = [akTop, akLeft, akRight]
 
129
    BorderSpacing.Top = 6
 
130
    ItemHeight = 13
 
131
    OnChange = ProjOutMaskComboBoxChange
 
132
    TabOrder = 6
 
133
    Text = 'PkgOutMaskComboBox'
 
134
  end
 
135
  object PkgSrcMaskComboBox: TComboBox
 
136
    AnchorSideLeft.Control = ProjOutMaskComboBox
 
137
    AnchorSideTop.Control = PkgOutMaskComboBox
 
138
    AnchorSideTop.Side = asrBottom
 
139
    AnchorSideRight.Control = ProjOutMaskComboBox
 
140
    AnchorSideRight.Side = asrBottom
 
141
    Left = 241
 
142
    Height = 21
 
143
    Top = 91
 
144
    Width = 280
 
145
    Anchors = [akTop, akLeft, akRight]
 
146
    BorderSpacing.Top = 6
 
147
    ItemHeight = 13
 
148
    OnChange = ProjOutMaskComboBoxChange
 
149
    TabOrder = 7
 
150
    Text = 'PkgSrcMaskComboBox'
 
151
  end
 
152
  object PreviewGroupBox: TGroupBox
 
153
    AnchorSideLeft.Control = Owner
 
154
    AnchorSideTop.Control = PkgSrcMaskComboBox
 
155
    AnchorSideTop.Side = asrBottom
 
156
    AnchorSideRight.Control = Owner
 
157
    AnchorSideRight.Side = asrBottom
 
158
    AnchorSideBottom.Control = DeleteButton
 
159
    Left = 6
 
160
    Height = 295
 
161
    Top = 122
 
162
    Width = 525
 
163
    Anchors = [akTop, akLeft, akRight, akBottom]
 
164
    BorderSpacing.Top = 4
 
165
    BorderSpacing.Around = 6
 
166
    Caption = 'PreviewGroupBox'
 
167
    ClientHeight = 277
 
168
    ClientWidth = 521
 
169
    TabOrder = 8
 
170
    object FilesTreeView: TTreeView
 
171
      Left = 0
 
172
      Height = 277
 
173
      Top = 0
 
174
      Width = 521
 
175
      Align = alClient
 
176
      DefaultItemHeight = 15
 
177
      ReadOnly = True
 
178
      TabOrder = 0
 
179
      OnMouseDown = FilesTreeViewMouseDown
 
180
      Options = [tvoAutoItemHeight, tvoHideSelection, tvoKeepCollapsedNodes, tvoReadOnly, tvoShowButtons, tvoShowLines, tvoShowRoot, tvoToolTips, tvoThemedDraw]
 
181
    end
 
182
  end
 
183
  object DeleteButton: TButton
 
184
    AnchorSideRight.Control = Owner
 
185
    AnchorSideRight.Side = asrBottom
 
186
    AnchorSideBottom.Control = ButtonPanel1
 
187
    Left = 442
 
188
    Height = 23
 
189
    Top = 423
 
190
    Width = 89
 
191
    Anchors = [akRight, akBottom]
 
192
    AutoSize = True
 
193
    BorderSpacing.Around = 6
 
194
    Caption = 'DeleteButton'
 
195
    OnClick = DeleteButtonClick
 
196
    TabOrder = 10
 
197
  end
 
198
end