| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 | 
							- // xlsxcell.h
 
- #ifndef QXLSX_XLSXCELL_H
 
- #define QXLSX_XLSXCELL_H
 
- #include "xlsxformat.h"
 
- #include "xlsxglobal.h"
 
- #include <cstdio>
 
- #include <QDate>
 
- #include <QDateTime>
 
- #include <QObject>
 
- #include <QString>
 
- #include <QTime>
 
- #include <QVariant>
 
- QT_BEGIN_NAMESPACE_XLSX
 
- class Worksheet;
 
- class Format;
 
- class CellFormula;
 
- class CellPrivate;
 
- class WorksheetPrivate;
 
- class QXLSX_EXPORT Cell
 
- {
 
-     Q_DECLARE_PRIVATE(Cell)
 
- private:
 
-     friend class Worksheet;
 
-     friend class WorksheetPrivate;
 
- public:
 
-     enum CellType // See ECMA 376, 18.18.11. ST_CellType (Cell Type) for more information.
 
-     {
 
-         BooleanType,
 
-         DateType,
 
-         ErrorType,
 
-         InlineStringType,
 
-         NumberType,
 
-         SharedStringType,
 
-         StringType,
 
-         CustomType, // custom or un-defined cell type
 
-     };
 
- public:
 
-     Cell(const QVariant &data = QVariant(),
 
-          CellType type        = NumberType,
 
-          const Format &format = Format(),
 
-          Worksheet *parent    = nullptr,
 
-          qint32 styleIndex    = (-1));
 
-     Cell(const Cell *const cell);
 
-     ~Cell();
 
- public:
 
-     CellPrivate *const d_ptr; // See D-pointer and Q-pointer of Qt, for more information.
 
- public:
 
-     CellType cellType() const;
 
-     QVariant value() const;
 
-     QVariant readValue() const;
 
-     Format format() const;
 
-     bool hasFormula() const;
 
-     CellFormula formula() const;
 
-     bool isDateTime() const;
 
-     QVariant dateTime() const; // QDateTime, QDate, QTime
 
-     bool isRichString() const;
 
-     qint32 styleNumber() const;
 
-     static bool isDateType(CellType cellType, const Format &format);
 
- };
 
- QT_END_NAMESPACE_XLSX
 
- #endif // QXLSX_XLSXCELL_H
 
 
  |