ESS_GUI
Last change
on this file was
33c0561,
checked in by Piotr Rozyczko <piotr.rozyczko@…>, 6 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 | """ |
---|
2 | Allows users to change the title of the current graph |
---|
3 | from "Graph_n" to any ASCII text. |
---|
4 | """ |
---|
5 | from PyQt5 import QtWidgets, QtCore |
---|
6 | |
---|
7 | from sas.qtgui.Plotting.UI.WindowTitleUI import Ui_WindowTitle |
---|
8 | |
---|
9 | class 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.