author | cniehaus <cniehaus> | 2002-11-23 11:18:40 (UTC) |
---|---|---|
committer | cniehaus <cniehaus> | 2002-11-23 11:18:40 (UTC) |
commit | 1aa77f5f197f63ba9a154fdcae9d6f55eebe12a0 (patch) (side-by-side diff) | |
tree | bb82d65366084d0a8c4cc7e7cee23fbbf01a1c8a /noncore | |
parent | b1cbaa84c29decb743687e970eedcd4a238771ad (diff) | |
download | opie-1aa77f5f197f63ba9a154fdcae9d6f55eebe12a0.zip opie-1aa77f5f197f63ba9a154fdcae9d6f55eebe12a0.tar.gz opie-1aa77f5f197f63ba9a154fdcae9d6f55eebe12a0.tar.bz2 |
move stuff around, use iterators, make things translatable
-rw-r--r-- | noncore/apps/oxygen/dataTable.cpp | 4 | ||||
-rw-r--r-- | noncore/apps/oxygen/dataTable.h | 3 | ||||
-rw-r--r-- | noncore/apps/oxygen/datawidgetui.cpp | 128 | ||||
-rw-r--r-- | noncore/apps/oxygen/datawidgetui.h | 5 | ||||
-rw-r--r-- | noncore/apps/oxygen/oxygen.cpp | 115 | ||||
-rw-r--r-- | noncore/apps/oxygen/oxygen.h | 3 |
6 files changed, 131 insertions, 127 deletions
diff --git a/noncore/apps/oxygen/dataTable.cpp b/noncore/apps/oxygen/dataTable.cpp index f3984be..661eb5a 100644 --- a/noncore/apps/oxygen/dataTable.cpp +++ b/noncore/apps/oxygen/dataTable.cpp @@ -25,7 +25,9 @@ #include <qlayout.h> #include <qpe/qpeapplication.h> -OxydataWidget::OxydataWidget(QWidget *parent) : QWidget(parent) +#include <qstringlist.h> + +OxydataWidget::OxydataWidget(QWidget *parent, const char *name, QStringList *list ) : QWidget( parent,name ) { QGridLayout *qgrid = new QGridLayout( this, 2,1 ); diff --git a/noncore/apps/oxygen/dataTable.h b/noncore/apps/oxygen/dataTable.h index f2eb71d..a8c9b6e 100644 --- a/noncore/apps/oxygen/dataTable.h +++ b/noncore/apps/oxygen/dataTable.h @@ -16,6 +16,7 @@ class QLabel; class OxydataTable; +//class QStringList; /* * A OxydataWidget shows all known data of an element. It can @@ -31,7 +32,7 @@ class OxydataWidget : public QWidget Q_OBJECT public: - OxydataWidget(QWidget *parent=0); + OxydataWidget(QWidget *parent=0, const char *name=0, QStringList *list =0 ); QLabel *left, *middle, *right; void setLayout(); diff --git a/noncore/apps/oxygen/datawidgetui.cpp b/noncore/apps/oxygen/datawidgetui.cpp index 99c4fd7..b9000fa 100644 --- a/noncore/apps/oxygen/datawidgetui.cpp +++ b/noncore/apps/oxygen/datawidgetui.cpp @@ -28,21 +28,22 @@ dataWidgetUI::dataWidgetUI() : QWidget() { - this->setCaption( tr( "Chemical Data" )); + names = new QStringList(); + loadNames(); + + this->setCaption( tr( "Chemical Data" )); QGridLayout *qgrid = new QGridLayout( this, 2,1 ); dataCombo = new QComboBox( this ); //read in all names of the 118 elements - Config configobj( QPEApplication::qpeDir() +"share/oxygen/oxygendata", Config::File ); - for ( int i = 1 ; i < 119 ; i++ ) + int i = 0; + for ( QStringList::Iterator it = names->begin() ; it != names->end() ; ++it,i++) { - configobj.setGroup( QString::number( i ) ); - QString foo = configobj.readEntry( "Name" ); - dataCombo->insertItem( QString::number( i )+" - "+foo ); + dataCombo->insertItem( QString::number( i )+" - "+*it ); } - OxydataWidget *oxyDW = new OxydataWidget(this); + OxydataWidget *oxyDW = new OxydataWidget(this, "OxydataWidget_oxyDW", names); connect ( dataCombo, SIGNAL( activated(int) ), oxyDW, SLOT( setElement(int) ) ); oxyDW->setElement( 0 ); oxyDW->setLayout(); @@ -51,3 +52,116 @@ dataWidgetUI::dataWidgetUI() : QWidget() qgrid->addWidget( oxyDW , 1,0 ); } +void dataWidgetUI::loadNames() +{ + names->append( tr("Hydrogen") ); + names->append( tr("Helium") ); + names->append( tr("Lithium") ); + names->append( tr("Beryllium") ); + names->append( tr("Boron") ); + names->append( tr("Carbon") ); + names->append( tr("Nitrogen") ); + names->append( tr("Oxygen") ); + names->append( tr("Fluorine") ); + names->append( tr("Neon") ); + names->append( tr("Sodium") ); + names->append( tr("Magnesium") ); + names->append( tr("Aluminum") ); + names->append( tr("Silicon") ); + names->append( tr("Phosphorus") ); + names->append( tr("Sulfur") ); + names->append( tr("Chlorine") ); + names->append( tr("Argon") ); + names->append( tr("Potassium") ); + names->append( tr("Calcium") ); + names->append( tr("Scandium") ); + names->append( tr("Titanium") ); + names->append( tr("Vanadium") ); + names->append( tr("Chromium") ); + names->append( tr("Manganese") ); + names->append( tr("Iron") ); + names->append( tr("Cobalt") ); + names->append( tr("Nickel") ); + names->append( tr("Copper") ); + names->append( tr("Zinc") ); + names->append( tr("Gallium") ); + names->append( tr("Germanium") ); + names->append( tr("Arsenic") ); + names->append( tr("Selenium") ); + names->append( tr("Bromine") ); + names->append( tr("Krypton") ); + names->append( tr("Rubidium") ); + names->append( tr("Strontium") ); + names->append( tr("Yttrium") ); + names->append( tr("Zirconium") ); + names->append( tr("Niobium") ); + names->append( tr("Molybdenum") ); + names->append( tr("Technetium") ); + names->append( tr("Ruthenium") ); + names->append( tr("Rhodium") ); + names->append( tr("Palladium") ); + names->append( tr("Silver") ); + names->append( tr("Cadmium") ); + names->append( tr("Indium") ); + names->append( tr("Tin") ); + names->append( tr("Antimony") ); + names->append( tr("Tellurium") ); + names->append( tr("Iodine") ); + names->append( tr("Xenon") ); + names->append( tr("Cesium") ); + names->append( tr("Barium") ); + names->append( tr("Lanthanum") ); + names->append( tr("Cerium") ); + names->append( tr("Praseodymium") ); + names->append( tr("Neodymium") ); + names->append( tr("Promethium") ); + names->append( tr("Samarium") ); + names->append( tr("Europium") ); + names->append( tr("Gadolinium") ); + names->append( tr("Terbium") ); + names->append( tr("Dysprosium") ); + names->append( tr("Holmium") ); + names->append( tr("Erbium") ); + names->append( tr("Thulium") ); + names->append( tr("Ytterbium") ); + names->append( tr("Lutetium") ); + names->append( tr("Hafnium") ); + names->append( tr("Tantalum") ); + names->append( tr("Tungsten") ); + names->append( tr("Rhenium") ); + names->append( tr("Osmium") ); + names->append( tr("Iridium") ); + names->append( tr("Platinum") ); + names->append( tr("Gold") ); + names->append( tr("Mercury") ); + names->append( tr("Thallium") ); + names->append( tr("Lead") ); + names->append( tr("Bismuth") ); + names->append( tr("Polonium") ); + names->append( tr("Astatine") ); + names->append( tr("Radon") ); + names->append( tr("Francium") ); + names->append( tr("Radium") ); + names->append( tr("Actinium") ); + names->append( tr("Thorium") ); + names->append( tr("Protactinium") ); + names->append( tr("Uranium") ); + names->append( tr("Neptunium") ); + names->append( tr("Plutonium") ); + names->append( tr("Americium") ); + names->append( tr("Curium") ); + names->append( tr("Berkelium") ); + names->append( tr("Californium") ); + names->append( tr("Einsteinium") ); + names->append( tr("Fermium") ); + names->append( tr("Mendelevium") ); + names->append( tr("Nobelium") ); + names->append( tr("Lawrencium") ); + names->append( tr("Rutherfordium") ); + names->append( tr("Dubnium") ); + names->append( tr("Seaborgium") ); + names->append( tr("Bohrium") ); + names->append( tr("Hassium") ); + names->append( tr("Meitnerium") ); +} + diff --git a/noncore/apps/oxygen/datawidgetui.h b/noncore/apps/oxygen/datawidgetui.h index cd716ad..154f4be 100644 --- a/noncore/apps/oxygen/datawidgetui.h +++ b/noncore/apps/oxygen/datawidgetui.h @@ -24,6 +24,8 @@ class OxydataWidget; class OxydataTable; class QComboBox; +class QStringList; + #include <qwidget.h> class dataWidgetUI : public QWidget @@ -32,10 +34,13 @@ class dataWidgetUI : public QWidget public: dataWidgetUI(); + QStringList *names; private: OxydataTable *DataTable; QComboBox *dataCombo; OxydataWidget *oxyDW; + + void loadNames(); }; #endif diff --git a/noncore/apps/oxygen/oxygen.cpp b/noncore/apps/oxygen/oxygen.cpp index b1b5db5..22d1833 100644 --- a/noncore/apps/oxygen/oxygen.cpp +++ b/noncore/apps/oxygen/oxygen.cpp @@ -18,7 +18,6 @@ #include <qapplication.h> #include <qtabwidget.h> -#include <qvaluelist.h> #include "calcdlg.h" #include "calcdlgui.h" @@ -39,119 +38,5 @@ Oxygen::Oxygen() : QMainWindow() tabw->addTab( DataWidgetUI , tr( "Data" ) ); tabw->addTab( CalcDlgUI, tr( "Calculations" ) ); setCentralWidget( tabw ); - - names = new QStringList(); } -void Oxygen::loadNames() -{ - names->append( tr("Hydrogen") ); - names->append( tr("Helium") ); - names->append( tr("Lithium") ); - names->append( tr("Beryllium") ); - names->append( tr("Boron") ); - names->append( tr("Carbon") ); - names->append( tr("Nitrogen") ); - names->append( tr("Oxygen") ); - names->append( tr("Fluorine") ); - names->append( tr("Neon") ); - names->append( tr("Sodium") ); - names->append( tr("Magnesium") ); - names->append( tr("Aluminum") ); - names->append( tr("Silicon") ); - names->append( tr("Phosphorus") ); - names->append( tr("Sulfur") ); - names->append( tr("Chlorine") ); - names->append( tr("Argon") ); - names->append( tr("Potassium") ); - names->append( tr("Calcium") ); - names->append( tr("Scandium") ); - names->append( tr("Titanium") ); - names->append( tr("Vanadium") ); - names->append( tr("Chromium") ); - names->append( tr("Manganese") ); - names->append( tr("Iron") ); - names->append( tr("Cobalt") ); - names->append( tr("Nickel") ); - names->append( tr("Copper") ); - names->append( tr("Zinc") ); - names->append( tr("Gallium") ); - names->append( tr("Germanium") ); - names->append( tr("Arsenic") ); - names->append( tr("Selenium") ); - names->append( tr("Bromine") ); - names->append( tr("Krypton") ); - names->append( tr("Rubidium") ); - names->append( tr("Strontium") ); - names->append( tr("Yttrium") ); - names->append( tr("Zirconium") ); - names->append( tr("Niobium") ); - names->append( tr("Molybdenum") ); - names->append( tr("Technetium") ); - names->append( tr("Ruthenium") ); - names->append( tr("Rhodium") ); - names->append( tr("Palladium") ); - names->append( tr("Silver") ); - names->append( tr("Cadmium") ); - names->append( tr("Indium") ); - names->append( tr("Tin") ); - names->append( tr("Antimony") ); - names->append( tr("Tellurium") ); - names->append( tr("Iodine") ); - names->append( tr("Xenon") ); - names->append( tr("Cesium") ); - names->append( tr("Barium") ); - names->append( tr("Lanthanum") ); - names->append( tr("Cerium") ); - names->append( tr("Praseodymium") ); - names->append( tr("Neodymium") ); - names->append( tr("Promethium") ); - names->append( tr("Samarium") ); - names->append( tr("Europium") ); - names->append( tr("Gadolinium") ); - names->append( tr("Terbium") ); - names->append( tr("Dysprosium") ); - names->append( tr("Holmium") ); - names->append( tr("Erbium") ); - names->append( tr("Thulium") ); - names->append( tr("Ytterbium") ); - names->append( tr("Lutetium") ); - names->append( tr("Hafnium") ); - names->append( tr("Tantalum") ); - names->append( tr("Tungsten") ); - names->append( tr("Rhenium") ); - names->append( tr("Osmium") ); - names->append( tr("Iridium") ); - names->append( tr("Platinum") ); - names->append( tr("Gold") ); - names->append( tr("Mercury") ); - names->append( tr("Thallium") ); - names->append( tr("Lead") ); - names->append( tr("Bismuth") ); - names->append( tr("Polonium") ); - names->append( tr("Astatine") ); - names->append( tr("Radon") ); - names->append( tr("Francium") ); - names->append( tr("Radium") ); - names->append( tr("Actinium") ); - names->append( tr("Thorium") ); - names->append( tr("Protactinium") ); - names->append( tr("Uranium") ); - names->append( tr("Neptunium") ); - names->append( tr("Plutonium") ); - names->append( tr("Americium") ); - names->append( tr("Curium") ); - names->append( tr("Berkelium") ); - names->append( tr("Californium") ); - names->append( tr("Einsteinium") ); - names->append( tr("Fermium") ); - names->append( tr("Mendelevium") ); - names->append( tr("Nobelium") ); - names->append( tr("Lawrencium") ); - names->append( tr("Rutherfordium") ); - names->append( tr("Dubnium") ); - names->append( tr("Seaborgium") ); - names->append( tr("Bohrium") ); - names->append( tr("Hassium") ); - names->append( tr("Meitnerium") ); -} diff --git a/noncore/apps/oxygen/oxygen.h b/noncore/apps/oxygen/oxygen.h index 0b7655a..36ee9bc 100644 --- a/noncore/apps/oxygen/oxygen.h +++ b/noncore/apps/oxygen/oxygen.h @@ -9,15 +9,12 @@ #include <qmainwindow.h> -class QStringList; - class Oxygen : public QMainWindow { Q_OBJECT public: Oxygen(); - QStringList *names; private: void loadNames(); |