-
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.
removed activate flighttrack submenu
- Loading branch information
1 parent
1f72361
commit a4fdf64
Showing
7 changed files
with
204 additions
and
25 deletions.
There are no files selected for viewing
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
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
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
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
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_()) |
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
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,99 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ui version="4.0"> | ||
<class>ProfileWindow</class> | ||
<widget class="QDialog" name="ProfileWindow"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>0</x> | ||
<y>0</y> | ||
<width>277</width> | ||
<height>140</height> | ||
</rect> | ||
</property> | ||
<property name="windowTitle"> | ||
<string>MSColab Profile</string> | ||
</property> | ||
<layout class="QGridLayout" name="gridLayout"> | ||
<item row="0" column="0"> | ||
<layout class="QGridLayout" name="infoGl"> | ||
<item row="1" column="1"> | ||
<widget class="QLabel" name="emailLabel_2"> | ||
<property name="text"> | ||
<string/> | ||
</property> | ||
</widget> | ||
</item> | ||
<item row="1" column="0"> | ||
<widget class="QLabel" name="emailLabel"> | ||
<property name="text"> | ||
<string>Email:</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item row="0" column="0"> | ||
<widget class="QLabel" name="usernameLabel"> | ||
<property name="text"> | ||
<string>Name:</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item row="0" column="1"> | ||
<widget class="QLabel" name="usernameLabel_2"> | ||
<property name="text"> | ||
<string/> | ||
</property> | ||
</widget> | ||
</item> | ||
<item row="2" column="0"> | ||
<widget class="QLabel" name="mscolabURLLabel"> | ||
<property name="text"> | ||
<string>Mscolab:</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item row="2" column="1"> | ||
<widget class="QLabel" name="mscolabURLLabel_2"> | ||
<property name="text"> | ||
<string/> | ||
</property> | ||
</widget> | ||
</item> | ||
</layout> | ||
</item> | ||
<item row="0" column="1" rowspan="2"> | ||
<layout class="QVBoxLayout" name="gravatarVl"> | ||
<item alignment="Qt::AlignHCenter|Qt::AlignVCenter"> | ||
<widget class="QLabel" name="gravatarLabel"> | ||
<property name="text"> | ||
<string/> | ||
</property> | ||
</widget> | ||
</item> | ||
<item alignment="Qt::AlignHCenter"> | ||
<widget class="QPushButton" name="setGravatarBtn"> | ||
<property name="text"> | ||
<string>Set Gravatar</string> | ||
</property> | ||
</widget> | ||
</item> | ||
</layout> | ||
</item> | ||
<item row="2" column="1" alignment="Qt::AlignRight"> | ||
<widget class="QDialogButtonBox" name="buttonBox"> | ||
<property name="standardButtons"> | ||
<set>QDialogButtonBox::Ok</set> | ||
</property> | ||
</widget> | ||
</item> | ||
<item row="2" column="0" alignment="Qt::AlignLeft"> | ||
<widget class="QPushButton" name="deleteAccountBtn"> | ||
<property name="text"> | ||
<string>Delete Account</string> | ||
</property> | ||
</widget> | ||
</item> | ||
</layout> | ||
</widget> | ||
<resources/> | ||
<connections/> | ||
</ui> |