summaryrefslogtreecommitdiff
authorcniehaus <cniehaus>2002-12-26 15:36:25 (UTC)
committer cniehaus <cniehaus>2002-12-26 15:36:25 (UTC)
commitd43d455080cd462340401233f9806d04e3cb0751 (patch) (unidiff)
tree7cbb342f104dd3dd7c6812022dfcf866e395f906
parent05f9d02f9b6586280f1075fbb5bbf938bb11a235 (diff)
downloadopie-d43d455080cd462340401233f9806d04e3cb0751.zip
opie-d43d455080cd462340401233f9806d04e3cb0751.tar.gz
opie-d43d455080cd462340401233f9806d04e3cb0751.tar.bz2
Fixing stupid numerationbug
@@ -40,7 +40,7 @@ dataWidgetUI::dataWidgetUI() : QWidget() 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);
Diffstat (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,167 +1,167 @@
1/*************************************************************************** 1/***************************************************************************
2 application: : Oxygen 2 application: : Oxygen
3 3
4 begin : September 2002 4 begin : September 2002
5 copyright : ( C ) 2002 by Carsten Niehaus 5 copyright : ( C ) 2002 by Carsten Niehaus
6 email : cniehaus@handhelds.org 6 email : cniehaus@handhelds.org
7 **************************************************************************/ 7 **************************************************************************/
8 8
9/*************************************************************************** 9/***************************************************************************
10 * * 10 * *
11 * This program is free software; you can redistribute it and/or modify * 11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by * 12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or * 13 * the Free Software Foundation; either version 2 of the License, or *
14 * ( at your option ) any later version. * 14 * ( at your option ) any later version. *
15 * * 15 * *
16 **************************************************************************/ 16 **************************************************************************/
17 17
18#include "datawidgetui.h" 18#include "datawidgetui.h"
19#include "dataTable.h" 19#include "dataTable.h"
20 20
21#include <qpe/config.h> 21#include <qpe/config.h>
22#include <qstring.h> 22#include <qstring.h>
23#include <qcombobox.h> 23#include <qcombobox.h>
24#include <qlayout.h> 24#include <qlayout.h>
25#include <qhbox.h> 25#include <qhbox.h>
26#include <qlabel.h> 26#include <qlabel.h>
27#include <qpe/qpeapplication.h> 27#include <qpe/qpeapplication.h>
28 28
29dataWidgetUI::dataWidgetUI() : QWidget() 29dataWidgetUI::dataWidgetUI() : QWidget()
30{ 30{
31 names = newQStringList(); 31 names = newQStringList();
32 loadNames(); 32 loadNames();
33 33
34 this->setCaption( tr( "Chemical Data" )); 34 this->setCaption( tr( "Chemical Data" ));
35 QGridLayout *qgrid = new QGridLayout( this, 2,1 ); 35 QGridLayout *qgrid = new QGridLayout( this, 2,1 );
36 36
37 dataCombo = new QComboBox( this ); 37 dataCombo = new QComboBox( this );
38 38
39 //read in all names of the 118 elements 39 //read in all names of the 118 elements
40 int i = 0; 40 int i = 0;
41 for ( QStringList::Iterator it = names->begin() ; it != names->end() ; ++it,i++) 41 for ( QStringList::Iterator it = names->begin() ; it != names->end() ; ++it,i++)
42 { 42 {
43 dataCombo->insertItem( QString::number( i )+" - "+*it ); 43 dataCombo->insertItem( QString::number( i+1 )+" - "+*it );
44 } 44 }
45 45
46 OxydataWidget *oxyDW = new OxydataWidget(this, "OxydataWidget_oxyDW", names); 46 OxydataWidget *oxyDW = new OxydataWidget(this, "OxydataWidget_oxyDW", names);
47 connect ( dataCombo, SIGNAL( activated(int) ), oxyDW, SLOT( setElement(int) ) ); 47 connect ( dataCombo, SIGNAL( activated(int) ), oxyDW, SLOT( setElement(int) ) );
48 oxyDW->setElement( 0 ); 48 oxyDW->setElement( 0 );
49 oxyDW->setLayout(); 49 oxyDW->setLayout();
50 50
51 qgrid->addWidget( dataCombo, 0,0); 51 qgrid->addWidget( dataCombo, 0,0);
52 qgrid->addWidget( oxyDW , 1,0 ); 52 qgrid->addWidget( oxyDW , 1,0 );
53} 53}
54 54
55void dataWidgetUI::loadNames() 55void dataWidgetUI::loadNames()
56{ 56{
57 names->append( tr("Hydrogen") ); 57 names->append( tr("Hydrogen") );
58 names->append( tr("Helium") ); 58 names->append( tr("Helium") );
59 names->append( tr("Lithium") ); 59 names->append( tr("Lithium") );
60 names->append( tr("Beryllium") ); 60 names->append( tr("Beryllium") );
61 names->append( tr("Boron") ); 61 names->append( tr("Boron") );
62 names->append( tr("Carbon") ); 62 names->append( tr("Carbon") );
63 names->append( tr("Nitrogen") ); 63 names->append( tr("Nitrogen") );
64 names->append( tr("Oxygen") ); 64 names->append( tr("Oxygen") );
65 names->append( tr("Fluorine") ); 65 names->append( tr("Fluorine") );
66 names->append( tr("Neon") ); 66 names->append( tr("Neon") );
67 names->append( tr("Sodium") ); 67 names->append( tr("Sodium") );
68 names->append( tr("Magnesium") ); 68 names->append( tr("Magnesium") );
69 names->append( tr("Aluminum") ); 69 names->append( tr("Aluminum") );
70 names->append( tr("Silicon") ); 70 names->append( tr("Silicon") );
71 names->append( tr("Phosphorus") ); 71 names->append( tr("Phosphorus") );
72 names->append( tr("Sulfur") ); 72 names->append( tr("Sulfur") );
73 names->append( tr("Chlorine") ); 73 names->append( tr("Chlorine") );
74 names->append( tr("Argon") ); 74 names->append( tr("Argon") );
75 names->append( tr("Potassium") ); 75 names->append( tr("Potassium") );
76 names->append( tr("Calcium") ); 76 names->append( tr("Calcium") );
77 names->append( tr("Scandium") ); 77 names->append( tr("Scandium") );
78 names->append( tr("Titanium") ); 78 names->append( tr("Titanium") );
79 names->append( tr("Vanadium") ); 79 names->append( tr("Vanadium") );
80 names->append( tr("Chromium") ); 80 names->append( tr("Chromium") );
81 names->append( tr("Manganese") ); 81 names->append( tr("Manganese") );
82 names->append( tr("Iron") ); 82 names->append( tr("Iron") );
83 names->append( tr("Cobalt") ); 83 names->append( tr("Cobalt") );
84 names->append( tr("Nickel") ); 84 names->append( tr("Nickel") );
85 names->append( tr("Copper") ); 85 names->append( tr("Copper") );
86 names->append( tr("Zinc") ); 86 names->append( tr("Zinc") );
87 names->append( tr("Gallium") ); 87 names->append( tr("Gallium") );
88 names->append( tr("Germanium") ); 88 names->append( tr("Germanium") );
89 names->append( tr("Arsenic") ); 89 names->append( tr("Arsenic") );
90 names->append( tr("Selenium") ); 90 names->append( tr("Selenium") );
91 names->append( tr("Bromine") ); 91 names->append( tr("Bromine") );
92 names->append( tr("Krypton") ); 92 names->append( tr("Krypton") );
93 names->append( tr("Rubidium") ); 93 names->append( tr("Rubidium") );
94 names->append( tr("Strontium") ); 94 names->append( tr("Strontium") );
95 names->append( tr("Yttrium") ); 95 names->append( tr("Yttrium") );
96 names->append( tr("Zirconium") ); 96 names->append( tr("Zirconium") );
97 names->append( tr("Niobium") ); 97 names->append( tr("Niobium") );
98 names->append( tr("Molybdenum") ); 98 names->append( tr("Molybdenum") );
99 names->append( tr("Technetium") ); 99 names->append( tr("Technetium") );
100 names->append( tr("Ruthenium") ); 100 names->append( tr("Ruthenium") );
101 names->append( tr("Rhodium") ); 101 names->append( tr("Rhodium") );
102 names->append( tr("Palladium") ); 102 names->append( tr("Palladium") );
103 names->append( tr("Silver") ); 103 names->append( tr("Silver") );
104 names->append( tr("Cadmium") ); 104 names->append( tr("Cadmium") );
105 names->append( tr("Indium") ); 105 names->append( tr("Indium") );
106 names->append( tr("Tin") ); 106 names->append( tr("Tin") );
107 names->append( tr("Antimony") ); 107 names->append( tr("Antimony") );
108 names->append( tr("Tellurium") ); 108 names->append( tr("Tellurium") );
109 names->append( tr("Iodine") ); 109 names->append( tr("Iodine") );
110 names->append( tr("Xenon") ); 110 names->append( tr("Xenon") );
111 names->append( tr("Cesium") ); 111 names->append( tr("Cesium") );
112 names->append( tr("Barium") ); 112 names->append( tr("Barium") );
113 names->append( tr("Lanthanum") ); 113 names->append( tr("Lanthanum") );
114 names->append( tr("Cerium") ); 114 names->append( tr("Cerium") );
115 names->append( tr("Praseodymium") ); 115 names->append( tr("Praseodymium") );
116 names->append( tr("Neodymium") ); 116 names->append( tr("Neodymium") );
117 names->append( tr("Promethium") ); 117 names->append( tr("Promethium") );
118 names->append( tr("Samarium") ); 118 names->append( tr("Samarium") );
119 names->append( tr("Europium") ); 119 names->append( tr("Europium") );
120 names->append( tr("Gadolinium") ); 120 names->append( tr("Gadolinium") );
121 names->append( tr("Terbium") ); 121 names->append( tr("Terbium") );
122 names->append( tr("Dysprosium") ); 122 names->append( tr("Dysprosium") );
123 names->append( tr("Holmium") ); 123 names->append( tr("Holmium") );
124 names->append( tr("Erbium") ); 124 names->append( tr("Erbium") );
125 names->append( tr("Thulium") ); 125 names->append( tr("Thulium") );
126 names->append( tr("Ytterbium") ); 126 names->append( tr("Ytterbium") );
127 names->append( tr("Lutetium") ); 127 names->append( tr("Lutetium") );
128 names->append( tr("Hafnium") ); 128 names->append( tr("Hafnium") );
129 names->append( tr("Tantalum") ); 129 names->append( tr("Tantalum") );
130 names->append( tr("Tungsten") ); 130 names->append( tr("Tungsten") );
131 names->append( tr("Rhenium") ); 131 names->append( tr("Rhenium") );
132 names->append( tr("Osmium") ); 132 names->append( tr("Osmium") );
133 names->append( tr("Iridium") ); 133 names->append( tr("Iridium") );
134 names->append( tr("Platinum") ); 134 names->append( tr("Platinum") );
135 names->append( tr("Gold") ); 135 names->append( tr("Gold") );
136 names->append( tr("Mercury") ); 136 names->append( tr("Mercury") );
137 names->append( tr("Thallium") ); 137 names->append( tr("Thallium") );
138 names->append( tr("Lead") ); 138 names->append( tr("Lead") );
139 names->append( tr("Bismuth") ); 139 names->append( tr("Bismuth") );
140 names->append( tr("Polonium") ); 140 names->append( tr("Polonium") );
141 names->append( tr("Astatine") ); 141 names->append( tr("Astatine") );
142 names->append( tr("Radon") ); 142 names->append( tr("Radon") );
143 names->append( tr("Francium") ); 143 names->append( tr("Francium") );
144 names->append( tr("Radium") ); 144 names->append( tr("Radium") );
145 names->append( tr("Actinium") ); 145 names->append( tr("Actinium") );
146 names->append( tr("Thorium") ); 146 names->append( tr("Thorium") );
147 names->append( tr("Protactinium") ); 147 names->append( tr("Protactinium") );
148 names->append( tr("Uranium") ); 148 names->append( tr("Uranium") );
149 names->append( tr("Neptunium") ); 149 names->append( tr("Neptunium") );
150 names->append( tr("Plutonium") ); 150 names->append( tr("Plutonium") );
151 names->append( tr("Americium") ); 151 names->append( tr("Americium") );
152 names->append( tr("Curium") ); 152 names->append( tr("Curium") );
153 names->append( tr("Berkelium") ); 153 names->append( tr("Berkelium") );
154 names->append( tr("Californium") ); 154 names->append( tr("Californium") );
155 names->append( tr("Einsteinium") ); 155 names->append( tr("Einsteinium") );
156 names->append( tr("Fermium") ); 156 names->append( tr("Fermium") );
157 names->append( tr("Mendelevium") ); 157 names->append( tr("Mendelevium") );
158 names->append( tr("Nobelium") ); 158 names->append( tr("Nobelium") );
159 names->append( tr("Lawrencium") ); 159 names->append( tr("Lawrencium") );
160 names->append( tr("Rutherfordium") ); 160 names->append( tr("Rutherfordium") );
161 names->append( tr("Dubnium") ); 161 names->append( tr("Dubnium") );
162 names->append( tr("Seaborgium") ); 162 names->append( tr("Seaborgium") );
163 names->append( tr("Bohrium") ); 163 names->append( tr("Bohrium") );
164 names->append( tr("Hassium") ); 164 names->append( tr("Hassium") );
165 names->append( tr("Meitnerium") ); 165 names->append( tr("Meitnerium") );
166} 166}
167 167