author | cniehaus <cniehaus> | 2002-12-01 12:38:02 (UTC) |
---|---|---|
committer | cniehaus <cniehaus> | 2002-12-01 12:38:02 (UTC) |
commit | beb043f41e232e9dc8768e5fd619c2b80e805f73 (patch) (unidiff) | |
tree | 0ae928be4830d3e1ac4e2b55ffc4635cb86944bd | |
parent | 666313593479c03cdc88bd8fde926af181cb8423 (diff) | |
download | opie-beb043f41e232e9dc8768e5fd619c2b80e805f73.zip opie-beb043f41e232e9dc8768e5fd619c2b80e805f73.tar.gz opie-beb043f41e232e9dc8768e5fd619c2b80e805f73.tar.bz2 |
typos
-rw-r--r-- | noncore/apps/oxygen/TODO | 6 | ||||
-rw-r--r-- | noncore/apps/oxygen/oxyframe.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/noncore/apps/oxygen/TODO b/noncore/apps/oxygen/TODO index a6911f6..d1b2a28 100644 --- a/noncore/apps/oxygen/TODO +++ b/noncore/apps/oxygen/TODO | |||
@@ -1,19 +1,19 @@ | |||
1 | TODO: | 1 | TODO: |
2 | 2 | ||
3 | small things: | 3 | small things: |
4 | * there are bug in the layouting of the table | 4 | * there are bugs in the layouting of the table |
5 | * Elementar symbols should be small enough to fit the boxes | 5 | * Elementar symbols should be small enough to fit the boxes |
6 | (font problem?) | 6 | (font problem?) |
7 | 7 | ||
8 | big things: | 8 | big things: |
9 | * backport the conversions from Kalzium (http://edu.kde.org/kalzium) | 9 | * backport the conversions from Kalzium (http://edu.kde.org/kalzium) |
10 | * backport more dataset from Kalzium | 10 | * backport more dataset from Kalzium |
11 | * make the colors configurable | 11 | * make the colors configurable |
12 | * make elements sortable by their attributes (e.g. density) | 12 | * make elements sortable by their attributes (e.g. density) |
13 | * graph of attribute (e.g. ionisationenergie) vs atomnumber? | 13 | * graph of attribute (e.g. ionisationenergie) vs atomnumber? |
14 | 14 | ||
15 | wishes: | 15 | wishes: |
16 | * add radio active decay | 16 | * add radio active decay |
17 | * let the use choose the units | 17 | * let the user choose the units |
18 | i.e. pm <-> \AA; J <-> eV <-> Hartree; K <-> °C | 18 | i.e. pm <-> \AA; J <-> eV <-> Hartree; K <-> °C |
19 | * add aditional attributes: oxidation numbers, different radii | 19 | * add additional attributes: oxidation numbers, different radii |
diff --git a/noncore/apps/oxygen/oxyframe.h b/noncore/apps/oxygen/oxyframe.h index 9736ea9..4b25525 100644 --- a/noncore/apps/oxygen/oxyframe.h +++ b/noncore/apps/oxygen/oxyframe.h | |||
@@ -1,41 +1,41 @@ | |||
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 | #ifndef _OXYFRAME_H | 17 | #ifndef _OXYFRAME_H |
18 | #define _OXYFRAME_H | 18 | #define _OXYFRAME_H |
19 | 19 | ||
20 | 20 | ||
21 | #include <qlabel.h> | 21 | #include <qlabel.h> |
22 | 22 | ||
23 | class OxyFrame : public QLabel | 23 | class OxyFrame : public QLabel |
24 | { | 24 | { |
25 | Q_OBJECT | 25 | Q_OBJECT |
26 | 26 | ||
27 | public: | 27 | public: |
28 | OxyFrame( QWidget *parent=0, const char *name=0, QString symbol="" ); | 28 | OxyFrame( QWidget *parent=0, const char *name=0, QString symbol="" ); |
29 | 29 | ||
30 | void mousePressEvent( QMouseEvent *); | 30 | void mousePressEvent( QMouseEvent *); |
31 | 31 | ||
32 | QString N; | 32 | QString N; |
33 | 33 | ||
34 | signals: | 34 | signals: |
35 | /* | 35 | /* |
36 | * this signal emits the name ( the elemen-number ) | 36 | * this signal emits the name (the element-number) |
37 | */ | 37 | */ |
38 | void num(QString); | 38 | void num(QString); |
39 | }; | 39 | }; |
40 | 40 | ||
41 | #endif | 41 | #endif |