-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1059 from aravindm711/GSOC2021-AravindMurali
GSoC progress update
- Loading branch information
Showing
10 changed files
with
845 additions
and
623 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# Form implementation generated from reading ui file 'mslib/msui/ui/ui_mscolab_profile_dialog.ui' | ||
# | ||
# Created by: PyQt5 UI code generator 5.12.3 | ||
# | ||
# WARNING! All changes made in this file will be lost! | ||
|
||
|
||
from PyQt5 import QtCore, QtGui, QtWidgets | ||
|
||
|
||
class Ui_ProfileWindow(object): | ||
def setupUi(self, ProfileWindow): | ||
ProfileWindow.setObjectName("ProfileWindow") | ||
ProfileWindow.resize(277, 140) | ||
self.gridLayout = QtWidgets.QGridLayout(ProfileWindow) | ||
self.gridLayout.setObjectName("gridLayout") | ||
self.infoGl = QtWidgets.QGridLayout() | ||
self.infoGl.setObjectName("infoGl") | ||
self.emailLabel_2 = QtWidgets.QLabel(ProfileWindow) | ||
self.emailLabel_2.setText("") | ||
self.emailLabel_2.setObjectName("emailLabel_2") | ||
self.infoGl.addWidget(self.emailLabel_2, 1, 1, 1, 1) | ||
self.emailLabel = QtWidgets.QLabel(ProfileWindow) | ||
self.emailLabel.setObjectName("emailLabel") | ||
self.infoGl.addWidget(self.emailLabel, 1, 0, 1, 1) | ||
self.usernameLabel = QtWidgets.QLabel(ProfileWindow) | ||
self.usernameLabel.setObjectName("usernameLabel") | ||
self.infoGl.addWidget(self.usernameLabel, 0, 0, 1, 1) | ||
self.usernameLabel_2 = QtWidgets.QLabel(ProfileWindow) | ||
self.usernameLabel_2.setText("") | ||
self.usernameLabel_2.setObjectName("usernameLabel_2") | ||
self.infoGl.addWidget(self.usernameLabel_2, 0, 1, 1, 1) | ||
self.mscolabURLLabel = QtWidgets.QLabel(ProfileWindow) | ||
self.mscolabURLLabel.setObjectName("mscolabURLLabel") | ||
self.infoGl.addWidget(self.mscolabURLLabel, 2, 0, 1, 1) | ||
self.mscolabURLLabel_2 = QtWidgets.QLabel(ProfileWindow) | ||
self.mscolabURLLabel_2.setText("") | ||
self.mscolabURLLabel_2.setObjectName("mscolabURLLabel_2") | ||
self.infoGl.addWidget(self.mscolabURLLabel_2, 2, 1, 1, 1) | ||
self.gridLayout.addLayout(self.infoGl, 0, 0, 1, 1) | ||
self.gravatarVl = QtWidgets.QVBoxLayout() | ||
self.gravatarVl.setObjectName("gravatarVl") | ||
self.gravatarLabel = QtWidgets.QLabel(ProfileWindow) | ||
self.gravatarLabel.setText("") | ||
self.gravatarLabel.setObjectName("gravatarLabel") | ||
self.gravatarVl.addWidget(self.gravatarLabel, 0, QtCore.Qt.AlignHCenter|QtCore.Qt.AlignVCenter) | ||
self.setGravatarBtn = QtWidgets.QPushButton(ProfileWindow) | ||
self.setGravatarBtn.setObjectName("setGravatarBtn") | ||
self.gravatarVl.addWidget(self.setGravatarBtn, 0, QtCore.Qt.AlignHCenter) | ||
self.gridLayout.addLayout(self.gravatarVl, 0, 1, 2, 1) | ||
self.buttonBox = QtWidgets.QDialogButtonBox(ProfileWindow) | ||
self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.Ok) | ||
self.buttonBox.setObjectName("buttonBox") | ||
self.gridLayout.addWidget(self.buttonBox, 2, 1, 1, 1, QtCore.Qt.AlignRight) | ||
self.deleteAccountBtn = QtWidgets.QPushButton(ProfileWindow) | ||
self.deleteAccountBtn.setObjectName("deleteAccountBtn") | ||
self.gridLayout.addWidget(self.deleteAccountBtn, 2, 0, 1, 1, QtCore.Qt.AlignLeft) | ||
|
||
self.retranslateUi(ProfileWindow) | ||
QtCore.QMetaObject.connectSlotsByName(ProfileWindow) | ||
|
||
def retranslateUi(self, ProfileWindow): | ||
_translate = QtCore.QCoreApplication.translate | ||
ProfileWindow.setWindowTitle(_translate("ProfileWindow", "MSColab Profile")) | ||
self.emailLabel.setText(_translate("ProfileWindow", "Email:")) | ||
self.usernameLabel.setText(_translate("ProfileWindow", "Name:")) | ||
self.mscolabURLLabel.setText(_translate("ProfileWindow", "Mscolab:")) | ||
self.setGravatarBtn.setText(_translate("ProfileWindow", "Set Gravatar")) | ||
self.deleteAccountBtn.setText(_translate("ProfileWindow", "Delete Account")) | ||
|
||
|
||
if __name__ == "__main__": | ||
import sys | ||
app = QtWidgets.QApplication(sys.argv) | ||
ProfileWindow = QtWidgets.QDialog() | ||
ui = Ui_ProfileWindow() | ||
ui.setupUi(ProfileWindow) | ||
ProfileWindow.show() | ||
sys.exit(app.exec_()) |
Oops, something went wrong.