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 1
1
from PyQt6 import QtWidgets , uic
2
2
from PyQt6 .QtWidgets import QApplication , QMainWindow , QMessageBox
3
3
from PyQt6 .QtCore import Qt
4
-
4
+ #Autor: PetusoTwo
5
5
# Funcion para encriptar el texto
6
6
def encriptador_cesar (texto , desplazamiento ):
7
7
alphabet = "abcdefghijklmnñopqrstuvwxyz"
@@ -82,7 +82,7 @@ def copiar_texto(self):
82
82
QMessageBox .information (self , "Exito | PetusoTwo" , "Texto copiado al portapapeles" )
83
83
else :
84
84
QMessageBox .warning (self , "Error | PetusoTwo" , "No hay texto para copiar" )
85
-
85
+ #Autor PetusoTwo
86
86
#Funciones para que la ventana se pueda mover#
87
87
def mousePressEvent (self , event ):
88
88
if event .button () == Qt .MouseButton .LeftButton :
@@ -102,3 +102,4 @@ def mouseReleaseEvent(self, event):
102
102
window = MainWindow ()
103
103
window .show ()
104
104
app .exec ()
105
+ #Autor PetusoTwo
You can’t perform that action at this time.
0 commit comments