# MIT License
#
# Copyright (c) 2021 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__ = ['TTkFrame']
from TermTk.TTkCore.constant import TTkK
from TermTk.TTkCore.string import TTkString
from TermTk.TTkCore.color import TTkColor
from TermTk.TTkWidgets.container import TTkContainer
[docs]
class TTkFrame(TTkContainer):
'''
::
┌──────│Title│──────┐
│ │
│ │
│ │
│ │
│ │
└───────────────────┘
Demo1: `layout_nested.py <https://github.com/ceccopierangiolieugenio/pyTermTk/blob/main/demo/showcase/layout_nested.py>`_
Demo2: `splitter.py <https://github.com/ceccopierangiolieugenio/pyTermTk/blob/main/demo/showcase/splitter.py>`_
'''
classStyle = {
'default': {'color': TTkColor.fg("#dddddd")+TTkColor.bg("#222222"),
'borderColor': TTkColor.RST},
'disabled': {'color': TTkColor.fg('#888888'),
'borderColor':TTkColor.fg('#888888')}
}
__slots__ = (
'_border','_title', '_titleAlign',
'_menubarTop', '_menubarTopPosition', '_menubarBottom', '_menubarBottomPosition')
def __init__(self, *,
title:TTkString='',
border:bool=True,
titleAlign:TTkK.Alignment=TTkK.CENTER_ALIGN,
**kwargs) -> None:
'''
:param title: the title displayed at the top border of the frame, defaults to ""
:type title: TTkString, optional
:param titleAlign: the position of the title, defaults to :py:class:`TTkK.Alignment.CENTER_ALIGN`
:type titleAlign: :py:class:`TTkK.Alignment`, optional
:param border: Enable/Disable the border, defaults to **True**
:type border: bool, optional
'''
self._titleAlign = titleAlign
self._title = TTkString(title)
self._border = border
self._menubarBottomPosition = 0
self._menubarTop = None
self._menubarBottom = None
super().__init__(**kwargs)
# This is a little hack used in TTKWindow to define the placement of the TOP menubar inside TTKFrame
self._menubarTopPosition = 0
self.setBorder(self._border)
def resizeEvent(self, w, h):
if self._menubarTop:
self._menubarTop.setGeometry(1,self._menubarTopPosition,w-2,1)
if self._menubarBottom:
self._menubarBottom.setGeometry(1,h-1-self._menubarBottomPosition,w-2,1)
super().resizeEvent(w,h)
[docs]
def title(self):
'''title'''
return self._title
[docs]
def setTitle(self, title):
'''setTitle'''
if self._title.sameAs(title): return
self._title = TTkString(title)
self.update()
[docs]
def titleAlign(self):
return self._titleAlign
[docs]
def setTitleAlign(self, align):
if align == self._titleAlign: return
self._titleAlign = align
self.update()
[docs]
def setBorder(self, border):
'''setBorder'''
self._border = border
if border: self.setPadding(1,1,1,1)
else: self.setPadding(0,0,0,0)
self.update()
[docs]
def border(self):
'''border'''
return self._border
def paintEvent(self, canvas):
style = self.currentStyle()
color = style['color']
borderColor = style['borderColor']
if self._border:
canvas.drawBox(pos=(0,0),size=(self._width,self._height), color=borderColor)
if len(self._title) != 0:
canvas.drawBoxTitle(
pos=(0,0),
size=(self._width,self._height),
text=self._title,
align=self._titleAlign,
color=borderColor,
colorText=color)
else:
if self._menubarTop:
canvas.drawMenuBarBg(pos=(0,0),size=self.width(),color=borderColor)
if self._menubarBottom:
canvas.drawMenuBarBg(pos=(0,self.height()-1),size=self.width(),color=borderColor)