Skip to content

Commit

Permalink
updates to autogenerated files from qt creator
Browse files Browse the repository at this point in the history
  • Loading branch information
nicktrem committed Sep 25, 2024
1 parent be77f98 commit 5df2f88
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 28 deletions.
5 changes: 3 additions & 2 deletions robot_log_visualizer/ui/autogenerated/about.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

# Form implementation generated from reading ui file 'robot_log_visualizer/ui/misc/about.ui'
#
# Created by: PyQt5 UI code generator 5.14.1
# Created by: PyQt5 UI code generator 5.15.9
#
# WARNING! All changes made in this file will be lost!
# 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
Expand Down
5 changes: 3 additions & 2 deletions robot_log_visualizer/ui/autogenerated/plot_tab.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

# Form implementation generated from reading ui file 'robot_log_visualizer/ui/misc/plot_tab.ui'
#
# Created by: PyQt5 UI code generator 5.14.1
# Created by: PyQt5 UI code generator 5.15.9
#
# WARNING! All changes made in this file will be lost!
# 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
Expand Down
9 changes: 5 additions & 4 deletions robot_log_visualizer/ui/autogenerated/set_robot_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

# Form implementation generated from reading ui file 'robot_log_visualizer/ui/misc/set_robot_model.ui'
#
# Created by: PyQt5 UI code generator 5.14.1
# Created by: PyQt5 UI code generator 5.15.9
#
# WARNING! All changes made in this file will be lost!
# 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
Expand Down Expand Up @@ -61,8 +62,8 @@ def setupUi(self, setRobotModelDialog):
self.gridLayout.addItem(spacerItem, 2, 0, 1, 1)

self.retranslateUi(setRobotModelDialog)
self.buttonBox.accepted.connect(setRobotModelDialog.accept)
self.buttonBox.rejected.connect(setRobotModelDialog.reject)
self.buttonBox.accepted.connect(setRobotModelDialog.accept) # type: ignore
self.buttonBox.rejected.connect(setRobotModelDialog.reject) # type: ignore
QtCore.QMetaObject.connectSlotsByName(setRobotModelDialog)

def retranslateUi(self, setRobotModelDialog):
Expand Down
5 changes: 3 additions & 2 deletions robot_log_visualizer/ui/autogenerated/video_tab.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

# Form implementation generated from reading ui file 'robot_log_visualizer/ui/misc/video_tab.ui'
#
# Created by: PyQt5 UI code generator 5.14.1
# Created by: PyQt5 UI code generator 5.15.9
#
# WARNING! All changes made in this file will be lost!
# 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
Expand Down
26 changes: 8 additions & 18 deletions robot_log_visualizer/ui/autogenerated/visualizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

# Form implementation generated from reading ui file 'robot_log_visualizer/ui/misc/visualizer.ui'
#
# Created by: PyQt5 UI code generator 5.14.1
# Created by: PyQt5 UI code generator 5.15.9
#
# WARNING! All changes made in this file will be lost!
# 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
Expand Down Expand Up @@ -239,25 +240,18 @@ def setupUi(self, MainWindow):
icon = QtGui.QIcon.fromTheme("exit")
self.actionQuit.setIcon(icon)
self.actionQuit.setObjectName("actionQuit")

# Add the GUI components for the open action
self.actionOpen = QtWidgets.QAction(MainWindow)
icon = QtGui.QIcon.fromTheme("document-open")
self.actionOpen.setIcon(icon)
self.actionOpen.setObjectName("actionOpen")

# Add a GUI action for connecting to the YARP port
# for real-time logging

self.actionConnect = QtWidgets.QAction(MainWindow)
self.actionConnect.setObjectName("actionConnect")

self.actionAbout = QtWidgets.QAction(MainWindow)
self.actionAbout.setObjectName("actionAbout")
self.actionSet_Robot_Model = QtWidgets.QAction(MainWindow)
self.actionSet_Robot_Model.setObjectName("actionSet_Robot_Model")
self.actionRealtime_Connect = QtWidgets.QAction(MainWindow)
self.actionRealtime_Connect.setObjectName("actionRealtime_Connect")
self.menuFile.addAction(self.actionOpen)
self.menuFile.addAction(self.actionConnect)
self.menuFile.addAction(self.actionRealtime_Connect)
self.menuFile.addSeparator()
self.menuFile.addAction(self.actionQuit)
self.menuHelp.addAction(self.actionAbout)
Expand Down Expand Up @@ -285,13 +279,9 @@ def retranslateUi(self, MainWindow):
self.actionQuit.setText(_translate("MainWindow", "&Quit"))
self.actionQuit.setShortcut(_translate("MainWindow", "Ctrl+Q"))
self.actionOpen.setText(_translate("MainWindow", "&Open"))
try:
import bipedal_locomotion_framework.bindings as blf
self.actionConnect.setText(_translate("MainWindow", "Realtime Connect"))
except ImportError:
self.actionConnect.setText(_translate("MainWindow", "Install BLF for RT Connect Functionality"))
self.actionOpen.setShortcut(_translate("MainWindow", "Ctrl+O"))
self.actionAbout.setText(_translate("MainWindow", "About"))
self.actionSet_Robot_Model.setText(_translate("MainWindow", "Set Robot Model"))

self.actionRealtime_Connect.setText(_translate("MainWindow", "Realtime Connect"))
self.actionRealtime_Connect.setShortcut(_translate("MainWindow", "Ctrl+R"))
from PyQt5 import QtWebEngineWidgets

0 comments on commit 5df2f88

Please sign in to comment.