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

« back to all changes in this revision

Viewing changes to debugger/registersdlg.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:
10
10
  ClientWidth = 346
11
11
  object lvRegisters: TListView[0]
12
12
    Left = 0
13
 
    Height = 253
14
 
    Top = 0
 
13
    Height = 227
 
14
    Top = 26
15
15
    Width = 346
16
16
    Align = alClient
17
17
    Columns = <    
23
23
        Caption = 'Value'
24
24
      end>
25
25
    MultiSelect = True
 
26
    PopupMenu = PopupMenu1
26
27
    RowSelect = True
27
28
    SmallImages = ImageList1
28
29
    TabOrder = 0
29
30
    ViewStyle = vsReport
30
 
  end
31
 
  object ImageList1: TImageList[1]
 
31
    OnSelectItem = lvRegistersSelectItem
 
32
  end
 
33
  object ToolBar1: TToolBar[1]
 
34
    Left = 0
 
35
    Height = 26
 
36
    Top = 0
 
37
    Width = 346
 
38
    Caption = 'ToolBar1'
 
39
    ShowCaptions = True
 
40
    TabOrder = 1
 
41
    object ToolButtonPower: TToolButton
 
42
      Left = 1
 
43
      Top = 2
 
44
      Action = actPower
 
45
      Down = True
 
46
      ParentShowHint = False
 
47
      ShowCaption = False
 
48
      ShowHint = True
 
49
      Style = tbsCheck
 
50
    end
 
51
    object ToolButton1: TToolButton
 
52
      Left = 24
 
53
      Top = 2
 
54
      Width = 10
 
55
      Caption = 'ToolButton1'
 
56
      Style = tbsSeparator
 
57
    end
 
58
    object ToolButtonDispType: TToolButton
 
59
      Left = 34
 
60
      Top = 2
 
61
      Caption = '...'
 
62
      DropdownMenu = PopupDispType
 
63
      OnClick = ToolButtonDispTypeClick
 
64
      ParentShowHint = False
 
65
      ShowHint = True
 
66
      Style = tbsDropDown
 
67
    end
 
68
  end
 
69
  object ImageList1: TImageList[2]
32
70
    Height = 8
33
71
    Width = 8
34
72
    left = 112
45
83
      0000000000000000000000000000
46
84
    }
47
85
  end
 
86
  object ActionList1: TActionList[3]
 
87
    left = 200
 
88
    top = 112
 
89
    object actPower: TAction
 
90
      OnExecute = actPowerExecute
 
91
    end
 
92
    object actCopyName: TAction
 
93
      Category = 'copy'
 
94
      Caption = 'actCopyName'
 
95
      OnExecute = actCopyNameExecute
 
96
    end
 
97
    object actCopyValue: TAction
 
98
      Category = 'copy'
 
99
      Caption = 'actCopyValue'
 
100
      OnExecute = actCopyValueExecute
 
101
    end
 
102
  end
 
103
  object PopupDispType: TPopupMenu[4]
 
104
    left = 200
 
105
    top = 176
 
106
    object DispDefault: TMenuItem
 
107
      Caption = 'New Item1'
 
108
      OnClick = DispDefaultClick
 
109
    end
 
110
    object DispHex: TMenuItem
 
111
      Caption = 'New Item2'
 
112
      OnClick = DispDefaultClick
 
113
    end
 
114
    object DispBin: TMenuItem
 
115
      Caption = 'New Item3'
 
116
      OnClick = DispDefaultClick
 
117
    end
 
118
    object DispOct: TMenuItem
 
119
      Caption = 'New Item4'
 
120
      OnClick = DispDefaultClick
 
121
    end
 
122
    object DispDec: TMenuItem
 
123
      Caption = 'New Item5'
 
124
      OnClick = DispDefaultClick
 
125
    end
 
126
    object DispRaw: TMenuItem
 
127
      Caption = 'New Item6'
 
128
      OnClick = DispDefaultClick
 
129
    end
 
130
  end
 
131
  object PopupMenu1: TPopupMenu[5]
 
132
    left = 95
 
133
    top = 178
 
134
    object popFormat: TMenuItem
 
135
      Caption = 'New Item1'
 
136
      object PopDispDefault: TMenuItem
 
137
        Caption = 'New Item1'
 
138
        OnClick = DispDefaultClick
 
139
      end
 
140
      object PopDispHex: TMenuItem
 
141
        Caption = 'New Item2'
 
142
        OnClick = DispDefaultClick
 
143
      end
 
144
      object PopDispBin: TMenuItem
 
145
        Caption = 'New Item3'
 
146
        OnClick = DispDefaultClick
 
147
      end
 
148
      object PopDispOct: TMenuItem
 
149
        Caption = 'New Item4'
 
150
        OnClick = DispDefaultClick
 
151
      end
 
152
      object PopDispDec: TMenuItem
 
153
        Caption = 'New Item5'
 
154
        OnClick = DispDefaultClick
 
155
      end
 
156
      object PopDispRaw: TMenuItem
 
157
        Caption = 'New Item6'
 
158
        OnClick = DispDefaultClick
 
159
      end
 
160
    end
 
161
    object popL1: TMenuItem
 
162
      Caption = '-'
 
163
    end
 
164
    object popCopyName: TMenuItem
 
165
      Action = actCopyName
 
166
    end
 
167
    object popCopyValue: TMenuItem
 
168
      Action = actCopyValue
 
169
    end
 
170
  end
48
171
end