summaryrefslogtreecommitdiff
path: root/noncore/apps/oxygen/oxygen.cpp
Side-by-side diff
Diffstat (limited to 'noncore/apps/oxygen/oxygen.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/oxygen/oxygen.cpp14
1 files changed, 5 insertions, 9 deletions
diff --git a/noncore/apps/oxygen/oxygen.cpp b/noncore/apps/oxygen/oxygen.cpp
index 2574841..4e293c7 100644
--- a/noncore/apps/oxygen/oxygen.cpp
+++ b/noncore/apps/oxygen/oxygen.cpp
@@ -17,47 +17,43 @@
#include "datawidgetui.h"
#include "psewidget.h"
Oxygen::Oxygen()
: QMainWindow()
{
- this->setCaption( "Oxygen" );
+ this->setCaption( tr( "Oxygen" ) );
vbox = new QVBox( this );
- QPushButton *setButton = new QPushButton( "Settings", vbox );
- connect ( setButton, SIGNAL( clicked() ), this, SLOT( slotSettings() ) );
QPushButton *dataButton = new QPushButton( "Data", vbox );
connect ( dataButton, SIGNAL( clicked() ), this, SLOT( slotData() ) );
QPushButton *calcButton = new QPushButton( "Calculations", vbox );
connect ( calcButton, SIGNAL( clicked() ), this, SLOT( slotCalculations() ) );
QPushButton *pseButton = new QPushButton( "PSE", vbox );
connect ( pseButton, SIGNAL( clicked() ), this, SLOT( slotPSE() ) );
setCentralWidget( vbox );
}
-void Oxygen::close()
+void Oxygen::close() const
{
QApplication::exit();
}
//SLOTS
-void Oxygen::slotCalculations(){
+void Oxygen::slotCalculations() const{
calcDlgUI *CalcDlgUI = new calcDlgUI();
CalcDlgUI->show();
};
-void Oxygen::slotData(){
+void Oxygen::slotData() const{
dataWidgetUI *DataWidgetUI = new dataWidgetUI();
DataWidgetUI->showMaximized();
DataWidgetUI->show();
};
-void Oxygen::slotSettings(){ };
-
-void Oxygen::slotPSE(){
+void Oxygen::slotPSE() const{
PSEWidget *pse = new PSEWidget();
pse->showMaximized();
pse->show();
};