You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.6 KiB
63 lines
2.6 KiB
# MIT License |
|
# |
|
# Copyright (c) 2023 Eugenio Parodi <ceccopierangiolieugenio AT googlemail DOT com> |
|
# |
|
# Permission is hereby granted, free of charge, to any person obtaining a copy |
|
# of this software and associated documentation files (the "Software"), to deal |
|
# in the Software without restriction, including without limitation the rights |
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
|
# copies of the Software, and to permit persons to whom the Software is |
|
# furnished to do so, subject to the following conditions: |
|
# |
|
# The above copyright notice and this permission notice shall be included in all |
|
# copies or substantial portions of the Software. |
|
# |
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
|
# SOFTWARE. |
|
|
|
__all__ = ['TTkTerminal'] |
|
|
|
from TermTk.TTkCore.constant import TTkK |
|
from TermTk.TTkCore.signal import pyTTkSignal, pyTTkSlot |
|
from TermTk.TTkAbstract.abstractscrollarea import TTkAbstractScrollArea |
|
from TermTk.TTkWidgets.TTkTerminal.terminalview import TTkTerminalView |
|
|
|
class TTkTerminal(TTkAbstractScrollArea): |
|
__doc__ = ''' |
|
:py:class:`TTkTerminal` is a container widget which place :py:class:`TTkTerminalView` in a scrolling area with on-demand scroll bars. |
|
|
|
''' + TTkTerminalView.__doc__ |
|
|
|
__slots__ = tuple( |
|
['_terminalView'] + |
|
(_forwardedSignals:=[# Forwarded Signals From TTkTreeWidget |
|
'bell', 'titleChanged', 'terminalClosed', 'textSelected', |
|
'termData', 'termResized']) + |
|
(_forwardedMethods:=[# Forwarded Methods From TTkTreeWidget |
|
'termWrite', 'termSize']) |
|
) |
|
_forwardWidget = TTkTerminalView |
|
|
|
def __init__(self, **kwargs) -> None: |
|
super().__init__(**kwargs) |
|
kwargs.pop('parent',None) |
|
kwargs.pop('visible',None) |
|
self._terminalView = TTkTerminalView(**kwargs) |
|
self.setFocusPolicy(TTkK.ClickFocus) |
|
self.setViewport(self._terminalView) |
|
|
|
for _attr in self._forwardedSignals+self._forwardedMethods: |
|
setattr(self,_attr,getattr(self._terminalView,_attr)) |
|
|
|
self.terminalClosed = pyTTkSignal(TTkTerminal) |
|
self._terminalView.terminalClosed.connect(lambda : self.terminalClosed.emit(self)) |
|
|
|
def close(self): |
|
self._terminalView.close() |
|
return super().close() |
|
|
|
|