summaryrefslogtreecommitdiff
path: root/noncore/apps/oxygen/dataTable.h
Side-by-side diff
Diffstat (limited to 'noncore/apps/oxygen/dataTable.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/oxygen/dataTable.h31
1 files changed, 30 insertions, 1 deletions
diff --git a/noncore/apps/oxygen/dataTable.h b/noncore/apps/oxygen/dataTable.h
index 908d241..624e8bd 100644
--- a/noncore/apps/oxygen/dataTable.h
+++ b/noncore/apps/oxygen/dataTable.h
@@ -13,4 +13,33 @@
+#include <qwidget.h>
#include <qtable.h>
+class QLabel;
+class OxydataTable;
+
+class OxydataWidget : public QWidget
+{
+ Q_OBJECT
+
+ public:
+ OxydataWidget(QWidget *parent=0);
+
+ QLabel *left, *middle, *right;
+
+ private:
+ OxydataTable *DataTable;
+ void setTable();
+
+ public slots:
+ void setElement( int );
+};
+
+/*
+ * A OxydataTable is derived from QTable. I recoded the paintCell to have
+ * different colors in the backgound. Furthermore this widget never has a
+ * grid, thus I removed that code in paintCell.
+ *
+ * Author: Carsten Niehaus <cniehaus@handhelds.org>
+ */
+
class OxydataTable : public QTable
@@ -28,3 +57,3 @@ class OxydataTable : public QTable
*/
- virtual void paintCell( QPainter *p, int row, int col, const QRect &cr, bool selected );
+ virtual void paintCell( QPainter *p, int row, int col, const QRect &cr, bool selected );
};