Last active
August 17, 2021 10:06
-
-
Save WEBMAMOFFICE/a758c1e831c3aa84e8087820ff16b2c6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from PyQt5 import QtWidgets, QtGui, QtCore | |
font_but = QtGui.QFont() | |
font_but.setFamily("Segoe UI Symbol") | |
font_but.setPointSize(10) | |
font_but.setWeight(95) | |
class PushBut1(QtWidgets.QPushButton): | |
def __init__(self, parent=None): | |
super(PushBut1, self).__init__(parent) | |
self.setMouseTracking(True) | |
self.setStyleSheet("margin: 1px; padding: 7px; background-color: rgba(1,255,255,100); color: rgba(0,190,255,255); border-style: solid;" | |
"border-radius: 3px; border-width: 0.5px; border-color: rgba(127,127,255,255);") | |
def enterEvent(self, event): | |
if self.isEnabled() is True: | |
self.setStyleSheet("margin: 1px; padding: 7px; background-color: rgba(1,255,255,100); color: rgba(0,230,255,255);" | |
"border-style: solid; border-radius: 3px; border-width: 0.5px; border-color: rgba(0,230,255,255);") | |
if self.isEnabled() is False: | |
self.setStyleSheet("margin: 1px; padding: 7px; background-color: rgba(1,255,255,100); color: rgba(0,190,255,255); border-style: solid;" | |
"border-radius: 3px; border-width: 0.5px; border-color: rgba(127,127,255,255);") | |
def leaveEvent(self, event): | |
self.setStyleSheet("margin: 1px; padding: 7px; background-color: rgba(1,255,255,100); color: rgba(0,190,255,255); border-style: solid;" | |
"border-radius: 3px; border-width: 0.5px; border-color: rgba(127,127,255,255);") | |
class PyQtApp(QtWidgets.QWidget): | |
def __init__(self, parent=None): | |
QtWidgets.QWidget.__init__(self, parent) | |
self.setWindowTitle("PyQt Application") | |
self.setWindowIcon(QtGui.QIcon("Path/to/Your/image/file.png")) | |
self.setMinimumWidth(resolution.width() / 3) | |
self.setMinimumHeight(resolution.height() / 1.5) | |
self.setStyleSheet("QWidget {background-color: rgba(0,41,59,255);} QScrollBar:horizontal {width: 1px; height: 1px;" | |
"background-color: rgba(0,41,59,255);} QScrollBar:vertical {width: 1px; height: 1px;" | |
"background-color: rgba(0,41,59,255);}") | |
self.textf = QtWidgets.QTextEdit(self) | |
self.textf.setPlaceholderText("Results...") | |
self.textf.setStyleSheet("margin: 1px; padding: 7px; background-color: rgba(0,255,255,100); color: rgba(0,190,255,255);" | |
"border-style: solid; border-radius: 3px; border-width: 0.5px; border-color: rgba(0,140,255,255);") | |
self.but1 = PushBut1(self) | |
self.but1.setText("") | |
self.but1.setFixedWidth(72) | |
self.but1.setFont(font_but) | |
self.but2 = PushBut1(self) | |
self.but2.setText("") | |
self.but2.setFixedWidth(72) | |
self.but2.setFont(font_but) | |
self.but3 = PushBut1(self) | |
self.but3.setText("") | |
self.but3.setFixedWidth(72) | |
self.but3.setFont(font_but) | |
self.but4 = PushBut1(self) | |
self.but4.setText("") | |
self.but4.setFixedWidth(72) | |
self.but4.setFont(font_but) | |
self.but5 = PushBut1(self) | |
self.but5.setText("") | |
self.but5.setFixedWidth(72) | |
self.but5.setFont(font_but) | |
self.but6 = PushBut1(self) | |
self.but6.setText("") | |
self.but6.setFixedWidth(72) | |
self.but6.setFont(font_but) | |
self.but7 = PushBut1(self) | |
self.but7.setText("") | |
self.but7.setFixedWidth(72) | |
self.but7.setFont(font_but) | |
self.lb1 = QtWidgets.QLabel(self) | |
self.lb1.setFixedWidth(72) | |
self.lb1.setFixedHeight(72) | |
self.grid1 = QtWidgets.QGridLayout() | |
self.grid1.addWidget(self.textf, 0, 0, 14, 13) | |
self.grid1.addWidget(self.but1, 0, 14, 1, 1) | |
self.grid1.addWidget(self.but2, 1, 14, 1, 1) | |
self.grid1.addWidget(self.but3, 2, 14, 1, 1) | |
self.grid1.addWidget(self.but4, 3, 14, 1, 1) | |
self.grid1.addWidget(self.but5, 4, 14, 1, 1) | |
self.grid1.addWidget(self.but6, 5, 14, 1, 1) | |
self.grid1.addWidget(self.but7, 6, 14, 1, 1) | |
self.grid1.addWidget(self.lb1, 12, 14, 1, 1) | |
self.grid1.setContentsMargins(7, 7, 7, 7) | |
self.setLayout(self.grid1) | |
self.but1.clicked.connect(self.on_but1) | |
self.but2.clicked.connect(self.on_but2) | |
def on_but1(self): | |
self.textf.setStyleSheet("margin: 1px; padding: 7px; background-color: rgba(1,255,217,100); color: rgba(0,190,255,255);" | |
"border-style: solid; border-radius: 3px; border-width: 0.5px; border-color: rgba(0,140,255,255);") | |
def on_but2(self): | |
txt = self.textf.toPlainText() | |
try: | |
img = QtGui.QPixmap(txt) | |
self.lb1.setPixmap(img.scaledToWidth(72, QtCore.Qt.SmoothTransformation)) | |
except: | |
pass | |
if __name__ == "__main__": | |
import sys | |
app = QtWidgets.QApplication(sys.argv) | |
desktop = QtWidgets.QApplication.desktop() | |
resolution = desktop.availableGeometry() | |
myapp = PyQtApp() | |
myapp.setWindowOpacity(0.95) | |
myapp.show() | |
myapp.move(resolution.center() - myapp.rect().center()) | |
sys.exit(app.exec_()) | |
else: | |
desktop = QtWidgets.QApplication.desktop() | |
resolution = desktop.availableGeometry() | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment