source: sasview/src/sas/qtgui/Plotting/WindowTitle.py @ e20870bc

ESS_GUIESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalc
Last change on this file since e20870bc was 4992ff2, checked in by Piotr Rozyczko <rozyczko@…>, 6 years ago

Initial, in-progress version. Not really working atm. SASVIEW-787

  • Property mode set to 100644
File size: 560 bytes
Line 
1"""
2Allows users to change the title of the current graph
3from "Graph_n" to any ASCII text.
4"""
5from PyQt5 import QtWidgets
6
7from sas.qtgui.Plotting.UI.WindowTitleUI import Ui_WindowTitle
8
9class WindowTitle(QtWidgets.QDialog, Ui_WindowTitle):
10    """ Simple GUI for a single line text query """
11    def __init__(self, parent=None, new_title=""):
12        super(WindowTitle, self).__init__(parent)
13        self.setupUi(self)
14        self.txtTitle.setText(new_title)
15
16    def title(self):
17        """ Return the new title """
18        return self.txtTitle.text()
19
Note: See TracBrowser for help on using the repository browser.