diff --git a/docs/introduction.rst b/docs/introduction.rst index c8db433..fec1894 100644 --- a/docs/introduction.rst +++ b/docs/introduction.rst @@ -1,3 +1,9 @@ ######################### Introduction into OpenDFT -######################### \ No newline at end of file +######################### + +OpenDFT is a free and open source software that brings cutting edge solid state research to the people. It is a graphical program that +interacts with various scientific terminal based solid state software packages. It visualizes inputs, such as the crystal structure and +outputs, such as band structures and optical spectra and can start and control calculations, which are done by the respective scientific +solid state package. OpenDFT is designed to be DFT engine agnostic so that you can easily switch between different scientific codes and +compare results seamlessly. \ No newline at end of file diff --git a/src/data/artwork/splash_screen.png b/src/data/artwork/splash_screen.png new file mode 100644 index 0000000..7d60970 Binary files /dev/null and b/src/data/artwork/splash_screen.png differ diff --git a/src/qt_widgets.py b/src/qt_widgets.py index 32b70b1..23dddc9 100644 --- a/src/qt_widgets.py +++ b/src/qt_widgets.py @@ -188,7 +188,7 @@ def __lt__ (self, other): return QtGui.QTableWidgetItem.__lt__(self, other) def make_splash_screen(): - splash_pix = QtGui.QPixmap(find_data_file('/data/artwork/gaas_cubic_with_header.png')).scaled(500, 500, QtCore.Qt.KeepAspectRatio,QtCore.Qt.SmoothTransformation) + splash_pix = QtGui.QPixmap(find_data_file('/data/artwork/splash_screen.png')).scaled(700, 700, QtCore.Qt.KeepAspectRatio,QtCore.Qt.SmoothTransformation) splash = QtGui.QSplashScreen(splash_pix, QtCore.Qt.WindowStaysOnTopHint) splash.setWindowFlags(QtCore.Qt.WindowStaysOnTopHint | QtCore.Qt.FramelessWindowHint) splash.setEnabled(False) @@ -199,7 +199,7 @@ def make_splash_screen(): progressBar = QtGui.QProgressBar(splash) progressBar.setTextVisible(False) progressBar.setMaximum(10) - progressBar.setGeometry(0, splash_pix.height() - 50, splash_pix.width(), 20) + progressBar.setGeometry(70, 350, 150, 20) # splash.setMask(splash_pix.mask())