Kaydet (Commit) f068f50b authored tarafından Kohei Yoshida's avatar Kohei Yoshida

Re-organized boolean data members.

üst fb495f4e
...@@ -178,11 +178,9 @@ protected: ...@@ -178,11 +178,9 @@ protected:
String aUIUnitStr; // see above String aUIUnitStr; // see above
Fraction aUIUnitFact; // see above Fraction aUIUnitFact; // see above
int nUIUnitKomma; // see above int nUIUnitKomma; // see above
bool bUIOnlyKomma; // see above
SdrLayerAdmin* pLayerAdmin; SdrLayerAdmin* pLayerAdmin;
SfxItemPool* pItemPool; SfxItemPool* pItemPool;
bool bMyPool; // zum Aufraeumen von pMyPool ab 303a
comphelper::IEmbeddedHelper* comphelper::IEmbeddedHelper*
m_pEmbeddedHelper; // helper for embedded objects to get rid of the SfxObjectShell m_pEmbeddedHelper; // helper for embedded objects to get rid of the SfxObjectShell
SdrOutliner* pDrawOutliner; // ein Outliner zur Textausgabe SdrOutliner* pDrawOutliner; // ein Outliner zur Textausgabe
...@@ -199,29 +197,31 @@ protected: ...@@ -199,29 +197,31 @@ protected:
Container* pRedoStack; Container* pRedoStack;
SdrUndoGroup* pAktUndoGroup; // Fuer mehrstufige SdrUndoGroup* pAktUndoGroup; // Fuer mehrstufige
sal_uInt16 nUndoLevel; // Undo-Klammerung sal_uInt16 nUndoLevel; // Undo-Klammerung
bool mbUndoEnabled; // If false no undo is recorded or we are during the execution of an undo action
sal_uInt16 nProgressPercent; // fuer den ProgressBar-Handler sal_uInt16 nProgressPercent; // fuer den ProgressBar-Handler
sal_uInt16 nLoadVersion; // Versionsnummer der geladenen Datei sal_uInt16 nLoadVersion; // Versionsnummer der geladenen Datei
bool bExtColorTable; // Keinen eigenen ColorTable bool bMyPool:1; // zum Aufraeumen von pMyPool ab 303a
sal_Bool mbChanged; bool bUIOnlyKomma:1; // see eUIUnit
bool bInfoChanged; bool mbUndoEnabled:1; // If false no undo is recorded or we are during the execution of an undo action
bool bPagNumsDirty; bool bExtColorTable:1; // Keinen eigenen ColorTable
bool bMPgNumsDirty; bool mbChanged:1;
bool bPageNotValid; // TRUE=Doc ist nur ObjektTraeger. Page ist nicht gueltig. bool bInfoChanged:1;
bool bSavePortable; // Metafiles portabel speichern bool bPagNumsDirty:1;
bool bNoBitmapCaching; // Bitmaps fuer Screenoutput cachen bool bMPgNumsDirty:1;
bool bReadOnly; bool bPageNotValid:1; // TRUE=Doc ist nur ObjektTraeger. Page ist nicht gueltig.
bool bTransparentTextFrames; bool bSavePortable:1; // Metafiles portabel speichern
bool bSaveCompressed; bool bNoBitmapCaching:1; // Bitmaps fuer Screenoutput cachen
bool bSwapGraphics; bool bReadOnly:1;
bool bPasteResize; // Objekte werden gerade resized wegen Paste mit anderem MapMode bool bTransparentTextFrames:1;
bool bSaveOLEPreview; // save preview metafile of OLE objects bool bSaveCompressed:1;
bool bSwapGraphics:1;
bool bPasteResize:1; // Objekte werden gerade resized wegen Paste mit anderem MapMode
bool bSaveOLEPreview:1; // save preview metafile of OLE objects
bool bSaveNative:1;
bool bStarDrawPreviewMode:1;
sal_uInt16 nStreamCompressMode; // Komprimiert schreiben? sal_uInt16 nStreamCompressMode; // Komprimiert schreiben?
sal_uInt16 nStreamNumberFormat; sal_uInt16 nStreamNumberFormat;
sal_uInt16 nDefaultTabulator; sal_uInt16 nDefaultTabulator;
sal_uInt32 nMaxUndoCount; sal_uInt32 nMaxUndoCount;
bool bSaveNative;
sal_Bool bStarDrawPreviewMode;
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
......
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