mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
25 lines
383 B
C++
25 lines
383 B
C++
#ifndef LEGEND_H
|
|
#define LEGEND_H
|
|
|
|
#include "Backdrop.h"
|
|
#include "Location.h"
|
|
#include "TextLayout.h"
|
|
#include "VtFont.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
class CLegend : public IChartObject
|
|
{
|
|
CBackdrop m_oBackdrop;
|
|
CLocation m_oLocation;
|
|
CTextLayout m_oTextLayout;
|
|
CVtFont m_oVtFont;
|
|
public:
|
|
CLegend();
|
|
|
|
bool Read(CChartStream& oStream) override;
|
|
};
|
|
}}
|
|
|
|
#endif // LEGEND_H
|