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.
98 lines
3.8 KiB
98 lines
3.8 KiB
|
5 years ago
|
#!/usr/bin/env python3
|
||
|
|
|
||
|
|
# 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.
|
||
|
|
|
||
|
|
from TermTk.TTkCore.constant import TTkK
|
||
|
|
from TermTk.TTkCore.cfg import TTkCfg
|
||
|
|
from TermTk.TTkCore.log import TTkLog
|
||
|
|
from TermTk.TTkCore.helper import TTkHelper
|
||
|
|
from TermTk.TTkCore.signal import pyTTkSlot, pyTTkSignal
|
||
|
|
from TermTk.TTkCore.color import TTkColor
|
||
|
|
from TermTk.TTkLayouts import TTkGridLayout
|
||
|
|
from TermTk.TTkWidgets.widget import TTkWidget
|
||
|
|
from TermTk.TTkWidgets.lineedit import TTkLineEdit
|
||
|
|
|
||
|
|
class TTkSpinBox(TTkWidget):
|
||
|
|
__slots__= ('_lineEdit', '_value', '_maximum', '_minimum', '_mouseDelta', '_valueDelta', '_draggable')
|
||
|
|
def __init__(self, *args, **kwargs):
|
||
|
|
TTkWidget.__init__(self, *args, **kwargs)
|
||
|
|
self._name = kwargs.get('name' , 'TTkSpinBox' )
|
||
|
|
self._value = kwargs.get("value",0)
|
||
|
|
self._maximum = kwargs.get("maximum",99)
|
||
|
|
self._minimum = kwargs.get("minimum",0)
|
||
|
|
self.setLayout(TTkGridLayout())
|
||
|
|
self.setPadding(0,0,0,2)
|
||
|
|
self.setMinimumSize(4,1)
|
||
|
|
self._mouseDelta = 0
|
||
|
|
self._valueDelta = 0
|
||
|
|
self._draggable = False
|
||
|
|
self._lineEdit = TTkLineEdit(parent=self, text=str(self._value), inputType=TTkK.Input_Number)
|
||
|
|
self.setFocusPolicy(TTkK.ClickFocus + TTkK.TabFocus)
|
||
|
|
self._lineEdit.textEdited.connect(self._textEdited)
|
||
|
|
|
||
|
|
def value(self):
|
||
|
|
return self._value
|
||
|
|
|
||
|
|
def setValue(val):
|
||
|
|
self._value = value
|
||
|
|
|
||
|
|
@pyTTkSlot(str)
|
||
|
|
def _textEdited(self, text):
|
||
|
|
self._value = int(text)
|
||
|
|
self._value = min(self._value,self._maximum)
|
||
|
|
self._value = max(self._value,self._minimum)
|
||
|
|
self._lineEdit.setText(str(self._value))
|
||
|
|
|
||
|
|
def mousePressEvent(self, evt):
|
||
|
|
x,y = evt.x, evt.y
|
||
|
|
w = self.width()
|
||
|
|
self._draggable = False
|
||
|
|
if x==w-2:
|
||
|
|
self._draggable = True
|
||
|
|
self._value += 1
|
||
|
|
if x==w-1:
|
||
|
|
self._draggable = True
|
||
|
|
self._value -= 1
|
||
|
|
self._value = min(self._value,self._maximum)
|
||
|
|
self._value = max(self._value,self._minimum)
|
||
|
|
self._lineEdit.setText(str(self._value))
|
||
|
|
self._mouseDelta = y
|
||
|
|
self._valueDelta = self._value
|
||
|
|
return True
|
||
|
|
|
||
|
|
def mouseDragEvent(self, evt):
|
||
|
|
y = evt.y
|
||
|
|
if self._draggable:
|
||
|
|
self._value = self._valueDelta + self._mouseDelta - y
|
||
|
|
self._value = min(self._value,self._maximum)
|
||
|
|
self._value = max(self._value,self._minimum)
|
||
|
|
self._lineEdit.setText(str(self._value))
|
||
|
|
return True
|
||
|
|
|
||
|
|
def paintEvent(self):
|
||
|
|
w = self.width()
|
||
|
|
self._canvas.drawChar(pos=(w-2,0),char="▲")
|
||
|
|
self._canvas.drawChar(pos=(w-1,0),char="▼")
|
||
|
|
|
||
|
|
def focusOutEvent(self):
|
||
|
|
self._draggable = False
|