Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
OpensourcedPro authored Feb 28, 2024
1 parent 02508bb commit 8b43b3d
Show file tree
Hide file tree
Showing 15 changed files with 9,444 additions and 9,739 deletions.
144 changes: 74 additions & 70 deletions DiamondChecker/LoginChecked_UI.py
Original file line number Diff line number Diff line change
@@ -1,70 +1,74 @@
# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file 'LoginChecked_UI.ui'
#
# Created by: PyQt5 UI code generator 5.15.10
#
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
# run again. Do not edit this file unless you know what you are doing.


from PyQt5 import QtCore, QtGui, QtWidgets


class Ui_MainWindow(object):
def setupUi(self, MainWindow):
MainWindow.setObjectName("MainWindow")
MainWindow.resize(471, 136)
MainWindow.setStyleSheet(" background-color: #232629;\n"
" color: #ffffff;")
self.centralwidget = QtWidgets.QWidget(MainWindow)
self.centralwidget.setObjectName("centralwidget")
self.lineEdit = QtWidgets.QLineEdit(self.centralwidget)
self.lineEdit.setGeometry(QtCore.QRect(10, 10, 451, 41))
font = QtGui.QFont()
font.setFamily("Furore")
font.setPointSize(10)
self.lineEdit.setFont(font)
self.lineEdit.setStyleSheet(" color: #1de9b6;\n"
" background-color: #31363b;\n"
" border: 2px solid #1de9b6;\n"
" border-radius: 4px;\n"
" height: 32px;")
self.lineEdit.setObjectName("lineEdit")
self.pushButton = QtWidgets.QPushButton(self.centralwidget)
self.pushButton.setGeometry(QtCore.QRect(10, 60, 451, 41))
font = QtGui.QFont()
font.setFamily("Furore")
font.setPointSize(10)
self.pushButton.setFont(font)
self.pushButton.setStyleSheet(" color: #1de9b6;\n"
" background-color: #31363b;\n"
" border: 2px solid #1de9b6;\n"
" border-radius: 4px;\n"
" height: 32px;\n"
"")
self.pushButton.setDefault(False)
self.pushButton.setObjectName("pushButton")
MainWindow.setCentralWidget(self.centralwidget)
self.statusbar = QtWidgets.QStatusBar(MainWindow)
self.statusbar.setObjectName("statusbar")
MainWindow.setStatusBar(self.statusbar)

self.retranslateUi(MainWindow)
QtCore.QMetaObject.connectSlotsByName(MainWindow)

def retranslateUi(self, MainWindow):
_translate = QtCore.QCoreApplication.translate
MainWindow.setWindowTitle(_translate("MainWindow", "MainWindow"))
self.lineEdit.setText(_translate("MainWindow", "Telegram login (without \"@\")"))
self.pushButton.setText(_translate("MainWindow", "Authorization"))


if __name__ == "__main__":
import sys
app = QtWidgets.QApplication(sys.argv)
MainWindow = QtWidgets.QMainWindow()
ui = Ui_MainWindow()
ui.setupUi(MainWindow)
MainWindow.show()
sys.exit(app.exec_())
# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file 'LoginChecked_UI.ui'
#
# Created by: PyQt5 UI code generator 5.15.10
#
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
# run again. Do not edit this file unless you know what you are doing.


from PyQt5 import QtCore, QtGui, QtWidgets


class Ui_MainWindow(object):
def setupUi(self, MainWindow):
MainWindow.setObjectName("MainWindow")
MainWindow.resize(471, 136)
MainWindow.setStyleSheet(" background-color: #232629;\n"
" color: #ffffff;")
self.centralwidget = QtWidgets.QWidget(MainWindow)
self.centralwidget.setObjectName("centralwidget")
self.lineEdit = QtWidgets.QLineEdit(self.centralwidget)
self.lineEdit.setGeometry(QtCore.QRect(10, 10, 451, 41))
font = QtGui.QFont()
font.setFamily("Furore")
font.setPointSize(10)
self.lineEdit.setFont(font)
self.lineEdit.setStyleSheet(" color: #1de9b6;\n"
" background-color: #31363b;\n"
" border: 2px solid #1de9b6;\n"
" border-radius: 4px;\n"
" height: 32px;")
self.lineEdit.setObjectName("lineEdit")
self.pushButton = QtWidgets.QPushButton(self.centralwidget)
self.pushButton.setGeometry(QtCore.QRect(10, 60, 451, 41))
font = QtGui.QFont()
font.setFamily("Furore")
font.setPointSize(10)
self.pushButton.setFont(font)
self.pushButton.setStyleSheet(" color: #1de9b6;\n"
" background-color: #31363b;\n"
" border: 2px solid #1de9b6;\n"
" border-radius: 4px;\n"
" height: 32px;\n"
"")
self.pushButton.setDefault(False)
self.pushButton.setObjectName("pushButton")
MainWindow.setCentralWidget(self.centralwidget)
self.statusbar = QtWidgets.QStatusBar(MainWindow)
self.statusbar.setObjectName("statusbar")
MainWindow.setStatusBar(self.statusbar)

self.retranslateUi(MainWindow)
QtCore.QMetaObject.connectSlotsByName(MainWindow)

def retranslateUi(self, MainWindow):
_translate = QtCore.QCoreApplication.translate
MainWindow.setWindowTitle(_translate("MainWindow", "MainWindow"))
self.lineEdit.setText(_translate("MainWindow", "Telegram login (without \"@\")"))
self.pushButton.setText(_translate("MainWindow", "Authorization"))

def setupUi(self):
# Create the authorization_button and add it to the parent widget
authorization_button = QtWidgets.QPushButton("Authorization", self)
authorization_button.clicked.connect(self.skip_login)

if __name__ == "__main__":
import sys
app = QtWidgets.QApplication(sys.argv)
MainWindow = QtWidgets.QMainWindow()
ui = Ui_MainWindow()
ui.setupUi(MainWindow)
MainWindow.show()
sys.exit(app.exec_())
164 changes: 82 additions & 82 deletions DiamondChecker/LoginChecked_UI.ui
Original file line number Diff line number Diff line change
@@ -1,82 +1,82 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>471</width>
<height>136</height>
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<property name="styleSheet">
<string notr="true"> background-color: #232629;
color: #ffffff;</string>
</property>
<widget class="QWidget" name="centralwidget">
<widget class="QLineEdit" name="lineEdit">
<property name="geometry">
<rect>
<x>10</x>
<y>10</y>
<width>451</width>
<height>41</height>
</rect>
</property>
<property name="font">
<font>
<family>Furore</family>
<pointsize>10</pointsize>
</font>
</property>
<property name="styleSheet">
<string notr="true"> color: #1de9b6;
background-color: #31363b;
border: 2px solid #1de9b6;
border-radius: 4px;
height: 32px;</string>
</property>
<property name="text">
<string>Telegram login (without &quot;@&quot;)</string>
</property>
</widget>
<widget class="QPushButton" name="pushButton">
<property name="geometry">
<rect>
<x>10</x>
<y>60</y>
<width>451</width>
<height>41</height>
</rect>
</property>
<property name="font">
<font>
<family>Furore</family>
<pointsize>10</pointsize>
</font>
</property>
<property name="styleSheet">
<string notr="true"> color: #1de9b6;
background-color: #31363b;
border: 2px solid #1de9b6;
border-radius: 4px;
height: 32px;
</string>
</property>
<property name="text">
<string>Authorization</string>
</property>
<property name="default">
<bool>false</bool>
</property>
</widget>
</widget>
<widget class="QStatusBar" name="statusbar"/>
</widget>
<resources/>
<connections/>
</ui>
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>471</width>
<height>136</height>
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<property name="styleSheet">
<string notr="true"> background-color: #232629;
color: #ffffff;</string>
</property>
<widget class="QWidget" name="centralwidget">
<widget class="QLineEdit" name="lineEdit">
<property name="geometry">
<rect>
<x>10</x>
<y>10</y>
<width>451</width>
<height>41</height>
</rect>
</property>
<property name="font">
<font>
<family>Furore</family>
<pointsize>10</pointsize>
</font>
</property>
<property name="styleSheet">
<string notr="true"> color: #1de9b6;
background-color: #31363b;
border: 2px solid #1de9b6;
border-radius: 4px;
height: 32px;</string>
</property>
<property name="text">
<string>Telegram login (without &quot;@&quot;)</string>
</property>
</widget>
<widget class="QPushButton" name="authorization_button">
<property name="geometry">
<rect>
<x>10</x>
<y>60</y>
<width>451</width>
<height>41</height>
</rect>
</property>
<property name="font">
<font>
<family>Furore</family>
<pointsize>10</pointsize>
</font>
</property>
<property name="styleSheet">
<string notr="true"> color: #1de9b6;
background-color: #31363b;
border: 2px solid #1de9b6;
border-radius: 4px;
height: 32px;
</string>
</property>
<property name="text">
<string>Authorization</string>
</property>
<property name="default">
<bool>false</bool>
</property>
</widget>
</widget>
<widget class="QStatusBar" name="statusbar"/>
</widget>
<resources/>
<connections/>
</ui>
Loading

0 comments on commit 8b43b3d

Please sign in to comment.