Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import tkinter as tk
- from tkinter import ttk
- import random
- import webbrowser
- # Dados aleatórios de exemplo
- dados = [
- ]
- def abrir_link_whatsapp(telefone):
- link = f"https://api.whatsapp.com/send?phone={telefone}"
- webbrowser.open(link)
- def abrir_menu_contexto(event):
- item_selecionado = tree.identify_row(event.y)
- if item_selecionado:
- telefone = tree.item(item_selecionado)['values'][1]
- menu_contexto.tk_popup(event.x_root, event.y_root)
- menu_contexto.entryconfigure('Enviar mensagem no WhatsApp', command=lambda: abrir_link_whatsapp(telefone))
- # Criar janela principal
- root = tk.Tk()
- root.title("Lista de Contatos")
- # Define a largura e altura da janela
- largura = 1200
- altura = 400
- # Calcula as coordenadas para centralizar a janela
- largura_tela = root.winfo_screenwidth()
- altura_tela = root.winfo_screenheight()
- x = (largura_tela - largura) // 2
- y = (altura_tela - altura) // 2
- # Define a geometria da janela com as coordenadas centralizadas
- root.geometry(f"{largura}x{altura}+{x}+{y}")
- # Criar Treeview
- tree = ttk.Treeview(root, columns=('Nome', 'Telefone/WhatsApp', 'E-mail'), show='headings')
- tree.heading('Nome', text='Nome')
- tree.heading('Telefone/WhatsApp', text='Telefone/WhatsApp')
- tree.heading('E-mail', text='E-mail')
- # Ajustar a largura das colunas
- tree.column('Nome', width=int(largura * 0.4)) # Largura da coluna 'Nome'
- tree.column('Telefone/WhatsApp', width=int(largura * 0.3)) # Largura da coluna 'Telefone/WhatsApp'
- tree.column('E-mail', width=int(largura * 0.3)) # Largura da coluna 'E-mail'
- # Adicionar dados à Treeview
- for contato in dados:
- nome = contato['Nome']
- telefone = contato['Telefone/WhatsApp']
- email = contato['E-mail']
- tree.insert('', 'end', values=(nome, telefone, email))
- # Criar barra de rolagem
- scrollbar = ttk.Scrollbar(root, orient=tk.VERTICAL, command=tree.yview)
- scrollbar.pack(side=tk.RIGHT, fill=tk.Y)
- # Vincular a barra de rolagem à Treeview
- tree.configure(yscrollcommand=scrollbar.set)
- # Posicionar a TreeView
- tree.pack(side=tk.LEFT, fill=tk.BOTH, expand=True)
- # Criar menu de contexto
- menu_contexto = tk.Menu(root, tearoff=0)
- menu_contexto.add_command(label='Enviar mensagem no WhatsApp')
- # Associar o evento de clique com botão direito do mouse ao abrir o menu de contexto
- tree.bind('<Button-3>', abrir_menu_contexto)
- # Iniciar aplicativo
- root.mainloop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement