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

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

More dialogs, drag and drop onto File Load

  • Property mode set to 100755
File size: 647 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 WelcomePanelUI
12
13class WelcomePanel(WelcomePanelUI):
14    def __init__(self, parent=None):
15        super(WelcomePanel, self).__init__(parent)
16        self.setWindowTitle("Welcome")
17
18        version = sas.sasview.__version__
19        build = sas.sasview.__build__
20
21        ver = "\nSasView %s\nBuild: %s" % (version, build)
22        #ver += "\n(c) 2009 - 2013, UTK, UMD, NIST, ORNL, ISIS, ESS and IL"
23        ver += LocalConfig._copyright
24
25        self.lblVersion.setText(ver)
Note: See TracBrowser for help on using the repository browser.