python - tkinter widgets list
Tkinter-registrando texto en el widget de texto (2)
En este caso, ha creado un componente que se usaría dentro de una aplicación. El enlace principal se llamaría en esa aplicación y escribirían en su widget de registro.
Puede agregar algún ejemplo de uso simple (como el que dio) y / o pruebas en el mismo archivo python como TraceConsole usando algo como
if __name__ == ''__main__'':
m = tkinter.Tk()
t = TraceConsole()
t.log(''hello world!'')
m.mainloop()
Normalmente hago algo como esto, así que puedo probar un componente tkinter por sí mismo antes de incorporarlo a mi aplicación.
Quiero hacer una clase que sea capaz de "registrar" el texto en un widget de texto. Esta clase podría ser utilizada por otras aplicaciones para enviar y visualizar registros en el widget de texto.
class TraceConsole():
def __init__(self):
# Init the main GUI window
self._logFrame = Tk.Frame()
self._log = Tk.Text(self._logFrame, wrap=Tk.NONE, setgrid=True)
self._scrollb = Tk.Scrollbar(self._logFrame, orient=Tk.VERTICAL)
self._scrollb.config(command = self._log.yview)
self._log.config(yscrollcommand = self._scrollb.set)
# Grid & Pack
self._log.grid(column=0, row=0)
self._scrollb.grid(column=1, row=0, sticky=Tk.S+Tk.N)
self._logFrame.pack()
def log(self, msg, level=None):
# Write on GUI
self._log.insert(''end'', msg + ''/n'')
def exitWindow(self):
# Exit the GUI window and close log file
print(''exit..'')
Ejemplo de uso:
t = TraceConsole()
t.log(''hello world!'')
Mi problema ahora es que no sé dónde poner el mainloop. Este registrador debe ejecutarse "en segundo plano" y será posible escribir el registro en cualquier momento hasta que se cierre la ventana.
Luché con esto por un tiempo, pero convergí en las recomendaciones aquí:
Y tengo un ejemplo a continuación que he creado para dilucidar el concepto de registro a un control de GUI utilizando Tkinter. El siguiente ejemplo se conecta a un control de texto cuando usted pregunta, pero puede enviar mensajes de registro a otros componentes de la GUI reemplazando / copiando la clase MyHandlerText
con otras clases de controladores como MyHandlerLabel
, MyHandlerListbox
, etc. (elija sus propios nombres para las clases de controlador) . Entonces tendría un controlador para una variedad de controles de interés de la GUI. El gran momento de "a-ha" para mí fue el concepto getLogger
nivel de getLogger
promovido por python.org.
import Tkinter
import logging
import datetime
# this item "module_logger" is visible only in this module,
# (but you can also reference this getLogger instance from other modules and other threads by passing the same argument name...allowing you to share and isolate loggers as desired)
# ...so it is module-level logging and it takes the name of this module (by using __name__)
# recommended per https://docs.python.org/2/library/logging.html
module_logger = logging.getLogger(__name__)
class simpleapp_tk(Tkinter.Tk):
def __init__(self,parent):
Tkinter.Tk.__init__(self,parent)
self.parent = parent
self.grid()
self.mybutton = Tkinter.Button(self, text="ClickMe")
self.mybutton.grid(column=0,row=0,sticky=''EW'')
self.mybutton.bind("<ButtonRelease-1>", self.button_callback)
self.mytext = Tkinter.Text(self, state="disabled")
self.mytext.grid(column=0, row=1)
def button_callback(self, event):
now = datetime.datetime.now()
module_logger.info(now)
class MyHandlerText(logging.StreamHandler):
def __init__(self, textctrl):
logging.StreamHandler.__init__(self) # initialize parent
self.textctrl = textctrl
def emit(self, record):
msg = self.format(record)
self.textctrl.config(state="normal")
self.textctrl.insert("end", msg + "/n")
self.flush()
self.textctrl.config(state="disabled")
if __name__ == "__main__":
# create Tk object instance
app = simpleapp_tk(None)
app.title(''my application'')
# setup logging handlers using the Tk instance created above
# the pattern below can be used in other threads...
# ...to allow other thread to send msgs to the gui
# in this example, we set up two handlers just for demonstration (you could add a fileHandler, etc)
stderrHandler = logging.StreamHandler() # no arguments => stderr
module_logger.addHandler(stderrHandler)
guiHandler = MyHandlerText(app.mytext)
module_logger.addHandler(guiHandler)
module_logger.setLevel(logging.INFO)
module_logger.info("from main")
# start Tk
app.mainloop()