author | cniehaus <cniehaus> | 2002-11-20 21:01:34 (UTC) |
---|---|---|
committer | cniehaus <cniehaus> | 2002-11-20 21:01:34 (UTC) |
commit | 19cec7475afb19b9a3096a5e01a87ae80690ce21 (patch) (side-by-side diff) | |
tree | 31462f9c562e98d0bd90fdbda8e5da7c86a5b767 | |
parent | 285affa7c824482953eb82417e9e5c2f7f9e0058 (diff) | |
download | opie-19cec7475afb19b9a3096a5e01a87ae80690ce21.zip opie-19cec7475afb19b9a3096a5e01a87ae80690ce21.tar.gz opie-19cec7475afb19b9a3096a5e01a87ae80690ce21.tar.bz2 |
why the hell is my layout not working?
-rw-r--r-- | noncore/apps/oxygen/TODO | 6 | ||||
-rw-r--r-- | noncore/apps/oxygen/dataTable.cpp | 4 |
2 files changed, 4 insertions, 6 deletions
diff --git a/noncore/apps/oxygen/TODO b/noncore/apps/oxygen/TODO index c81fc26..32acfcd 100644 --- a/noncore/apps/oxygen/TODO +++ b/noncore/apps/oxygen/TODO @@ -1,18 +1,16 @@ TODO: small things: * there are bug in the layouting of the table * Elementar symbols should be small enough to fit the boxes (font problem?) - big things: * backport the conversions from Kalzium (http://edu.kde.org/kalzium) * backport more dataset from Kalzium -* make the colors confiurable -* graphical analysation (KalziumGraph.cpp/h) +* make the colors configurable * make elements sortable by their attributes (e.g. density) * graph of attribute (e.g. ionisationenergie) vs atomnumber? wishes: -* add radio active decay
\ No newline at end of file +* add radio active decay diff --git a/noncore/apps/oxygen/dataTable.cpp b/noncore/apps/oxygen/dataTable.cpp index 82b425e..16aa462 100644 --- a/noncore/apps/oxygen/dataTable.cpp +++ b/noncore/apps/oxygen/dataTable.cpp @@ -85,18 +85,18 @@ void OxydataWidget::setTable() const } void OxydataWidget::setLayout() { #warning this is not working and I have no idea why! // DataTable->setColumnWidth ( 0 , this->width()/2 ); // DataTable->setColumnWidth ( 1 , this->width()/2 ); - DataTable->setColumnWidth ( 0 , 110 ); - DataTable->setColumnWidth ( 1 , 110 ); +//X DataTable->setColumnWidth ( 0 , 110 ); +//X DataTable->setColumnWidth ( 1 , 110 ); } OxydataTable::OxydataTable(int numRows, int numCols, QWidget *parent, const char *name) : QTable(numRows, numCols,parent, name) { for (int zeile = 0; zeile < numRows; zeile++) for ( int spalte = 0; spalte < numCols; spalte++ ) |