ESS_GUIESS_GUI_DocsESS_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 0ba0774 was
31c5b58,
checked in by Piotr Rozyczko <rozyczko@…>, 8 years ago
|
Refactored to allow running with run.py.
Minor fixes to plotting.
|
-
Property mode set to
100644
|
File size:
747 bytes
|
Rev | Line | |
---|
[f721030] | 1 | # global |
---|
| 2 | import sys |
---|
| 3 | import os |
---|
| 4 | from PyQt4 import QtCore |
---|
| 5 | from PyQt4 import QtGui |
---|
| 6 | from PyQt4 import QtWebKit |
---|
| 7 | |
---|
| 8 | import sas.sasview |
---|
[31c5b58] | 9 | import sas.qtgui.LocalConfig as LocalConfig |
---|
[f721030] | 10 | |
---|
[31c5b58] | 11 | from sas.qtgui.UI.WelcomePanelUI import Ui_WelcomePanelUI |
---|
[f721030] | 12 | |
---|
[f51ed67] | 13 | class WelcomePanel(QtGui.QDialog, Ui_WelcomePanelUI): |
---|
[f721030] | 14 | def __init__(self, parent=None): |
---|
| 15 | super(WelcomePanel, self).__init__(parent) |
---|
[f51ed67] | 16 | self.setupUi(self) |
---|
| 17 | |
---|
[f721030] | 18 | self.setWindowTitle("Welcome") |
---|
| 19 | |
---|
| 20 | version = sas.sasview.__version__ |
---|
| 21 | build = sas.sasview.__build__ |
---|
| 22 | |
---|
[b27c681] | 23 | ver = "\nSasView %s\nBuild: %s\n%s" % (version, build, LocalConfig._copyright) |
---|
[488c49d] | 24 | |
---|
[d813cad8] | 25 | self.lblVersion.setText(ver) |
---|
| 26 | |
---|
| 27 | # no reason to have this widget resizable |
---|
| 28 | self.setFixedSize(self.minimumSizeHint()) |
---|
Note: See
TracBrowser
for help on using the repository browser.