MNE-CPP  beta 1.0
aboutwindow.cpp
1 //=============================================================================================================
37 //*************************************************************************************************************
38 //=============================================================================================================
39 // INCLUDES
40 //=============================================================================================================
41 
42 #include "aboutwindow.h"
43 
44 
45 //*************************************************************************************************************
46 //=============================================================================================================
47 // USED NAMESPACES
48 //=============================================================================================================
49 
50 using namespace MNEBrowseRawQt;
51 
52 
53 //*************************************************************************************************************
54 //=============================================================================================================
55 // DEFINE MEMBER METHODS
56 //=============================================================================================================
57 
58 AboutWindow::AboutWindow(QWidget *parent) :
59  QWidget(parent, Qt::Window),
60  ui(new Ui::AboutWindow)
61 {
62  ui->setupUi(this);
63 
64  ui->m_label_splashcreen->setPixmap(QPixmap(":/Resources/Images/splashscreen_mne_browse_raw_qt.png"));
65 }
66 
67 
68 //*************************************************************************************************************
69 
71 {
72  delete ui;
73 }
AboutWindow(QWidget *parent=0)
Definition: aboutwindow.cpp:58
The AboutWindow class provides the about window.
Definition: aboutwindow.h:69
Definition: aboutwindow.h:52