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

« back to all changes in this revision

Viewing changes to components/lazsvnpkg/svnupdateform.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
1
object SVNUpdateFrm: TSVNUpdateFrm
2
 
  Left = 286
 
2
  Left = 375
3
3
  Height = 300
4
 
  Top = 209
 
4
  Top = 199
5
5
  Width = 640
6
 
  HelpContext = 0
7
6
  Caption = 'SVNUpdateFrm'
8
 
  ChildSizing.LeftRightSpacing = 0
9
 
  ChildSizing.TopBottomSpacing = 0
10
 
  ChildSizing.HorizontalSpacing = 0
11
 
  ChildSizing.VerticalSpacing = 0
12
 
  ChildSizing.ControlsPerLine = 0
13
7
  ClientHeight = 300
14
8
  ClientWidth = 640
15
 
  Font.Height = 0
16
 
  Font.Style = []
 
9
  OnClose = FormClose
17
10
  OnCreate = FormCreate
 
11
  OnDestroy = FormDestroy
18
12
  OnShow = FormShow
19
13
  Position = poScreenCenter
20
 
  LCLVersion = '0.9.27'
 
14
  LCLVersion = '0.9.31'
21
15
  object SVNUpdateListView: TListView
22
16
    Left = 6
23
 
    Height = 240
 
17
    Height = 244
24
18
    Top = 6
25
19
    Width = 628
26
 
    HelpContext = 0
27
20
    Align = alClient
28
 
    BorderSpacing.Left = 0
29
 
    BorderSpacing.Top = 0
30
 
    BorderSpacing.Right = 0
31
 
    BorderSpacing.Bottom = 0
32
21
    BorderSpacing.Around = 6
33
 
    BorderSpacing.CellAlignHorizontal = ccaFill
34
 
    BorderSpacing.CellAlignVertical = ccaFill
35
22
    Columns = <    
36
23
      item
37
 
        AutoSize = False
38
24
        Width = 75
39
25
      end    
40
26
      item
41
 
        AutoSize = False
42
27
        Width = 553
43
28
      end>
44
29
    PopupMenu = UpdatePopupMenu
45
30
    RowSelect = True
46
31
    ScrollBars = ssAutoBoth
47
 
    SortColumn = 0
48
 
    SortType = stNone
49
32
    TabOrder = 0
50
33
    ViewStyle = vsReport
51
34
  end
52
35
  object ButtonPanel: TButtonPanel
53
36
    Left = 6
54
 
    Height = 48
55
 
    Top = 252
 
37
    Height = 38
 
38
    Top = 256
56
39
    Width = 628
57
 
    HelpContext = 0
58
 
    Align = alBottom
59
 
    AutoSize = True
60
 
    ButtonOrder = boDefault
 
40
    OKButton.Name = 'OKButton'
 
41
    OKButton.OnClick = OKButtonClick
 
42
    HelpButton.Name = 'HelpButton'
 
43
    HelpButton.OnClick = ShowLogButtonClick
 
44
    CloseButton.Name = 'CloseButton'
 
45
    CancelButton.Name = 'CancelButton'
61
46
    TabOrder = 1
62
 
    DefaultButton = pbOK
63
 
    ShowButtons = [pbOK]
64
 
    object ShowLogButton: TBitBtn
65
 
      Left = 78
66
 
      Height = 34
67
 
      Top = 8
68
 
      Width = 131
69
 
      HelpContext = 0
70
 
      Align = alLeft
71
 
      AutoSize = True
72
 
      BorderSpacing.Left = 0
73
 
      BorderSpacing.Top = 0
74
 
      BorderSpacing.Right = 0
75
 
      BorderSpacing.Bottom = 0
76
 
      BorderSpacing.Around = 6
77
 
      BorderSpacing.CellAlignHorizontal = ccaFill
78
 
      BorderSpacing.CellAlignVertical = ccaFill
79
 
      Caption = 'ShowLogButton'
80
 
      Glyph.Data = {
81
 
        36040000424D3604000000000000360000002800000010000000100000000100
82
 
        20000000000000040000640000006400000000000000000000000000000080B1
83
 
        64FF858A88FF858A88FF858A88FF858A88FF858A88FF858A88FF858A88FF858A
84
 
        88FF858A88FF858A88FF858A88FF695857FF801960007FAB200000000000858A
85
 
        88FFEEEEEEFFB2B2B2FFB2B2B2FFB2B2B2FFB2B2B2FFB2B2B2FFB2B2B2FFB2B2
86
 
        B2FFB1B1B1FFB2B2B2FFB2B2B2FF858A88FFDE04CA000B007C0048346B00858A
87
 
        88FFFFFFFFFFECECECFFEBEBEBFFEAEAEAFFEAEAEAFFE9E9E9FFEBEBEBFFEAEA
88
 
        EAFFEBEBEBFFECECECFFB2B2B2FF858A88FF0100CA000000000070030000858A
89
 
        88FFFFFFFFFFDBDBDBFFCBCBCBFFC4C4C4FF000000FF02598FFF636363FF8C8C
90
 
        8CFFCACACAFFDADADAFFB2B2B2FF858A88FFCA00000019000000504B2600858A
91
 
        88FFFFFFFFFFECECECFFECECECFFE9E9E9FF02598FFF26424CFF36576BFF0259
92
 
        8FFF9D9D9DFFD6D6D6FFAEAEAEFF858A88FF09000000F817600000000000858A
93
 
        88FFFFFFFFFFDBDBDBFFCCCCCCFFCBCBCBFF757575FF395B70FF8AABC2FF5585
94
 
        A3FF02598FFF8F8F8FFF868686FF858A88FF401860007BAB200000000000858A
95
 
        88FFFFFFFFFFECECECFFECECECFFECECECFFEBEBEBFF02598FFFC4E5EDFF649F
96
 
        C8FF5787A4FF02598FFF717171FF858A88FFDE04CA000A007C0048346B00858A
97
 
        88FFFFFFFFFFDBDBDBFFCCCCCCFFCCCCCCFFCCCCCCFFB7B7B7FF02598FFFC5E6
98
 
        EDFF68A6CEFF5784A0FF02598FFF858A88FF0300CA000000000030020000858A
99
 
        88FFFFFFFFFFECECECFFECECECFFECECECFFECECECFFECECECFFD3D3D3FF0259
100
 
        8FFFC6EAEEFF69AACFFF5683A0FF02598FFFA3121D0019000000504B2600858A
101
 
        88FFFFFFFFFFDBDBDBFFCCCCCCFFCCCCCCFFCCCCCCFFCCCCCCFFCCCCCCFFB7B7
102
 
        B7FF02598FFFC7EBEFFF6AACD2FF5787A4FF02598FFF93246A0000000000858A
103
 
        88FFFFFFFFFFECECECFFECECECFFECECECFFECECECFFECECECFFECECECFFECEC
104
 
        ECFFD3D3D3FF02598FFFC7EBEFFF6AACD2FF5481A0FF02598FFF00000000858A
105
 
        88FFEBEBEBFF00A0C4FFBCBCBCFF00A0C4FFB8B8B8FF00A0C4FFB8B8B8FF00A0
106
 
        C4FFB8B8B8FF00A0C4FF02598FFFC6EAEEFF71ADCFFF02598FFF48346B00858A
107
 
        88FF00A0C4FF3DB1EBFF00A0C4FF3DB1EBFF00A0C4FF3DB1EBFF00A0C4FF3DB1
108
 
        EBFF00A0C4FF3DB1EBFF00A0C4FF02598FFF02598FFF01203400F00000005737
109
 
        360000A0C4FFC6E8F9FF00A0C4FFC6E8F9FF00A0C4FFC6E8F9FF00A0C4FFC6E8
110
 
        F9FF00A0C4FFC6E8F9FF00A0C4FF00000000CC00000019000000504B2600E0B0
111
 
        4A00A32EC80000A0C4FF002B340000A0C4FF012BC80000A0C4FF002B340000A0
112
 
        C4FF962B340000A0C4FF35518200F815600009000000781560000000000078F6
113
 
        25000100CA00000000000000000000000000CC0000001900000048346B00A815
114
 
        60000900000028156000A000000038000000C015600073AB2000
115
 
      }
116
 
      NumGlyphs = 0
117
 
      OnClick = ShowLogButtonClick
118
 
      TabOrder = 4
119
 
    end
 
47
    ShowButtons = [pbOK, pbHelp]
120
48
  end
121
49
  object UpdatePopupMenu: TPopupMenu
122
50
    left = 40
123
51
    top = 64
124
52
    object mnuShowDiff: TMenuItem
125
53
      Caption = 'New Item1'
126
 
      RightJustify = False
127
 
      ShowAlwaysCheckable = False
128
54
      OnClick = mnuShowDiffClick
129
55
    end
130
56
  end