summaryrefslogtreecommitdiff
path: root/noncore/apps/oxygen/psewidget.h
Side-by-side diff
Diffstat (limited to 'noncore/apps/oxygen/psewidget.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/oxygen/psewidget.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/noncore/apps/oxygen/psewidget.h b/noncore/apps/oxygen/psewidget.h
index 9f574ce..3ea58e3 100644
--- a/noncore/apps/oxygen/psewidget.h
+++ b/noncore/apps/oxygen/psewidget.h
@@ -40,37 +40,42 @@ class Element
QString elie() const{ return ie; };
QString elnum() const{ return num; };
QString elaz() const{ return az; };
QString eldate() const{ return date; };
QString elen() const{ return en; };
QString elmp() const{ return mp; };
QString elbp() const{ return bp; };
QString elar() const{ return ar; };
private:
QString name, // The name of the element
weight, // weight
density, // density
group, // group
ie, // ionisationenergie
num, // number ( e.g. Carbon is 6 )
az, // state of aggregation
date, // date of discovery
en, // electronegativity
mp, // meltingpoint
bp, // boilingpoint
ar; // atomic radius
};
+class QGridLayout;
+
class PSEWidget : public QWidget
{
Q_OBJECT
public:
PSEWidget();
+ QGridLayout *bottom_grid;
private:
QGridLayout *maingrid;
+
+ void position( int, int&, int& );
};
#endif