LibreOffice Module sc (master) 1
|
Record which contains a Boolean value. More...
#include <xerecord.hxx>
Public Member Functions | |
XclExpBoolRecord (sal_uInt16 nRecId, bool bValue, sal_Int32 nAttribute=-1) | |
bool | GetBool () const |
Returns the Boolean value of the record. More... | |
virtual void | SaveXml (XclExpXmlStream &rStrm) override |
Public Member Functions inherited from XclExpRecord | |
XclExpRecord (sal_uInt16 nRecId=EXC_ID_UNKNOWN, std::size_t nRecSize=0) | |
XclExpRecord (XclExpRecord const &)=default | |
virtual | ~XclExpRecord () override |
sal_uInt16 | GetRecId () const |
Returns the current record ID. More... | |
std::size_t | GetRecSize () const |
Returns the current record size prediction. More... | |
void | SetRecId (sal_uInt16 nRecId) |
Sets a new record ID. More... | |
void | SetRecSize (std::size_t nRecSize) |
Sets a new record size prediction. More... | |
void | AddRecSize (std::size_t nRecSize) |
Adds a size value to the record size prediction. More... | |
void | SetRecHeader (sal_uInt16 nRecId, std::size_t nRecSize) |
Sets record ID and size with one call. More... | |
virtual void | Save (XclExpStream &rStrm) override |
Writes the record header and calls WriteBody(). More... | |
Public Member Functions inherited from XclExpRecordBase | |
XclExpRecordBase () | |
XclExpRecordBase (XclExpRecordBase const &) | |
XclExpRecordBase (XclExpRecordBase &&) | |
XclExpRecordBase & | operator= (XclExpRecordBase const &) |
XclExpRecordBase & | operator= (XclExpRecordBase &&) noexcept |
virtual | ~XclExpRecordBase () |
virtual void | Save (XclExpStream &rStrm) |
Overwrite this method to do any operation while saving the record. More... | |
virtual void | SaveXml (XclExpXmlStream &rStrm) |
Public Member Functions inherited from salhelper::SimpleReferenceObject | |
SimpleReferenceObject () | |
void | acquire () |
void | release () |
Private Member Functions | |
virtual void | WriteBody (XclExpStream &rStrm) override |
Writes the body of the record. More... | |
Private Attributes | |
bool | mbValue |
sal_Int32 | mnAttribute |
The record data. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from salhelper::SimpleReferenceObject | |
static void * | operator new (std::size_t nSize) |
static void * | operator new (std::size_t nSize, std::nothrow_t const &rNothrow) |
static void | operator delete (void *pPtr) |
static void | operator delete (void *pPtr, std::nothrow_t const &rNothrow) |
virtual void | WriteBody (XclExpStream &rStrm) |
Writes the body of the record (without record header). More... | |
Protected Member Functions inherited from salhelper::SimpleReferenceObject | |
virtual | ~SimpleReferenceObject () COVERITY_NOEXCEPT_FALSE |
Protected Attributes inherited from salhelper::SimpleReferenceObject | |
oslInterlockedCount | m_nCount |
Record which contains a Boolean value.
@descr The value is stored as 16-bit value: 0x0000 = sal_False, 0x0001 = TRUE.
Definition at line 254 of file xerecord.hxx.
|
inlineexplicit |
nRecId | The record ID of this record. |
nValue | The value for the record body. |
Definition at line 259 of file xerecord.hxx.
|
inline |
Returns the Boolean value of the record.
Definition at line 263 of file xerecord.hxx.
References mbValue.
Referenced by XclExpWindowProtection::SaveXml(), and XclRefmode::SaveXml().
|
overridevirtual |
Reimplemented from XclExpRecordBase.
Reimplemented in XclExpWindowProtection, XclExpSheetProtection, and XclRefmode.
Definition at line 171 of file xerecord.cxx.
References mbValue, mnAttribute, and rStrm.
Referenced by XclExpPageSettings::SaveXml().
|
overrideprivatevirtual |
Writes the body of the record.
Reimplemented from XclExpRecord.
Definition at line 166 of file xerecord.cxx.
References mbValue.
|
private |
Definition at line 272 of file xerecord.hxx.
Referenced by GetBool(), SaveXml(), and WriteBody().
|
private |