File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 11from PyQt6 import QtWidgets , uic
22from PyQt6 .QtWidgets import QApplication , QMainWindow , QMessageBox
33from PyQt6 .QtCore import Qt
4-
4+ #Autor: PetusoTwo
55# Funcion para encriptar el texto
66def encriptador_cesar (texto , desplazamiento ):
77 alphabet = "abcdefghijklmnñopqrstuvwxyz"
@@ -82,7 +82,7 @@ def copiar_texto(self):
8282 QMessageBox .information (self , "Exito | PetusoTwo" , "Texto copiado al portapapeles" )
8383 else :
8484 QMessageBox .warning (self , "Error | PetusoTwo" , "No hay texto para copiar" )
85-
85+ #Autor PetusoTwo
8686 #Funciones para que la ventana se pueda mover#
8787 def mousePressEvent (self , event ):
8888 if event .button () == Qt .MouseButton .LeftButton :
@@ -102,3 +102,4 @@ def mouseReleaseEvent(self, event):
102102window = MainWindow ()
103103window .show ()
104104app .exec ()
105+ #Autor PetusoTwo
You can’t perform that action at this time.
0 commit comments