mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-21 02:22:41 +08:00
28 lines
401 B
C++
28 lines
401 B
C++
#ifndef FILL_H
|
|
#define FILL_H
|
|
|
|
#include "Brush.h"
|
|
#include "Gradient.h"
|
|
#include "VtPicture.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
class CFill : public IChartObject
|
|
{
|
|
CBrush m_oBrush;
|
|
// union
|
|
// {
|
|
// CGradient m_oGradient;
|
|
// CVtPicture m_oPicture;
|
|
// } m_oGradient;
|
|
int m_nStyle;
|
|
CVtPicture m_oVtPicture;
|
|
public:
|
|
CFill();
|
|
|
|
bool Read(CHWPStream& oStream) override;
|
|
};
|
|
}}
|
|
|
|
#endif // FILL_H
|