mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-26 23:00:15 +02:00
IDE, Debugger: make toolbars in debug-dialogs wrap-able
This commit is contained in:
parent
803ce231ce
commit
b33513dac3
@ -10,18 +10,20 @@ object BreakpointsDlg: TBreakpointsDlg
|
|||||||
Caption = 'Breakpoint list'
|
Caption = 'Breakpoint list'
|
||||||
ClientHeight = 205
|
ClientHeight = 205
|
||||||
ClientWidth = 560
|
ClientWidth = 560
|
||||||
LCLVersion = '3.99.0.0'
|
LCLVersion = '4.99.0.0'
|
||||||
Visible = True
|
Visible = True
|
||||||
OnCreate = BreakpointsDlgCREATE
|
OnCreate = BreakpointsDlgCREATE
|
||||||
object ToolBar1: TToolBar
|
object ToolBar1: TToolBar
|
||||||
Left = 0
|
Left = 0
|
||||||
Height = 26
|
Height = 24
|
||||||
Top = 0
|
Top = 0
|
||||||
Width = 560
|
Width = 560
|
||||||
|
AutoSize = True
|
||||||
Caption = 'ToolBar1'
|
Caption = 'ToolBar1'
|
||||||
ParentShowHint = False
|
ParentShowHint = False
|
||||||
ShowHint = True
|
ShowHint = True
|
||||||
TabOrder = 0
|
TabOrder = 0
|
||||||
|
Orientation = tboHorizontal
|
||||||
object ToolButtonAdd: TToolButton
|
object ToolButtonAdd: TToolButton
|
||||||
Left = 1
|
Left = 1
|
||||||
Top = 2
|
Top = 2
|
||||||
@ -93,8 +95,8 @@ object BreakpointsDlg: TBreakpointsDlg
|
|||||||
end
|
end
|
||||||
object tvBreakPoints: TDbgTreeView
|
object tvBreakPoints: TDbgTreeView
|
||||||
Left = 0
|
Left = 0
|
||||||
Height = 179
|
Height = 181
|
||||||
Top = 26
|
Top = 24
|
||||||
Width = 560
|
Width = 560
|
||||||
Align = alClient
|
Align = alClient
|
||||||
DefaultText = 'Node'
|
DefaultText = 'Node'
|
||||||
|
@ -7,13 +7,13 @@ object CallStackDlg: TCallStackDlg
|
|||||||
Caption = 'CallStack'
|
Caption = 'CallStack'
|
||||||
ClientHeight = 246
|
ClientHeight = 246
|
||||||
ClientWidth = 562
|
ClientWidth = 562
|
||||||
LCLVersion = '3.99.0.0'
|
LCLVersion = '4.99.0.0'
|
||||||
Visible = True
|
Visible = True
|
||||||
OnCreate = FormCreate
|
OnCreate = FormCreate
|
||||||
object lvCallStack: TListView
|
object lvCallStack: TListView
|
||||||
Left = 0
|
Left = 0
|
||||||
Height = 220
|
Height = 221
|
||||||
Top = 26
|
Top = 25
|
||||||
Width = 562
|
Width = 562
|
||||||
Align = alClient
|
Align = alClient
|
||||||
Columns = <
|
Columns = <
|
||||||
@ -47,15 +47,18 @@ object CallStackDlg: TCallStackDlg
|
|||||||
end
|
end
|
||||||
object ToolBar1: TToolBar
|
object ToolBar1: TToolBar
|
||||||
Left = 0
|
Left = 0
|
||||||
Height = 26
|
Height = 24
|
||||||
Top = 0
|
Top = 0
|
||||||
Width = 562
|
Width = 562
|
||||||
|
AutoSize = True
|
||||||
|
BorderSpacing.Bottom = 1
|
||||||
Caption = 'tbButtons'
|
Caption = 'tbButtons'
|
||||||
List = True
|
List = True
|
||||||
ParentShowHint = False
|
ParentShowHint = False
|
||||||
ShowCaptions = True
|
ShowCaptions = True
|
||||||
ShowHint = True
|
ShowHint = True
|
||||||
TabOrder = 1
|
TabOrder = 1
|
||||||
|
Orientation = tboHorizontal
|
||||||
object ToolButtonShow: TToolButton
|
object ToolButtonShow: TToolButton
|
||||||
Left = 32
|
Left = 32
|
||||||
Top = 2
|
Top = 2
|
||||||
|
@ -7,11 +7,11 @@ object HistoryDialog: THistoryDialog
|
|||||||
Caption = 'HistoryDialog'
|
Caption = 'HistoryDialog'
|
||||||
ClientHeight = 240
|
ClientHeight = 240
|
||||||
ClientWidth = 422
|
ClientWidth = 422
|
||||||
LCLVersion = '3.99.0.0'
|
LCLVersion = '4.99.0.0'
|
||||||
object lvHistory: TListView
|
object lvHistory: TListView
|
||||||
Left = 0
|
Left = 0
|
||||||
Height = 214
|
Height = 216
|
||||||
Top = 26
|
Top = 24
|
||||||
Width = 422
|
Width = 422
|
||||||
Align = alClient
|
Align = alClient
|
||||||
Columns = <
|
Columns = <
|
||||||
@ -33,14 +33,15 @@ object HistoryDialog: THistoryDialog
|
|||||||
end
|
end
|
||||||
object ToolBar1: TToolBar
|
object ToolBar1: TToolBar
|
||||||
Left = 0
|
Left = 0
|
||||||
Height = 26
|
Height = 24
|
||||||
Top = 0
|
Top = 0
|
||||||
Width = 422
|
Width = 422
|
||||||
|
AutoSize = True
|
||||||
Caption = 'ToolBar1'
|
Caption = 'ToolBar1'
|
||||||
ParentShowHint = False
|
ParentShowHint = False
|
||||||
ShowHint = True
|
ShowHint = True
|
||||||
TabOrder = 1
|
TabOrder = 1
|
||||||
Wrapable = False
|
Orientation = tboHorizontal
|
||||||
object tbHistorySelected: TToolButton
|
object tbHistorySelected: TToolButton
|
||||||
Left = 24
|
Left = 24
|
||||||
Top = 2
|
Top = 2
|
||||||
@ -117,13 +118,13 @@ object HistoryDialog: THistoryDialog
|
|||||||
Style = tbsDivider
|
Style = tbsDivider
|
||||||
end
|
end
|
||||||
object tbExport: TToolButton
|
object tbExport: TToolButton
|
||||||
Left = 218
|
Left = 208
|
||||||
Top = 2
|
Top = 2
|
||||||
Caption = 'tbExport'
|
Caption = 'tbExport'
|
||||||
OnClick = tbExportClick
|
OnClick = tbExportClick
|
||||||
end
|
end
|
||||||
object tbImport: TToolButton
|
object tbImport: TToolButton
|
||||||
Left = 195
|
Left = 185
|
||||||
Top = 2
|
Top = 2
|
||||||
Caption = 'tbImport'
|
Caption = 'tbImport'
|
||||||
OnClick = tbImportClick
|
OnClick = tbImportClick
|
||||||
|
@ -7,11 +7,11 @@ object ThreadsDlg: TThreadsDlg
|
|||||||
Caption = 'Threads'
|
Caption = 'Threads'
|
||||||
ClientHeight = 240
|
ClientHeight = 240
|
||||||
ClientWidth = 774
|
ClientWidth = 774
|
||||||
LCLVersion = '3.99.0.0'
|
LCLVersion = '4.99.0.0'
|
||||||
object lvThreads: TListView
|
object lvThreads: TListView
|
||||||
Left = 0
|
Left = 0
|
||||||
Height = 214
|
Height = 215
|
||||||
Top = 26
|
Top = 25
|
||||||
Width = 774
|
Width = 774
|
||||||
Align = alClient
|
Align = alClient
|
||||||
Columns = <
|
Columns = <
|
||||||
@ -53,12 +53,15 @@ object ThreadsDlg: TThreadsDlg
|
|||||||
end
|
end
|
||||||
object ToolBar1: TToolBar
|
object ToolBar1: TToolBar
|
||||||
Left = 0
|
Left = 0
|
||||||
Height = 26
|
Height = 24
|
||||||
Top = 0
|
Top = 0
|
||||||
Width = 774
|
Width = 774
|
||||||
|
AutoSize = True
|
||||||
|
BorderSpacing.Bottom = 1
|
||||||
Caption = 'ToolBar1'
|
Caption = 'ToolBar1'
|
||||||
ShowCaptions = True
|
ShowCaptions = True
|
||||||
TabOrder = 1
|
TabOrder = 1
|
||||||
|
Orientation = tboHorizontal
|
||||||
object tbCurrent: TToolButton
|
object tbCurrent: TToolButton
|
||||||
Left = 1
|
Left = 1
|
||||||
Top = 2
|
Top = 2
|
||||||
|
Loading…
Reference in New Issue
Block a user