Kaydet (Commit) 9f19d242 authored tarafından Miklos Vajna's avatar Miklos Vajna

sw: prefix members of SwFrmPage

Change-Id: I09a62466ea6b779c7589667f379e67d51890e7b4
üst 06fec09f
This diff is collapsed.
...@@ -90,38 +90,38 @@ class SwFrmPage: public SfxTabPage ...@@ -90,38 +90,38 @@ class SwFrmPage: public SfxTabPage
VclPtr<SvxSwFrameExample> m_pExampleWN; VclPtr<SvxSwFrameExample> m_pExampleWN;
//'string provider' //'string provider'
SvxSwFramePosString aFramePosString; SvxSwFramePosString m_aFramePosString;
bool bAtHorzPosModified; bool m_bAtHorzPosModified;
bool bAtVertPosModified; bool m_bAtVertPosModified;
bool bFormat; bool m_bFormat;
bool bNew; bool m_bNew;
bool bNoModifyHdl; bool m_bNoModifyHdl;
bool bIsVerticalFrame; //current frame is in vertical environment - strings are exchanged bool m_bIsVerticalFrame; //current frame is in vertical environment - strings are exchanged
// --> OD 2009-08-31 #mongolianlayou# // --> OD 2009-08-31 #mongolianlayou#
bool bIsVerticalL2R; bool m_bIsVerticalL2R;
bool bIsInRightToLeft; // current frame is in right-to-left environment - strings are exchanged bool m_bIsInRightToLeft; // current frame is in right-to-left environment - strings are exchanged
bool bHtmlMode; bool m_bHtmlMode;
sal_uInt16 nHtmlMode; sal_uInt16 m_nHtmlMode;
OUString sDlgType; OUString m_sDlgType;
Size aGrfSize; Size m_aGrfSize;
SwTwips nUpperBorder; SwTwips m_nUpperBorder;
SwTwips nLowerBorder; SwTwips m_nLowerBorder;
double fWidthHeightRatio; //width-to-height ratio to support the KeepRatio button double m_fWidthHeightRatio; //width-to-height ratio to support the KeepRatio button
// OD 12.11.2003 #i22341# - keep content position of character for // OD 12.11.2003 #i22341# - keep content position of character for
// to character anchored objects. // to character anchored objects.
const SwPosition* mpToCharContentPos; const SwPosition* mpToCharContentPos;
// old alignment // old alignment
sal_Int16 nOldH; sal_Int16 m_nOldH;
sal_Int16 nOldHRel; sal_Int16 m_nOldHRel;
sal_Int16 nOldV; sal_Int16 m_nOldV;
sal_Int16 nOldVRel; sal_Int16 m_nOldVRel;
FrmMap* pVMap; FrmMap* m_pVMap;
FrmMap* pHMap; FrmMap* m_pHMap;
bool m_bAllowVertPositioning; bool m_bAllowVertPositioning;
bool m_bIsMathOLE; bool m_bIsMathOLE;
...@@ -194,10 +194,10 @@ public: ...@@ -194,10 +194,10 @@ public:
virtual bool FillItemSet(SfxItemSet *rSet) override; virtual bool FillItemSet(SfxItemSet *rSet) override;
virtual void Reset(const SfxItemSet *rSet) override; virtual void Reset(const SfxItemSet *rSet) override;
void SetNewFrame(bool bNewFrame) { bNew = bNewFrame; } void SetNewFrame(bool bNewFrame) { m_bNew = bNewFrame; }
void SetFormatUsed(bool bFormat); void SetFormatUsed(bool bFormat);
void SetFrmType(const OUString &rType) { sDlgType = rType; } void SetFrmType(const OUString &rType) { m_sDlgType = rType; }
inline bool IsInGraficMode() { return sDlgType == "PictureDialog" || sDlgType == "ObjectDialog"; } inline bool IsInGraficMode() { return m_sDlgType == "PictureDialog" || m_sDlgType == "ObjectDialog"; }
void EnableVerticalPositioning( bool bEnable ); void EnableVerticalPositioning( bool bEnable );
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment