mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 01:04:34 +08:00
21 lines
337 B
C++
21 lines
337 B
C++
#ifndef CTRLCLICK_H
|
|
#define CTRLCLICK_H
|
|
|
|
#include "Ctrl.h"
|
|
#include "../HWPStream.h"
|
|
|
|
namespace HWP
|
|
{
|
|
class CCtrlClick : public CCtrl
|
|
{
|
|
int m_nSize;
|
|
HWP_STRING m_sClickHereStr;
|
|
public:
|
|
CCtrlClick(const HWP_STRING& sCtrlId, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
|
|
|
|
int GetSize() override;
|
|
};
|
|
}
|
|
|
|
#endif // CTRLCLICK_H
|