Source code for TermTk.TTkWidgets.combobox

# 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__ = ['TTkComboBox']

from TermTk.TTkCore.cfg import TTkCfg
from TermTk.TTkCore.constant import TTkK
from TermTk.TTkCore.log import TTkLog
from TermTk.TTkCore.signal import pyTTkSlot, pyTTkSignal
from TermTk.TTkCore.helper import TTkHelper
from TermTk.TTkCore.string import TTkString
from TermTk.TTkCore.color import TTkColor
from TermTk.TTkLayouts.gridlayout import TTkGridLayout
from TermTk.TTkWidgets.widget import TTkWidget
from TermTk.TTkWidgets.container import TTkContainer
from TermTk.TTkWidgets.list_ import TTkList
from TermTk.TTkWidgets.lineedit import TTkLineEdit
from TermTk.TTkWidgets.resizableframe import TTkResizableFrame

[docs]class TTkComboBox(TTkContainer): ''' TTkComboBox: Editable = False :: [ - select - ^] Editable = True :: [ Text [^] :param list: the list of the items selectable by this combobox, defaults to "[]" :type list: list(str), optional :param insertPolicy: the policy used to determine where user-inserted items should appear in the combobox, defaults to :class:`~TermTk.TTkCore.constant.TTkConstant.InsertPolicy.InsertAtBottom` :type insertPolicy: :class:`~TermTk.TTkCore.constant.TTkConstant.InsertPolicy`, optional :param textAlign: This enum type is used to define the text alignment, defaults to :class:`~TermTk.TTkCore.constant.TTkConstant.Alignment.CENTER_ALIGN` :tye textAlign: :class:`~TermTk.TTkCore.constant.TTkConstant.Alignment`, optional :param editable: This property holds whether the combo box can be edited by the user, defaults to False :type editable: bool, optional ''' classStyle = { 'default': {'color': TTkColor.fg("#dddd88")+TTkColor.bg("#222222"), 'borderColor':TTkColor.RST}, 'disabled': {'color': TTkColor.fg('#888888'), 'borderColor':TTkColor.fg('#888888')}, 'focus': {'color': TTkColor.fg("#ffff88")+TTkColor.bg("#222222"), 'borderColor': TTkColor.fg("#ffff00") + TTkColor.BOLD}, } __slots__ = ('_list', '_id', '_lineEdit', '_editable', '_insertPolicy', '_textAlign', '_popupFrame', #signals 'currentIndexChanged', 'currentTextChanged', 'editTextChanged') def __init__(self, *args, **kwargs): # Define Signals self.currentIndexChanged = pyTTkSignal(int) self.currentTextChanged = pyTTkSignal(str) self.editTextChanged = pyTTkSignal(str) super().__init__(*args, **kwargs) # self.checked = pyTTkSignal() self._lineEdit = TTkLineEdit(parent=self) self._list = kwargs.get('list', [] ) self._insertPolicy = kwargs.get('insertPolicy', TTkK.InsertAtBottom ) self._lineEdit.returnPressed.connect(self._lineEditChanged) self._textAlign = kwargs.get('textAlign', TTkK.CENTER_ALIGN) self._id = kwargs.get('index', -1 ) self._popupFrame = None self.setEditable(kwargs.get('editable', False )) self.setMinimumSize(5, 1) self.setMaximumHeight(1) def _lineEditChanged(self): text = self._lineEdit.text() self._id=-1 if text in self._list: self._id = self._list.index(text) elif self._insertPolicy == TTkK.NoInsert: pass elif self._insertPolicy == TTkK.InsertAtTop: self._id=0 self._list.insert(0,text) # elif self._insertPolicy == TTkK.InsertAtCurrent: # pass elif self._insertPolicy == TTkK.InsertAtBottom: self._id=len(self._list) self._list.append(text) # elif self._insertPolicy == TTkK.InsertAfterCurrent: # pass # elif self._insertPolicy == TTkK.InsertBeforeCurrent: # pass # elif self._insertPolicy == TTkK.InsertAlphabetically: # pass else: pass self.currentIndexChanged.emit(self._id) self.currentTextChanged.emit(text) self.editTextChanged.emit(text)
[docs] def textAlign(self): '''his property holds the displayed text alignment :return: :class:`~TermTk.TTkCore.constant.TTkConstant.Alignment` ''' return self._textAlign
[docs] def setTextAlign(self, align): '''This property holds the displayed text alignment :param align: :type align: :class:`~TermTk.TTkCore.constant.TTkConstant.Alignment` ''' if self._textAlign != align: self._textAlign = align self.update()
[docs] def addItem(self, text, userData=None): '''addItem Adds an item to the combobox with the given text, and containing the specified userData (stored in the Qt::UserRole). The item is appended to the list of existing items. ''' self._list.append(text) self.update()
[docs] def addItems(self,items): '''addItems''' for item in items: self.addItem(item)
pyTTkSlot()
[docs] def clear(self): '''clear''' self._lineEdit.setText("") self._list = [] self._id = -1 self.update()
def lineEdit(self): return self._lineEdit if self._editable else None
[docs] def resizeEvent(self, w: int, h: int): w,h = self.size() self._lineEdit.setGeometry(1,0,w-4,h)
[docs] def paintEvent(self, canvas): style = self.currentStyle() color = style['color'] borderColor = style['borderColor'] if self._id == -1: text = "- select -" else: text = self._list[self._id] w = self.width() canvas.drawTTkString(pos=(1,0), text=TTkString(text), width=w-3, alignment=self._textAlign, color=color) canvas.drawText(pos=(0,0), text="[", color=borderColor) if self._editable: canvas.drawText(pos=(w-3,0), text="[^]", color=borderColor) else: canvas.drawText(pos=(w-2,0), text="^]", color=borderColor)
[docs] def currentText(self): '''currentText''' if self._editable: return self._lineEdit.text() elif self._id >= 0: return self._list[self._id] return ""
[docs] def currentIndex(self): '''currentIndex''' return self._id
[docs] @pyTTkSlot(int) def setCurrentIndex(self, index): '''setCurrentIndex''' if index < 0: return if index > len(self._list)-1: return if self._id == index: return self._id = index if self._editable: self._lineEdit.setText(self._list[self._id]) else: self.currentTextChanged.emit(self._list[self._id]) self.currentIndexChanged.emit(self._id) self.update()
[docs] @pyTTkSlot(str) def setCurrentText(self, text): '''setCurrentText''' if self._editable: self.setEditText(text) else: if text not in self._list: id = 0 else: id = self._list.index(text) self.setCurrentIndex(id)
[docs] @pyTTkSlot(str) def setEditText(self, text): '''setEditText''' if self._editable: self._lineEdit.setText(text)
[docs] def insertPolicy(self): '''insertPolicy''' return self._insertPolicy
[docs] def setInsertPolicy(self, ip): '''setInsertPolicy''' self._insertPolicy = ip
[docs] def isEditable(self): '''isEditable''' return self._editable
[docs] def setEditable(self, editable): '''setEditable''' self._editable = editable if editable: self._lineEdit.show() self.setFocusPolicy(TTkK.ClickFocus) else: self._lineEdit.hide() self.setFocusPolicy(TTkK.ClickFocus + TTkK.TabFocus)
@pyTTkSlot(str) def _callback(self, label): if self._editable: self._lineEdit.setText(label) self.setCurrentIndex(self._list.index(label)) TTkHelper.removeOverlayAndChild(self._popupFrame) self._popupFrame = None self.setFocus() self.update() def _pressEvent(self): frameHeight = len(self._list) + 2 frameWidth = self.width() if frameHeight > 20: frameHeight = 20 if frameWidth < 20: frameWidth = 20 self._popupFrame = TTkResizableFrame(layout=TTkGridLayout(), size=(frameWidth,frameHeight)) TTkHelper.overlay(self, self._popupFrame, 0, 0) listw = TTkList(parent=self._popupFrame) TTkLog.debug(f"{self._list}") for item in self._list: listw.addItem(item) if self._id != -1: listw.setCurrentRow(self._id) listw.textClicked.connect(self._callback) listw.viewport().setFocus() self.update() return True
[docs] def wheelEvent(self, evt): if evt.evt == TTkK.WHEEL_Up: self.setCurrentIndex(self._id-1) else: self.setCurrentIndex(self._id+1) return True
[docs] def mousePressEvent(self, evt): self._pressEvent() return True
[docs] def keyEvent(self, evt): if ( evt.type == TTkK.Character and evt.key==" " ) or \ ( evt.type == TTkK.SpecialKey and evt.key in [TTkK.Key_Enter,TTkK.Key_Down] ): self._pressEvent() return True return False
def focusInEvent(self): if self._editable: self._lineEdit.setFocus()