Kaydet (Commit) 16431492 authored tarafından Noel Grandin's avatar Noel Grandin Kaydeden (comit) Noel Grandin

remove unused Cachable keyword from SDI files

Change-Id: I60c423b799f34f79f58bc39cf7ea616ec4f5d16a
Reviewed-on: https://gerrit.libreoffice.org/22096Reviewed-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
Tested-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
üst 3ffa9802
......@@ -43,7 +43,6 @@ struct SvGlobalHashNames
SvStringHashEntryRef MM_Get;
SvStringHashEntryRef MM_Set;
SvStringHashEntryRef MM_SlotId;
SvStringHashEntryRef MM_Cachable;
SvStringHashEntryRef MM_Volatile;
SvStringHashEntryRef MM_Toggle;
SvStringHashEntryRef MM_AutoUpdate;
......@@ -147,7 +146,6 @@ HASH_INLINE(shell)
HASH_INLINE(Get)
HASH_INLINE(Set)
HASH_INLINE(SlotId)
HASH_INLINE(Cachable)
HASH_INLINE(Volatile)
HASH_INLINE(Toggle)
HASH_INLINE(AutoUpdate)
......
......@@ -36,7 +36,6 @@ class SvMetaSlot : public SvMetaAttribute
SvBOOL aGet;
SvBOOL aSet;
SvBOOL aCachable; // exclusive
SvBOOL aVolatile;
SvBOOL aToggle;
SvBOOL aAutoUpdate;
......@@ -76,17 +75,9 @@ class SvMetaSlot : public SvMetaAttribute
void SetEnumValue(SvMetaEnumValue *p)
{ pEnumValue = p; }
protected:
void SetCachable( bool bSet )
{
aCachable = bSet;
if( bSet )
aVolatile = false;
}
void SetVolatile( bool bSet )
{
aVolatile = bSet;
if( bSet )
aCachable = false;
}
void SetToggle( bool bSet )
{
......@@ -164,7 +155,6 @@ public:
const OString& GetDefault() const;
const OString& GetDisableFlags() const;
bool GetPseudoSlots() const;
bool GetCachable() const;
bool GetVolatile() const;
bool GetToggle() const;
bool GetAutoUpdate() const;
......
......@@ -34,8 +34,7 @@ SvMetaObject *SvMetaSlot::MakeClone() const
}
SvMetaSlot::SvMetaSlot()
: aCachable( true, false )
, aSynchron( true, false )
: aSynchron( true, false )
, aRecordPerSet( true, false )
, aRecordAbsolute( false, false )
, pLinkedSlot(nullptr)
......@@ -47,7 +46,6 @@ SvMetaSlot::SvMetaSlot()
SvMetaSlot::SvMetaSlot( SvMetaType * pType )
: SvMetaAttribute( pType )
, aCachable( true, false )
, aSynchron( true, false )
, aRecordPerSet( true, false )
, aRecordAbsolute( false, false )
......@@ -133,17 +131,10 @@ bool SvMetaSlot::GetPseudoSlots() const
if( aPseudoSlots.IsSet() || !GetRef() ) return aPseudoSlots;
return static_cast<SvMetaSlot *>(GetRef())->GetPseudoSlots();
}
bool SvMetaSlot::GetCachable() const
{
// Cachable and Volatile are exclusive
if( !GetRef() || aCachable.IsSet() || aVolatile.IsSet() )
return aCachable;
return static_cast<SvMetaSlot *>(GetRef())->GetCachable();
}
bool SvMetaSlot::GetVolatile() const
{
// Cachable and Volatile are exclusive
if( !GetRef() || aVolatile.IsSet() || aCachable.IsSet() )
if( !GetRef() || aVolatile.IsSet() )
return aVolatile;
return static_cast<SvMetaSlot *>(GetRef())->GetVolatile();
}
......@@ -295,8 +286,6 @@ void SvMetaSlot::ReadAttributesSvIdl( SvIdlDataBase & rBase,
rInStm.GetToken().GetColumn() );
}
if( aCachable.ReadSvIdl( SvHash_Cachable(), rInStm ) )
SetCachable( aCachable ), bOk = true;
if( aVolatile.ReadSvIdl( SvHash_Volatile(), rInStm ) )
SetVolatile( aVolatile ), bOk = true;
if( aToggle.ReadSvIdl( SvHash_Toggle(), rInStm ) )
......@@ -826,8 +815,6 @@ void SvMetaSlot::WriteSlot( const OString& rShellName, sal_uInt16 nCount,
WriteTab( rOutStm, 4 );
// write flags
if( GetCachable() )
rOutStm.WriteCharPtr( MakeSlotName( SvHash_Cachable() ).getStr() ).WriteChar( '|' );
if( GetVolatile() )
rOutStm.WriteCharPtr( MakeSlotName( SvHash_Volatile() ).getStr() ).WriteChar( '|' );
if( GetToggle() )
......
......@@ -71,7 +71,6 @@ SvGlobalHashNames::SvGlobalHashNames()
, MM_Get( INS( "Get" ) )
, MM_Set( INS( "Set" ) )
, MM_SlotId( INS( "SlotId" ) )
, MM_Cachable( INS( "Cachable" ) )
, MM_Toggle( INS( "Toggle" ) )
, MM_AutoUpdate( INS( "AutoUpdate" ) )
, MM_Synchron( INS( "Synchron" ) )
......
......@@ -28,9 +28,8 @@
#include <functional>
enum class SfxSlotMode {
NONE = 0x0000L, // exclusiv to VOLATILE, default
CACHABLE = 0x0001L, // exclusiv to VOLATILE, default
VOLATILE = 0x0002L, // per Timer every 2s get new, exclusive to CACHABLE
NONE = 0x0000L, // default
VOLATILE = 0x0002L, // per Timer every 2s get new,
TOGGLE = 0x0004L, // inverted for Execute old value
AUTOUPDATE = 0x0008L, // invalidated the status automatically after execute
......@@ -43,7 +42,7 @@ enum class SfxSlotMode {
RECORDPERSET = 0x0400L, // The whole Set is a Statement, default
RECORDMANUAL = 0x0800L, // Recording by the application developer is default
RECORDABSOLUTE = 0x1000000L, // Recording with absolute Target
STANDARD = 0x00411L, // CACHABLE | SYNCHRON | RECORDPERSET;
STANDARD = 0x00410L, // SYNCHRON | RECORDPERSET;
PROPGET = 0x1000L, // get property
PROPSET = 0x2000L, // set property, exclusive to METHOD
......@@ -64,7 +63,7 @@ enum class SfxSlotMode {
namespace o3tl
{
template<> struct typed_flags<SfxSlotMode> : is_typed_flags<SfxSlotMode, 0x1ffffbfL> {};
template<> struct typed_flags<SfxSlotMode> : is_typed_flags<SfxSlotMode, 0x1ffffbeL> {};
}
......
......@@ -139,7 +139,7 @@ interface CellSelection
ExecMethod = ExecuteEdit ;
StateMethod = GetBlockState ;
GroupId = GID_EDIT ; //FS
Cachable , HasDialog ;
HasDialog ;
MenuConfig , AccelConfig ;
]
SID_DELETE_CONTENTS [ ExecMethod = ExecuteEdit; StateMethod = GetBlockState; ]
......@@ -251,28 +251,24 @@ interface CellMovement
[
ExecMethod = ExecuteMove ;
StateMethod = GetStateCursor ;
Cachable ;
]
SID_PREV_TABLE
[
ExecMethod = ExecuteMove ;
StateMethod = GetStateCursor ;
Cachable ;
]
SID_NEXT_TABLE_SEL
[
ExecMethod = ExecuteMove ;
StateMethod = GetStateCursor ;
Cachable ;
]
SID_PREV_TABLE_SEL
[
ExecMethod = ExecuteMove ;
StateMethod = GetStateCursor ;
Cachable ;
]
SfxVoidItem GoDown SID_CURSORDOWN
......@@ -283,7 +279,6 @@ interface CellMovement
[
ExecMethod = ExecuteCursor ;
StateMethod = GetStateCursor ;
Cachable ;
]
SfxVoidItem GoDownSel SID_CURSORDOWN_SEL
......@@ -294,7 +289,6 @@ interface CellMovement
Export = FALSE ;
ExecMethod = ExecuteCursorSel ;
StateMethod = GetStateCursor ;
Cachable ;
]
SID_CURSORBLKDOWN [ ExecMethod = ExecuteCursor; StateMethod = GetStateCursor; ]
SID_CURSORBLKDOWN_SEL [ ExecMethod = ExecuteCursorSel; StateMethod = GetStateCursor; ]
......@@ -307,7 +301,6 @@ interface CellMovement
[
ExecMethod = ExecuteCursor ;
StateMethod = GetStateCursor ;
Cachable ;
]
SID_CURSORUP_SEL [ ExecMethod = ExecuteCursorSel; StateMethod = GetStateCursor; ]
SID_CURSORBLKUP [ ExecMethod = ExecuteCursor; StateMethod = GetStateCursor; ]
......@@ -321,7 +314,6 @@ interface CellMovement
[
ExecMethod = ExecuteCursor ;
StateMethod = GetStateCursor ;
Cachable ;
]
SID_CURSORLEFT_SEL [ ExecMethod = ExecuteCursorSel; StateMethod = GetStateCursor; ]
SID_CURSORBLKLEFT [ ExecMethod = ExecuteCursor; StateMethod = GetStateCursor; ]
......@@ -335,7 +327,6 @@ interface CellMovement
[
ExecMethod = ExecuteCursor ;
StateMethod = GetStateCursor ;
Cachable ;
]
SID_CURSORRIGHT_SEL [ ExecMethod = ExecuteCursorSel; StateMethod = GetStateCursor; ]
......@@ -354,7 +345,6 @@ interface CellMovement
[
ExecMethod = ExecuteCursor ;
StateMethod = GetStateCursor ;
Cachable ;
]
SID_CURSORPAGEDOWN_SEL [ ExecMethod = ExecuteCursorSel; StateMethod = GetStateCursor; ]
......@@ -366,7 +356,6 @@ interface CellMovement
[
ExecMethod = ExecuteCursor ;
StateMethod = GetStateCursor ;
Cachable ;
]
SID_CURSORPAGEUP_SEL [ ExecMethod = ExecuteCursorSel; StateMethod = GetStateCursor; ]
SID_CURSORPAGELEFT_ [ ExecMethod = ExecuteCursor; StateMethod = GetStateCursor; ]
......@@ -382,7 +371,6 @@ interface CellMovement
[
ExecMethod = ExecutePage ;
StateMethod = GetStateCursor ;
Cachable ;
]
SID_CURSORENDOFFILE_SEL [ ExecMethod = ExecutePageSel; StateMethod = GetStateCursor; ]
......@@ -393,7 +381,6 @@ interface CellMovement
[
ExecMethod = ExecutePage ;
StateMethod = GetStateCursor ;
Cachable ;
]
SID_CURSORTOPOFSCREEN [ ExecMethod = ExecuteMove; StateMethod = GetStateCursor; ]
SID_CURSORENDOFSCREEN [ ExecMethod = ExecuteMove; StateMethod = GetStateCursor; ]
......@@ -405,7 +392,6 @@ interface CellMovement
[
ExecMethod = ExecutePage ;
StateMethod = GetStateCursor ;
Cachable ;
]
SID_CURSOREND [ ExecMethod = ExecutePage; StateMethod = GetStateCursor; ]
......
......@@ -127,7 +127,6 @@ interface TableDraw
ExecMethod = ExecDrawFunc ;
StateMethod = GetDrawFuncState ;
GroupId = GID_FORMAT ;
FastCall , Cachable ;
ToolBoxConfig ;
]
SID_OBJECT_ALIGN_LEFT [ ExecMethod = ExecDrawFunc; StateMethod = GetDrawFuncState; Export = FALSE; ]
......@@ -166,7 +165,6 @@ interface TableDraw
StateMethod = GetDrawFuncState ;
Export = FALSE ;
GroupId = GID_EDIT ;
FastCall , Cachable ;
ToolBoxConfig , MenuConfig , AccelConfig ;
]
*/
......@@ -185,7 +183,6 @@ interface TableDraw
StateMethod = GetDrawFuncState ;
Export = FALSE ;
GroupId = GID_FORMAT ;
Cachable ;
MenuConfig ; //FS
]
*/
......
......@@ -27,7 +27,6 @@ interface TableText
StateMethod = GetState ;
Export = FALSE;
GroupId = GID_EDIT ;
Cachable ;
]
SID_CUT [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
SID_COPY [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
......
......@@ -42,7 +42,6 @@ interface TablePrintPreview
StateMethod = GetState ;
Export = FALSE;
GroupId = GID_INTERN ;
Cachable ;
]
SfxVoidItem GoDownBlock SID_CURSORPAGEDOWN
......@@ -54,7 +53,6 @@ interface TablePrintPreview
StateMethod = GetState ;
Export = FALSE;
GroupId = GID_INTERN ;
Cachable ;
]
SID_CURSORHOME [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
......@@ -69,7 +67,6 @@ interface TablePrintPreview
StateMethod = GetState ;
Export = FALSE;
GroupId = GID_INTERN ;
Cachable ;
]
SfxVoidItem GoUp SID_CURSORUP
(
......@@ -80,7 +77,6 @@ interface TablePrintPreview
StateMethod = GetState ;
Export = FALSE;
GroupId = GID_INTERN ;
Cachable ;
]
SfxVoidItem GoLeft SID_CURSORLEFT
(
......@@ -91,7 +87,6 @@ interface TablePrintPreview
StateMethod = GetState ;
Export = FALSE;
GroupId = GID_INTERN ;
Cachable ;
]
SfxVoidItem GoRight SID_CURSORRIGHT
......@@ -103,7 +98,6 @@ interface TablePrintPreview
StateMethod = GetState ;
Export = FALSE;
GroupId = GID_INTERN ;
Cachable ;
]
SID_PREV_TABLE
......@@ -112,7 +106,6 @@ interface TablePrintPreview
StateMethod = GetState ;
Export = FALSE;
GroupId = GID_INTERN ;
Cachable ;
]
SID_NEXT_TABLE
......@@ -121,7 +114,6 @@ interface TablePrintPreview
StateMethod = GetState ;
Export = FALSE;
GroupId = GID_INTERN ;
Cachable ;
]
SfxVoidItem GoToStart SID_CURSORTOPOFFILE ()
......@@ -130,7 +122,6 @@ interface TablePrintPreview
StateMethod = GetState ;
Export = FALSE;
GroupId = GID_INTERN ;
Cachable ;
]
SfxVoidItem GoToEndOfData SID_CURSORENDOFFILE ()
......@@ -139,7 +130,6 @@ interface TablePrintPreview
StateMethod = GetState ;
Export = FALSE;
GroupId = GID_INTERN ;
Cachable ;
]
SID_PREVIEW_ZOOMIN [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
SID_PREVIEW_ZOOMOUT [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
......
This diff is collapsed.
......@@ -80,7 +80,7 @@ interface BaseSelection
[
ExecMethod = ExecDrawIns ;
StateMethod = GetDrawInsState ;
Cachable , Asynchron ;
Asynchron ;
]
SID_PIVOT_CREATE [ ExecMethod = ExecuteSbx; StateMethod = GetSbxState; ]
......
......@@ -48,7 +48,6 @@ interface DrawDocument
ExecMethod = Execute ;
StateMethod = GetState ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
// ?
FID_SEARCH_ON // ole : ?, status : ?
......@@ -56,7 +55,6 @@ interface DrawDocument
ExecMethod = Execute ;
StateMethod = GetState ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
// ?
FID_SEARCH_OFF // ole : ?, status : ?
......@@ -64,7 +62,6 @@ interface DrawDocument
ExecMethod = Execute ;
StateMethod = GetState ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
SID_GET_COLORLIST
......
......@@ -297,7 +297,7 @@ interface DrawView
ExecMethod = FuTemporary ;
StateMethod = GetMenuState ;
GroupId = GID_DOCUMENT ;
Cachable , HasDialog , Export ,
HasDialog , Export ,
MenuConfig , AccelConfig , ToolBoxConfig ;
]
SID_CHARMAP // ole : no, status : ?
......@@ -352,7 +352,7 @@ interface DrawView
ExecMethod = FuTemporary ;
StateMethod = GetMenuState ;
GroupId = GID_INSERT ;
Cachable , HasDialog , Export , Asynchron ,
HasDialog , Export , Asynchron ,
MenuConfig , AccelConfig , ToolBoxConfig ;
]
SID_MANAGE_LINKS // ole : no, status : ?
......@@ -376,7 +376,7 @@ interface DrawView
ExecMethod = FuTemporary ;
StateMethod = GetMenuState ;
GroupId = GID_DOCUMENT ;
Cachable , HasDialog , Export , Asynchron ,
HasDialog , Export , Asynchron ,
MenuConfig , AccelConfig , ToolBoxConfig ;
]
SID_BMPMASK // ole : yes, status : ?
......@@ -681,7 +681,7 @@ interface DrawView
ExecMethod = FuSupport ;
StateMethod = GetMenuState ;
GroupId = GID_DOCUMENT ;
Cachable , Asynchron ,
Asynchron ,
MenuConfig , AccelConfig , ToolBoxConfig ;
]
SID_CHANGEBEZIER // ole : no, status : ?
......@@ -794,7 +794,7 @@ interface DrawView
ExecMethod = FuPermanent ;
StateMethod = GetMenuState ;
GroupId = GID_DOCUMENT ;
Cachable , AutoUpdate ,
AutoUpdate ,
MenuConfig , AccelConfig , ToolBoxConfig ;
]
SID_OBJECT_SHEAR // ole : no, status : ?
......@@ -1258,7 +1258,7 @@ interface DrawView
[
StateMethod = GetMenuState ;
GroupId = GID_DOCUMENT ;
Cachable , Export ;
Export ;
PseudoSlots = FALSE ;
ToolBoxConfig ;
MenuConfig = TRUE;
......@@ -1484,7 +1484,6 @@ interface DrawView
ExecMethod = FuTemporary ;
StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
SID_STYLE_DRAGHIERARCHIE // ole : no, status : ?
[
......@@ -1495,56 +1494,48 @@ interface DrawView
ExecMethod = FuTemporary ;
StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
SID_STYLE_DELETE // ole : no, status : ?
[
ExecMethod = FuTemporary ;
StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
SID_STYLE_HIDE
[
ExecMethod = FuTemporary ;
StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
SID_STYLE_SHOW
[
ExecMethod = FuTemporary ;
StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
SID_STYLE_APPLY // ole : no, status : ?
[
ExecMethod = FuTemporary ;
StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
SID_STYLE_WATERCAN // ole : no, status : ?
[
ExecMethod = FuTemporary ;
StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
SID_STYLE_NEW_BY_EXAMPLE // ole : no, status : ?
[
ExecMethod = FuTemporary ;
StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
SID_STYLE_UPDATE_BY_EXAMPLE // ole : no, status : ?
[
ExecMethod = FuTemporary ;
StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
SID_SET_DEFAULT // ole : no, status : ?
[
......@@ -1572,13 +1563,11 @@ interface DrawView
[
ExecMethod = ExecRuler ;
StateMethod = GetRulerState ;
Cachable ;
]
SID_ATTR_LONG_ULSPACE // ole : no, status : ?
[
ExecMethod = ExecRuler ;
StateMethod = GetRulerState ;
Cachable ;
]
SID_RULER_LR_MIN_MAX // ole : no, status : ?
[
......@@ -1704,7 +1693,6 @@ interface DrawView
ExecMethod = FuSupport ;
StateMethod = GetMenuState ;
GroupId = GID_DOCUMENT ;
Cachable ;
MenuConfig = TRUE ;
]
SID_TEXTALIGNMENT // ole : no, status : ?
......@@ -1785,7 +1773,6 @@ interface DrawView
[
ExecMethod = ExecGallery ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
SID_NAVIGATOR_INIT // ole : no, status : ?
[
......
......@@ -26,7 +26,7 @@ interface StarImpress
ExecMethod = Execute ;
StateMethod = GetState ;
GroupId = GID_APPLICATION ;
Cachable , Container ;
Container ;
]
SID_ATTR_METRIC
......
......@@ -23,7 +23,7 @@ shell TextObjectBar
ExecMethod = Execute;
StateMethod = GetAttrState;
GroupId = GID_DOCUMENT;
Cachable, AutoUpdate;
AutoUpdate;
]
SID_ATTR_CHAR_FONT // ole : ?, status : ?
......@@ -102,63 +102,63 @@ shell TextObjectBar
[
ExecMethod = Execute;
StateMethod = GetAttrState;
// Cachable, AutoUpdate;
// AutoUpdate;
]
SID_ATTR_PARA_ADJUST_CENTER // ole : ?, status : ?
[
ExecMethod = Execute;
StateMethod = GetAttrState;
// Cachable, AutoUpdate;
// AutoUpdate;
]
SID_ATTR_PARA_ADJUST_RIGHT // ole : ?, status : ?
[
ExecMethod = Execute;
StateMethod = GetAttrState;
// Cachable, AutoUpdate;
// AutoUpdate;
]
SID_ATTR_PARA_ADJUST_BLOCK // ole : ?, status : ?
[
ExecMethod = Execute;
StateMethod = GetAttrState;
// Cachable, AutoUpdate;
// AutoUpdate;
]
SID_ATTR_PARA_LEFT_TO_RIGHT // ole : ?, status : ?
[
ExecMethod = Execute;
StateMethod = GetAttrState;
// Cachable, AutoUpdate;
// AutoUpdate;
]
SID_ATTR_PARA_RIGHT_TO_LEFT // ole : ?, status : ?
[
ExecMethod = Execute;
StateMethod = GetAttrState;
// Cachable, AutoUpdate;
// AutoUpdate;
]
SID_ATTR_PARA_LINESPACE_10 // ole : ?, status : ?
[
ExecMethod = Execute;
StateMethod = GetAttrState;
// Cachable, AutoUpdate;
// AutoUpdate;
]
SID_ATTR_PARA_LINESPACE_15 // ole : ?, status : ?
[
ExecMethod = Execute;
StateMethod = GetAttrState;
// Cachable, AutoUpdate;
// AutoUpdate;
]
SID_ATTR_PARA_LINESPACE_20 // ole : ?, status : ?
[
ExecMethod = Execute;
StateMethod = GetAttrState;
// Cachable, AutoUpdate;
// AutoUpdate;
]
SID_SET_SUPER_SCRIPT // ole : ?, status : ?
......
......@@ -146,7 +146,6 @@ interface ImpressEditView : DrawView
ExecMethod = Execute ;
StateMethod = GetState ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
SID_SEARCH_ITEM // ole : ?, status : ?
[
......
......@@ -26,7 +26,6 @@ interface GraphicEditView : DrawView
ExecMethod = Execute ;
StateMethod = GetState ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
SID_SEARCH_ITEM // ole : ?, status : ?
[
......
......@@ -45,7 +45,7 @@ interface OutlineView
[
ExecMethod = FuSupport ;
StateMethod = GetMenuState ;
Cachable , Asynchron ;
Asynchron ;
]
SID_DRAWINGMODE // ole : no, status : play rec
[
......@@ -186,26 +186,25 @@ interface OutlineView
[
ExecMethod = FuTemporaryModify ;
StateMethod = GetMenuState ;
Cachable , HasDialog , Export ;
HasDialog , Export ;
]
SID_CHAR_DLG // ole : no, status : ?
[
ExecMethod = FuTemporaryModify ;
StateMethod = GetMenuState ;
// Cachable , HasDialog , Export ;
// HasDialog , Export ;
]
SID_CHAR_DLG_EFFECT // wj for sym2_1876
[
ExecMethod = FuTemporaryModify ;
StateMethod = GetMenuState ;
// Cachable , HasDialog , Export ;
// HasDialog , Export ;
]
SID_SELECTALL // ole : no, status : ?
[
ExecMethod = FuTemporary ;
StateMethod = GetMenuState ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
SID_INSERTFILE // ole : no, status : ?
[
......@@ -280,14 +279,12 @@ interface OutlineView
ExecMethod = FuTemporary ;
StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
SID_STYLE_FAMILY3 // ole : no, status : ?
[
ExecMethod = FuTemporary ;
StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
// Templates
// no menu entry
......@@ -302,7 +299,6 @@ interface OutlineView
ExecMethod = FuTemporary ;
StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
// no menu entry
SID_STYLE_UPDATE_BY_EXAMPLE // ole : no, status : ?
......@@ -310,7 +306,6 @@ interface OutlineView
ExecMethod = FuTemporary ;
StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
// no menu entry
SID_STYLE_WATERCAN // ole : no, status : ?
......@@ -318,7 +313,6 @@ interface OutlineView
ExecMethod = FuTemporary ;
StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
// no menu entry
SID_STYLE_NEW_BY_EXAMPLE // ole : no, status : ?
......@@ -326,7 +320,6 @@ interface OutlineView
ExecMethod = FuTemporary ;
StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
// no menu entry
SID_STYLE_NEW // ole : no, status : ?
......@@ -334,7 +327,6 @@ interface OutlineView
ExecMethod = FuTemporary ;
StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
// no menu entry
SID_STYLE_DELETE // ole : no, status : ?
......@@ -342,21 +334,18 @@ interface OutlineView
ExecMethod = FuTemporary ;
StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
SID_STYLE_HIDE
[
ExecMethod = FuTemporary ;
StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
SID_STYLE_SHOW
[
ExecMethod = FuTemporary ;
StateMethod = GetAttrState ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
SID_AUTOSPELL_CHECK // ole : no, status : play rec
[
......@@ -543,7 +532,6 @@ interface OutlineView
ExecMethod = Execute ;
StateMethod = GetState ;
GroupId = GID_DOCUMENT ;
Cachable ;
]
SID_SEARCH_ITEM // ole : ?, status : ?
[
......
......@@ -21,7 +21,6 @@ SfxBoolItem VerticalTextFitToSizeTool SID_TEXT_FITTOSIZE_VERTICAL
[
/* flags: */
AutoUpdate = TRUE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = FALSE,
......@@ -43,7 +42,6 @@ SvxObjectItem RulerObject SID_RULER_OBJECT
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = TRUE,
......@@ -73,7 +71,6 @@ SfxBoolItem OutputQualityContrast SID_OUTPUT_QUALITY_CONTRAST
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = TRUE,
......
This diff is collapsed.
This diff is collapsed.
......@@ -21,7 +21,6 @@ SfxVoidItem ChangeAlignment SID_ALIGN
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = TRUE,
ReadOnlyDoc = FALSE,
......@@ -45,7 +44,6 @@ SfxVoidItem ChangeDistance SID_DISTANCE
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = TRUE,
ReadOnlyDoc = FALSE,
......@@ -69,7 +67,6 @@ SfxVoidItem ChangeFont SID_FONT
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = TRUE,
ReadOnlyDoc = FALSE,
......@@ -93,7 +90,6 @@ SfxVoidItem ChangeFontSize SID_FONTSIZE
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = TRUE,
ReadOnlyDoc = FALSE,
......@@ -117,7 +113,6 @@ SfxVoidItem CommandWindow SID_CMDBOXWINDOW
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = FALSE,
......@@ -141,7 +136,6 @@ SfxVoidItem ElementsDockingWindow SID_ELEMENTSDOCKINGWINDOW
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = FALSE,
......@@ -165,7 +159,6 @@ SfxVoidItem Preferences SID_PREFERENCES
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = TRUE,
ReadOnlyDoc = TRUE,
......@@ -189,7 +182,6 @@ SfxStringItem ConfigName SID_TEXT
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = TRUE,
......@@ -215,7 +207,6 @@ SfxVoidItem CopyObject SID_COPYOBJECT
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = FALSE,
......@@ -239,7 +230,6 @@ SfxVoidItem Draw SID_DRAW
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = TRUE,
......@@ -263,7 +253,6 @@ SfxBoolItem FormelCursor SID_FORMULACURSOR
[
/* flags: */
AutoUpdate = TRUE,
Cachable = Cachable,
FastCall = TRUE,
HasDialog = FALSE,
ReadOnlyDoc = TRUE,
......@@ -287,7 +276,6 @@ SfxInt16Item Graphic SID_GAPHIC_SM
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = TRUE,
......@@ -313,7 +301,6 @@ SfxVoidItem InsertCommand SID_INSERTCOMMAND
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = TRUE,
......@@ -336,7 +323,6 @@ SfxVoidItem InsertCommandText SID_INSERTCOMMANDTEXT
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = TRUE,
......@@ -360,7 +346,6 @@ SfxVoidItem InsertConfigName SID_INSERTSYMBOL
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = TRUE,
......@@ -384,7 +369,6 @@ SfxBoolItem ImportFormula SID_IMPORT_FORMULA
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = TRUE,
ReadOnlyDoc = FALSE,
......@@ -407,7 +391,6 @@ SfxBoolItem ImportMathMLClipboard SID_IMPORT_MATHML_CLIPBOARD
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = TRUE,
HasDialog = FALSE, /*obsolete */
ReadOnlyDoc = FALSE,
......@@ -430,7 +413,6 @@ SfxVoidItem LoadSymbols SID_LOADSYMBOLS
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = TRUE,
......@@ -454,7 +436,6 @@ SfxStringItem ModifyStatus SID_MODIFYSTATUS
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = TRUE,
......@@ -480,7 +461,6 @@ SfxVoidItem NextError SID_NEXTERR
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = TRUE,
......@@ -504,7 +484,6 @@ SfxVoidItem NextMark SID_NEXTMARK
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = TRUE,
......@@ -528,7 +507,6 @@ SfxVoidItem PasteObject SID_PASTEOBJECT
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = TRUE,
......@@ -552,7 +530,6 @@ SfxVoidItem PrevError SID_PREVERR
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = TRUE,
......@@ -576,7 +553,6 @@ SfxVoidItem PrevMark SID_PREVMARK
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = TRUE,
......@@ -600,7 +576,6 @@ SfxBoolItem RedrawAutomatic SID_AUTO_REDRAW
[
/* flags: */
AutoUpdate = TRUE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = TRUE,
......@@ -626,7 +601,6 @@ SfxVoidItem SaveSymbols SID_SAVESYMBOLS
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = TRUE,
......@@ -650,7 +624,6 @@ SfxVoidItem SetPaperSize SID_GETEDITTEXT
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = TRUE,
......@@ -674,7 +647,6 @@ SfxVoidItem SymbolCatalogue SID_SYMBOLS_CATALOGUE
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = TRUE,
ReadOnlyDoc = TRUE,
......@@ -698,7 +670,6 @@ SfxVoidItem Symbols SID_SYMBOLS
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = TRUE,
ReadOnlyDoc = TRUE,
......@@ -722,7 +693,6 @@ SfxBoolItem Textmode SID_TEXTMODE
[
/* flags: */
AutoUpdate = TRUE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = TRUE,
......@@ -748,7 +718,6 @@ SfxStringItem TextStatus SID_TEXTSTATUS
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = TRUE,
......@@ -774,7 +743,6 @@ SfxVoidItem UnicodeNotationToggle SID_UNICODE_NOTATION_TOGGLE
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = FALSE,
......@@ -798,7 +766,6 @@ SfxVoidItem ToolBoxWindow SID_TOOLBOXWINDOW
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = FALSE,
......@@ -822,7 +789,6 @@ SfxBoolItem ToolBox SID_TOOLBOX
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = FALSE,
......@@ -848,7 +814,6 @@ SfxVoidItem ZoomIn SID_ZOOMIN
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = TRUE,
......@@ -872,7 +837,6 @@ SfxVoidItem ZoomOut SID_ZOOMOUT
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = TRUE,
......
This diff is collapsed.
......@@ -213,7 +213,7 @@ interface BaseTextSelection
[
ExecMethod = ExecBckCol ;
StateMethod = GetBckColState ;
Cachable , AutoUpdate ;
AutoUpdate ;
DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
]
......
......@@ -567,7 +567,6 @@ interface BaseTextEditView
[
ExecMethod = Execute ;
StateMethod = NoState ;
FastCall , Cachable ;
]
FN_SYNC_LABELS // status(play)
......@@ -704,7 +703,6 @@ interface BaseTextEditView
ExecMethod = ExecViewOptions ;
StateMethod = StateViewOptions ;
Export = FALSE;
Cachable;
DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
]
......@@ -713,7 +711,6 @@ interface BaseTextEditView
ExecMethod = ExecViewOptions ;
StateMethod = StateViewOptions ;
Export = FALSE;
Cachable;
]
FN_VIEW_GRAPHIC // status()
......@@ -733,7 +730,6 @@ interface BaseTextEditView
[
ExecMethod = ExecViewOptions ;
StateMethod = StateViewOptions ;
Cachable ;
Export = FALSE;
]
......@@ -741,7 +737,6 @@ interface BaseTextEditView
[
ExecMethod = ExecViewOptions ;
StateMethod = StateViewOptions ;
Cachable ;
Export = FALSE;
]
......@@ -749,7 +744,6 @@ interface BaseTextEditView
[
ExecMethod = ExecViewOptions ;
StateMethod = StateViewOptions ;
Cachable ;
Export = FALSE;
]
......
This diff is collapsed.
......@@ -26,7 +26,6 @@ interface Text : BaseText
ExecMethod = ExecInsert ;
StateMethod = StateInsert ;
DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
Cachable ;
]
// Here should the slots be integrated, which are not supported
// in StarWriter/WEB
......
......@@ -26,7 +26,6 @@ interface WebText : BaseText
ExecMethod = ExecInsert ;
StateMethod = StateInsert ;
DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
Cachable ;
]
// Here should the slots are be inserted, but O N L Y those that are supported
// by StarWriter/WEB
......
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