Metadata-Version: 2.1
Name: extended-tk
Version: 0.14.0
Summary: An add-on for the tkinter package
Home-page: UNKNOWN
Author: Elidas
License: GNUGPLv3
Keywords: Tkinter
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
License-File: LICENSE

(es)

DescripciÃ³n General:

    AmpliaciÃ³n del paquete TkInter con herramientas desarrolladas por necesidad de diferentes proyectos.

Contenido

>>> Add Delete Buttons (Add_Delete):

    Se trata de im pr de botones [+] [-] que copian o eliminan los elementos Tk de la fila en la que se encuentran.

>>> ParÃ¡metros de entrada:

    min_row -> Por definiciÃ³n establecido en 1, establece el mÃ­nimo de filas que deben permanecer

    max_row -> Establece el mÃ¡ximo de copias as realzar, por definiciÃ³n establecido en -1, lo que indica que no hay lÃ­mite de copias.

>>> Ejemplo de uso:

    if __name__=='__main__':
    root = Tk() # root creation
    root.geometry('275x200') # geometry of the window
    
    # items to be copied
    Label(root, text='Hola Mundo').grid(row=0, column=0)
    name = Entry(root)
    name.grid(row=0, column=1)

    # buttons to add or delete rows of copied items
    copy_buttons = Add_Delete(root, max_row=5) # configured to copy the row only 4 times, 5 rows in total count
    
    auto_move = Label(root, text='Este texto se mueve solo!')
    auto_move.grid(row=1, column=1)
    
    copy_buttons.add_extra(auto_move)
    
    # mainloop
    root.mainloop()





>>> Control de versiones:

- 0.12.0:   Primera version estable.
- 0.13.0:   AÃ±adido en ScrollableWindow el mÃ©todo collect_children
- 0.14.0:   AÃ±adida opciÃ³n de aÃ±adir otros elementos a los botones Add_Delete fuera de la linea
            a copiar.

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



