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

« back to all changes in this revision

Viewing changes to ide/lazarus.lpi

  • 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
        <MainUnitHasUsesSectionForAllUnits Value="False"/>
8
8
        <MainUnitHasCreateFormStatements Value="False"/>
9
9
        <MainUnitHasTitleStatement Value="False"/>
10
 
        <AlwaysBuild Value="False"/>
11
10
        <LRSInOutputDirectory Value="False"/>
12
11
      </Flags>
13
12
      <SessionStorage Value="InIDEConfig"/>
15
14
      <Title Value="Lazarus"/>
16
15
      <ResourceType Value="res"/>
17
16
      <UseXPManifest Value="True"/>
 
17
      <XPManifest>
 
18
        <DpiAware Value="True"/>
 
19
      </XPManifest>
18
20
      <Icon Value="0"/>
19
21
    </General>
 
22
    <LazDoc Paths="docs/xml/ide"/>
20
23
    <VersionInfo>
21
24
      <UseVersionInfo Value="True"/>
22
 
      <MinorVersionNr Value="9"/>
23
 
      <RevisionNr Value="30"/>
24
 
      <BuildNr Value="4"/>
 
25
      <MajorVersionNr Value="1"/>
 
26
      <RevisionNr Value="8"/>
25
27
      <CharSet Value="04B0"/>
26
 
      <StringTable ProductName="Lazarus IDE" ProductVersion=""/>
 
28
      <StringTable ProductName="Lazarus IDE" ProductVersion="1.0.8"/>
27
29
    </VersionInfo>
28
30
    <BuildModes Count="1">
29
31
      <Item1 Name="default" Default="True"/>
40
42
        <LaunchingApplication PathPlusParams="/usr/X11R6/bin/xterm -T 'Lazarus Run Output' -e $(LazarusDir)/tools/runwait.sh $(TargetCmdLine)"/>
41
43
      </local>
42
44
    </RunParams>
43
 
    <RequiredPackages Count="5">
 
45
    <RequiredPackages Count="6">
44
46
      <Item1>
 
47
        <PackageName Value="LCLBase"/>
 
48
        <MinVersion Major="1" Release="1" Valid="True"/>
 
49
      </Item1>
 
50
      <Item2>
45
51
        <PackageName Value="LazControls"/>
46
 
      </Item1>
47
 
      <Item2>
 
52
      </Item2>
 
53
      <Item3>
48
54
        <PackageName Value="CodeTools"/>
49
 
      </Item2>
50
 
      <Item3>
51
 
        <PackageName Value="IDEIntf"/>
52
55
      </Item3>
53
56
      <Item4>
54
 
        <PackageName Value="LCL"/>
 
57
        <PackageName Value="IDEIntf"/>
55
58
      </Item4>
56
59
      <Item5>
 
60
        <PackageName Value="LCL"/>
 
61
      </Item5>
 
62
      <Item6>
57
63
        <PackageName Value="SynEdit"/>
58
 
      </Item5>
 
64
      </Item6>
59
65
    </RequiredPackages>
60
 
    <Units Count="75">
 
66
    <Units Count="91">
61
67
      <Unit0>
62
68
        <Filename Value="lazarus.pp"/>
63
69
        <IsPartOfProject Value="True"/>
392
398
        <UnitName Value="AboutFrm"/>
393
399
      </Unit48>
394
400
      <Unit49>
395
 
        <Filename Value="helpmanager.pas"/>
 
401
        <Filename Value="idehelpmanager.pas"/>
396
402
        <IsPartOfProject Value="True"/>
397
403
        <ComponentName Value="HelpSelectorDialog"/>
398
404
        <HasResources Value="True"/>
399
405
        <ResourceBaseClass Value="Form"/>
400
 
        <UnitName Value="HelpManager"/>
 
406
        <UnitName Value="IDEHelpManager"/>
401
407
      </Unit49>
402
408
      <Unit50>
403
409
        <Filename Value="../designer/askcompnamedlg.pas"/>
423
429
      <Unit53>
424
430
        <Filename Value="frames/project_lazdoc_options.pas"/>
425
431
        <IsPartOfProject Value="True"/>
426
 
        <ComponentName Value="ProjectLazDocOptionsFrame"/>
 
432
        <ComponentName Value="ProjectFPDocOptionsFrame"/>
427
433
        <ResourceBaseClass Value="Frame"/>
428
434
        <UnitName Value="project_lazdoc_options"/>
429
435
      </Unit53>
546
552
        <Filename Value="idefpcinfo.pas"/>
547
553
        <IsPartOfProject Value="True"/>
548
554
        <ComponentName Value="IDEFPCInfoDialog"/>
 
555
        <HasResources Value="True"/>
549
556
        <ResourceBaseClass Value="Form"/>
550
557
        <UnitName Value="IDEFPCInfo"/>
551
558
      </Unit71>
567
574
        <Filename Value="ideinfodlg.pas"/>
568
575
        <IsPartOfProject Value="True"/>
569
576
        <ComponentName Value="IDEInfoDialog"/>
 
577
        <HasResources Value="True"/>
570
578
        <ResourceBaseClass Value="Form"/>
571
579
        <UnitName Value="IDEInfoDlg"/>
572
580
      </Unit74>
 
581
      <Unit75>
 
582
        <Filename Value="inspectchksumchangeddlg.pas"/>
 
583
        <IsPartOfProject Value="True"/>
 
584
        <ComponentName Value="InspectChksumChgDialog"/>
 
585
        <ResourceBaseClass Value="Form"/>
 
586
        <UnitName Value="InspectChksumChangedDlg"/>
 
587
      </Unit75>
 
588
      <Unit76>
 
589
        <Filename Value="../packager/missingpkgfilesdlg.pas"/>
 
590
        <IsPartOfProject Value="True"/>
 
591
        <ComponentName Value="MissingPkgFilesDialog"/>
 
592
        <ResourceBaseClass Value="Form"/>
 
593
        <UnitName Value="MissingPkgFilesDlg"/>
 
594
      </Unit76>
 
595
      <Unit77>
 
596
        <Filename Value="../packager/frames/package_usage_options.pas"/>
 
597
        <IsPartOfProject Value="True"/>
 
598
        <ComponentName Value="PackageUsageOptionsFrame"/>
 
599
        <ResourceBaseClass Value="Frame"/>
 
600
        <UnitName Value="package_usage_options"/>
 
601
      </Unit77>
 
602
      <Unit78>
 
603
        <Filename Value="../packager/frames/package_description_options.pas"/>
 
604
        <IsPartOfProject Value="True"/>
 
605
        <ComponentName Value="PackageDescriptionOptionsFrame"/>
 
606
        <ResourceBaseClass Value="Frame"/>
 
607
        <UnitName Value="package_description_options"/>
 
608
      </Unit78>
 
609
      <Unit79>
 
610
        <Filename Value="../packager/frames/package_integration_options.pas"/>
 
611
        <IsPartOfProject Value="True"/>
 
612
        <ComponentName Value="PackageIntegrationOptionsFrame"/>
 
613
        <ResourceBaseClass Value="Frame"/>
 
614
        <UnitName Value="package_integration_options"/>
 
615
      </Unit79>
 
616
      <Unit80>
 
617
        <Filename Value="../packager/frames/package_provides_options.pas"/>
 
618
        <IsPartOfProject Value="True"/>
 
619
        <ComponentName Value="PackageProvidesOptionsFrame"/>
 
620
        <ResourceBaseClass Value="Frame"/>
 
621
        <UnitName Value="package_provides_options"/>
 
622
      </Unit80>
 
623
      <Unit81>
 
624
        <Filename Value="../packager/frames/package_i18n_options.pas"/>
 
625
        <IsPartOfProject Value="True"/>
 
626
        <ComponentName Value="PackageI18NOptionsFrame"/>
 
627
        <ResourceBaseClass Value="Frame"/>
 
628
        <UnitName Value="package_i18n_options"/>
 
629
      </Unit81>
 
630
      <Unit82>
 
631
        <Filename Value="ideminilibc.pas"/>
 
632
        <IsPartOfProject Value="True"/>
 
633
        <UnitName Value="IDEMiniLibC"/>
 
634
      </Unit82>
 
635
      <Unit83>
 
636
        <Filename Value="buildprojectdlg.pas"/>
 
637
        <IsPartOfProject Value="True"/>
 
638
        <HasResources Value="True"/>
 
639
        <UnitName Value="BuildProjectDlg"/>
 
640
      </Unit83>
 
641
      <Unit84>
 
642
        <Filename Value="ideguicmdline.pas"/>
 
643
        <IsPartOfProject Value="True"/>
 
644
        <UnitName Value="IDEGuiCmdLine"/>
 
645
      </Unit84>
 
646
      <Unit85>
 
647
        <Filename Value="frames/env_file_filters.pas"/>
 
648
        <IsPartOfProject Value="True"/>
 
649
        <ComponentName Value="FileFiltersOptionsFrame"/>
 
650
        <ResourceBaseClass Value="Frame"/>
 
651
        <UnitName Value="env_file_filters"/>
 
652
      </Unit85>
 
653
      <Unit86>
 
654
        <Filename Value="idefpdocfilesearch.pas"/>
 
655
        <IsPartOfProject Value="True"/>
 
656
        <ComponentName Value="FPDocFileSearchDialog"/>
 
657
        <ResourceBaseClass Value="Form"/>
 
658
        <UnitName Value="IDEFPDocFileSearch"/>
 
659
      </Unit86>
 
660
      <Unit87>
 
661
        <Filename Value="../packager/newpkgcomponentdlg.pas"/>
 
662
        <IsPartOfProject Value="True"/>
 
663
        <ComponentName Value="NewPkgComponentDialog"/>
 
664
        <ResourceBaseClass Value="Form"/>
 
665
        <UnitName Value="NewPkgComponentDlg"/>
 
666
      </Unit87>
 
667
      <Unit88>
 
668
        <Filename Value="msgview.pp"/>
 
669
        <IsPartOfProject Value="True"/>
 
670
        <HasResources Value="True"/>
 
671
        <UnitName Value="MsgView"/>
 
672
      </Unit88>
 
673
      <Unit89>
 
674
        <Filename Value="frames/editor_multiwindow_options.pas"/>
 
675
        <IsPartOfProject Value="True"/>
 
676
        <ComponentName Value="EditorMultiWindowOptionsFrame"/>
 
677
        <HasResources Value="True"/>
 
678
        <ResourceBaseClass Value="Frame"/>
 
679
        <UnitName Value="editor_multiwindow_options"/>
 
680
      </Unit89>
 
681
      <Unit90>
 
682
        <Filename Value="ideinfoneedbuild.pas"/>
 
683
        <IsPartOfProject Value="True"/>
 
684
        <ComponentName Value="IDEInfoNeedBuildDlg"/>
 
685
        <ResourceBaseClass Value="Form"/>
 
686
        <UnitName Value="IDEInfoNeedBuild"/>
 
687
      </Unit90>
573
688
    </Units>
574
689
  </ProjectOptions>
575
690
  <CompilerOptions>
576
 
    <Version Value="9"/>
 
691
    <Version Value="11"/>
577
692
    <Target>
578
693
      <Filename Value="../lazarus"/>
579
694
    </Target>
580
695
    <SearchPaths>
581
696
      <IncludeFiles Value="include"/>
582
 
      <OtherUnitFiles Value="frames;../converter;../debugger;../debugger/frames;../packager;../designer"/>
583
 
      <UnitOutputDirectory Value="$(LazarusDir)/units/$(TargetCPU)-$(TargetOS)"/>
 
697
      <OtherUnitFiles Value="frames;../converter;../debugger;../debugger/frames;../packager;../designer;../packager/frames"/>
 
698
      <UnitOutputDirectory Value="$(LazarusDir)/units/$(TargetCPU)-$(TargetOS)/$(LCLWidgetType)"/>
584
699
    </SearchPaths>
585
 
    <Parsing>
586
 
      <SyntaxOptions>
587
 
        <CStyleOperator Value="False"/>
588
 
      </SyntaxOptions>
589
 
    </Parsing>
590
700
    <Other>
591
701
      <CompilerMessages>
592
702
        <UseMsgFile Value="True"/>