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

ESS_GUIESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_openclESS_GUI_sync_sascalc
Last change on this file since 33c0561 was 33c0561, checked in by Piotr Rozyczko <piotr.rozyczko@…>, 5 years ago

Replace Apply button menu driven functionality with additional button.
Removed Cancel.
Removed the window system context help button from all affected widgets.
SASVIEW-1239

  • Property mode set to 100644
File size: 698 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, QtCore
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        # disable the context help icon
15        self.setWindowFlags(self.windowFlags() & ~QtCore.Qt.WindowContextHelpButtonHint)
16
17        self.txtTitle.setText(new_title)
18
19    def title(self):
20        """ Return the new title """
21        return self.txtTitle.text()
22
Note: See TracBrowser for help on using the repository browser.