summaryrefslogtreecommitdiff
path: root/noncore/apps/oxygen/datawidgetui.cpp
blob: dcb80e5fbb8d029d558102f0683830123c91a640 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/***************************************************************************
   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 <qcombobox.h>
#include <qlayout.h>

dataWidgetUI::dataWidgetUI(const QStringList &list) : QWidget()
{
	names = list;
	
	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::ConstIterator it =  names.begin() ; it != names.end() ; ++it,i++)
    {
        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 );
}