home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / base / 006-devel.lzm / usr / include / KDChartTableDataWrapper.h < prev    next >
Encoding:
C/C++ Source or Header  |  2007-05-30  |  752 b   |  30 lines

  1. #ifndef KDCHARTTABLEDATAWRAPPER_H
  2. #define KDCHARTTABLEDATAWRAPPER_H
  3. #include <qobject.h>
  4. #include <KDChartTable.h>
  5. class KDChartData;
  6.  
  7. class KDChartTableDataWrapper :public QObject
  8. {
  9.     Q_OBJECT
  10. public:
  11.     KDChartTableDataWrapper( KDChartTableData* );
  12. public slots:
  13. /*
  14.     QVariant cell( uint _row, uint _col );
  15.     void setCell( uint _row, uint _col,
  16.                   const QVariant& _value1,
  17.                   const QVariant& _value2=QVariant() );
  18.     void setCell( uint _row, uint _col, double _element );
  19.  
  20.     // PENDING(blackie) This one do not work, due to QSA bug regarding function overloading.
  21.     void setCell( uint _row, uint _col, QString _element );
  22. */
  23. private:
  24.     KDChartTableData* _data;
  25. };
  26.  
  27.  
  28. #endif /* KDCHARTTABLEDATAWRAPPER_H */
  29.  
  30.