mirror of
https://github.com/QtExcel/QXlsx.git
synced 2025-01-16 04:42:53 +08:00
76 lines
1.6 KiB
C++
76 lines
1.6 KiB
C++
// main.cpp
|
|
|
|
#include <QtGlobal>
|
|
#include <QCoreApplication>
|
|
#include <QtCore>
|
|
#include <QVariant>
|
|
#include <QDir>
|
|
#include <QColor>
|
|
#include <QDebug>
|
|
|
|
#include <iostream>
|
|
using namespace std;
|
|
|
|
#include "xlsxdocument.h"
|
|
#include "xlsxchartsheet.h"
|
|
#include "xlsxcellrange.h"
|
|
#include "xlsxchart.h"
|
|
#include "xlsxrichstring.h"
|
|
#include "xlsxworkbook.h"
|
|
using namespace QXlsx;
|
|
|
|
void printColor(Cell* cell);
|
|
void saveColor(Cell* cell);
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QCoreApplication app(argc, argv);
|
|
|
|
Document xlsxR(":/color.xlsx");
|
|
if ( !xlsxR.load() )
|
|
{
|
|
return (-1);
|
|
}
|
|
|
|
printColor( xlsxR.cellAt(1, 1) );
|
|
printColor( xlsxR.cellAt(1, 2) );
|
|
printColor( xlsxR.cellAt(2, 1) );
|
|
printColor( xlsxR.cellAt(2, 2) );
|
|
|
|
xlsxR.write( 3, 3, QVariant("HELLO") );
|
|
saveColor( xlsxR.cellAt(3, 3) );
|
|
|
|
xlsxR.saveAs("color2.xlsx");
|
|
|
|
return 0;
|
|
}
|
|
|
|
void printColor(Cell* cell)
|
|
{
|
|
if ( NULL == cell )
|
|
return;
|
|
|
|
QColor clrForeGround = cell->format().patternForegroundColor();
|
|
QColor clrBackGround = cell->format().patternBackgroundColor();
|
|
|
|
if ( clrForeGround.isValid() &&
|
|
clrBackGround.isValid() )
|
|
{
|
|
qDebug() << "[debug] color : " << clrForeGround << clrBackGround;
|
|
}
|
|
|
|
}
|
|
|
|
void saveColor(Cell* cell)
|
|
{
|
|
|
|
cell->format().setVerticalAlignment(QXlsx::Format::AlignVCenter);
|
|
cell->format().setHorizontalAlignment(QXlsx::Format::AlignHCenter);
|
|
cell->format().setFont(QFont("Calibri"));
|
|
// fmt->setTextWarp(false);
|
|
cell->format().setPatternBackgroundColor(Qt::blue);
|
|
cell->format().setPatternForegroundColor(Qt::white);
|
|
|
|
}
|
|
|