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

« back to all changes in this revision

Viewing changes to components/tachart/demo/radial/main.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:
7
7
  ClientHeight = 433
8
8
  ClientWidth = 566
9
9
  Position = poScreenCenter
10
 
  LCLVersion = '0.9.29'
 
10
  LCLVersion = '0.9.31'
11
11
  object PageControl1: TPageControl
12
12
    Left = 0
13
13
    Height = 433
23
23
      ClientWidth = 558
24
24
      object ChartPie: TChart
25
25
        Left = 0
26
 
        Height = 356
27
 
        Top = 51
 
26
        Height = 348
 
27
        Top = 59
28
28
        Width = 558
29
29
        AxisList = <        
30
30
          item
 
31
            Visible = False
 
32
            Minors = <>
31
33
            Title.LabelFont.Orientation = 900
32
 
            Visible = False
33
34
          end        
34
35
          item
 
36
            Visible = False
35
37
            Alignment = calBottom
36
 
            Visible = False
 
38
            Minors = <>
37
39
          end>
38
40
        Foot.Brush.Color = clBtnFace
39
41
        Foot.Font.Color = clBlue
56
58
      end
57
59
      object Panel1: TPanel
58
60
        Left = 0
59
 
        Height = 51
 
61
        Height = 59
60
62
        Top = 0
61
63
        Width = 558
62
64
        Align = alTop
63
65
        Alignment = taLeftJustify
64
 
        Caption = 'Click on the slice to explode/unxeplode it'
65
 
        ClientHeight = 51
 
66
        Caption = 'Click on the slice to explode/unexplode it'
 
67
        ClientHeight = 59
66
68
        ClientWidth = 558
67
69
        TabOrder = 1
68
70
        object seWords: TSpinEdit
115
117
          OnChange = cbRotateChange
116
118
          TabOrder = 2
117
119
        end
 
120
        object cbMarkPositions: TComboBox
 
121
          Left = 310
 
122
          Height = 21
 
123
          Top = 30
 
124
          Width = 100
 
125
          ItemHeight = 13
 
126
          ItemIndex = 0
 
127
          Items.Strings = (
 
128
            'Around'
 
129
            'Inside'
 
130
            'Left / right'
 
131
          )
 
132
          OnChange = cbMarkPositionsChange
 
133
          Style = csDropDownList
 
134
          TabOrder = 3
 
135
          Text = 'Around'
 
136
        end
 
137
      end
 
138
    end
 
139
    object tsPolar: TTabSheet
 
140
      Caption = 'Polar'
 
141
      ClientHeight = 407
 
142
      ClientWidth = 558
 
143
      object ChartPolar: TChart
 
144
        Left = 0
 
145
        Height = 407
 
146
        Top = 0
 
147
        Width = 558
 
148
        AxisList = <        
 
149
          item
 
150
            Minors = <>
 
151
            Title.LabelFont.Orientation = 900
 
152
          end        
 
153
          item
 
154
            Alignment = calBottom
 
155
            Minors = <>
 
156
          end>
 
157
        Foot.Brush.Color = clBtnFace
 
158
        Foot.Font.Color = clBlue
 
159
        Title.Brush.Color = clBtnFace
 
160
        Title.Font.Color = clBlue
 
161
        Title.Text.Strings = (
 
162
          'TAChart'
 
163
        )
 
164
        Align = alClient
 
165
        ParentColor = False
 
166
        object ChartPolarSeries1: TPolarSeries
 
167
          OriginX = -5
 
168
          Source = RandomChartSource1
 
169
        end
 
170
        object ChartPolarSeries2: TPolarSeries
 
171
          LinePen.Color = clRed
 
172
          OriginY = 5
 
173
          Source = RandomChartSource1
 
174
        end
118
175
      end
119
176
    end
120
177
  end
138
195
    left = 440
139
196
    top = 80
140
197
  end
 
198
  object RandomChartSource1: TRandomChartSource
 
199
    PointsNumber = 15
 
200
    RandSeed = 1648434073
 
201
    XMax = 6
 
202
    XMin = 0
 
203
    YCount = 2
 
204
    YMax = 10
 
205
    YMin = 2
 
206
    left = 440
 
207
    top = 196
 
208
  end
141
209
end