diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-22 13:20:22 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-22 17:17:18 +0100 |
commit | de6ccf060cc85a6ea154989bcc254e37854aa07b (patch) | |
tree | 25e3e88706f1012f777bdde58604d7e54c149a9d /sd/sdi | |
parent | 26be5f21cebfe9acad088a1086f97eebdb437b7c (diff) |
Revert "unused SID command in sd"
This reverts commit 46db544b41fd30f61dd7b7b4fa2b97ab22ceb079.
Change-Id: I8eed13269000a7fc4c52c1695e36df8607b470ac
Reviewed-on: https://gerrit.libreoffice.org/46965
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd/sdi')
-rw-r--r-- | sd/sdi/ViewShellBase.sdi | 9 | ||||
-rw-r--r-- | sd/sdi/_drvwsh.sdi | 123 | ||||
-rw-r--r-- | sd/sdi/drviewsh.sdi | 10 | ||||
-rw-r--r-- | sd/sdi/sdraw.sdi | 554 |
4 files changed, 696 insertions, 0 deletions
diff --git a/sd/sdi/ViewShellBase.sdi b/sd/sdi/ViewShellBase.sdi index 21eba48bb46a..cc60732b7178 100644 --- a/sd/sdi/ViewShellBase.sdi +++ b/sd/sdi/ViewShellBase.sdi @@ -18,6 +18,10 @@ interface ViewShellBaseView { + SID_SWITCH_SHELL + [ + ExecMethod = Execute; + ] SID_LEFT_PANE_IMPRESS [ ExecMethod = Execute; @@ -28,6 +32,11 @@ interface ViewShellBaseView ExecMethod = Execute; StateMethod = GetState; ] + SID_NOTES_WINDOW + [ + ExecMethod = Execute; + StateMethod = GetState; + ] SID_NORMAL_MULTI_PANE_GUI [ ExecMethod = Execute; diff --git a/sd/sdi/_drvwsh.sdi b/sd/sdi/_drvwsh.sdi index 9cdb63eb9321..a18924f36a13 100644 --- a/sd/sdi/_drvwsh.sdi +++ b/sd/sdi/_drvwsh.sdi @@ -422,6 +422,11 @@ interface DrawView ExecMethod = FuTemporary ; StateMethod = GetMenuState ; ] + SID_PAGESIZE // ole : no, status : rec play + [ + ExecMethod = FuTemporary ; + StateMethod = GetMenuState ; + ] SID_PAGEMARGIN // ole : no, status : rec play [ ExecMethod = FuTemporary ; @@ -1122,6 +1127,16 @@ interface DrawView ExecMethod = FuPermanent ; StateMethod = GetMenuState ; ] + SID_MOVETO // ole : no, status : play rec + [ + ExecMethod = FuPermanent ; + StateMethod = GetMenuState ; + ] + SID_LINETO // ole : no, status : play rec + [ + ExecMethod = FuPermanent ; + StateMethod = GetMenuState ; + ] SID_BEZIERTO // ole : no, status : play rec [ ExecMethod = FuPermanent ; @@ -1799,11 +1814,119 @@ interface DrawView ExecMethod = FuSupport ; StateMethod = GetMenuState ; ] + // problem with SID_ATTR_FILL_STYLE: + // former XFillStyle, now property FillStyle (Get/Set) + // therefore Export = FALSE ! + SID_SETFILLSTYLE // ole : no, status : play rec + [ + ExecMethod = AttrExec ; + StateMethod = AttrState ; + Export = FALSE ; + ] + SID_GETFILLSTYLE // ole : no, status : play rec + [ + ExecMethod = AttrExec ; + StateMethod = AttrState ; + ] + SID_SETLINESTYLE // ole : no, status : play rec + [ + ExecMethod = AttrExec ; + StateMethod = AttrState ; + ] + SID_GETLINESTYLE // ole : no, status : play rec + [ + ExecMethod = AttrExec ; + StateMethod = AttrState ; + ] + // problem with SID_ATTR_LINE_WIDTH: + // former XLineWidth, now property LineWidth (Get/Set) + // therefore Export = FALSE ! + SID_SETLINEWIDTH // ole : no, status : play rec + [ + ExecMethod = AttrExec ; + StateMethod = AttrState ; + Export = FALSE ; + ] + SID_GETLINEWIDTH // ole : no, status : play rec + [ + ExecMethod = AttrExec ; + StateMethod = AttrState ; + ] + //DB: FillColor -> SetFillColor + // problem with SID_ATTR_FILL_COLOR: + // former XFillColor, now property FillColor (Get/Set) + // therefore Export = FALSE ! + SID_SETFILLCOLOR // ole : no, status : play rec + [ + ExecMethod = AttrExec ; + StateMethod = AttrState ; + Export = FALSE ; + ] + SID_SETLINECOLOR // ole : no, status : play rec + [ + ExecMethod = AttrExec ; + StateMethod = AttrState ; + ] + SID_SETHATCHCOLOR // ole : no, status : play rec + [ + ExecMethod = AttrExec ; + StateMethod = AttrState ; + ] + SID_SETGRADSTARTCOLOR // ole : no, status : play rec + [ + ExecMethod = AttrExec ; + StateMethod = AttrState ; + ] + SID_SETGRADENDCOLOR // ole : no, status : play rec + [ + ExecMethod = AttrExec ; + StateMethod = AttrState ; + ] + SID_GETRED // ole : no, status : play rec + [ + ExecMethod = AttrExec ; + StateMethod = AttrState ; + ] + SID_GETBLUE // ole : no, status : play rec + [ + ExecMethod = AttrExec ; + StateMethod = AttrState ; + ] + SID_GETGREEN // ole : no, status : play rec + [ + ExecMethod = AttrExec ; + StateMethod = AttrState ; + ] SID_DASH // ole : no, status : play rec [ ExecMethod = AttrExec ; StateMethod = AttrState ; ] + SID_HATCH // ole : no, status : play rec + [ + ExecMethod = AttrExec ; + StateMethod = AttrState ; + ] + SID_GRADIENT // ole : no, status : play rec + [ + ExecMethod = AttrExec ; + StateMethod = AttrState ; + ] + SID_SELECTGRADIENT // ole : no, status : play rec + [ + ExecMethod = AttrExec ; + StateMethod = AttrState ; + ] + SID_SELECTHATCH // ole : no, status : play rec + [ + ExecMethod = AttrExec ; + StateMethod = AttrState ; + ] + SID_UNSELECT // ole : no, status : play rec + [ + ExecMethod = AttrExec ; + StateMethod = AttrState ; + ] SID_TEXTATTR_DLG // ole : no, status : play rec [ ExecMethod = FuTemporary ; diff --git a/sd/sdi/drviewsh.sdi b/sd/sdi/drviewsh.sdi index 616bbd15580e..931a54ee983d 100644 --- a/sd/sdi/drviewsh.sdi +++ b/sd/sdi/drviewsh.sdi @@ -72,12 +72,22 @@ interface ImpressEditView : DrawView ExecMethod = FuSupport ; StateMethod = GetMenuState ; ] + SID_CLEAR_UNDO_STACK // ole : no, status : ? + [ + ExecMethod = FuSupport ; + StateMethod = GetMenuState ; + ] SID_STYLE_FAMILY5 // ole : no, status : ? [ ExecMethod = FuTemporary ; StateMethod = GetAttrState ; Export = FALSE ; ] + SID_ANIMATOR_INIT // ole : no, status : ? + [ + ExecMethod = ExecAnimationWin ; + StateMethod = GetAnimationWinState ; + ] SID_ANIMATOR_ADD // ole : no, status : ? [ ExecMethod = ExecAnimationWin ; diff --git a/sd/sdi/sdraw.sdi b/sd/sdi/sdraw.sdi index 937315af1b57..0d39885e1584 100644 --- a/sd/sdi/sdraw.sdi +++ b/sd/sdi/sdraw.sdi @@ -105,6 +105,24 @@ SfxBoolItem AnimatorCreateObject SID_ANIMATOR_CREATE GroupId = SfxGroupId::Options; ] +SfxBoolItem AnimatorInit SID_ANIMATOR_INIT + +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::Options; +] + SfxUInt16Item AnimatorState SID_ANIMATOR_STATE [ @@ -1180,6 +1198,23 @@ SfxStringItem DeleteSnapItem SID_DELETE_SNAPITEM GroupId = SfxGroupId::Edit; ] +SfxVoidItem DeSelect SID_UNSELECT +() +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = TRUE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::Edit; +] + SfxBoolItem DiaMode SID_SLIDE_SORTER_MODE [ AutoUpdate = FALSE, @@ -1354,6 +1389,23 @@ SfxVoidItem ExpandPage SID_EXPAND_PAGE GroupId = SfxGroupId::Edit; ] +SfxVoidItem SetFillColor SID_SETFILLCOLOR +(SfxUInt32Item Red ID_VAL_RED,SfxUInt32Item Green ID_VAL_GREEN,SfxUInt32Item Blue ID_VAL_BLUE) +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::Format; +] + SfxVoidItem Forward SID_MOREFRONT () [ @@ -1371,6 +1423,111 @@ SfxVoidItem Forward SID_MOREFRONT GroupId = SfxGroupId::Modify; ] +SfxVoidItem GetBlue SID_GETBLUE +(SfxUInt32Item WhatKind ID_VAL_WHATKIND) +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = TRUE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::Drawing; +] + +SfxUInt32Item GetFillStyle SID_GETFILLSTYLE + +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = TRUE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::Drawing; +] + +SfxVoidItem GetGreen SID_GETGREEN +(SfxUInt32Item WhatKind ID_VAL_WHATKIND) +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = TRUE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::Drawing; +] + +SfxUInt32Item GetLineStyle SID_GETLINESTYLE + +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = TRUE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::Drawing; +] + +SfxUInt32Item GetLineWidth SID_GETLINEWIDTH + +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = TRUE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::Drawing; +] + +SfxVoidItem GetRed SID_GETRED +(SfxUInt32Item WhatKind ID_VAL_WHATKIND) +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = TRUE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::Drawing; +] + SfxBoolItem GlueEditMode SID_GLUE_EDITMODE [ @@ -1623,6 +1780,57 @@ SfxBoolItem GlueVertAlignTop SID_GLUE_VERTALIGN_TOP GroupId = SfxGroupId::Drawing; ] +SfxVoidItem Gradient SID_GRADIENT +(SfxStringItem Name ID_VAL_INDEX,SfxUInt32Item Style ID_VAL_STYLE,SfxUInt32Item Angle ID_VAL_ANGLE,SfxUInt32Item Border ID_VAL_BORDER,SfxUInt32Item XOffset ID_VAL_CENTER_X,SfxUInt32Item YOffset ID_VAL_CENTER_Y,SfxUInt32Item StartIntens ID_VAL_STARTINTENS,SfxUInt32Item EndIntens ID_VAL_ENDINTENS) +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::Drawing; +] + +SfxVoidItem GradientEndColor SID_SETGRADENDCOLOR +(SfxStringItem Name ID_VAL_INDEX,SfxUInt32Item Red ID_VAL_RED,SfxUInt32Item Green ID_VAL_GREEN,SfxUInt32Item Blue ID_VAL_BLUE) +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::Format; +] + +SfxVoidItem GradientStartColor SID_SETGRADSTARTCOLOR +(SfxStringItem Name ID_VAL_INDEX,SfxUInt32Item Red ID_VAL_RED,SfxUInt32Item Green ID_VAL_GREEN,SfxUInt32Item Blue ID_VAL_BLUE) +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::Format; +] + SfxBoolItem GridFront SID_GRID_FRONT [ @@ -1676,6 +1884,40 @@ SfxBoolItem HandoutMode SID_HANDOUT_MASTER_MODE GroupId = SfxGroupId::Document; ] +SfxVoidItem Hatch SID_HATCH +(SfxStringItem Name ID_VAL_INDEX,SfxUInt32Item Style ID_VAL_STYLE,SfxUInt32Item Distance ID_VAL_DISTANCE,SfxUInt32Item Angle ID_VAL_ANGLE) +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::Drawing; +] + +SfxVoidItem HatchColor SID_SETHATCHCOLOR +(SfxStringItem Name ID_VAL_INDEX,SfxUInt32Item Red ID_VAL_RED,SfxUInt32Item Green ID_VAL_GREEN,SfxUInt32Item Blue ID_VAL_BLUE) +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::Format; +] + SfxBoolItem HelplinesFront SID_HELPLINES_FRONT [ @@ -2108,6 +2350,23 @@ SfxBoolItem LeaveAllGroups SID_LEAVE_ALL_GROUPS GroupId = SfxGroupId::Modify; ] +SfxVoidItem LineColor SID_SETLINECOLOR +(SfxUInt32Item Red ID_VAL_RED,SfxUInt32Item Green ID_VAL_GREEN,SfxUInt32Item Blue ID_VAL_BLUE) +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::Format; +] + SfxVoidItem LineEndPolygon SID_LINEEND_POLYGON () [ @@ -2125,6 +2384,23 @@ SfxVoidItem LineEndPolygon SID_LINEEND_POLYGON GroupId = SfxGroupId::Drawing; ] +SfxVoidItem LineTo SID_LINETO +(SfxUInt32Item MouseEndX ID_VAL_MOUSEEND_X,SfxUInt32Item MouseEndY ID_VAL_MOUSEEND_Y) +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::Drawing; +] + SfxVoidItem ManageLinks SID_MANAGE_LINKS () [ @@ -2348,6 +2624,23 @@ SfxVoidItem Morphing SID_POLYGON_MORPHING GroupId = SfxGroupId::Modify; ] +SfxVoidItem MoveTo SID_MOVETO +(SfxUInt32Item MouseStartX ID_VAL_MOUSESTART_X,SfxUInt32Item MouseStartY ID_VAL_MOUSESTART_Y) +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::Drawing; +] + SfxVoidItem NameGroup SID_NAME_GROUP () [ @@ -2724,6 +3017,23 @@ SfxVoidItem PageSetup SID_PAGESETUP GroupId = SfxGroupId::Options; ] +SfxVoidItem PageSize SID_PAGESIZE +(SfxUInt32Item PageWidth ID_VAL_PAGEWIDTH,SfxUInt32Item PageHeight ID_VAL_PAGEHEIGHT,SfxBoolItem ScaleObjects ID_VAL_SCALEOBJECTS) +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::Application; +] + SfxUInt16Item PagesPerRow SID_PAGES_PER_ROW [ @@ -2866,6 +3176,23 @@ SfxVoidItem PresentationEnd SID_PRESENTATION_END GroupId = SfxGroupId::View; ] +SfxVoidItem ClearUndoStack SID_CLEAR_UNDO_STACK +() +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::View; +] + SfxVoidItem PresentationLayout SID_PRESENTATION_LAYOUT () [ @@ -3040,6 +3367,91 @@ SvxObjectItem RulerObject SID_RULER_OBJECT GroupId = ; ] +SfxVoidItem SelectGradient SID_SELECTGRADIENT +(SfxStringItem Name ID_VAL_INDEX) +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = TRUE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::Edit; +] + +SfxVoidItem SelectHatch SID_SELECTHATCH +(SfxStringItem Name ID_VAL_INDEX) +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = TRUE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::Edit; +] + +SfxVoidItem SetFillStyle SID_SETFILLSTYLE +(SfxUInt32Item Style ID_VAL_STYLE) +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::Format; +] + +SfxVoidItem SetLineStyle SID_SETLINESTYLE +(SfxUInt32Item Style ID_VAL_STYLE) +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::Format; +] + +SfxVoidItem SetLineWidth SID_SETLINEWIDTH +(SfxUInt32Item Width ID_VAL_WIDTH) +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::Format; +] + SfxStringItem SetSnapItem SID_SET_SNAPITEM [ @@ -3712,6 +4124,108 @@ SfxVoidItem DistributeRows SID_TABLE_DISTRIBUTE_ROWS GroupId = SfxGroupId::Table; ] +SfxVoidItem TaskPaneApplyToAllSlides SID_TP_APPLY_TO_ALL_SLIDES +[ + AutoUpdate = TRUE, + FastCall = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::View; +] + +SfxVoidItem TaskPaneApplyToSelectedSlides SID_TP_APPLY_TO_SELECTED_SLIDES +[ + AutoUpdate = TRUE, + FastCall = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::View; +] + +SfxVoidItem TaskPaneUseForNewPresentations SID_TP_USE_FOR_NEW_PRESENTATIONS +[ + AutoUpdate = TRUE, + FastCall = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::View; +] + +SfxVoidItem TaskPaneShowSmallPreview SID_TP_SHOW_SMALL_PREVIEW +[ + AutoUpdate = TRUE, + FastCall = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::View; +] + +SfxVoidItem TaskPaneShowLargePreview SID_TP_SHOW_LARGE_PREVIEW +[ + AutoUpdate = TRUE, + FastCall = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::View; +] + +SfxVoidItem TaskPaneEditMaster SID_TP_EDIT_MASTER +[ + AutoUpdate = TRUE, + FastCall = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::View; +] + SfxVoidItem TaskPaneInsertPage SID_INSERTPAGE_LAYOUT_MENU [ AutoUpdate = FALSE, @@ -3729,6 +4243,27 @@ SfxVoidItem TaskPaneInsertPage SID_INSERTPAGE_LAYOUT_MENU GroupId = SfxGroupId::Insert; ] +/** This item holds the requested type of view shell when calling the + SID_SWITCH_SHELL slot. +*/ +SfxInt32Item SwitchViewShell SID_SWITCH_SHELL +[ + AutoUpdate = FALSE, + FastCall = FALSE, + ReadOnlyDoc = TRUE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + Asynchron; + + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::View; +] + SfxBoolItem LeftPaneImpress SID_LEFT_PANE_IMPRESS [ @@ -3767,6 +4302,25 @@ SfxBoolItem LeftPaneDraw SID_LEFT_PANE_DRAW GroupId = SfxGroupId::Modify; ] +SfxVoidItem NotesChildWindow SID_NOTES_WINDOW + +[ + AutoUpdate = TRUE, + FastCall = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = TRUE, + RecordAbsolute = FALSE, + RecordPerSet; + Asynchron; + + + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = SfxGroupId::View; +] + SfxBoolItem NormalMultiPaneGUI SID_NORMAL_MULTI_PANE_GUI [ |