forked from QtExcel/QXlsx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
54 changed files
with
609 additions
and
588 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
// xlsxcellrange.h | ||
|
||
#ifndef QXLSX_XLSXCELLRANGE_H | ||
#define QXLSX_XLSXCELLRANGE_H | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
// xlsxdatetype.h | ||
|
||
#ifndef QXLSX_XLSXDATETYPE_H | ||
#define QXLSX_XLSXDATETYPE_H | ||
|
||
#include <QtGlobal> | ||
#include <QObject> | ||
#include <QString> | ||
#include <QStringList> | ||
#include <QDateTime> | ||
#include <QDate> | ||
#include <QTime> | ||
|
||
#include "xlsxglobal.h" | ||
|
||
QT_BEGIN_NAMESPACE_XLSX | ||
|
||
class DateType | ||
{ | ||
public: | ||
DateType(); | ||
/* | ||
DateType(bool is1904 = false); | ||
DateType(double d, bool is1904 = false); | ||
DateType(QDateTime qdt, bool is1904 = false); | ||
DateType(QDate qd, bool is1904 = false); | ||
DateType(QTime qt, bool is1904 = false); | ||
public: | ||
enum currentDateType { DateAndTimeType, OnlyDateType, OnlyTimeType }; | ||
public: | ||
currentDateType getType(); | ||
bool getValue(QDateTime* pQdt); | ||
bool getValue(QDate* pQd); | ||
bool getValue(QTime* pQt); | ||
bool getValue(double* pD); | ||
protected: | ||
protected: | ||
bool isSet; | ||
double dValue; | ||
bool is1904Type; | ||
currentDateType dType; | ||
*/ | ||
}; | ||
|
||
QT_END_NAMESPACE_XLSX | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.