summaryrefslogtreecommitdiff
path: root/noncore/apps/oxygen/datawidgetui.cpp
authorcniehaus <cniehaus>2002-09-17 14:06:12 (UTC)
committer cniehaus <cniehaus>2002-09-17 14:06:12 (UTC)
commit62b5cd2ee8eb65d11467ce7469505788ef2280d5 (patch) (unidiff)
tree2beb7d27c7a0f31b89d5f4ee80b4c5437888000f /noncore/apps/oxygen/datawidgetui.cpp
parentbb15715567b88dd01f074092c1c4c3b7e0702693 (diff)
downloadopie-62b5cd2ee8eb65d11467ce7469505788ef2280d5.zip
opie-62b5cd2ee8eb65d11467ce7469505788ef2280d5.tar.gz
opie-62b5cd2ee8eb65d11467ce7469505788ef2280d5.tar.bz2
Heureka! It works. Took only 3 hours for 5 LOC. Super
Diffstat (limited to 'noncore/apps/oxygen/datawidgetui.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/oxygen/datawidgetui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/apps/oxygen/datawidgetui.cpp b/noncore/apps/oxygen/datawidgetui.cpp
index 0f8a146..c8492e5 100644
--- a/noncore/apps/oxygen/datawidgetui.cpp
+++ b/noncore/apps/oxygen/datawidgetui.cpp
@@ -1,85 +1,85 @@
1/*************************************************************************** 1/***************************************************************************
2 * * 2 * *
3 * This program is free software; you can redistribute it and/or modify * 3 * This program is free software; you can redistribute it and/or modify *
4 * it under the terms of the GNU General Public License as published by * 4 * it under the terms of the GNU General Public License as published by *
5 * the Free Software Foundation; either version 2 of the License, or * 5 * the Free Software Foundation; either version 2 of the License, or *
6 * ( at your option ) any later version. * 6 * ( at your option ) any later version. *
7 * * 7 * *
8 **************************************************************************/ 8 **************************************************************************/
9#include "oxygen.h" 9#include "oxygen.h"
10 10
11#include <qpe/config.h> 11#include <qpe/config.h>
12#include "datawidgetui.h" 12#include "datawidgetui.h"
13#include <qtable.h>
14#include <qstring.h> 13#include <qstring.h>
15#include <qcombobox.h> 14#include <qcombobox.h>
16#include <qlayout.h> 15#include <qlayout.h>
17 16
18dataWidgetUI::dataWidgetUI() : QDialog() 17dataWidgetUI::dataWidgetUI() : QDialog()
19{ 18{
20 this->setCaption("foo"); 19 this->setCaption("Chemical Data");
21 20
22 QVBoxLayout *vbox = new QVBoxLayout( this ); 21 QVBoxLayout *vbox = new QVBoxLayout( this );
23 22
24 dataCombo = new QComboBox( this ); 23 dataCombo = new QComboBox( this );
25 DataTable = new OxydataTable( 7,2, this ); 24 DataTable = new OxydataTable( 7,2, this );
25 DataTable->setShowGrid( false );
26 26
27 vbox->addWidget( dataCombo ); 27 vbox->addWidget( dataCombo );
28 vbox->addWidget( DataTable ); 28 vbox->addWidget( DataTable );
29 29
30 DataTable->show(); 30 DataTable->show();
31 dataCombo->show(); 31 dataCombo->show();
32 32
33 connect ( dataCombo, SIGNAL( activated(int) ), this, SLOT( slotShowData(int) ) ); 33 connect ( dataCombo, SIGNAL( activated(int) ), this, SLOT( slotShowData(int) ) );
34 Config test( "/home/opie/Settings/oxygendata", Config::File ); 34 Config test( "/home/opie/Settings/oxygendata", Config::File );
35 35
36 //read in all names of the 118 elements 36 //read in all names of the 118 elements
37 for ( int i = 1 ; i < 119 ; i++ ) 37 for ( int i = 1 ; i < 119 ; i++ )
38 { 38 {
39 test.setGroup( QString::number( i ) ); 39 test.setGroup( QString::number( i ) );
40 QString foo = test.readEntry( "Name" ); 40 QString foo = test.readEntry( "Name" );
41 dataCombo->insertItem( foo ); 41 dataCombo->insertItem( foo );
42 } 42 }
43 43
44 createTableLayout(); 44 createTableLayout();
45 slotShowData( 1 ); //this way we do always get data here 45 slotShowData( 1 ); //this way we do always get data here
46 46
47} 47}
48 48
49void dataWidgetUI::createTableLayout(){ 49void dataWidgetUI::createTableLayout(){
50 DataTable->horizontalHeader()->hide(); 50 DataTable->horizontalHeader()->hide();
51 DataTable->verticalHeader()->hide(); 51 DataTable->verticalHeader()->hide();
52 DataTable->setTopMargin( 0 ); 52 DataTable->setTopMargin( 0 );
53 DataTable->setLeftMargin( 0 ); 53 DataTable->setLeftMargin( 0 );
54 54
55 DataTable->setText( 0,0,"Weight:" ); 55 DataTable->setText( 0,0,"Weight:" );
56 DataTable->setText( 1,0,"Block" ); 56 DataTable->setText( 1,0,"Block" );
57 DataTable->setText( 2,0,"Group" ); 57 DataTable->setText( 2,0,"Group" );
58 DataTable->setText( 3,0,"Electronegativity" ); 58 DataTable->setText( 3,0,"Electronegativity" );
59 DataTable->setText( 4,0,"Atomic radius" ); 59 DataTable->setText( 4,0,"Atomic radius" );
60 DataTable->setText( 5,0,"Ionizationenergie" ); 60 DataTable->setText( 5,0,"Ionizationenergie" );
61 DataTable->setText( 6,0,"Density" ); 61 DataTable->setText( 6,0,"Density" );
62 DataTable->setText( 7,0,"Boilingpoint" ); 62 DataTable->setText( 7,0,"Boilingpoint" );
63} 63}
64 64
65 65
66void dataWidgetUI::slotShowData(int number){ 66void dataWidgetUI::slotShowData(int number){
67 Config test( "/home/opie/Settings/oxygendata", Config::File ); 67 Config test( "/home/opie/Settings/oxygendata", Config::File );
68 test.setGroup( QString::number( number+1 )); 68 test.setGroup( QString::number( number+1 ));
69 QString weight = test.readEntry( "Weight" ); 69 QString weight = test.readEntry( "Weight" );
70 DataTable->setText( 0,1,weight ); 70 DataTable->setText( 0,1,weight );
71 QString block = test.readEntry( "Block" ); 71 QString block = test.readEntry( "Block" );
72 DataTable->setText( 1,1,block ); 72 DataTable->setText( 1,1,block );
73 QString grp = test.readEntry( "Group" ); 73 QString grp = test.readEntry( "Group" );
74 DataTable->setText( 2,1,grp ); 74 DataTable->setText( 2,1,grp );
75 QString en = test.readEntry( "EN" ); 75 QString en = test.readEntry( "EN" );
76 DataTable->setText( 3,1,en ); 76 DataTable->setText( 3,1,en );
77 QString ar = test.readEntry( "AR" ); 77 QString ar = test.readEntry( "AR" );
78 DataTable->setText( 4,1,ar ) ; 78 DataTable->setText( 4,1,ar ) ;
79 QString ion = test.readEntry( "IE" ); 79 QString ion = test.readEntry( "IE" );
80 DataTable->setText( 5,1,ion ); 80 DataTable->setText( 5,1,ion );
81 QString dens = test.readEntry( "Density" ); 81 QString dens = test.readEntry( "Density" );
82 DataTable->setText( 6,1,dens ); 82 DataTable->setText( 6,1,dens );
83 QString bp = test.readEntry( "BP" ); 83 QString bp = test.readEntry( "BP" );
84 DataTable->setText( 7,1,bp ); 84 DataTable->setText( 7,1,bp );
85} 85}