summaryrefslogtreecommitdiff
path: root/noncore/apps/oxygen/dataTable.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/dataTable.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/dataTable.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/oxygen/dataTable.cpp29
1 files changed, 11 insertions, 18 deletions
diff --git a/noncore/apps/oxygen/dataTable.cpp b/noncore/apps/oxygen/dataTable.cpp
index f03e973..6c6b9dc 100644
--- a/noncore/apps/oxygen/dataTable.cpp
+++ b/noncore/apps/oxygen/dataTable.cpp
@@ -7,41 +7,34 @@
7 * * 7 * *
8 **************************************************************************/ 8 **************************************************************************/
9#include "oxygen.h" 9#include "oxygen.h"
10 10
11#include "dataTable.h" 11#include "dataTable.h"
12#include <qtable.h> 12#include <qtable.h>
13 13
14OxydataTable::OxydataTable(int numRows, int numCols, QWidget *parent, 14OxydataTable::OxydataTable(int numRows, int numCols, QWidget *parent,
15 const char *name) : QTable(numRows, numRows, parent, name) 15 const char *name) : QTable(numRows, numRows, parent, name)
16{ 16{
17} 17}
18 18
19
20void OxydataTable::paintCell( QPainter *p, int row, int col, const QRect &cr, bool selected) 19void OxydataTable::paintCell( QPainter *p, int row, int col, const QRect &cr, bool selected)
21{ 20{
22 if ( cr.width() == 0 || cr.height() == 0 ) 21 if ( cr.width() == 0 || cr.height() == 0 )
23 return; 22 return;
24 if ( selected && 23 selected = FALSE;
25 row == currentRow() &&
26 col == currentColumn() )
27 selected = FALSE;
28 24
29 int w = cr.width(); 25 int w = cr.width();
30 int h = cr.height(); 26 int h = cr.height();
31 27
32 QTableItem *itm = item( row, col ); 28 QTableItem *itm = item( row, col );
33 if ( itm ) { 29 QColorGroup colgrp = colorGroup();
30 if ( itm )
31 {
32 if ( row%2 )
33 colgrp.setColor( QColorGroup::Base, QColor( cyan ) );
34 else
35 colgrp.setColor( QColorGroup::Base, QColor( white ) );
34 p->save(); 36 p->save();
35 itm->paint( p, colorGroup(), cr, selected ); 37 itm->paint( p, colgrp, cr, selected );
36 p->restore(); 38 p->restore();
37 } else {
38 if ( currentRow()%2 ) //every even row
39 p->fillRect( 0, 0, w, h, selected ? colorGroup().brush( QColorGroup::Highlight ) : colorGroup().brush( QColorGroup::Base ) );
40 else //every odd row
41 p->fillRect( 0, 0, w, h, selected ? colorGroup().brush( QColorGroup::Highlight ) : colorGroup().brush( QColorGroup::Base ) );
42 } 39 }
43} 40}
44
45
46
47