summaryrefslogtreecommitdiff
path: root/noncore/apps/oxygen/oxygen.cpp
Unidiff
Diffstat (limited to 'noncore/apps/oxygen/oxygen.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/oxygen/oxygen.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/noncore/apps/oxygen/oxygen.cpp b/noncore/apps/oxygen/oxygen.cpp
index a9c2276..2574841 100644
--- a/noncore/apps/oxygen/oxygen.cpp
+++ b/noncore/apps/oxygen/oxygen.cpp
@@ -12,12 +12,13 @@
12#include <qapplication.h> 12#include <qapplication.h>
13#include <qpushbutton.h> 13#include <qpushbutton.h>
14#include <qvbox.h> 14#include <qvbox.h>
15#include "calcdlg.h" 15#include "calcdlg.h"
16#include "calcdlgui.h" 16#include "calcdlgui.h"
17#include "datawidgetui.h" 17#include "datawidgetui.h"
18#include "psewidget.h"
18 19
19Oxygen::Oxygen() 20Oxygen::Oxygen()
20 : QMainWindow() 21 : QMainWindow()
21{ 22{
22 this->setCaption( "Oxygen" ); 23 this->setCaption( "Oxygen" );
23 vbox = new QVBox( this ); 24 vbox = new QVBox( this );
@@ -45,12 +46,18 @@ void Oxygen::slotCalculations(){
45 calcDlgUI *CalcDlgUI = new calcDlgUI(); 46 calcDlgUI *CalcDlgUI = new calcDlgUI();
46 CalcDlgUI->show(); 47 CalcDlgUI->show();
47}; 48};
48 49
49void Oxygen::slotData(){ 50void Oxygen::slotData(){
50 dataWidgetUI *DataWidgetUI = new dataWidgetUI(); 51 dataWidgetUI *DataWidgetUI = new dataWidgetUI();
52 DataWidgetUI->showMaximized();
51 DataWidgetUI->show(); 53 DataWidgetUI->show();
52}; 54};
53 55
54void Oxygen::slotSettings(){ }; 56void Oxygen::slotSettings(){ };
55void Oxygen::slotPSE(){ }; 57
58void Oxygen::slotPSE(){
59 PSEWidget *pse = new PSEWidget();
60 pse->showMaximized();
61 pse->show();
62};
56 63