VDBUnixDebuggerConsoleApplication.st
author Jan Vrany <jan.vrany@labware.com>
Mon, 16 Nov 2020 21:51:00 +0000
changeset 199 9802f25351a7
parent 159 c00d27805420
child 264 23960fcb9dac
permissions -rw-r--r--
Make sure width / height parameters are non-negative when informing GDB about console size When the console view is made invisible via resizing new, `#widthInChars` / `#heightInChars` might be `-1`, causing error when informing GDB. This commit makes sure it always non-negative (i.e, 0 or more)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
49
2ec7f7ed9242 License this package under 'Creative Commons Attribution-NonCommercial 4.0 International License'
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 40
diff changeset
     1
"
2ec7f7ed9242 License this package under 'Creative Commons Attribution-NonCommercial 4.0 International License'
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 40
diff changeset
     2
jv:vdb - Visual / VM Debugger
2ec7f7ed9242 License this package under 'Creative Commons Attribution-NonCommercial 4.0 International License'
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 40
diff changeset
     3
Copyright (C) 2015-now Jan Vrany
199
9802f25351a7 Make sure width / height parameters are non-negative when informing GDB about console size
Jan Vrany <jan.vrany@labware.com>
parents: 159
diff changeset
     4
Copyright (C) 2020 LabWare
49
2ec7f7ed9242 License this package under 'Creative Commons Attribution-NonCommercial 4.0 International License'
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 40
diff changeset
     5
2ec7f7ed9242 License this package under 'Creative Commons Attribution-NonCommercial 4.0 International License'
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 40
diff changeset
     6
This software is licensed under 'Creative Commons Attribution-NonCommercial 4.0 International License'
2ec7f7ed9242 License this package under 'Creative Commons Attribution-NonCommercial 4.0 International License'
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 40
diff changeset
     7
2ec7f7ed9242 License this package under 'Creative Commons Attribution-NonCommercial 4.0 International License'
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 40
diff changeset
     8
You may find a full license text in LICENSE.txt or at http://creativecommons.org/licenses/by-nc/4.0/
2ec7f7ed9242 License this package under 'Creative Commons Attribution-NonCommercial 4.0 International License'
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 40
diff changeset
     9
"
0
33a652015a1a Initial commit.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    10
"{ Package: 'jv:vdb' }"
33a652015a1a Initial commit.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    11
35
f6e4876af2e7 Fix in debugger console: properly handle errors
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 32
diff changeset
    12
"{ NameSpace: Smalltalk }"
f6e4876af2e7 Fix in debugger console: properly handle errors
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 32
diff changeset
    13
51
6c982fc25fe2 Renamed `VDBAbstractConsoleApplication` to `VDBAbstractUnixConsoleApplication`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 49
diff changeset
    14
VDBAbstractUnixConsoleApplication subclass:#VDBUnixDebuggerConsoleApplication
40
d766d4c854a2 Cleanup in debugger and inferior console applications to catch up changes in `jv:libgdbs`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 39
diff changeset
    15
	instanceVariableNames:''
0
33a652015a1a Initial commit.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    16
	classVariableNames:''
40
d766d4c854a2 Cleanup in debugger and inferior console applications to catch up changes in `jv:libgdbs`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 39
diff changeset
    17
	poolDictionaries:''
51
6c982fc25fe2 Renamed `VDBAbstractConsoleApplication` to `VDBAbstractUnixConsoleApplication`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 49
diff changeset
    18
	category:'VDB-UI-Console-Unix'
0
33a652015a1a Initial commit.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    19
!
33a652015a1a Initial commit.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    20
51
6c982fc25fe2 Renamed `VDBAbstractConsoleApplication` to `VDBAbstractUnixConsoleApplication`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 49
diff changeset
    21
!VDBUnixDebuggerConsoleApplication class methodsFor:'documentation'!
49
2ec7f7ed9242 License this package under 'Creative Commons Attribution-NonCommercial 4.0 International License'
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 40
diff changeset
    22
2ec7f7ed9242 License this package under 'Creative Commons Attribution-NonCommercial 4.0 International License'
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 40
diff changeset
    23
copyright
2ec7f7ed9242 License this package under 'Creative Commons Attribution-NonCommercial 4.0 International License'
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 40
diff changeset
    24
"
2ec7f7ed9242 License this package under 'Creative Commons Attribution-NonCommercial 4.0 International License'
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 40
diff changeset
    25
jv:vdb - Visual / VM Debugger
2ec7f7ed9242 License this package under 'Creative Commons Attribution-NonCommercial 4.0 International License'
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 40
diff changeset
    26
Copyright (C) 2015-now Jan Vrany
199
9802f25351a7 Make sure width / height parameters are non-negative when informing GDB about console size
Jan Vrany <jan.vrany@labware.com>
parents: 159
diff changeset
    27
Copyright (C) 2020 LabWare
49
2ec7f7ed9242 License this package under 'Creative Commons Attribution-NonCommercial 4.0 International License'
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 40
diff changeset
    28
2ec7f7ed9242 License this package under 'Creative Commons Attribution-NonCommercial 4.0 International License'
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 40
diff changeset
    29
This software is licensed under 'Creative Commons Attribution-NonCommercial 4.0 International License'
2ec7f7ed9242 License this package under 'Creative Commons Attribution-NonCommercial 4.0 International License'
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 40
diff changeset
    30
2ec7f7ed9242 License this package under 'Creative Commons Attribution-NonCommercial 4.0 International License'
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 40
diff changeset
    31
You may find a full license text in LICENSE.txt or at http://creativecommons.org/licenses/by-nc/4.0/
2ec7f7ed9242 License this package under 'Creative Commons Attribution-NonCommercial 4.0 International License'
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 40
diff changeset
    32
"
2ec7f7ed9242 License this package under 'Creative Commons Attribution-NonCommercial 4.0 International License'
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 40
diff changeset
    33
! !
2ec7f7ed9242 License this package under 'Creative Commons Attribution-NonCommercial 4.0 International License'
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 40
diff changeset
    34
51
6c982fc25fe2 Renamed `VDBAbstractConsoleApplication` to `VDBAbstractUnixConsoleApplication`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 49
diff changeset
    35
!VDBUnixDebuggerConsoleApplication class methodsFor:'accessing'!
6c982fc25fe2 Renamed `VDBAbstractConsoleApplication` to `VDBAbstractUnixConsoleApplication`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 49
diff changeset
    36
115
0dd989ce3ae7 Cleanup default window titles
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 73
diff changeset
    37
defaultWindowTitle
0dd989ce3ae7 Cleanup default window titles
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 73
diff changeset
    38
    ^ self resources string: 'Debugger Console'
51
6c982fc25fe2 Renamed `VDBAbstractConsoleApplication` to `VDBAbstractUnixConsoleApplication`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 49
diff changeset
    39
6c982fc25fe2 Renamed `VDBAbstractConsoleApplication` to `VDBAbstractUnixConsoleApplication`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 49
diff changeset
    40
    "Created: / 08-01-2018 / 18:59:02 / Jan Vrany <jan.vrany@fit.cvut.cz>"
115
0dd989ce3ae7 Cleanup default window titles
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 73
diff changeset
    41
    "Modified: / 03-10-2018 / 15:39:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
51
6c982fc25fe2 Renamed `VDBAbstractConsoleApplication` to `VDBAbstractUnixConsoleApplication`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 49
diff changeset
    42
! !
6c982fc25fe2 Renamed `VDBAbstractConsoleApplication` to `VDBAbstractUnixConsoleApplication`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 49
diff changeset
    43
6c982fc25fe2 Renamed `VDBAbstractConsoleApplication` to `VDBAbstractUnixConsoleApplication`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 49
diff changeset
    44
!VDBUnixDebuggerConsoleApplication class methodsFor:'startup-web applications'!
0
33a652015a1a Initial commit.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    45
40
d766d4c854a2 Cleanup in debugger and inferior console applications to catch up changes in `jv:libgdbs`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 39
diff changeset
    46
initialPageSpec
d766d4c854a2 Cleanup in debugger and inferior console applications to catch up changes in `jv:libgdbs`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 39
diff changeset
    47
    "this is only required for web-applications"
4
a7732b0afed6 VDBDebuggerConsoleApplication refactored to use custom TerminalView.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2
diff changeset
    48
40
d766d4c854a2 Cleanup in debugger and inferior console applications to catch up changes in `jv:libgdbs`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 39
diff changeset
    49
    ^ self shouldImplement
0
33a652015a1a Initial commit.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    50
!
33a652015a1a Initial commit.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    51
40
d766d4c854a2 Cleanup in debugger and inferior console applications to catch up changes in `jv:libgdbs`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 39
diff changeset
    52
pageSpecs
d766d4c854a2 Cleanup in debugger and inferior console applications to catch up changes in `jv:libgdbs`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 39
diff changeset
    53
    "this is only required for web-applications"
4
a7732b0afed6 VDBDebuggerConsoleApplication refactored to use custom TerminalView.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2
diff changeset
    54
40
d766d4c854a2 Cleanup in debugger and inferior console applications to catch up changes in `jv:libgdbs`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 39
diff changeset
    55
    ^ self shouldImplement
4
a7732b0afed6 VDBDebuggerConsoleApplication refactored to use custom TerminalView.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2
diff changeset
    56
! !
a7732b0afed6 VDBDebuggerConsoleApplication refactored to use custom TerminalView.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2
diff changeset
    57
51
6c982fc25fe2 Renamed `VDBAbstractConsoleApplication` to `VDBAbstractUnixConsoleApplication`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 49
diff changeset
    58
!VDBUnixDebuggerConsoleApplication methodsFor:'accessing'!
4
a7732b0afed6 VDBDebuggerConsoleApplication refactored to use custom TerminalView.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2
diff changeset
    59
40
d766d4c854a2 Cleanup in debugger and inferior console applications to catch up changes in `jv:libgdbs`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 39
diff changeset
    60
consoleInput
d766d4c854a2 Cleanup in debugger and inferior console applications to catch up changes in `jv:libgdbs`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 39
diff changeset
    61
    "superclass VDBAbstractConsoleApplication says that I am responsible to implement this method"
4
a7732b0afed6 VDBDebuggerConsoleApplication refactored to use custom TerminalView.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2
diff changeset
    62
40
d766d4c854a2 Cleanup in debugger and inferior console applications to catch up changes in `jv:libgdbs`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 39
diff changeset
    63
    ^ debugger consoleInput
4
a7732b0afed6 VDBDebuggerConsoleApplication refactored to use custom TerminalView.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2
diff changeset
    64
40
d766d4c854a2 Cleanup in debugger and inferior console applications to catch up changes in `jv:libgdbs`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 39
diff changeset
    65
    "Modified: / 01-06-2017 / 09:45:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
4
a7732b0afed6 VDBDebuggerConsoleApplication refactored to use custom TerminalView.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2
diff changeset
    66
!
a7732b0afed6 VDBDebuggerConsoleApplication refactored to use custom TerminalView.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2
diff changeset
    67
40
d766d4c854a2 Cleanup in debugger and inferior console applications to catch up changes in `jv:libgdbs`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 39
diff changeset
    68
consoleOutput
d766d4c854a2 Cleanup in debugger and inferior console applications to catch up changes in `jv:libgdbs`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 39
diff changeset
    69
    "superclass VDBAbstractConsoleApplication says that I am responsible to implement this method"
4
a7732b0afed6 VDBDebuggerConsoleApplication refactored to use custom TerminalView.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2
diff changeset
    70
40
d766d4c854a2 Cleanup in debugger and inferior console applications to catch up changes in `jv:libgdbs`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 39
diff changeset
    71
    ^ debugger consoleOutput
4
a7732b0afed6 VDBDebuggerConsoleApplication refactored to use custom TerminalView.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2
diff changeset
    72
40
d766d4c854a2 Cleanup in debugger and inferior console applications to catch up changes in `jv:libgdbs`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 39
diff changeset
    73
    "Modified: / 01-06-2017 / 09:46:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
8
61e4abb26d78 Fixed fixed synchronization for debugger console view.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6
diff changeset
    74
! !
61e4abb26d78 Fixed fixed synchronization for debugger console view.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6
diff changeset
    75
159
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
    76
!VDBUnixDebuggerConsoleApplication methodsFor:'change & update'!
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
    77
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
    78
enqueueDelayedUpdateSize
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
    79
    self enqueueMessage:#delayedUpdateSize
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
    80
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
    81
    "Created: / 20-05-2019 / 11:57:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
    82
!
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
    83
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
    84
update:aspect with:aParameter from:changedObject
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
    85
    changedObject == consoleView ifTrue:[ 
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
    86
        aspect == #sizeOfView ifTrue:[ 
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
    87
            self enqueueDelayedUpdateSize     
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
    88
        ].
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
    89
    ].
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
    90
    ^ super update:aspect with:aParameter from:changedObject
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
    91
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
    92
    "Created: / 20-05-2019 / 11:54:51 / Jan Vrany <jan.vrany@fit.cvut.cz>"
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
    93
! !
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
    94
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
    95
!VDBUnixDebuggerConsoleApplication methodsFor:'change & update-delayed'!
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
    96
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
    97
delayedUpdateSize
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
    98
    debugger notNil ifTrue:[
199
9802f25351a7 Make sure width / height parameters are non-negative when informing GDB about console size
Jan Vrany <jan.vrany@labware.com>
parents: 159
diff changeset
    99
        debugger setParameter: 'width'  to: (consoleView widthInChars max: 0) printString.
9802f25351a7 Make sure width / height parameters are non-negative when informing GDB about console size
Jan Vrany <jan.vrany@labware.com>
parents: 159
diff changeset
   100
        debugger setParameter: 'height' to: (consoleView heightInChars max: 0) printString.
159
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   101
    ]
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   102
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   103
    "Created: / 20-05-2019 / 13:35:34 / Jan Vrany <jan.vrany@fit.cvut.cz>"
199
9802f25351a7 Make sure width / height parameters are non-negative when informing GDB about console size
Jan Vrany <jan.vrany@labware.com>
parents: 159
diff changeset
   104
    "Modified: / 16-11-2020 / 21:46:52 / Jan Vrany <jan.vrany@labware.com>"
159
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   105
! !
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   106
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   107
!VDBUnixDebuggerConsoleApplication methodsFor:'initialization & release'!
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   108
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   109
initializeConsoleView: aTerminalView forDebugger: aGDBDebugger
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   110
    super initializeConsoleView: aTerminalView forDebugger: aGDBDebugger.
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   111
    aGDBDebugger notNil ifTrue:[
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   112
        self enqueueDelayedUpdateSize
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   113
    ].
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   114
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   115
    "Created: / 20-05-2019 / 13:36:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   116
! !
c00d27805420 UI: set console width / height when a console view is resized
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   117
73
82e202dec6cb UX: added preferences to automatically enable frame filters and pretty printers
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 51
diff changeset
   118
!VDBUnixDebuggerConsoleApplication class methodsFor:'documentation'!
82e202dec6cb UX: added preferences to automatically enable frame filters and pretty printers
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 51
diff changeset
   119
82e202dec6cb UX: added preferences to automatically enable frame filters and pretty printers
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 51
diff changeset
   120
version_HG
82e202dec6cb UX: added preferences to automatically enable frame filters and pretty printers
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 51
diff changeset
   121
82e202dec6cb UX: added preferences to automatically enable frame filters and pretty printers
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 51
diff changeset
   122
    ^ '$Changeset: <not expanded> $'
82e202dec6cb UX: added preferences to automatically enable frame filters and pretty printers
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 51
diff changeset
   123
! !
82e202dec6cb UX: added preferences to automatically enable frame filters and pretty printers
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 51
diff changeset
   124