source: sasview/src/sas/qtgui/WelcomePanel.py @ f51ed67

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 f51ed67 was f51ed67, checked in by Piotr Rozyczko <piotr.rozyczko@…>, 8 years ago

Clean up and automate generation of UI and resources

  • Property mode set to 100755
File size: 620 bytes
Line 
1# global
2import sys
3import os
4from PyQt4 import QtCore
5from PyQt4 import QtGui
6from PyQt4 import QtWebKit
7
8import sas.sasview
9import LocalConfig
10
11from UI.WelcomePanelUI import Ui_WelcomePanelUI
12
13class WelcomePanel(QtGui.QDialog, Ui_WelcomePanelUI):
14    def __init__(self, parent=None):
15        super(WelcomePanel, self).__init__(parent)
16        self.setupUi(self)
17
18        self.setWindowTitle("Welcome")
19
20        version = sas.sasview.__version__
21        build = sas.sasview.__build__
22
23        ver = "\nSasView %s\nBuild: %s" % (version, build)
24        ver += LocalConfig._copyright
25
26        self.lblVersion.setText(ver)
Note: See TracBrowser for help on using the repository browser.