summaryrefslogtreecommitdiff
path: root/noncore/apps
Side-by-side diff
Diffstat (limited to 'noncore/apps') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/oxygen/datawidgetui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/apps/oxygen/datawidgetui.cpp b/noncore/apps/oxygen/datawidgetui.cpp
index b9000fa..68c025f 100644
--- a/noncore/apps/oxygen/datawidgetui.cpp
+++ b/noncore/apps/oxygen/datawidgetui.cpp
@@ -1,139 +1,139 @@
/***************************************************************************
application: : Oxygen
begin : September 2002
copyright : ( C ) 2002 by Carsten Niehaus
email : cniehaus@handhelds.org
**************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* ( at your option ) any later version. *
* *
**************************************************************************/
#include "datawidgetui.h"
#include "dataTable.h"
#include <qpe/config.h>
#include <qstring.h>
#include <qcombobox.h>
#include <qlayout.h>
#include <qhbox.h>
#include <qlabel.h>
#include <qpe/qpeapplication.h>
dataWidgetUI::dataWidgetUI() : QWidget()
{
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
int i = 0;
for ( QStringList::Iterator it = names->begin() ; it != names->end() ; ++it,i++)
{
- dataCombo->insertItem( QString::number( i )+" - "+*it );
+ dataCombo->insertItem( QString::number( i+1 )+" - "+*it );
}
OxydataWidget *oxyDW = new OxydataWidget(this, "OxydataWidget_oxyDW", names);
connect ( dataCombo, SIGNAL( activated(int) ), oxyDW, SLOT( setElement(int) ) );
oxyDW->setElement( 0 );
oxyDW->setLayout();
qgrid->addWidget( dataCombo, 0,0);
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") );