diff --git a/pyqt_run.py b/pyqt_run.py index bd47047..390bb17 100755 --- a/pyqt_run.py +++ b/pyqt_run.py @@ -50,11 +50,22 @@ def initUI(self): toolbar = self.addToolBar("ToolBar") run_action = qw.QAction('Output', self) + run_action.setToolTip('Output the command the would be ran when plotted') + plot_action = qw.QAction('Plot', self) + plot_action.setToolTip('Plot the output of the command ran under these configurations') + edit_action = qw.QAction('Edit', self) + edit_action.setToolTip('Open the input file for editing') + help_action = qw.QAction('Help', self) + help_action.setToolTip('Display details about each configuration field') + reset_action = qw.QAction('Reset', self) + reset_action.setToolTip('Revert configuration options to default settings') + quit_action = qw.QAction('Quit', self) + quit_action.setToolTip('Exits the application') toolbar.addAction(run_action) toolbar.addSeparator()