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

« back to all changes in this revision

Viewing changes to packager/frames/package_integration_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
inherited PackageIntegrationOptionsFrame: TPackageIntegrationOptionsFrame
 
2
  Height = 352
 
3
  Width = 461
 
4
  ClientHeight = 352
 
5
  ClientWidth = 461
 
6
  TabOrder = 0
 
7
  DesignLeft = 517
 
8
  DesignTop = 273
 
9
  object PkgTypeRadioGroup: TRadioGroup[0]
 
10
    AnchorSideLeft.Control = Owner
 
11
    AnchorSideTop.Control = Owner
 
12
    AnchorSideRight.Control = Owner
 
13
    AnchorSideRight.Side = asrBottom
 
14
    Left = 0
 
15
    Height = 124
 
16
    Top = 0
 
17
    Width = 461
 
18
    Anchors = [akTop, akLeft, akRight]
 
19
    AutoFill = True
 
20
    AutoSize = True
 
21
    Caption = 'PackageType'
 
22
    ChildSizing.LeftRightSpacing = 6
 
23
    ChildSizing.TopBottomSpacing = 6
 
24
    ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
 
25
    ChildSizing.EnlargeVertical = crsHomogenousChildResize
 
26
    ChildSizing.ShrinkHorizontal = crsScaleChilds
 
27
    ChildSizing.ShrinkVertical = crsScaleChilds
 
28
    ChildSizing.Layout = cclLeftToRightThenTopToBottom
 
29
    ChildSizing.ControlsPerLine = 1
 
30
    ClientHeight = 108
 
31
    ClientWidth = 457
 
32
    ItemIndex = 2
 
33
    Items.Strings = (
 
34
      'Designtime'
 
35
      'Runtime'
 
36
      'Designtime and Runtime'
 
37
      'Runtime only, can not be installed in IDE'
 
38
    )
 
39
    OnClick = PkgTypeRadioGroupClick
 
40
    TabOrder = 0
 
41
  end
 
42
  object UpdateRadioGroup: TRadioGroup[1]
 
43
    AnchorSideLeft.Control = Owner
 
44
    AnchorSideTop.Control = PkgTypeRadioGroup
 
45
    AnchorSideTop.Side = asrBottom
 
46
    AnchorSideRight.Control = Owner
 
47
    AnchorSideRight.Side = asrBottom
 
48
    Left = 0
 
49
    Height = 100
 
50
    Top = 130
 
51
    Width = 461
 
52
    Anchors = [akTop, akLeft, akRight]
 
53
    AutoFill = True
 
54
    AutoSize = True
 
55
    BorderSpacing.Top = 6
 
56
    Caption = 'Update/Rebuild'
 
57
    ChildSizing.LeftRightSpacing = 6
 
58
    ChildSizing.TopBottomSpacing = 6
 
59
    ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
 
60
    ChildSizing.EnlargeVertical = crsHomogenousChildResize
 
61
    ChildSizing.ShrinkHorizontal = crsScaleChilds
 
62
    ChildSizing.ShrinkVertical = crsScaleChilds
 
63
    ChildSizing.Layout = cclLeftToRightThenTopToBottom
 
64
    ChildSizing.ControlsPerLine = 1
 
65
    ClientHeight = 84
 
66
    ClientWidth = 457
 
67
    ItemIndex = 0
 
68
    Items.Strings = (
 
69
      'Automatically rebuild as needed'
 
70
      'Auto rebuild when rebuilding all'
 
71
      'Manual compilation (never automatically)'
 
72
    )
 
73
    TabOrder = 1
 
74
  end
 
75
  object DocGroupBox: TGroupBox[2]
 
76
    AnchorSideLeft.Control = Owner
 
77
    AnchorSideTop.Control = UpdateRadioGroup
 
78
    AnchorSideTop.Side = asrBottom
 
79
    AnchorSideRight.Control = Owner
 
80
    AnchorSideRight.Side = asrBottom
 
81
    Left = 0
 
82
    Height = 82
 
83
    Top = 236
 
84
    Width = 461
 
85
    Anchors = [akTop, akLeft, akRight]
 
86
    AutoSize = True
 
87
    BorderSpacing.Top = 6
 
88
    Caption = 'FPDoc settings'
 
89
    ClientHeight = 66
 
90
    ClientWidth = 457
 
91
    TabOrder = 2
 
92
    object FPDocSearchPathsEdit: TEdit
 
93
      AnchorSideLeft.Control = FPDocSearchPathsLabel
 
94
      AnchorSideLeft.Side = asrBottom
 
95
      AnchorSideTop.Control = DocGroupBox
 
96
      AnchorSideRight.Control = DocGroupBox
 
97
      AnchorSideRight.Side = asrBottom
 
98
      Left = 146
 
99
      Height = 24
 
100
      Top = 6
 
101
      Width = 305
 
102
      Anchors = [akTop, akLeft, akRight]
 
103
      BorderSpacing.Around = 6
 
104
      ParentShowHint = False
 
105
      ShowHint = True
 
106
      TabOrder = 0
 
107
      Text = 'FPDocSearchPathsEdit'
 
108
    end
 
109
    object FPDocSearchPathsLabel: TLabel
 
110
      AnchorSideLeft.Control = DocGroupBox
 
111
      AnchorSideTop.Control = FPDocSearchPathsEdit
 
112
      AnchorSideTop.Side = asrCenter
 
113
      Left = 6
 
114
      Height = 15
 
115
      Top = 11
 
116
      Width = 134
 
117
      BorderSpacing.Left = 6
 
118
      BorderSpacing.Top = 6
 
119
      Caption = 'FPDocSearchPathsLabel'
 
120
      ParentColor = False
 
121
    end
 
122
    object FPDocPackageNameLabel: TLabel
 
123
      AnchorSideLeft.Control = DocGroupBox
 
124
      AnchorSideTop.Control = FPDocPackageNameEdit
 
125
      AnchorSideTop.Side = asrCenter
 
126
      Left = 6
 
127
      Height = 15
 
128
      Top = 41
 
129
      Width = 145
 
130
      BorderSpacing.Left = 6
 
131
      Caption = 'FPDocPackageNameLabel'
 
132
      ParentColor = False
 
133
    end
 
134
    object FPDocPackageNameEdit: TEdit
 
135
      AnchorSideLeft.Control = FPDocPackageNameLabel
 
136
      AnchorSideLeft.Side = asrBottom
 
137
      AnchorSideTop.Control = FPDocSearchPathsEdit
 
138
      AnchorSideTop.Side = asrBottom
 
139
      Left = 157
 
140
      Height = 24
 
141
      Top = 36
 
142
      Width = 116
 
143
      BorderSpacing.Around = 6
 
144
      OnEnter = FPDocPackageNameEditEnter
 
145
      OnExit = FPDocPackageNameEditExit
 
146
      ParentShowHint = False
 
147
      ShowHint = True
 
148
      TabOrder = 1
 
149
      Text = 'FPDocPackageNameEdit'
 
150
    end
 
151
  end
 
152
end