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

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

Initial commit of the main window prototype

  • Property mode set to 100755
File size: 576 bytes
Line 
1# global
2import sys
3import os
4from PyQt4 import QtCore
5from PyQt4 import QtGui
6from PyQt4 import QtWebKit
7
8import sas.sasview
9
10from UI.WelcomePanelUI import WelcomePanelUI
11
12class WelcomePanel(WelcomePanelUI):
13    def __init__(self, parent=None):
14        super(WelcomePanel, self).__init__(parent)
15        self.setWindowTitle("Welcome")
16
17        version = sas.sasview.__version__
18        build = sas.sasview.__build__
19
20        self.lblVersion = "\nSasView %s\nBuild: %s" % (version, build)
21        self.lblVersion += "\n(c) 2009 - 2013, UTK, UMD, NIST, ORNL, ISIS, ESS and IL"
Note: See TracBrowser for help on using the repository browser.