diff options
author | Kohei Yoshida <kohei@openoffice.org> | 2009-06-19 01:30:32 +0000 |
---|---|---|
committer | Kohei Yoshida <kohei@openoffice.org> | 2009-06-19 01:30:32 +0000 |
commit | acd89bd93d510281d1e46ca1617ff8545d0e981b (patch) | |
tree | c2d5c18631ac8ea2f8bb8e3c3c6677ebd3859544 /sc/inc/dpobject.hxx | |
parent | 7425283183cc26795bc3c655b2bc5cd6931091e2 (diff) |
added grid layout bits.
Diffstat (limited to 'sc/inc/dpobject.hxx')
-rw-r--r-- | sc/inc/dpobject.hxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sc/inc/dpobject.hxx b/sc/inc/dpobject.hxx index 9dd014aac1f8..1c50c773b4df 100644 --- a/sc/inc/dpobject.hxx +++ b/sc/inc/dpobject.hxx @@ -106,9 +106,10 @@ private: ScDPOutput* pOutput; BOOL bSettingsChanged; BOOL bAlive; // FALSE if only used to hold settings - sal_uInt16 nAutoFormatIndex; + sal_uInt16 mnAutoFormatIndex; BOOL bAllowMove; long nHeaderRows; // page fields plus filter button + bool mbHeaderLayout; // TRUE : grid, FALSE : standard SC_DLLPRIVATE void CreateObjects(); @@ -140,6 +141,9 @@ public: void SetAutoFormatIndex (const sal_uInt16 nIndex); sal_uInt16 GetAutoFormatIndex() const; + void SetHeaderLayout(bool bUseGrid); + bool GetHeaderLayout() const; + void SetSheetDesc(const ScSheetSourceDesc& rDesc); void SetImportDesc(const ScImportSourceDesc& rDesc); void SetServiceData(const ScDPServiceDesc& rDesc); |