-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathtextbox.py
61 lines (52 loc) · 2.09 KB
/
textbox.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
############################################################################
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
############################################################################
from .master.bui import BUI
from .master.graphic import Rectangle
# from .box import Box
class TextBox(BUI):
def __init__(self,owner,pos=[0,0],size=[80,30],text="",column=0,row=0,
onmove=None,ondrag=None,
onpush=None,onrelease=None,
onclick=None,ondoubleclick=None,
onrightpush=None,onrightrelease=None,
onrightclick=None,onmiddleclick=None,
onmiddlepush=None,onmiddlerelease=None):
super().__init__(owner=owner,pos=pos,size=size,text=text,column=column,row=row,
background=True,
onmove=onmove,ondrag=ondrag,
onpush=onpush,onrelease=onrelease,
onclick=onclick,ondoubleclick=ondoubleclick,
onrightpush=onrightpush,onrightrelease=onrightrelease,
onrightclick=onrightclick,onmiddleclick=onmiddleclick,
onmiddlepush=onmiddlepush,onmiddlerelease=onmiddlerelease)
self.pos.auto = True
self.background.fillet.set(6,6,6,6)
self.background.color.set((0.219,0.219,0.219,1),(0.219,0.219,0.219,1),(0.219,0.219,0.219,1))
self.kb.str = text
self.setup()
owner.append(self)
@property
def text(self):
return self.caption.text
@text.setter
def text(self, text):
self.kb.str = text
def setup(self):
self.caption.align.set(False,False,False,False,True)
def click(self):
self.owner.focus_on(self)
def local_update(self):
self.caption.text = self.kb.str
__all__ = ["TextBox"]