From b21a5ef9255b086a639c0d615f104062f92f4ab9 Mon Sep 17 00:00:00 2001 From: Andre Fischer Date: Thu, 11 Mar 2010 16:21:09 +0100 Subject: renaissance1: #i107215# Fixed drag-and-drop when used with auto-scrolling. Improved hide/show handling. --- sd/sdi/SlideSorterController.sdi | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'sd/sdi') diff --git a/sd/sdi/SlideSorterController.sdi b/sd/sdi/SlideSorterController.sdi index ff64d80bd8af..8affd602f376 100644 --- a/sd/sdi/SlideSorterController.sdi +++ b/sd/sdi/SlideSorterController.sdi @@ -88,6 +88,11 @@ interface SlideSorterView ExecMethod = FuTemporary ; StateMethod = GetMenuState ; ] + SID_DUPLICATE_PAGE + [ + ExecMethod = FuTemporary ; + StateMethod = GetMenuState ; + ] SID_DELETE_PAGE [ ExecMethod = FuTemporary ; -- cgit v1.2.3 From 5290430f0667ea5dc895cc3cbc421d445c7f134f Mon Sep 17 00:00:00 2001 From: Andre Fischer Date: Fri, 12 Mar 2010 14:02:52 +0100 Subject: renaissance1: #i107215# Keep insertion indicator visible when context menu is displayed. --- sd/sdi/SlideSorterController.sdi | 15 -------- .../controller/SlideSorterController.cxx | 14 ++++--- .../ui/slidesorter/controller/SlsClipboard.cxx | 12 ++++-- .../controller/SlsInsertionIndicatorHandler.cxx | 43 +++++++++++++++++++--- .../controller/SlsInsertionIndicatorHandler.hxx | 21 +++++++++++ 5 files changed, 76 insertions(+), 29 deletions(-) (limited to 'sd/sdi') diff --git a/sd/sdi/SlideSorterController.sdi b/sd/sdi/SlideSorterController.sdi index 8affd602f376..449969ce5b96 100644 --- a/sd/sdi/SlideSorterController.sdi +++ b/sd/sdi/SlideSorterController.sdi @@ -240,21 +240,6 @@ interface SlideSorterView ExecMethod = FuTemporary ; StateMethod = GetMenuState ; ] - /* - SID_PRINTDOC // ole : no, status : ? - [ - StateMethod = GetMenuState ; - ] - SID_PRINTDOCDIRECT // ole : no, status : ? - [ - StateMethod = GetMenuState ; - ] - SID_SETUPPRINTER // ole : no, status : ? - [ - StateMethod = GetMenuState ; - ] -*/ - SID_OUTPUT_QUALITY_COLOR // ole : no, status : play rec [ ExecMethod = ExecCtrl ; diff --git a/sd/source/ui/slidesorter/controller/SlideSorterController.cxx b/sd/source/ui/slidesorter/controller/SlideSorterController.cxx index 8b32a3c34c5c..e5076f0fa931 100644 --- a/sd/source/ui/slidesorter/controller/SlideSorterController.cxx +++ b/sd/source/ui/slidesorter/controller/SlideSorterController.cxx @@ -438,18 +438,22 @@ bool SlideSorterController::Command ( else nPopupId = RID_SLIDE_SORTER_MASTER_NOSEL_POPUP; } - + ::boost::scoped_ptr pContext; if (pPage == NULL) { // When there is no selection, then we show the insertion // indicator so that the user knows where a page insertion // would take place. - GetInsertionIndicatorHandler()->Start(false); - GetInsertionIndicatorHandler()->UpdatePosition( + mpInsertionIndicatorHandler->Start(false); + mpInsertionIndicatorHandler->UpdatePosition( pWindow->PixelToLogic(rEvent.GetMousePosPixel()), InsertionIndicatorHandler::MoveMode); - GetInsertionIndicatorHandler()->UpdateIndicatorIcon( + mpInsertionIndicatorHandler->UpdateIndicatorIcon( + dynamic_cast(SD_MOD()->pTransferClip)); + mpInsertionIndicatorHandler->UpdateIndicatorIcon( dynamic_cast(SD_MOD()->pTransferClip)); + pContext.reset(new InsertionIndicatorHandler::ForceShowContext( + mpInsertionIndicatorHandler)); } pWindow->ReleaseMouse(); @@ -496,8 +500,8 @@ bool SlideSorterController::Command ( // finds the right place to insert a new slide. GetSelectionManager()->SetInsertionPosition( GetInsertionIndicatorHandler()->GetInsertionPageIndex()); - GetInsertionIndicatorHandler()->End(); } + pContext.reset(); bEventHasBeenHandled = true; } break; diff --git a/sd/source/ui/slidesorter/controller/SlsClipboard.cxx b/sd/source/ui/slidesorter/controller/SlsClipboard.cxx index 3213a3ce1bdc..7f74b600640a 100644 --- a/sd/source/ui/slidesorter/controller/SlsClipboard.cxx +++ b/sd/source/ui/slidesorter/controller/SlsClipboard.cxx @@ -236,10 +236,18 @@ sal_Int32 Clipboard::GetInsertionPosition (::Window* pWindow) mrController.GetInsertionIndicatorHandler()); if (pInsertionIndicatorHandler->IsActive()) { + // Use the insertion index of an active insertion indicator. nInsertPosition = pInsertionIndicatorHandler->GetInsertionPageIndex(); } + else if (mrController.GetSelectionManager()->GetInsertionPosition() >= 0) + { + // Use the insertion index of an insertion indicator that has been + // deactivated a short while ago. + nInsertPosition = mrController.GetSelectionManager()->GetInsertionPosition(); + } else if (mrController.GetFocusManager().IsFocusShowing()) { + // Use the focus to determine the insertion position. SdInsertPasteDlg aDialog (pWindow); if (aDialog.Execute() == RET_OK) { @@ -248,10 +256,6 @@ sal_Int32 Clipboard::GetInsertionPosition (::Window* pWindow) nInsertPosition ++; } } - else - { - nInsertPosition = mrController.GetSelectionManager()->GetInsertionPosition(); - } return nInsertPosition; } diff --git a/sd/source/ui/slidesorter/controller/SlsInsertionIndicatorHandler.cxx b/sd/source/ui/slidesorter/controller/SlsInsertionIndicatorHandler.cxx index 252d645168fc..68f4f1d6b0e3 100644 --- a/sd/source/ui/slidesorter/controller/SlsInsertionIndicatorHandler.cxx +++ b/sd/source/ui/slidesorter/controller/SlsInsertionIndicatorHandler.cxx @@ -55,7 +55,8 @@ InsertionIndicatorHandler::InsertionIndicatorHandler (SlideSorter& rSlideSorter) mbIsActive(false), mbIsReadOnly(mrSlideSorter.GetModel().IsReadOnly()), mbIsOverSourceView(true), - maIconSize(0,0) + maIconSize(0,0), + mbIsForcedShow(false) { } @@ -89,10 +90,7 @@ void InsertionIndicatorHandler::Start (const bool bIsOverSourceView) void InsertionIndicatorHandler::End (void) { - if ( ! mbIsActive) - return; - - if (mbIsReadOnly) + if (mbIsForcedShow || ! mbIsActive || mbIsReadOnly) return; GetInsertAnimator()->Reset(); @@ -107,6 +105,23 @@ void InsertionIndicatorHandler::End (void) +void InsertionIndicatorHandler::ForceShow (void) +{ + mbIsForcedShow = true; +} + + + + +void InsertionIndicatorHandler::ForceEnd (void) +{ + mbIsForcedShow = false; + End(); +} + + + + void InsertionIndicatorHandler::UpdateIndicatorIcon (const Transferable* pTransferable) { mpInsertionIndicatorOverlay->Create(pTransferable); @@ -273,4 +288,22 @@ bool InsertionIndicatorHandler::IsInsertionTrivial ( + +//===== InsertionIndicatorHandler::ForceShowContext =========================== + +InsertionIndicatorHandler::ForceShowContext::ForceShowContext ( + const ::boost::shared_ptr& rpHandler) + : mpHandler(rpHandler) +{ + mpHandler->ForceShow(); +} + + + + +InsertionIndicatorHandler::ForceShowContext::~ForceShowContext (void) +{ + mpHandler->ForceEnd(); +} + } } } // end of namespace ::sd::slidesorter::controller diff --git a/sd/source/ui/slidesorter/inc/controller/SlsInsertionIndicatorHandler.hxx b/sd/source/ui/slidesorter/inc/controller/SlsInsertionIndicatorHandler.hxx index 53c8bdfd3d42..73f11e3e0e32 100644 --- a/sd/source/ui/slidesorter/inc/controller/SlsInsertionIndicatorHandler.hxx +++ b/sd/source/ui/slidesorter/inc/controller/SlsInsertionIndicatorHandler.hxx @@ -70,6 +70,15 @@ public: */ void End (void); + class ForceShowContext + { + public: + ForceShowContext (const ::boost::shared_ptr& rpHandler); + ~ForceShowContext (void); + private: + const ::boost::shared_ptr mpHandler; + }; + /** Update the indicator icon from the current transferable (from the clipboard or an active drag and drop operation.) */ @@ -114,11 +123,23 @@ private: bool mbIsReadOnly; bool mbIsOverSourceView; Size maIconSize; + bool mbIsForcedShow; void SetPosition ( const Point& rPoint, const Mode eMode); ::boost::shared_ptr GetInsertAnimator (void); + + /** Make the insertion indicator visible (that is the show part) and + keep it visible, even when the mouse leaves the window (that is the + force part). We need this when a context menu is displayed (mouse + over the popup menu triggers a mouse leave event) while the + insertion indicator remains visible in the background. + + In effect all calls to End() are ignored until ForceEnd() is called. + */ + void ForceShow (void); + void ForceEnd (void); }; -- cgit v1.2.3 From 436416a6320037855846fce127a0cfa77ac45270 Mon Sep 17 00:00:00 2001 From: Andre Fischer Date: Thu, 8 Jul 2010 12:27:24 +0200 Subject: renaissance1: resolved merge conflicts, cleanup. --- sd/inc/CustomAnimationCloner.hxx | 0 sd/inc/CustomAnimationEffect.hxx | 0 sd/inc/CustomAnimationPreset.hxx | 0 sd/inc/EffectMigration.hxx | 0 sd/inc/FactoryIds.hxx | 0 sd/inc/Outliner.hxx | 0 sd/inc/OutlinerIterator.hxx | 0 sd/inc/SdShapeTypes.hxx | 0 sd/inc/TransitionPreset.hxx | 0 sd/inc/animations.hxx | 0 sd/inc/anmdef.hxx | 0 sd/inc/anminfo.hxx | 0 sd/inc/app.hrc | 0 sd/inc/app.hxx | 0 sd/inc/cusshow.hxx | 0 sd/inc/diadef.h | 0 sd/inc/drawdoc.hxx | 0 sd/inc/eetext.hxx | 0 sd/inc/fadedef.h | 0 sd/inc/glob.hrc | 0 sd/inc/glob.hxx | 0 sd/inc/helper/simplereferencecomponent.hxx | 0 sd/inc/helpids.h | 0 sd/inc/imapinfo.hxx | 0 sd/inc/makefile.mk | 0 sd/inc/misc.hxx | 0 sd/inc/misc/scopelock.hxx | 0 sd/inc/movedef.hxx | 0 sd/inc/pch/precompiled_sd.cxx | 0 sd/inc/pch/precompiled_sd.hxx | 0 sd/inc/pglink.hxx | 0 sd/inc/pres.hxx | 0 sd/inc/prlayout.hxx | 0 sd/inc/resltn.hxx | 0 sd/inc/sd_primitivetypes2d.hxx | 0 sd/inc/sdabstdlg.hxx | 0 sd/inc/sdattr.hrc | 0 sd/inc/sdattr.hxx | 0 sd/inc/sdcgmfilter.hxx | 0 sd/inc/sddll.hxx | 0 sd/inc/sddllapi.h | 0 sd/inc/sdenumdef.hxx | 0 sd/inc/sderror.hxx | 0 sd/inc/sdfilter.hxx | 0 sd/inc/sdgrffilter.hxx | 0 sd/inc/sdhtmlfilter.hxx | 0 sd/inc/sdiocmpt.hxx | 0 sd/inc/sdmod.hxx | 0 sd/inc/sdobjfac.hxx | 0 sd/inc/sdpage.hxx | 0 sd/inc/sdpptwrp.hxx | 0 sd/inc/sdresid.hxx | 0 sd/inc/sduiks.hrc | 0 sd/inc/sdundo.hxx | 0 sd/inc/sdxmlwrp.hxx | 0 sd/inc/shapelist.hxx | 0 sd/inc/stlfamily.hxx | 0 sd/inc/stlpool.hxx | 0 sd/inc/stlsheet.hxx | 0 sd/inc/strmname.h | 0 sd/inc/textapi.hxx | 0 sd/inc/undo/undofactory.hxx | 0 sd/inc/undo/undomanager.hxx | 0 sd/inc/undo/undoobjects.hxx | 0 sd/inc/undoanim.hxx | 0 sd/prj/d.lst | 0 sd/prj/struct.txt | 0 sd/qa/unoapi/knownissues.xcl | 0 sd/qa/unoapi/makefile.mk | 0 sd/qa/unoapi/sd.sce | 0 sd/res/buttons/glas-blue.zip | Bin sd/res/buttons/glas-green.zip | Bin sd/res/buttons/glas-red.zip | Bin sd/res/buttons/round-gorilla.zip | Bin sd/res/buttons/round-white.zip | Bin sd/res/buttons/simple.zip | Bin sd/res/buttons/square-blue.zip | Bin sd/res/buttons/square-gray.zip | Bin sd/res/buttons/square-green.zip | Bin sd/res/buttons/square-red.zip | Bin sd/res/buttons/square-yellow.zip | Bin sd/res/webview/common.inc | 0 sd/res/webview/common.pl | 0 sd/res/webview/edit.asp | 0 sd/res/webview/edit.pl | 0 sd/res/webview/editpic.asp | 0 sd/res/webview/editpic.pl | 0 sd/res/webview/index.pl | 0 sd/res/webview/poll.asp | 0 sd/res/webview/poll.pl | 0 sd/res/webview/savepic.asp | 0 sd/res/webview/savepic.pl | 0 sd/res/webview/show.asp | 0 sd/res/webview/show.pl | 0 sd/res/webview/webview.asp | 0 sd/res/webview/webview.pl | 0 sd/sdi/SlideSorterController.sdi | 0 sd/sdi/ViewShellBase.sdi | 0 sd/sdi/_docsh.sdi | 0 sd/sdi/_drvwsh.sdi | 0 sd/sdi/app.sdi | 0 sd/sdi/docshell.sdi | 0 sd/sdi/drbezob.sdi | 0 sd/sdi/drgrfob.sdi | 0 sd/sdi/drtxtob.sdi | 0 sd/sdi/drviewsh.sdi | 0 sd/sdi/grdocsh.sdi | 0 sd/sdi/grviewsh.sdi | 0 sd/sdi/makefile.mk | 0 sd/sdi/mediaob.sdi | 0 sd/sdi/outlnvsh.sdi | 0 sd/sdi/sdgslots.sdi | 0 sd/sdi/sdnew.sdi | 0 sd/sdi/sdraw.sdi | 0 sd/sdi/sdslots.hrc | 0 sd/sdi/sdslots.sdi | 0 sd/sdi/tables.sdi | 0 sd/source/core/CustomAnimationCloner.cxx | 0 sd/source/core/CustomAnimationEffect.cxx | 0 sd/source/core/CustomAnimationPreset.cxx | 0 sd/source/core/EffectMigration.cxx | 0 sd/source/core/PageListWatcher.cxx | 0 sd/source/core/PageListWatcher.hxx | 0 sd/source/core/TransitionPreset.cxx | 0 sd/source/core/anminfo.cxx | 0 sd/source/core/annotations/Annotation.cxx | 0 sd/source/core/annotations/AnnotationAccess.cxx | 0 .../core/annotations/AnnotationEnumeration.cxx | 0 sd/source/core/annotations/makefile.mk | 0 sd/source/core/cusshow.cxx | 0 sd/source/core/drawdoc.cxx | 0 sd/source/core/drawdoc2.cxx | 0 sd/source/core/drawdoc3.cxx | 0 sd/source/core/drawdoc4.cxx | 0 sd/source/core/drawdoc_animations.cxx | 0 sd/source/core/glob.src | 0 sd/source/core/makefile.mk | 0 sd/source/core/pglink.cxx | 0 sd/source/core/sdattr.cxx | 0 sd/source/core/sdiocmpt.cxx | 0 sd/source/core/sdobjfac.cxx | 0 sd/source/core/sdpage.cxx | 0 sd/source/core/sdpage2.cxx | 0 sd/source/core/sdpage_animations.cxx | 0 sd/source/core/shapelist.cxx | 0 sd/source/core/stlfamily.cxx | 0 sd/source/core/stlpool.cxx | 0 sd/source/core/stlsheet.cxx | 0 sd/source/core/text/makefile.mk | 0 sd/source/core/text/textapi.cxx | 0 sd/source/core/typemap.cxx | 0 sd/source/core/undo/makefile.mk | 0 sd/source/core/undo/undofactory.cxx | 0 sd/source/core/undo/undomanager.cxx | 0 sd/source/core/undo/undoobjects.cxx | 0 sd/source/core/undoanim.cxx | 0 sd/source/filter/cgm/makefile.mk | 0 sd/source/filter/cgm/sdcgmfilter.cxx | 0 sd/source/filter/eppt/eppt.cxx | 0 sd/source/filter/eppt/eppt.hxx | 0 sd/source/filter/eppt/epptdef.hxx | 0 sd/source/filter/eppt/epptso.cxx | 0 sd/source/filter/eppt/escherex.cxx | 0 sd/source/filter/eppt/escherex.hxx | 0 sd/source/filter/eppt/makefile.mk | 0 sd/source/filter/eppt/pptexanimations.cxx | 0 sd/source/filter/eppt/pptexanimations.hxx | 0 sd/source/filter/eppt/pptexsoundcollection.cxx | 0 sd/source/filter/eppt/pptexsoundcollection.hxx | 0 sd/source/filter/grf/makefile.mk | 0 sd/source/filter/grf/sdgrffilter.cxx | 0 sd/source/filter/html/HtmlOptionsDialog.cxx | 0 sd/source/filter/html/buttonset.cxx | 0 sd/source/filter/html/buttonset.hxx | 0 sd/source/filter/html/htmlattr.cxx | 0 sd/source/filter/html/htmlattr.hxx | 0 sd/source/filter/html/htmlex.cxx | 0 sd/source/filter/html/htmlex.hxx | 0 sd/source/filter/html/makefile.mk | 0 sd/source/filter/html/pubdlg.cxx | 0 sd/source/filter/html/pubdlg.src | 0 sd/source/filter/html/sdhtmlfilter.cxx | 0 sd/source/filter/makefile.mk | 0 sd/source/filter/ppt/makefile.mk | 0 sd/source/filter/ppt/ppt97animations.cxx | 0 sd/source/filter/ppt/ppt97animations.hxx | 0 sd/source/filter/ppt/pptanimations.hxx | 0 sd/source/filter/ppt/pptatom.cpp | 0 sd/source/filter/ppt/pptatom.hxx | 0 sd/source/filter/ppt/pptin.cxx | 0 sd/source/filter/ppt/pptin.hxx | 0 sd/source/filter/ppt/pptinanimations.cxx | 0 sd/source/filter/ppt/pptinanimations.hxx | 0 sd/source/filter/ppt/propread.cxx | 0 sd/source/filter/ppt/propread.hxx | 0 sd/source/filter/sdfilter.cxx | 0 sd/source/filter/sdpptwrp.cxx | 0 sd/source/filter/xml/makefile.mk | 0 sd/source/filter/xml/sdtransform.cxx | 0 sd/source/filter/xml/sdxmlwrp.cxx | 0 sd/source/helper/makefile.mk | 0 sd/source/helper/simplereferencecomponent.cxx | 0 .../accessibility/AccessibleDocumentViewBase.cxx | 0 .../accessibility/AccessibleDrawDocumentView.cxx | 0 .../accessibility/AccessibleOutlineEditSource.cxx | 0 .../ui/accessibility/AccessibleOutlineView.cxx | 0 sd/source/ui/accessibility/AccessiblePageShape.cxx | 0 .../AccessiblePresentationGraphicShape.cxx | 0 .../AccessiblePresentationOLEShape.cxx | 0 .../accessibility/AccessiblePresentationShape.cxx | 0 .../ui/accessibility/AccessibleScrollPanel.cxx | 0 .../accessibility/AccessibleSlideSorterObject.cxx | 0 sd/source/ui/accessibility/AccessibleTreeNode.cxx | 0 .../ui/accessibility/AccessibleViewForwarder.cxx | 0 sd/source/ui/accessibility/SdShapeTypes.cxx | 0 sd/source/ui/accessibility/accessibility.hrc | 0 sd/source/ui/accessibility/accessibility.src | 0 sd/source/ui/animations/CustomAnimation.hrc | 0 sd/source/ui/animations/CustomAnimation.src | 0 .../ui/animations/CustomAnimationCreateDialog.cxx | 0 .../ui/animations/CustomAnimationCreateDialog.hrc | 0 .../ui/animations/CustomAnimationCreateDialog.hxx | 0 .../ui/animations/CustomAnimationCreateDialog.src | 0 sd/source/ui/animations/CustomAnimationDialog.cxx | 0 sd/source/ui/animations/CustomAnimationDialog.hrc | 0 sd/source/ui/animations/CustomAnimationDialog.hxx | 0 sd/source/ui/animations/CustomAnimationDialog.src | 0 sd/source/ui/animations/CustomAnimationList.cxx | 0 sd/source/ui/animations/CustomAnimationList.hxx | 0 sd/source/ui/animations/CustomAnimationPane.cxx | 0 sd/source/ui/animations/CustomAnimationPane.hrc | 0 sd/source/ui/animations/CustomAnimationPane.hxx | 0 sd/source/ui/animations/CustomAnimationPane.src | 0 sd/source/ui/animations/DialogListBox.cxx | 0 sd/source/ui/animations/STLPropertySet.cxx | 0 sd/source/ui/animations/STLPropertySet.hxx | 0 sd/source/ui/animations/SlideTransitionPane.cxx | 0 sd/source/ui/animations/SlideTransitionPane.hrc | 0 sd/source/ui/animations/SlideTransitionPane.hxx | 0 sd/source/ui/animations/SlideTransitionPane.src | 0 sd/source/ui/animations/makefile.mk | 0 sd/source/ui/animations/motionpathtag.cxx | 0 sd/source/ui/animations/motionpathtag.hxx | 0 sd/source/ui/annotations/annotationmanager.cxx | 0 sd/source/ui/annotations/annotations.hrc | 0 sd/source/ui/annotations/annotations.src | 0 sd/source/ui/annotations/annotationtag.cxx | 0 sd/source/ui/annotations/annotationtag.hxx | 0 sd/source/ui/annotations/annotationwindow.cxx | 0 sd/source/ui/annotations/annotationwindow.hxx | 0 sd/source/ui/annotations/makefile.mk | 0 sd/source/ui/app/_app.hrc | 0 sd/source/ui/app/accel_tmpl.src | 0 sd/source/ui/app/accelids_tmpl.src | 0 sd/source/ui/app/app.img | 0 sd/source/ui/app/app.src | 0 sd/source/ui/app/makefile.mk | 0 sd/source/ui/app/menu_tmpl.src | 0 sd/source/ui/app/menuids2_tmpl.src | 0 sd/source/ui/app/menuids3_tmpl.src | 0 sd/source/ui/app/menuids4_tmpl.src | 0 sd/source/ui/app/menuids_tmpl.src | 0 sd/source/ui/app/menuportal_tmpl.src | 0 sd/source/ui/app/popup.src | 0 sd/source/ui/app/popup2_tmpl.src | 0 sd/source/ui/app/res_bmp.src | 0 sd/source/ui/app/sddll.cxx | 0 sd/source/ui/app/sddll1.cxx | 0 sd/source/ui/app/sddll2.cxx | 0 sd/source/ui/app/sdmod.cxx | 0 sd/source/ui/app/sdmod1.cxx | 0 sd/source/ui/app/sdmod2.cxx | 0 sd/source/ui/app/sdpopup.cxx | 0 sd/source/ui/app/sdresid.cxx | 0 sd/source/ui/app/sdstring.src | 0 sd/source/ui/app/sdxfer.cxx | 0 sd/source/ui/app/strings.src | 0 sd/source/ui/app/tbx_ww.src | 0 sd/source/ui/app/tbxids_tmpl.src | 0 sd/source/ui/app/tbxww.cxx | 0 sd/source/ui/app/tmplctrl.cxx | 0 sd/source/ui/app/toolbox.src | 0 sd/source/ui/app/toolbox2_tmpl.src | 0 sd/source/ui/controller/makefile.mk | 0 sd/source/ui/dlg/AnimationChildWindow.cxx | 0 sd/source/ui/dlg/LayerDialog.src | 0 sd/source/ui/dlg/LayerDialogChildWindow.cxx | 0 sd/source/ui/dlg/LayerDialogContent.cxx | 0 sd/source/ui/dlg/LayerTabBar.cxx | 0 sd/source/ui/dlg/NavigatorChildWindow.cxx | 0 sd/source/ui/dlg/PaneChildWindows.cxx | 0 sd/source/ui/dlg/PaneDockingWindow.cxx | 13 ++++----- sd/source/ui/dlg/PaneDockingWindow.src | 0 sd/source/ui/dlg/PaneShells.cxx | 0 sd/source/ui/dlg/SpellDialogChildWindow.cxx | 0 sd/source/ui/dlg/TemplateScanner.cxx | 0 sd/source/ui/dlg/animobjs.cxx | 0 sd/source/ui/dlg/animobjs.src | 0 sd/source/ui/dlg/assclass.cxx | 0 sd/source/ui/dlg/brkdlg.cxx | 0 sd/source/ui/dlg/brkdlg.src | 0 sd/source/ui/dlg/celltempl.cxx | 0 sd/source/ui/dlg/celltempl.src | 0 sd/source/ui/dlg/copydlg.cxx | 0 sd/source/ui/dlg/copydlg.src | 0 sd/source/ui/dlg/custsdlg.cxx | 0 sd/source/ui/dlg/custsdlg.src | 0 sd/source/ui/dlg/diactrl.cxx | 0 sd/source/ui/dlg/dlg_char.src | 0 sd/source/ui/dlg/dlgass.cxx | 0 sd/source/ui/dlg/dlgass.src | 0 sd/source/ui/dlg/dlgassim.cxx | 0 sd/source/ui/dlg/dlgassim.hxx | 0 sd/source/ui/dlg/dlgchar.cxx | 0 sd/source/ui/dlg/dlgctrls.cxx | 0 sd/source/ui/dlg/dlgfield.cxx | 0 sd/source/ui/dlg/dlgfield.src | 0 sd/source/ui/dlg/dlgolbul.cxx | 0 sd/source/ui/dlg/dlgolbul.src | 0 sd/source/ui/dlg/dlgpage.cxx | 0 sd/source/ui/dlg/dlgpage.src | 0 sd/source/ui/dlg/dlgsnap.cxx | 0 sd/source/ui/dlg/dlgsnap.src | 0 sd/source/ui/dlg/docprev.cxx | 0 sd/source/ui/dlg/filedlg.cxx | 0 sd/source/ui/dlg/gluectrl.cxx | 0 sd/source/ui/dlg/headerfooterdlg.cxx | 0 sd/source/ui/dlg/headerfooterdlg.src | 0 sd/source/ui/dlg/ins_paste.cxx | 0 sd/source/ui/dlg/ins_paste.src | 0 sd/source/ui/dlg/inspagob.cxx | 0 sd/source/ui/dlg/inspagob.src | 0 sd/source/ui/dlg/layeroptionsdlg.cxx | 0 sd/source/ui/dlg/layeroptionsdlg.src | 0 sd/source/ui/dlg/makefile.mk | 0 sd/source/ui/dlg/masterlayoutdlg.cxx | 0 sd/source/ui/dlg/masterlayoutdlg.src | 0 sd/source/ui/dlg/morphdlg.cxx | 0 sd/source/ui/dlg/morphdlg.src | 0 sd/source/ui/dlg/navigatr.cxx | 0 sd/source/ui/dlg/navigatr.src | 0 sd/source/ui/dlg/paragr.cxx | 0 sd/source/ui/dlg/paragr.src | 0 sd/source/ui/dlg/present.cxx | 0 sd/source/ui/dlg/present.src | 0 sd/source/ui/dlg/prltempl.cxx | 0 sd/source/ui/dlg/prltempl.src | 0 sd/source/ui/dlg/prntopts.cxx | 0 sd/source/ui/dlg/prntopts.src | 0 sd/source/ui/dlg/sdabstdlg.cxx | 0 sd/source/ui/dlg/sddlgfact.cxx | 0 sd/source/ui/dlg/sddlgfact.hxx | 0 sd/source/ui/dlg/sdpreslt.cxx | 0 sd/source/ui/dlg/sdpreslt.src | 0 sd/source/ui/dlg/sdtreelb.cxx | 0 sd/source/ui/dlg/sduiexp.cxx | 0 sd/source/ui/dlg/tabtempl.cxx | 0 sd/source/ui/dlg/tabtempl.src | 0 sd/source/ui/dlg/tpaction.cxx | 0 sd/source/ui/dlg/tpaction.src | 0 sd/source/ui/dlg/tpoption.cxx | 0 sd/source/ui/dlg/tpoption.src | 0 sd/source/ui/dlg/unchss.cxx | 0 sd/source/ui/dlg/vectdlg.cxx | 0 sd/source/ui/dlg/vectdlg.src | 0 sd/source/ui/docshell/docshel2.cxx | 0 sd/source/ui/docshell/docshel3.cxx | 0 sd/source/ui/docshell/docshel4.cxx | 0 sd/source/ui/docshell/docshell.cxx | 0 sd/source/ui/docshell/grdocsh.cxx | 0 sd/source/ui/docshell/makefile.mk | 0 sd/source/ui/docshell/sdclient.cxx | 0 .../framework/configuration/ChangeRequestQueue.cxx | 0 .../framework/configuration/ChangeRequestQueue.hxx | 0 .../configuration/ChangeRequestQueueProcessor.cxx | 0 .../configuration/ChangeRequestQueueProcessor.hxx | 0 .../ui/framework/configuration/Configuration.cxx | 0 .../configuration/ConfigurationClassifier.cxx | 0 .../configuration/ConfigurationClassifier.hxx | 0 .../configuration/ConfigurationController.cxx | 0 .../ConfigurationControllerBroadcaster.cxx | 0 .../ConfigurationControllerBroadcaster.hxx | 0 .../ConfigurationControllerResourceManager.cxx | 0 .../ConfigurationControllerResourceManager.hxx | 0 .../configuration/ConfigurationTracer.cxx | 0 .../configuration/ConfigurationTracer.hxx | 0 .../configuration/ConfigurationUpdater.cxx | 0 .../configuration/ConfigurationUpdater.hxx | 0 .../GenericConfigurationChangeRequest.cxx | 0 .../GenericConfigurationChangeRequest.hxx | 0 .../configuration/ResourceFactoryManager.cxx | 0 .../configuration/ResourceFactoryManager.hxx | 0 .../ui/framework/configuration/ResourceId.cxx | 0 .../ui/framework/configuration/UpdateRequest.cxx | 0 .../ui/framework/configuration/UpdateRequest.hxx | 0 sd/source/ui/framework/configuration/makefile.mk | 0 .../ui/framework/factories/BasicPaneFactory.cxx | 0 .../ui/framework/factories/BasicPaneFactory.hxx | 0 .../ui/framework/factories/BasicToolBarFactory.cxx | 0 .../ui/framework/factories/BasicToolBarFactory.hxx | 0 .../ui/framework/factories/BasicViewFactory.cxx | 0 .../ui/framework/factories/BasicViewFactory.hxx | 0 .../ui/framework/factories/ChildWindowPane.cxx | 0 .../ui/framework/factories/ChildWindowPane.hxx | 0 .../ui/framework/factories/FrameWindowPane.cxx | 0 .../ui/framework/factories/FrameWindowPane.hxx | 0 .../ui/framework/factories/FullScreenPane.cxx | 0 .../ui/framework/factories/FullScreenPane.hxx | 0 sd/source/ui/framework/factories/Pane.cxx | 0 .../ui/framework/factories/PresentationFactory.cxx | 0 .../ui/framework/factories/TaskPanelFactory.cxx | 0 .../ui/framework/factories/TaskPanelFactory.hxx | 0 .../ui/framework/factories/ViewShellWrapper.cxx | 0 sd/source/ui/framework/factories/makefile.mk | 0 .../ui/framework/module/CenterViewFocusModule.cxx | 0 .../ui/framework/module/CenterViewFocusModule.hxx | 0 sd/source/ui/framework/module/DrawModule.cxx | 0 sd/source/ui/framework/module/ImpressModule.cxx | 0 sd/source/ui/framework/module/ModuleController.cxx | 0 .../ui/framework/module/PresentationModule.cxx | 0 .../ui/framework/module/ReadOnlyModeObserver.cxx | 0 .../ui/framework/module/ReadOnlyModeObserver.hxx | 0 sd/source/ui/framework/module/ResourceManager.cxx | 0 sd/source/ui/framework/module/ResourceManager.hxx | 0 sd/source/ui/framework/module/ShellStackGuard.cxx | 0 sd/source/ui/framework/module/ShellStackGuard.hxx | 0 .../ui/framework/module/SlideSorterModule.cxx | 0 .../ui/framework/module/SlideSorterModule.hxx | 0 sd/source/ui/framework/module/ToolBarModule.cxx | 0 sd/source/ui/framework/module/ToolBarModule.hxx | 0 sd/source/ui/framework/module/ViewTabBarModule.cxx | 0 sd/source/ui/framework/module/ViewTabBarModule.hxx | 0 sd/source/ui/framework/module/makefile.mk | 0 sd/source/ui/framework/tools/FrameworkHelper.cxx | 0 sd/source/ui/framework/tools/makefile.mk | 0 sd/source/ui/func/bulmaper.cxx | 0 sd/source/ui/func/fuarea.cxx | 0 sd/source/ui/func/fubullet.cxx | 0 sd/source/ui/func/fuchar.cxx | 0 sd/source/ui/func/fucon3d.cxx | 0 sd/source/ui/func/fuconarc.cxx | 0 sd/source/ui/func/fuconbez.cxx | 0 sd/source/ui/func/fuconcs.cxx | 0 sd/source/ui/func/fuconnct.cxx | 0 sd/source/ui/func/fuconrec.cxx | 0 sd/source/ui/func/fuconstr.cxx | 0 sd/source/ui/func/fuconuno.cxx | 0 sd/source/ui/func/fucopy.cxx | 0 sd/source/ui/func/fucushow.cxx | 0 sd/source/ui/func/fudraw.cxx | 0 sd/source/ui/func/fudspord.cxx | 0 sd/source/ui/func/fuediglu.cxx | 0 sd/source/ui/func/fuexpand.cxx | 0 sd/source/ui/func/fuformatpaintbrush.cxx | 0 sd/source/ui/func/fuhhconv.cxx | 0 sd/source/ui/func/fuinsert.cxx | 0 sd/source/ui/func/fuinsfil.cxx | 0 sd/source/ui/func/fuline.cxx | 0 sd/source/ui/func/fulinend.cxx | 0 sd/source/ui/func/fulink.cxx | 0 sd/source/ui/func/fumeasur.cxx | 0 sd/source/ui/func/fumorph.cxx | 0 sd/source/ui/func/fuoaprms.cxx | 0 sd/source/ui/func/fuolbull.cxx | 0 sd/source/ui/func/fuoltext.cxx | 0 sd/source/ui/func/fuoutl.cxx | 0 sd/source/ui/func/fupage.cxx | 0 sd/source/ui/func/fuparagr.cxx | 0 sd/source/ui/func/fupoor.cxx | 0 sd/source/ui/func/fuprlout.cxx | 0 sd/source/ui/func/fuprobjs.cxx | 0 sd/source/ui/func/fuscale.cxx | 0 sd/source/ui/func/fusearch.cxx | 0 sd/source/ui/func/fusel.cxx | 0 sd/source/ui/func/fusldlg.cxx | 0 sd/source/ui/func/fusnapln.cxx | 0 sd/source/ui/func/fusumry.cxx | 0 sd/source/ui/func/futempl.cxx | 0 sd/source/ui/func/futext.cxx | 0 sd/source/ui/func/futhes.cxx | 0 sd/source/ui/func/futransf.cxx | 0 sd/source/ui/func/futxtatt.cxx | 0 sd/source/ui/func/fuvect.cxx | 0 sd/source/ui/func/fuzoom.cxx | 0 sd/source/ui/func/makefile.mk | 0 sd/source/ui/func/sdundo.cxx | 0 sd/source/ui/func/sdundogr.cxx | 0 sd/source/ui/func/smarttag.cxx | 0 sd/source/ui/func/undoback.cxx | 0 sd/source/ui/func/undoheaderfooter.cxx | 0 sd/source/ui/func/undolayer.cxx | 0 sd/source/ui/func/undopage.cxx | 0 sd/source/ui/func/unmovss.cxx | 0 sd/source/ui/func/unoaprms.cxx | 0 sd/source/ui/func/unprlout.cxx | 0 sd/source/ui/inc/3dchld.hxx | 0 sd/source/ui/inc/AccessibleDocumentViewBase.hxx | 0 sd/source/ui/inc/AccessibleDrawDocumentView.hxx | 0 sd/source/ui/inc/AccessibleOutlineEditSource.hxx | 0 sd/source/ui/inc/AccessibleOutlineView.hxx | 0 sd/source/ui/inc/AccessiblePageShape.hxx | 0 .../ui/inc/AccessiblePresentationGraphicShape.hxx | 0 .../ui/inc/AccessiblePresentationOLEShape.hxx | 0 sd/source/ui/inc/AccessiblePresentationShape.hxx | 0 sd/source/ui/inc/AccessibleScrollPanel.hxx | 0 sd/source/ui/inc/AccessibleSlideSorterObject.hxx | 0 sd/source/ui/inc/AccessibleSlideSorterView.hxx | 0 sd/source/ui/inc/AccessibleSlideView.hxx | 0 sd/source/ui/inc/AccessibleTreeNode.hxx | 0 sd/source/ui/inc/AccessibleViewForwarder.hxx | 0 sd/source/ui/inc/AnimationChildWindow.hxx | 0 sd/source/ui/inc/BezierObjectBar.hxx | 0 sd/source/ui/inc/BreakDlg.hxx | 0 sd/source/ui/inc/Client.hxx | 0 sd/source/ui/inc/ClientView.hxx | 0 sd/source/ui/inc/CustomAnimation.hxx | 0 sd/source/ui/inc/DialogListBox.hxx | 0 sd/source/ui/inc/DocumentRenderer.hxx | 0 sd/source/ui/inc/DrawController.hxx | 0 sd/source/ui/inc/DrawDocShell.hxx | 0 sd/source/ui/inc/DrawSubController.hxx | 0 sd/source/ui/inc/DrawViewShell.hxx | 0 sd/source/ui/inc/EventMultiplexer.hxx | 0 sd/source/ui/inc/FormShellManager.hxx | 0 sd/source/ui/inc/FrameView.hxx | 0 sd/source/ui/inc/GraphicDocShell.hxx | 0 sd/source/ui/inc/GraphicObjectBar.hxx | 0 sd/source/ui/inc/GraphicViewShell.hxx | 0 sd/source/ui/inc/GraphicViewShellBase.hxx | 0 sd/source/ui/inc/ImpressViewShellBase.hxx | 0 sd/source/ui/inc/LayerDialog.hrc | 0 sd/source/ui/inc/LayerDialogChildWindow.hxx | 0 sd/source/ui/inc/LayerDialogContent.hxx | 0 sd/source/ui/inc/LayerTabBar.hxx | 0 sd/source/ui/inc/MasterPageObserver.hxx | 0 sd/source/ui/inc/MediaObjectBar.hxx | 0 sd/source/ui/inc/MutexOwner.hxx | 0 sd/source/ui/inc/NavigatorChildWindow.hxx | 0 sd/source/ui/inc/NotesChildWindow.hrc | 0 sd/source/ui/inc/NotesChildWindow.hxx | 0 sd/source/ui/inc/OutlineBulletDlg.hxx | 0 sd/source/ui/inc/OutlineView.hxx | 0 sd/source/ui/inc/OutlineViewShell.hxx | 0 sd/source/ui/inc/OutlineViewShellBase.hxx | 0 sd/source/ui/inc/OutlinerIteratorImpl.hxx | 0 sd/source/ui/inc/PaneChildWindows.hxx | 0 sd/source/ui/inc/PaneDockingWindow.hrc | 0 sd/source/ui/inc/PaneShells.hxx | 0 sd/source/ui/inc/PresentationViewShell.hxx | 0 sd/source/ui/inc/PresentationViewShellBase.hxx | 0 sd/source/ui/inc/PreviewRenderer.hxx | 0 sd/source/ui/inc/Ruler.hxx | 0 sd/source/ui/inc/SdUnoDrawView.hxx | 0 sd/source/ui/inc/SdUnoOutlineView.hxx | 0 sd/source/ui/inc/SdUnoSlideView.hxx | 0 sd/source/ui/inc/ShellFactory.hxx | 0 sd/source/ui/inc/SlideSorter.hxx | 0 sd/source/ui/inc/SlideSorterChildWindow.hrc | 0 sd/source/ui/inc/SlideSorterChildWindow.hxx | 0 sd/source/ui/inc/SlideSorterViewShell.hxx | 0 sd/source/ui/inc/SlideSorterViewShellBase.hxx | 0 sd/source/ui/inc/SlideView.hxx | 0 sd/source/ui/inc/SlideViewShell.hxx | 0 sd/source/ui/inc/SpellDialogChildWindow.hxx | 0 sd/source/ui/inc/TabControl.hxx | 0 sd/source/ui/inc/TemplateScanner.hxx | 0 sd/source/ui/inc/TextLogger.hxx | 0 sd/source/ui/inc/TextObjectBar.hxx | 0 sd/source/ui/inc/ToolBarManager.hxx | 0 sd/source/ui/inc/UpdateLockManager.hxx | 0 sd/source/ui/inc/View.hxx | 0 sd/source/ui/inc/ViewClipboard.hxx | 0 sd/source/ui/inc/ViewShell.hxx | 0 sd/source/ui/inc/ViewShellBase.hxx | 0 sd/source/ui/inc/ViewShellHint.hxx | 0 sd/source/ui/inc/ViewShellImplementation.hxx | 0 sd/source/ui/inc/ViewShellManager.hxx | 0 sd/source/ui/inc/ViewTabBar.hxx | 0 sd/source/ui/inc/ViewTabControl.hxx | 0 sd/source/ui/inc/Window.hxx | 0 sd/source/ui/inc/WindowUpdater.hxx | 0 sd/source/ui/inc/animobjs.hrc | 0 sd/source/ui/inc/animobjs.hxx | 0 sd/source/ui/inc/assclass.hxx | 0 sd/source/ui/inc/bmcache.hxx | 0 sd/source/ui/inc/brkdlg.hrc | 0 sd/source/ui/inc/bulmaper.hxx | 0 sd/source/ui/inc/celltempl.hrc | 0 sd/source/ui/inc/celltempl.hxx | 0 sd/source/ui/inc/cfgids.hxx | 0 sd/source/ui/inc/copydlg.hrc | 0 sd/source/ui/inc/copydlg.hxx | 0 sd/source/ui/inc/custsdlg.hrc | 0 sd/source/ui/inc/custsdlg.hxx | 0 sd/source/ui/inc/diactrl.hxx | 0 sd/source/ui/inc/dialogs.hrc | 0 sd/source/ui/inc/dlg_char.hrc | 0 sd/source/ui/inc/dlg_char.hxx | 0 sd/source/ui/inc/dlgass.hrc | 0 sd/source/ui/inc/dlgass.hxx | 0 sd/source/ui/inc/dlgctrls.hxx | 0 sd/source/ui/inc/dlgfield.hrc | 0 sd/source/ui/inc/dlgfield.hxx | 0 sd/source/ui/inc/dlgolbul.hrc | 0 sd/source/ui/inc/dlgpage.hrc | 0 sd/source/ui/inc/dlgpage.hxx | 0 sd/source/ui/inc/dlgsnap.hrc | 0 sd/source/ui/inc/dlgsnap.hxx | 0 sd/source/ui/inc/docprev.hxx | 0 sd/source/ui/inc/drawview.hxx | 0 sd/source/ui/inc/enumdlg.hrc | 0 sd/source/ui/inc/filedlg.hxx | 0 sd/source/ui/inc/fontwork.hrc | 0 sd/source/ui/inc/framework/Configuration.hxx | 0 .../ui/inc/framework/ConfigurationController.hxx | 0 sd/source/ui/inc/framework/DrawModule.hxx | 0 sd/source/ui/inc/framework/FrameworkHelper.hxx | 0 sd/source/ui/inc/framework/ImpressModule.hxx | 0 sd/source/ui/inc/framework/ModuleController.hxx | 0 sd/source/ui/inc/framework/Pane.hxx | 0 sd/source/ui/inc/framework/PresentationFactory.hxx | 0 sd/source/ui/inc/framework/PresentationModule.hxx | 0 sd/source/ui/inc/framework/ResourceId.hxx | 0 sd/source/ui/inc/framework/ViewShellWrapper.hxx | 0 sd/source/ui/inc/fuarea.hxx | 0 sd/source/ui/inc/fubullet.hxx | 0 sd/source/ui/inc/fuchar.hxx | 0 sd/source/ui/inc/fucon3d.hxx | 0 sd/source/ui/inc/fuconarc.hxx | 0 sd/source/ui/inc/fuconbez.hxx | 0 sd/source/ui/inc/fuconcs.hxx | 0 sd/source/ui/inc/fuconnct.hxx | 0 sd/source/ui/inc/fuconrec.hxx | 0 sd/source/ui/inc/fuconstr.hxx | 0 sd/source/ui/inc/fuconuno.hxx | 0 sd/source/ui/inc/fucopy.hxx | 0 sd/source/ui/inc/fucushow.hxx | 0 sd/source/ui/inc/fudraw.hxx | 0 sd/source/ui/inc/fudspord.hxx | 0 sd/source/ui/inc/fuediglu.hxx | 0 sd/source/ui/inc/fuexpand.hxx | 0 sd/source/ui/inc/fuformatpaintbrush.hxx | 0 sd/source/ui/inc/fugrid.hxx | 0 sd/source/ui/inc/fuhhconv.hxx | 0 sd/source/ui/inc/fuinsert.hxx | 0 sd/source/ui/inc/fuinsfil.hxx | 0 sd/source/ui/inc/fuline.hxx | 0 sd/source/ui/inc/fulinend.hxx | 0 sd/source/ui/inc/fulink.hxx | 0 sd/source/ui/inc/fumeasur.hxx | 0 sd/source/ui/inc/fumorph.hxx | 0 sd/source/ui/inc/fuoaprms.hxx | 0 sd/source/ui/inc/fuolbull.hxx | 0 sd/source/ui/inc/fuoltext.hxx | 0 sd/source/ui/inc/fuoutl.hxx | 0 sd/source/ui/inc/fupage.hxx | 0 sd/source/ui/inc/fuparagr.hxx | 0 sd/source/ui/inc/fupoor.hxx | 0 sd/source/ui/inc/fuprlout.hxx | 0 sd/source/ui/inc/fuprobjs.hxx | 0 sd/source/ui/inc/fuscale.hxx | 0 sd/source/ui/inc/fusearch.hxx | 0 sd/source/ui/inc/fusel.hxx | 0 sd/source/ui/inc/fusldlg.hxx | 0 sd/source/ui/inc/fuslhide.hxx | 0 sd/source/ui/inc/fuslid.hxx | 0 sd/source/ui/inc/fuslsel.hxx | 0 sd/source/ui/inc/fusnapln.hxx | 0 sd/source/ui/inc/fusumry.hxx | 0 sd/source/ui/inc/futempl.hxx | 0 sd/source/ui/inc/futext.hxx | 0 sd/source/ui/inc/futhes.hxx | 0 sd/source/ui/inc/futransf.hxx | 0 sd/source/ui/inc/futxtatt.hxx | 0 sd/source/ui/inc/fuvect.hxx | 0 sd/source/ui/inc/fuzoom.hxx | 0 sd/source/ui/inc/gluectrl.hxx | 0 sd/source/ui/inc/headerfooterdlg.hrc | 0 sd/source/ui/inc/headerfooterdlg.hxx | 0 sd/source/ui/inc/ins_paste.hrc | 0 sd/source/ui/inc/ins_paste.hxx | 0 sd/source/ui/inc/inspagob.hrc | 0 sd/source/ui/inc/inspagob.hxx | 0 sd/source/ui/inc/layeroptionsdlg.hrc | 0 sd/source/ui/inc/layeroptionsdlg.hxx | 0 sd/source/ui/inc/masterlayoutdlg.hrc | 0 sd/source/ui/inc/masterlayoutdlg.hxx | 0 sd/source/ui/inc/morphdlg.hrc | 0 sd/source/ui/inc/morphdlg.hxx | 0 sd/source/ui/inc/navigatr.hrc | 0 sd/source/ui/inc/navigatr.hxx | 0 sd/source/ui/inc/optdlg.hrc | 0 sd/source/ui/inc/optdlg.hxx | 0 sd/source/ui/inc/optsitem.hxx | 0 sd/source/ui/inc/packgdlg.hrc | 0 sd/source/ui/inc/paragr.hrc | 0 sd/source/ui/inc/paragr.hxx | 0 sd/source/ui/inc/pgjump.hxx | 0 sd/source/ui/inc/present.hrc | 0 sd/source/ui/inc/present.hxx | 0 sd/source/ui/inc/preview.hrc | 0 sd/source/ui/inc/prltempl.hrc | 0 sd/source/ui/inc/prltempl.hxx | 0 sd/source/ui/inc/prntopts.hrc | 0 sd/source/ui/inc/prntopts.hxx | 0 sd/source/ui/inc/pubdlg.hrc | 0 sd/source/ui/inc/pubdlg.hxx | 0 sd/source/ui/inc/res_bmp.hrc | 0 sd/source/ui/inc/sdpopup.hxx | 0 sd/source/ui/inc/sdpreslt.hrc | 0 sd/source/ui/inc/sdpreslt.hxx | 0 sd/source/ui/inc/sdstring.hrc | 0 sd/source/ui/inc/sdtreelb.hxx | 0 sd/source/ui/inc/sdundogr.hxx | 0 sd/source/ui/inc/sdxfer.hxx | 0 sd/source/ui/inc/slideshow.hxx | 0 sd/source/ui/inc/smarttag.hxx | 0 sd/source/ui/inc/sprite.hxx | 0 sd/source/ui/inc/strings.hrc | 0 sd/source/ui/inc/tabtempl.hrc | 0 sd/source/ui/inc/tabtempl.hxx | 0 sd/source/ui/inc/taskpane/ControlContainer.hxx | 0 sd/source/ui/inc/taskpane/ILayoutableWindow.hxx | 0 sd/source/ui/inc/taskpane/ScrollPanel.hxx | 0 .../ui/inc/taskpane/SlideSorterCacheDisplay.hxx | 0 sd/source/ui/inc/taskpane/SubToolPanel.hxx | 0 .../ui/inc/taskpane/TaskPaneControlFactory.hxx | 0 sd/source/ui/inc/taskpane/TaskPaneTreeNode.hxx | 0 sd/source/ui/inc/taskpane/TitleBar.hxx | 0 sd/source/ui/inc/taskpane/TitledControl.hxx | 0 sd/source/ui/inc/tbx_ww.hrc | 0 sd/source/ui/inc/tbx_ww.hxx | 0 sd/source/ui/inc/tmplctrl.hxx | 0 sd/source/ui/inc/tools/AsynchronousCall.hxx | 0 sd/source/ui/inc/tools/AsynchronousTask.hxx | 0 sd/source/ui/inc/tools/ConfigurationAccess.hxx | 0 sd/source/ui/inc/tools/IconCache.hxx | 0 sd/source/ui/inc/tools/IdleDetection.hxx | 0 sd/source/ui/inc/tools/PropertySet.hxx | 0 .../ui/inc/tools/SdGlobalResourceContainer.hxx | 0 sd/source/ui/inc/tools/SlotStateListener.hxx | 0 sd/source/ui/inc/tools/TimerBasedTaskExecution.hxx | 0 sd/source/ui/inc/tpaction.hrc | 0 sd/source/ui/inc/tpaction.hxx | 0 sd/source/ui/inc/tpoption.hrc | 0 sd/source/ui/inc/tpoption.hxx | 0 sd/source/ui/inc/unchss.hxx | 0 sd/source/ui/inc/undoback.hxx | 0 sd/source/ui/inc/undoheaderfooter.hxx | 0 sd/source/ui/inc/undolayer.hxx | 0 sd/source/ui/inc/undopage.hxx | 0 sd/source/ui/inc/unmodpg.hxx | 0 sd/source/ui/inc/unmovss.hxx | 0 sd/source/ui/inc/unoaprms.hxx | 0 sd/source/ui/inc/unokywds.hxx | 0 sd/source/ui/inc/unomodel.hxx | 0 sd/source/ui/inc/unoprnms.hxx | 0 sd/source/ui/inc/unosrch.hxx | 0 sd/source/ui/inc/unprlout.hxx | 0 sd/source/ui/inc/unslsel.hxx | 0 sd/source/ui/inc/vectdlg.hrc | 0 sd/source/ui/inc/vectdlg.hxx | 0 sd/source/ui/inc/view/viewoverlaymanager.hxx | 0 sd/source/ui/inc/zoomlist.hxx | 0 sd/source/ui/presenter/CanvasUpdateRequester.cxx | 0 sd/source/ui/presenter/CanvasUpdateRequester.hxx | 0 sd/source/ui/presenter/PresenterCanvas.cxx | 0 sd/source/ui/presenter/PresenterCanvas.hxx | 0 sd/source/ui/presenter/PresenterCanvasFactory.cxx | 0 sd/source/ui/presenter/PresenterHelper.cxx | 0 sd/source/ui/presenter/PresenterHelper.hxx | 0 sd/source/ui/presenter/PresenterPreviewCache.cxx | 0 sd/source/ui/presenter/PresenterPreviewCache.hxx | 0 sd/source/ui/presenter/PresenterTextView.cxx | 0 sd/source/ui/presenter/PresenterTextView.hxx | 0 sd/source/ui/presenter/SlideRenderer.cxx | 0 sd/source/ui/presenter/SlideRenderer.hxx | 0 sd/source/ui/presenter/makefile.mk | 0 sd/source/ui/slideshow/PaneHider.cxx | 0 sd/source/ui/slideshow/PaneHider.hxx | 0 sd/source/ui/slideshow/SlideShowRestarter.cxx | 0 sd/source/ui/slideshow/SlideShowRestarter.hxx | 0 sd/source/ui/slideshow/makefile.mk | 0 sd/source/ui/slideshow/showwin.cxx | 0 sd/source/ui/slideshow/showwindow.hxx | 0 sd/source/ui/slideshow/slideshow.cxx | 0 sd/source/ui/slideshow/slideshow.hrc | 0 sd/source/ui/slideshow/slideshow.src | 0 sd/source/ui/slideshow/slideshowimpl.cxx | 0 sd/source/ui/slideshow/slideshowimpl.hxx | 0 sd/source/ui/slideshow/slideshowviewimpl.cxx | 0 sd/source/ui/slideshow/slideshowviewimpl.hxx | 0 sd/source/ui/slidesorter/cache/SlsBitmapCache.cxx | 15 +++++++++++ sd/source/ui/slidesorter/cache/SlsBitmapCache.hxx | 5 ++++ .../ui/slidesorter/cache/SlsBitmapCompressor.cxx | 0 .../ui/slidesorter/cache/SlsBitmapCompressor.hxx | 0 .../ui/slidesorter/cache/SlsBitmapFactory.cxx | 2 -- .../ui/slidesorter/cache/SlsBitmapFactory.hxx | 0 .../ui/slidesorter/cache/SlsCacheCompactor.cxx | 0 .../ui/slidesorter/cache/SlsCacheCompactor.hxx | 0 .../ui/slidesorter/cache/SlsCacheConfiguration.cxx | 0 .../ui/slidesorter/cache/SlsCacheConfiguration.hxx | 0 .../ui/slidesorter/cache/SlsGenericPageCache.cxx | 7 +++-- .../ui/slidesorter/cache/SlsGenericPageCache.hxx | 5 ++++ sd/source/ui/slidesorter/cache/SlsPageCache.cxx | 12 +++++++++ .../ui/slidesorter/cache/SlsPageCacheManager.cxx | 2 +- .../ui/slidesorter/cache/SlsQueueProcessor.cxx | 0 .../ui/slidesorter/cache/SlsQueueProcessor.hxx | 0 .../slidesorter/cache/SlsQueueProcessorThread.hxx | 0 .../ui/slidesorter/cache/SlsRequestFactory.cxx | 2 -- .../ui/slidesorter/cache/SlsRequestFactory.hxx | 0 .../slidesorter/cache/SlsRequestPriorityClass.hxx | 0 sd/source/ui/slidesorter/cache/SlsRequestQueue.cxx | 2 -- sd/source/ui/slidesorter/cache/SlsRequestQueue.hxx | 0 sd/source/ui/slidesorter/cache/makefile.mk | 0 .../controller/SlideSorterController.cxx | 4 +-- .../ui/slidesorter/controller/SlsAnimator.cxx | 0 .../ui/slidesorter/controller/SlsClipboard.cxx | 0 sd/source/ui/slidesorter/controller/SlsCommand.hxx | 0 .../ui/slidesorter/controller/SlsFocusManager.cxx | 0 .../controller/SlsHideSlideFunction.cxx | 0 .../controller/SlsHideSlideFunction.hxx | 0 .../ui/slidesorter/controller/SlsListener.cxx | 0 .../ui/slidesorter/controller/SlsListener.hxx | 0 .../controller/SlsPageObjectFactory.cxx | 0 .../ui/slidesorter/controller/SlsProperties.cxx | 0 .../slidesorter/controller/SlsScrollBarManager.cxx | 19 ------------- .../slidesorter/controller/SlsSelectionCommand.cxx | 0 .../slidesorter/controller/SlsSelectionCommand.hxx | 0 .../slidesorter/controller/SlsSelectionManager.cxx | 0 .../ui/slidesorter/controller/SlsSlideFunction.cxx | 0 .../ui/slidesorter/controller/SlsTransferable.cxx | 0 sd/source/ui/slidesorter/controller/makefile.mk | 0 .../ui/slidesorter/inc/cache/SlsCacheContext.hxx | 0 .../slidesorter/inc/cache/SlsPageCacheManager.hxx | 0 .../inc/controller/SlideSorterController.hxx | 0 .../ui/slidesorter/inc/controller/SlsAnimator.hxx | 0 .../ui/slidesorter/inc/controller/SlsClipboard.hxx | 0 .../inc/controller/SlsCurrentSlideManager.hxx | 0 .../slidesorter/inc/controller/SlsFocusManager.hxx | 0 .../inc/controller/SlsPageObjectFactory.hxx | 0 .../slidesorter/inc/controller/SlsProperties.hxx | 0 .../inc/controller/SlsScrollBarManager.hxx | 0 .../inc/controller/SlsSelectionManager.hxx | 0 .../inc/controller/SlsSlideFunction.hxx | 0 .../ui/slidesorter/inc/model/SlsEnumeration.hxx | 0 .../ui/slidesorter/inc/model/SlsPageDescriptor.hxx | 7 +++++ .../slidesorter/inc/model/SlsPageEnumeration.hxx | 0 .../inc/model/SlsPageEnumerationProvider.hxx | 0 .../inc/model/SlsSharedPageDescriptor.hxx | 0 .../ui/slidesorter/inc/view/SlsFontProvider.hxx | 0 .../ui/slidesorter/inc/view/SlsPageObject.hxx | 0 .../inc/view/SlsPageObjectViewContact.hxx | 0 .../inc/view/SlsPageObjectViewObjectContact.hxx | 0 sd/source/ui/slidesorter/makefile.mk | 0 .../ui/slidesorter/model/SlsPageDescriptor.cxx | 8 ++++++ .../ui/slidesorter/model/SlsPageEnumeration.cxx | 0 .../model/SlsPageEnumerationProvider.cxx | 0 sd/source/ui/slidesorter/model/SlsVisualState.cxx | 2 ++ sd/source/ui/slidesorter/model/makefile.mk | 0 sd/source/ui/slidesorter/shell/SlideSorter.cxx | 0 .../slidesorter/shell/SlideSorterChildWindow.cxx | 0 .../slidesorter/shell/SlideSorterChildWindow.src | 0 .../ui/slidesorter/shell/SlideSorterService.cxx | 0 .../ui/slidesorter/shell/SlideSorterService.hxx | 0 .../ui/slidesorter/shell/SlideSorterViewShell.cxx | 0 sd/source/ui/slidesorter/shell/SlsDebugDialog.cxx | 2 ++ sd/source/ui/slidesorter/shell/makefile.mk | 0 sd/source/ui/slidesorter/view/SlsFontProvider.cxx | 0 sd/source/ui/slidesorter/view/SlsLayouter.cxx | 30 ++++----------------- sd/source/ui/slidesorter/view/SlsPageObject.cxx | 0 sd/source/ui/slidesorter/view/SlsTheme.cxx | 2 ++ sd/source/ui/slidesorter/view/SlsToolTip.cxx | 2 ++ .../ui/slidesorter/view/SlsViewCacheContext.cxx | 0 .../ui/slidesorter/view/SlsViewCacheContext.hxx | 0 sd/source/ui/slidesorter/view/makefile.mk | 0 sd/source/ui/table/TableDesignPane.cxx | 0 sd/source/ui/table/TableDesignPane.hrc | 0 sd/source/ui/table/TableDesignPane.hxx | 0 sd/source/ui/table/TableDesignPane.src | 0 sd/source/ui/table/makefile.mk | 0 sd/source/ui/table/tablefunction.cxx | 0 sd/source/ui/table/tableobjectbar.cxx | 0 sd/source/ui/table/tableobjectbar.hxx | 0 sd/source/ui/toolpanel/ConstrainedIterator.cxx | 0 sd/source/ui/toolpanel/ConstrainedIterator.hxx | 0 sd/source/ui/toolpanel/ControlContainer.cxx | 0 .../ui/toolpanel/ControlContainerDescriptor.hxx | 0 sd/source/ui/toolpanel/ControlList.hxx | 0 sd/source/ui/toolpanel/LayoutMenu.cxx | 0 sd/source/ui/toolpanel/LayoutMenu.hxx | 0 sd/source/ui/toolpanel/ScrollPanel.cxx | 0 sd/source/ui/toolpanel/SlideSorterCacheDisplay.cxx | 0 sd/source/ui/toolpanel/SubToolPanel.cxx | 0 sd/source/ui/toolpanel/TaskPaneControlFactory.cxx | 0 sd/source/ui/toolpanel/TaskPaneFocusManager.cxx | 0 sd/source/ui/toolpanel/TaskPaneFocusManager.hxx | 0 sd/source/ui/toolpanel/TaskPaneShellManager.cxx | 0 sd/source/ui/toolpanel/TaskPaneShellManager.hxx | 0 sd/source/ui/toolpanel/TaskPaneTreeNode.cxx | 0 sd/source/ui/toolpanel/TestMenu.cxx | 0 sd/source/ui/toolpanel/TestMenu.hxx | 0 sd/source/ui/toolpanel/TestPanel.cxx | 0 sd/source/ui/toolpanel/TestPanel.hxx | 0 sd/source/ui/toolpanel/TitleBar.cxx | 0 sd/source/ui/toolpanel/TitledControl.cxx | 0 sd/source/ui/toolpanel/ToolPanel.cxx | 0 sd/source/ui/toolpanel/ToolPanelDescriptor.hxx | 0 sd/source/ui/toolpanel/ToolPanelViewShell.cxx | 0 .../toolpanel/controls/AllMasterPagesSelector.cxx | 0 .../toolpanel/controls/AllMasterPagesSelector.hxx | 0 .../toolpanel/controls/AnimationSchemesPanel.cxx | 0 .../toolpanel/controls/AnimationSchemesPanel.hxx | 0 .../controls/CurrentMasterPagesSelector.cxx | 0 .../controls/CurrentMasterPagesSelector.hxx | 0 .../ui/toolpanel/controls/CustomAnimationPanel.cxx | 0 .../ui/toolpanel/controls/CustomAnimationPanel.hxx | 0 sd/source/ui/toolpanel/controls/DocumentHelper.cxx | 0 sd/source/ui/toolpanel/controls/DocumentHelper.hxx | 0 .../ui/toolpanel/controls/MasterPageContainer.cxx | 0 .../ui/toolpanel/controls/MasterPageContainer.hxx | 0 .../controls/MasterPageContainerFiller.cxx | 0 .../controls/MasterPageContainerFiller.hxx | 0 .../controls/MasterPageContainerProviders.cxx | 0 .../controls/MasterPageContainerProviders.hxx | 0 .../controls/MasterPageContainerQueue.cxx | 0 .../controls/MasterPageContainerQueue.hxx | 0 .../ui/toolpanel/controls/MasterPageDescriptor.cxx | 0 .../ui/toolpanel/controls/MasterPageDescriptor.hxx | 0 .../ui/toolpanel/controls/MasterPageObserver.cxx | 0 .../ui/toolpanel/controls/MasterPagesPanel.cxx | 0 .../ui/toolpanel/controls/MasterPagesPanel.hxx | 0 .../ui/toolpanel/controls/MasterPagesSelector.cxx | 0 .../ui/toolpanel/controls/MasterPagesSelector.hxx | 0 .../ui/toolpanel/controls/PreviewValueSet.cxx | 0 .../ui/toolpanel/controls/PreviewValueSet.hxx | 0 .../controls/RecentMasterPagesSelector.cxx | 0 .../controls/RecentMasterPagesSelector.hxx | 0 .../toolpanel/controls/RecentlyUsedMasterPages.cxx | 0 .../toolpanel/controls/RecentlyUsedMasterPages.hxx | 0 .../ui/toolpanel/controls/SlideTransitionPanel.cxx | 0 .../ui/toolpanel/controls/SlideTransitionPanel.hxx | 0 .../ui/toolpanel/controls/TableDesignPanel.cxx | 0 .../ui/toolpanel/controls/TableDesignPanel.hxx | 0 sd/source/ui/toolpanel/controls/makefile.mk | 0 sd/source/ui/toolpanel/makefile.mk | 0 sd/source/ui/tools/AsynchronousCall.cxx | 0 sd/source/ui/tools/ConfigurationAccess.cxx | 0 sd/source/ui/tools/EventMultiplexer.cxx | 0 sd/source/ui/tools/IconCache.cxx | 0 sd/source/ui/tools/IdleDetection.cxx | 0 sd/source/ui/tools/PreviewRenderer.cxx | 1 + sd/source/ui/tools/PropertySet.cxx | 0 sd/source/ui/tools/SdGlobalResourceContainer.cxx | 0 sd/source/ui/tools/SlotStateListener.cxx | 0 sd/source/ui/tools/TimerBasedTaskExecution.cxx | 0 sd/source/ui/tools/makefile.mk | 0 sd/source/ui/unoidl/DrawController.cxx | 0 sd/source/ui/unoidl/SdUnoDrawView.cxx | 0 sd/source/ui/unoidl/SdUnoOutlineView.cxx | 0 sd/source/ui/unoidl/SdUnoSlideView.cxx | 0 sd/source/ui/unoidl/UnoDocumentSettings.cxx | 0 sd/source/ui/unoidl/UnoDocumentSettings.hxx | 0 sd/source/ui/unoidl/detreg.cxx | 0 sd/source/ui/unoidl/facreg.cxx | 0 sd/source/ui/unoidl/makefile.mk | 0 sd/source/ui/unoidl/randomnode.cxx | 0 sd/source/ui/unoidl/sddetect.cxx | 0 sd/source/ui/unoidl/sddetect.hxx | 0 sd/source/ui/unoidl/unocpres.cxx | 0 sd/source/ui/unoidl/unocpres.hxx | 0 sd/source/ui/unoidl/unodoc.cxx | 0 sd/source/ui/unoidl/unohelp.hxx | 0 sd/source/ui/unoidl/unokywds.cxx | 0 sd/source/ui/unoidl/unolayer.cxx | 0 sd/source/ui/unoidl/unolayer.hxx | 0 sd/source/ui/unoidl/unomodel.cxx | 0 sd/source/ui/unoidl/unomodule.cxx | 0 sd/source/ui/unoidl/unomodule.hxx | 0 sd/source/ui/unoidl/unoobj.cxx | 0 sd/source/ui/unoidl/unoobj.hxx | 0 sd/source/ui/unoidl/unopage.cxx | 0 sd/source/ui/unoidl/unopage.hxx | 0 sd/source/ui/unoidl/unopback.cxx | 0 sd/source/ui/unoidl/unopback.hxx | 0 sd/source/ui/unoidl/unopool.cxx | 0 sd/source/ui/unoidl/unosrch.cxx | 0 sd/source/ui/unoidl/unowcntr.cxx | 0 sd/source/ui/unoidl/unowcntr.hxx | 0 sd/source/ui/view/DocumentRenderer.cxx | 0 sd/source/ui/view/DocumentRenderer.hrc | 0 sd/source/ui/view/DocumentRenderer.src | 0 sd/source/ui/view/FormShellManager.cxx | 0 sd/source/ui/view/GraphicObjectBar.cxx | 0 sd/source/ui/view/GraphicViewShellBase.cxx | 0 sd/source/ui/view/ImpressViewShellBase.cxx | 0 sd/source/ui/view/MediaObjectBar.cxx | 0 sd/source/ui/view/OutlineViewShellBase.cxx | 0 sd/source/ui/view/Outliner.cxx | 0 sd/source/ui/view/OutlinerIterator.cxx | 0 sd/source/ui/view/PresentationViewShellBase.cxx | 0 sd/source/ui/view/SlideSorterViewShellBase.cxx | 0 sd/source/ui/view/ToolBarManager.cxx | 0 sd/source/ui/view/UpdateLockManager.cxx | 0 sd/source/ui/view/ViewShellHint.cxx | 0 sd/source/ui/view/ViewShellImplementation.cxx | 0 sd/source/ui/view/ViewTabBar.cxx | 0 sd/source/ui/view/WindowUpdater.cxx | 0 sd/source/ui/view/bmcache.cxx | 0 sd/source/ui/view/clview.cxx | 0 sd/source/ui/view/drawview.cxx | 0 sd/source/ui/view/drbezob.cxx | 0 sd/source/ui/view/drtxtob.cxx | 0 sd/source/ui/view/drtxtob1.cxx | 0 sd/source/ui/view/drviews1.cxx | 0 sd/source/ui/view/drviews2.cxx | 0 sd/source/ui/view/drviews3.cxx | 0 sd/source/ui/view/drviews4.cxx | 0 sd/source/ui/view/drviews5.cxx | 0 sd/source/ui/view/drviews6.cxx | 0 sd/source/ui/view/drviews7.cxx | 0 sd/source/ui/view/drviews8.cxx | 0 sd/source/ui/view/drviews9.cxx | 0 sd/source/ui/view/drviewsa.cxx | 0 sd/source/ui/view/drviewsb.cxx | 0 sd/source/ui/view/drviewsc.cxx | 0 sd/source/ui/view/drviewsd.cxx | 0 sd/source/ui/view/drviewse.cxx | 0 sd/source/ui/view/drviewsf.cxx | 0 sd/source/ui/view/drviewsg.cxx | 0 sd/source/ui/view/drviewsh.cxx | 0 sd/source/ui/view/drviewsi.cxx | 0 sd/source/ui/view/drviewsj.cxx | 0 sd/source/ui/view/drvwshrg.cxx | 0 sd/source/ui/view/frmview.cxx | 0 sd/source/ui/view/grviewsh.cxx | 0 sd/source/ui/view/outlnvs2.cxx | 0 sd/source/ui/view/outlnvsh.cxx | 0 sd/source/ui/view/outlview.cxx | 0 sd/source/ui/view/presvish.cxx | 0 sd/source/ui/view/sdruler.cxx | 0 sd/source/ui/view/sdview.cxx | 0 sd/source/ui/view/sdview2.cxx | 0 sd/source/ui/view/sdview3.cxx | 0 sd/source/ui/view/sdview4.cxx | 0 sd/source/ui/view/sdview5.cxx | 0 sd/source/ui/view/sdwindow.cxx | 0 sd/source/ui/view/tabcontr.cxx | 0 sd/source/ui/view/unmodpg.cxx | 0 sd/source/ui/view/viewoverlaymanager.cxx | 0 sd/source/ui/view/viewshe2.cxx | 0 sd/source/ui/view/viewshel.cxx | 0 sd/source/ui/view/zoomlist.cxx | 0 sd/source/unotypes/makefile.mk | 0 sd/uiconfig/sdraw/menubar/menubar.xml | 0 sd/uiconfig/sdraw/statusbar/statusbar.xml | 0 sd/uiconfig/sdraw/toolbar/3dobjectsbar.xml | 0 sd/uiconfig/sdraw/toolbar/alignmentbar.xml | 0 sd/uiconfig/sdraw/toolbar/arrowsbar.xml | 0 sd/uiconfig/sdraw/toolbar/arrowshapes.xml | 0 sd/uiconfig/sdraw/toolbar/basicshapes.xml | 0 sd/uiconfig/sdraw/toolbar/bezierobjectbar.xml | 0 sd/uiconfig/sdraw/toolbar/calloutshapes.xml | 0 sd/uiconfig/sdraw/toolbar/choosemodebar.xml | 0 sd/uiconfig/sdraw/toolbar/colorbar.xml | 0 sd/uiconfig/sdraw/toolbar/commentsbar.xml | 0 sd/uiconfig/sdraw/toolbar/connectorsbar.xml | 0 sd/uiconfig/sdraw/toolbar/drawingobjectbar.xml | 0 sd/uiconfig/sdraw/toolbar/ellipsesbar.xml | 0 sd/uiconfig/sdraw/toolbar/extrusionobjectbar.xml | 0 sd/uiconfig/sdraw/toolbar/flowchartshapes.xml | 0 sd/uiconfig/sdraw/toolbar/fontworkobjectbar.xml | 0 sd/uiconfig/sdraw/toolbar/fontworkshapetype.xml | 0 sd/uiconfig/sdraw/toolbar/formcontrols.xml | 0 sd/uiconfig/sdraw/toolbar/formdesign.xml | 0 sd/uiconfig/sdraw/toolbar/formsfilterbar.xml | 0 sd/uiconfig/sdraw/toolbar/formsnavigationbar.xml | 0 sd/uiconfig/sdraw/toolbar/formtextobjectbar.xml | 0 sd/uiconfig/sdraw/toolbar/fullscreenbar.xml | 0 sd/uiconfig/sdraw/toolbar/gluepointsobjectbar.xml | 0 sd/uiconfig/sdraw/toolbar/graffilterbar.xml | 0 sd/uiconfig/sdraw/toolbar/graphicobjectbar.xml | 0 sd/uiconfig/sdraw/toolbar/insertbar.xml | 0 sd/uiconfig/sdraw/toolbar/linesbar.xml | 0 sd/uiconfig/sdraw/toolbar/masterviewtoolbar.xml | 0 sd/uiconfig/sdraw/toolbar/mediaobjectbar.xml | 0 sd/uiconfig/sdraw/toolbar/moreformcontrols.xml | 0 sd/uiconfig/sdraw/toolbar/optimizetablebar.xml | 0 sd/uiconfig/sdraw/toolbar/optionsbar.xml | 0 sd/uiconfig/sdraw/toolbar/positionbar.xml | 0 sd/uiconfig/sdraw/toolbar/rectanglesbar.xml | 0 sd/uiconfig/sdraw/toolbar/standardbar.xml | 0 sd/uiconfig/sdraw/toolbar/starshapes.xml | 0 sd/uiconfig/sdraw/toolbar/symbolshapes.xml | 0 sd/uiconfig/sdraw/toolbar/tableobjectbar.xml | 0 sd/uiconfig/sdraw/toolbar/textbar.xml | 0 sd/uiconfig/sdraw/toolbar/textobjectbar.xml | 0 sd/uiconfig/sdraw/toolbar/toolbar.xml | 0 sd/uiconfig/sdraw/toolbar/viewerbar.xml | 0 sd/uiconfig/sdraw/toolbar/zoombar.xml | 0 sd/uiconfig/simpress/menubar/menubar.xml | 0 sd/uiconfig/simpress/statusbar/statusbar.xml | 0 sd/uiconfig/simpress/toolbar/3dobjectsbar.xml | 0 sd/uiconfig/simpress/toolbar/alignmentbar.xml | 0 sd/uiconfig/simpress/toolbar/arrowsbar.xml | 0 sd/uiconfig/simpress/toolbar/arrowshapes.xml | 0 sd/uiconfig/simpress/toolbar/basicshapes.xml | 0 sd/uiconfig/simpress/toolbar/bezierobjectbar.xml | 0 sd/uiconfig/simpress/toolbar/calloutshapes.xml | 0 sd/uiconfig/simpress/toolbar/choosemodebar.xml | 0 sd/uiconfig/simpress/toolbar/colorbar.xml | 0 sd/uiconfig/simpress/toolbar/commentsbar.xml | 0 sd/uiconfig/simpress/toolbar/commontaskbar.xml | 0 sd/uiconfig/simpress/toolbar/connectorsbar.xml | 0 sd/uiconfig/simpress/toolbar/drawingobjectbar.xml | 0 sd/uiconfig/simpress/toolbar/ellipsesbar.xml | 0 .../simpress/toolbar/extrusionobjectbar.xml | 0 sd/uiconfig/simpress/toolbar/flowchartshapes.xml | 0 sd/uiconfig/simpress/toolbar/fontworkobjectbar.xml | 0 sd/uiconfig/simpress/toolbar/fontworkshapetype.xml | 0 sd/uiconfig/simpress/toolbar/formcontrols.xml | 0 sd/uiconfig/simpress/toolbar/formdesign.xml | 0 sd/uiconfig/simpress/toolbar/formsfilterbar.xml | 0 .../simpress/toolbar/formsnavigationbar.xml | 0 sd/uiconfig/simpress/toolbar/formtextobjectbar.xml | 0 sd/uiconfig/simpress/toolbar/fullscreenbar.xml | 0 .../simpress/toolbar/gluepointsobjectbar.xml | 0 sd/uiconfig/simpress/toolbar/graffilterbar.xml | 0 sd/uiconfig/simpress/toolbar/graphicobjectbar.xml | 0 sd/uiconfig/simpress/toolbar/insertbar.xml | 0 sd/uiconfig/simpress/toolbar/linesbar.xml | 0 sd/uiconfig/simpress/toolbar/masterviewtoolbar.xml | 0 sd/uiconfig/simpress/toolbar/mediaobjectbar.xml | 0 sd/uiconfig/simpress/toolbar/moreformcontrols.xml | 0 sd/uiconfig/simpress/toolbar/optimizetablebar.xml | 0 sd/uiconfig/simpress/toolbar/optionsbar.xml | 0 sd/uiconfig/simpress/toolbar/outlinetoolbar.xml | 0 sd/uiconfig/simpress/toolbar/positionbar.xml | 0 sd/uiconfig/simpress/toolbar/rectanglesbar.xml | 0 .../simpress/toolbar/slideviewobjectbar.xml | 0 sd/uiconfig/simpress/toolbar/slideviewtoolbar.xml | 0 sd/uiconfig/simpress/toolbar/standardbar.xml | 0 sd/uiconfig/simpress/toolbar/starshapes.xml | 0 sd/uiconfig/simpress/toolbar/symbolshapes.xml | 0 sd/uiconfig/simpress/toolbar/tableobjectbar.xml | 0 sd/uiconfig/simpress/toolbar/textbar.xml | 0 sd/uiconfig/simpress/toolbar/textobjectbar.xml | 0 sd/uiconfig/simpress/toolbar/toolbar.xml | 0 sd/uiconfig/simpress/toolbar/viewerbar.xml | 0 sd/uiconfig/simpress/toolbar/zoombar.xml | 0 sd/util/exports.dxp | 0 sd/util/hidother.hrc | 0 sd/util/hidother.src | 0 sd/util/makefile.mk | 0 sd/util/makefile.pmk | 0 sd/util/sd.flt | 0 sd/util/sdfilt.map | 0 sd/util/sdui.map | 0 sd/workben/testdll/makefile | 0 sd/xml/AccessibleDrawDocumentView.xml | 0 sd/xml/AccessibleOutlineView.xml | 0 sd/xml/AccessiblePageShape.xml | 0 sd/xml/AccessiblePresentationGraphicShape.xml | 0 sd/xml/AccessiblePresentationOLEShape.xml | 0 sd/xml/AccessiblePresentationShape.xml | 0 sd/xml/AccessibleSlideView.xml | 0 sd/xml/AccessibleSlideViewObject.xml | 0 sd/xml/DrawingView.xml | 0 sd/xml/HandoutView.xml | 0 sd/xml/NotesView.xml | 0 sd/xml/OutlineView.xml | 0 sd/xml/PresentationView.xml | 0 sd/xml/SdDocLinkTargets.xml | 0 sd/xml/SdDrawPage.xml | 0 sd/xml/SdDrawPagesAccess.xml | 0 sd/xml/SdGenericDrawPage.xml | 0 sd/xml/SdLayer.xml | 0 sd/xml/SdLayerManager.xml | 0 sd/xml/SdMasterPage.xml | 0 sd/xml/SdMasterPagesAccess.xml | 0 sd/xml/SdPageLinkTargets.xml | 0 sd/xml/SdXCustomPresentation.xml | 0 sd/xml/SdXCustomPresentationAccess.xml | 0 sd/xml/SdXImpressDocument.xml | 0 sd/xml/SdXPresentation.xml | 0 sd/xml/SdXShape.xml | 0 sd/xml/SlidesView.xml | 0 sd/xml/effects.xml | 0 sd/xml/transitions-ogl.xml | 0 sd/xml/transitions.xml | 0 sd/xsl/effect.xsl | 0 1191 files changed, 80 insertions(+), 62 deletions(-) mode change 100644 => 100755 sd/inc/CustomAnimationCloner.hxx mode change 100644 => 100755 sd/inc/CustomAnimationEffect.hxx mode change 100644 => 100755 sd/inc/CustomAnimationPreset.hxx mode change 100644 => 100755 sd/inc/EffectMigration.hxx mode change 100644 => 100755 sd/inc/FactoryIds.hxx mode change 100644 => 100755 sd/inc/Outliner.hxx mode change 100644 => 100755 sd/inc/OutlinerIterator.hxx mode change 100644 => 100755 sd/inc/SdShapeTypes.hxx mode change 100644 => 100755 sd/inc/TransitionPreset.hxx mode change 100644 => 100755 sd/inc/animations.hxx mode change 100644 => 100755 sd/inc/anmdef.hxx mode change 100644 => 100755 sd/inc/anminfo.hxx mode change 100644 => 100755 sd/inc/app.hrc mode change 100644 => 100755 sd/inc/app.hxx mode change 100644 => 100755 sd/inc/cusshow.hxx mode change 100644 => 100755 sd/inc/diadef.h mode change 100644 => 100755 sd/inc/drawdoc.hxx mode change 100644 => 100755 sd/inc/eetext.hxx mode change 100644 => 100755 sd/inc/fadedef.h mode change 100644 => 100755 sd/inc/glob.hrc mode change 100644 => 100755 sd/inc/glob.hxx mode change 100644 => 100755 sd/inc/helper/simplereferencecomponent.hxx mode change 100644 => 100755 sd/inc/helpids.h mode change 100644 => 100755 sd/inc/imapinfo.hxx mode change 100644 => 100755 sd/inc/makefile.mk mode change 100644 => 100755 sd/inc/misc.hxx mode change 100644 => 100755 sd/inc/misc/scopelock.hxx mode change 100644 => 100755 sd/inc/movedef.hxx mode change 100644 => 100755 sd/inc/pch/precompiled_sd.cxx mode change 100644 => 100755 sd/inc/pch/precompiled_sd.hxx mode change 100644 => 100755 sd/inc/pglink.hxx mode change 100644 => 100755 sd/inc/pres.hxx mode change 100644 => 100755 sd/inc/prlayout.hxx mode change 100644 => 100755 sd/inc/resltn.hxx mode change 100644 => 100755 sd/inc/sd_primitivetypes2d.hxx mode change 100644 => 100755 sd/inc/sdabstdlg.hxx mode change 100644 => 100755 sd/inc/sdattr.hrc mode change 100644 => 100755 sd/inc/sdattr.hxx mode change 100644 => 100755 sd/inc/sdcgmfilter.hxx mode change 100644 => 100755 sd/inc/sddll.hxx mode change 100644 => 100755 sd/inc/sddllapi.h mode change 100644 => 100755 sd/inc/sdenumdef.hxx mode change 100644 => 100755 sd/inc/sderror.hxx mode change 100644 => 100755 sd/inc/sdfilter.hxx mode change 100644 => 100755 sd/inc/sdgrffilter.hxx mode change 100644 => 100755 sd/inc/sdhtmlfilter.hxx mode change 100644 => 100755 sd/inc/sdiocmpt.hxx mode change 100644 => 100755 sd/inc/sdmod.hxx mode change 100644 => 100755 sd/inc/sdobjfac.hxx mode change 100644 => 100755 sd/inc/sdpage.hxx mode change 100644 => 100755 sd/inc/sdpptwrp.hxx mode change 100644 => 100755 sd/inc/sdresid.hxx mode change 100644 => 100755 sd/inc/sduiks.hrc mode change 100644 => 100755 sd/inc/sdundo.hxx mode change 100644 => 100755 sd/inc/sdxmlwrp.hxx mode change 100644 => 100755 sd/inc/shapelist.hxx mode change 100644 => 100755 sd/inc/stlfamily.hxx mode change 100644 => 100755 sd/inc/stlpool.hxx mode change 100644 => 100755 sd/inc/stlsheet.hxx mode change 100644 => 100755 sd/inc/strmname.h mode change 100644 => 100755 sd/inc/textapi.hxx mode change 100644 => 100755 sd/inc/undo/undofactory.hxx mode change 100644 => 100755 sd/inc/undo/undomanager.hxx mode change 100644 => 100755 sd/inc/undo/undoobjects.hxx mode change 100644 => 100755 sd/inc/undoanim.hxx mode change 100644 => 100755 sd/prj/d.lst mode change 100644 => 100755 sd/prj/struct.txt mode change 100644 => 100755 sd/qa/unoapi/knownissues.xcl mode change 100644 => 100755 sd/qa/unoapi/makefile.mk mode change 100644 => 100755 sd/qa/unoapi/sd.sce mode change 100644 => 100755 sd/res/buttons/glas-blue.zip mode change 100644 => 100755 sd/res/buttons/glas-green.zip mode change 100644 => 100755 sd/res/buttons/glas-red.zip mode change 100644 => 100755 sd/res/buttons/round-gorilla.zip mode change 100644 => 100755 sd/res/buttons/round-white.zip mode change 100644 => 100755 sd/res/buttons/simple.zip mode change 100644 => 100755 sd/res/buttons/square-blue.zip mode change 100644 => 100755 sd/res/buttons/square-gray.zip mode change 100644 => 100755 sd/res/buttons/square-green.zip mode change 100644 => 100755 sd/res/buttons/square-red.zip mode change 100644 => 100755 sd/res/buttons/square-yellow.zip mode change 100644 => 100755 sd/res/webview/common.inc mode change 100644 => 100755 sd/res/webview/common.pl mode change 100644 => 100755 sd/res/webview/edit.asp mode change 100644 => 100755 sd/res/webview/edit.pl mode change 100644 => 100755 sd/res/webview/editpic.asp mode change 100644 => 100755 sd/res/webview/editpic.pl mode change 100644 => 100755 sd/res/webview/index.pl mode change 100644 => 100755 sd/res/webview/poll.asp mode change 100644 => 100755 sd/res/webview/poll.pl mode change 100644 => 100755 sd/res/webview/savepic.asp mode change 100644 => 100755 sd/res/webview/savepic.pl mode change 100644 => 100755 sd/res/webview/show.asp mode change 100644 => 100755 sd/res/webview/show.pl mode change 100644 => 100755 sd/res/webview/webview.asp mode change 100644 => 100755 sd/res/webview/webview.pl mode change 100644 => 100755 sd/sdi/SlideSorterController.sdi mode change 100644 => 100755 sd/sdi/ViewShellBase.sdi mode change 100644 => 100755 sd/sdi/_docsh.sdi mode change 100644 => 100755 sd/sdi/_drvwsh.sdi mode change 100644 => 100755 sd/sdi/app.sdi mode change 100644 => 100755 sd/sdi/docshell.sdi mode change 100644 => 100755 sd/sdi/drbezob.sdi mode change 100644 => 100755 sd/sdi/drgrfob.sdi mode change 100644 => 100755 sd/sdi/drtxtob.sdi mode change 100644 => 100755 sd/sdi/drviewsh.sdi mode change 100644 => 100755 sd/sdi/grdocsh.sdi mode change 100644 => 100755 sd/sdi/grviewsh.sdi mode change 100644 => 100755 sd/sdi/makefile.mk mode change 100644 => 100755 sd/sdi/mediaob.sdi mode change 100644 => 100755 sd/sdi/outlnvsh.sdi mode change 100644 => 100755 sd/sdi/sdgslots.sdi mode change 100644 => 100755 sd/sdi/sdnew.sdi mode change 100644 => 100755 sd/sdi/sdraw.sdi mode change 100644 => 100755 sd/sdi/sdslots.hrc mode change 100644 => 100755 sd/sdi/sdslots.sdi mode change 100644 => 100755 sd/sdi/tables.sdi mode change 100644 => 100755 sd/source/core/CustomAnimationCloner.cxx mode change 100644 => 100755 sd/source/core/CustomAnimationEffect.cxx mode change 100644 => 100755 sd/source/core/CustomAnimationPreset.cxx mode change 100644 => 100755 sd/source/core/EffectMigration.cxx mode change 100644 => 100755 sd/source/core/PageListWatcher.cxx mode change 100644 => 100755 sd/source/core/PageListWatcher.hxx mode change 100644 => 100755 sd/source/core/TransitionPreset.cxx mode change 100644 => 100755 sd/source/core/anminfo.cxx mode change 100644 => 100755 sd/source/core/annotations/Annotation.cxx mode change 100644 => 100755 sd/source/core/annotations/AnnotationAccess.cxx mode change 100644 => 100755 sd/source/core/annotations/AnnotationEnumeration.cxx mode change 100644 => 100755 sd/source/core/annotations/makefile.mk mode change 100644 => 100755 sd/source/core/cusshow.cxx mode change 100644 => 100755 sd/source/core/drawdoc.cxx mode change 100644 => 100755 sd/source/core/drawdoc2.cxx mode change 100644 => 100755 sd/source/core/drawdoc3.cxx mode change 100644 => 100755 sd/source/core/drawdoc4.cxx mode change 100644 => 100755 sd/source/core/drawdoc_animations.cxx mode change 100644 => 100755 sd/source/core/glob.src mode change 100644 => 100755 sd/source/core/makefile.mk mode change 100644 => 100755 sd/source/core/pglink.cxx mode change 100644 => 100755 sd/source/core/sdattr.cxx mode change 100644 => 100755 sd/source/core/sdiocmpt.cxx mode change 100644 => 100755 sd/source/core/sdobjfac.cxx mode change 100644 => 100755 sd/source/core/sdpage.cxx mode change 100644 => 100755 sd/source/core/sdpage2.cxx mode change 100644 => 100755 sd/source/core/sdpage_animations.cxx mode change 100644 => 100755 sd/source/core/shapelist.cxx mode change 100644 => 100755 sd/source/core/stlfamily.cxx mode change 100644 => 100755 sd/source/core/stlpool.cxx mode change 100644 => 100755 sd/source/core/stlsheet.cxx mode change 100644 => 100755 sd/source/core/text/makefile.mk mode change 100644 => 100755 sd/source/core/text/textapi.cxx mode change 100644 => 100755 sd/source/core/typemap.cxx mode change 100644 => 100755 sd/source/core/undo/makefile.mk mode change 100644 => 100755 sd/source/core/undo/undofactory.cxx mode change 100644 => 100755 sd/source/core/undo/undomanager.cxx mode change 100644 => 100755 sd/source/core/undo/undoobjects.cxx mode change 100644 => 100755 sd/source/core/undoanim.cxx mode change 100644 => 100755 sd/source/filter/cgm/makefile.mk mode change 100644 => 100755 sd/source/filter/cgm/sdcgmfilter.cxx mode change 100644 => 100755 sd/source/filter/eppt/eppt.cxx mode change 100644 => 100755 sd/source/filter/eppt/eppt.hxx mode change 100644 => 100755 sd/source/filter/eppt/epptdef.hxx mode change 100644 => 100755 sd/source/filter/eppt/epptso.cxx mode change 100644 => 100755 sd/source/filter/eppt/escherex.cxx mode change 100644 => 100755 sd/source/filter/eppt/escherex.hxx mode change 100644 => 100755 sd/source/filter/eppt/makefile.mk mode change 100644 => 100755 sd/source/filter/eppt/pptexanimations.cxx mode change 100644 => 100755 sd/source/filter/eppt/pptexanimations.hxx mode change 100644 => 100755 sd/source/filter/eppt/pptexsoundcollection.cxx mode change 100644 => 100755 sd/source/filter/eppt/pptexsoundcollection.hxx mode change 100644 => 100755 sd/source/filter/grf/makefile.mk mode change 100644 => 100755 sd/source/filter/grf/sdgrffilter.cxx mode change 100644 => 100755 sd/source/filter/html/HtmlOptionsDialog.cxx mode change 100644 => 100755 sd/source/filter/html/buttonset.cxx mode change 100644 => 100755 sd/source/filter/html/buttonset.hxx mode change 100644 => 100755 sd/source/filter/html/htmlattr.cxx mode change 100644 => 100755 sd/source/filter/html/htmlattr.hxx mode change 100644 => 100755 sd/source/filter/html/htmlex.cxx mode change 100644 => 100755 sd/source/filter/html/htmlex.hxx mode change 100644 => 100755 sd/source/filter/html/makefile.mk mode change 100644 => 100755 sd/source/filter/html/pubdlg.cxx mode change 100644 => 100755 sd/source/filter/html/pubdlg.src mode change 100644 => 100755 sd/source/filter/html/sdhtmlfilter.cxx mode change 100644 => 100755 sd/source/filter/makefile.mk mode change 100644 => 100755 sd/source/filter/ppt/makefile.mk mode change 100644 => 100755 sd/source/filter/ppt/ppt97animations.cxx mode change 100644 => 100755 sd/source/filter/ppt/ppt97animations.hxx mode change 100644 => 100755 sd/source/filter/ppt/pptanimations.hxx mode change 100644 => 100755 sd/source/filter/ppt/pptatom.cpp mode change 100644 => 100755 sd/source/filter/ppt/pptatom.hxx mode change 100644 => 100755 sd/source/filter/ppt/pptin.cxx mode change 100644 => 100755 sd/source/filter/ppt/pptin.hxx mode change 100644 => 100755 sd/source/filter/ppt/pptinanimations.cxx mode change 100644 => 100755 sd/source/filter/ppt/pptinanimations.hxx mode change 100644 => 100755 sd/source/filter/ppt/propread.cxx mode change 100644 => 100755 sd/source/filter/ppt/propread.hxx mode change 100644 => 100755 sd/source/filter/sdfilter.cxx mode change 100644 => 100755 sd/source/filter/sdpptwrp.cxx mode change 100644 => 100755 sd/source/filter/xml/makefile.mk mode change 100644 => 100755 sd/source/filter/xml/sdtransform.cxx mode change 100644 => 100755 sd/source/filter/xml/sdxmlwrp.cxx mode change 100644 => 100755 sd/source/helper/makefile.mk mode change 100644 => 100755 sd/source/helper/simplereferencecomponent.cxx mode change 100644 => 100755 sd/source/ui/accessibility/AccessibleDocumentViewBase.cxx mode change 100644 => 100755 sd/source/ui/accessibility/AccessibleDrawDocumentView.cxx mode change 100644 => 100755 sd/source/ui/accessibility/AccessibleOutlineEditSource.cxx mode change 100644 => 100755 sd/source/ui/accessibility/AccessibleOutlineView.cxx mode change 100644 => 100755 sd/source/ui/accessibility/AccessiblePageShape.cxx mode change 100644 => 100755 sd/source/ui/accessibility/AccessiblePresentationGraphicShape.cxx mode change 100644 => 100755 sd/source/ui/accessibility/AccessiblePresentationOLEShape.cxx mode change 100644 => 100755 sd/source/ui/accessibility/AccessiblePresentationShape.cxx mode change 100644 => 100755 sd/source/ui/accessibility/AccessibleScrollPanel.cxx mode change 100644 => 100755 sd/source/ui/accessibility/AccessibleSlideSorterObject.cxx mode change 100644 => 100755 sd/source/ui/accessibility/AccessibleTreeNode.cxx mode change 100644 => 100755 sd/source/ui/accessibility/AccessibleViewForwarder.cxx mode change 100644 => 100755 sd/source/ui/accessibility/SdShapeTypes.cxx mode change 100644 => 100755 sd/source/ui/accessibility/accessibility.hrc mode change 100644 => 100755 sd/source/ui/accessibility/accessibility.src mode change 100644 => 100755 sd/source/ui/animations/CustomAnimation.hrc mode change 100644 => 100755 sd/source/ui/animations/CustomAnimation.src mode change 100644 => 100755 sd/source/ui/animations/CustomAnimationCreateDialog.cxx mode change 100644 => 100755 sd/source/ui/animations/CustomAnimationCreateDialog.hrc mode change 100644 => 100755 sd/source/ui/animations/CustomAnimationCreateDialog.hxx mode change 100644 => 100755 sd/source/ui/animations/CustomAnimationCreateDialog.src mode change 100644 => 100755 sd/source/ui/animations/CustomAnimationDialog.cxx mode change 100644 => 100755 sd/source/ui/animations/CustomAnimationDialog.hrc mode change 100644 => 100755 sd/source/ui/animations/CustomAnimationDialog.hxx mode change 100644 => 100755 sd/source/ui/animations/CustomAnimationDialog.src mode change 100644 => 100755 sd/source/ui/animations/CustomAnimationList.cxx mode change 100644 => 100755 sd/source/ui/animations/CustomAnimationList.hxx mode change 100644 => 100755 sd/source/ui/animations/CustomAnimationPane.cxx mode change 100644 => 100755 sd/source/ui/animations/CustomAnimationPane.hrc mode change 100644 => 100755 sd/source/ui/animations/CustomAnimationPane.hxx mode change 100644 => 100755 sd/source/ui/animations/CustomAnimationPane.src mode change 100644 => 100755 sd/source/ui/animations/DialogListBox.cxx mode change 100644 => 100755 sd/source/ui/animations/STLPropertySet.cxx mode change 100644 => 100755 sd/source/ui/animations/STLPropertySet.hxx mode change 100644 => 100755 sd/source/ui/animations/SlideTransitionPane.cxx mode change 100644 => 100755 sd/source/ui/animations/SlideTransitionPane.hrc mode change 100644 => 100755 sd/source/ui/animations/SlideTransitionPane.hxx mode change 100644 => 100755 sd/source/ui/animations/SlideTransitionPane.src mode change 100644 => 100755 sd/source/ui/animations/makefile.mk mode change 100644 => 100755 sd/source/ui/animations/motionpathtag.cxx mode change 100644 => 100755 sd/source/ui/animations/motionpathtag.hxx mode change 100644 => 100755 sd/source/ui/annotations/annotationmanager.cxx mode change 100644 => 100755 sd/source/ui/annotations/annotations.hrc mode change 100644 => 100755 sd/source/ui/annotations/annotations.src mode change 100644 => 100755 sd/source/ui/annotations/annotationtag.cxx mode change 100644 => 100755 sd/source/ui/annotations/annotationtag.hxx mode change 100644 => 100755 sd/source/ui/annotations/annotationwindow.cxx mode change 100644 => 100755 sd/source/ui/annotations/annotationwindow.hxx mode change 100644 => 100755 sd/source/ui/annotations/makefile.mk mode change 100644 => 100755 sd/source/ui/app/_app.hrc mode change 100644 => 100755 sd/source/ui/app/accel_tmpl.src mode change 100644 => 100755 sd/source/ui/app/accelids_tmpl.src mode change 100644 => 100755 sd/source/ui/app/app.img mode change 100644 => 100755 sd/source/ui/app/app.src mode change 100644 => 100755 sd/source/ui/app/makefile.mk mode change 100644 => 100755 sd/source/ui/app/menu_tmpl.src mode change 100644 => 100755 sd/source/ui/app/menuids2_tmpl.src mode change 100644 => 100755 sd/source/ui/app/menuids3_tmpl.src mode change 100644 => 100755 sd/source/ui/app/menuids4_tmpl.src mode change 100644 => 100755 sd/source/ui/app/menuids_tmpl.src mode change 100644 => 100755 sd/source/ui/app/menuportal_tmpl.src mode change 100644 => 100755 sd/source/ui/app/popup.src mode change 100644 => 100755 sd/source/ui/app/popup2_tmpl.src mode change 100644 => 100755 sd/source/ui/app/res_bmp.src mode change 100644 => 100755 sd/source/ui/app/sddll.cxx mode change 100644 => 100755 sd/source/ui/app/sddll1.cxx mode change 100644 => 100755 sd/source/ui/app/sddll2.cxx mode change 100644 => 100755 sd/source/ui/app/sdmod.cxx mode change 100644 => 100755 sd/source/ui/app/sdmod1.cxx mode change 100644 => 100755 sd/source/ui/app/sdmod2.cxx mode change 100644 => 100755 sd/source/ui/app/sdpopup.cxx mode change 100644 => 100755 sd/source/ui/app/sdresid.cxx mode change 100644 => 100755 sd/source/ui/app/sdstring.src mode change 100644 => 100755 sd/source/ui/app/sdxfer.cxx mode change 100644 => 100755 sd/source/ui/app/strings.src mode change 100644 => 100755 sd/source/ui/app/tbx_ww.src mode change 100644 => 100755 sd/source/ui/app/tbxids_tmpl.src mode change 100644 => 100755 sd/source/ui/app/tbxww.cxx mode change 100644 => 100755 sd/source/ui/app/tmplctrl.cxx mode change 100644 => 100755 sd/source/ui/app/toolbox.src mode change 100644 => 100755 sd/source/ui/app/toolbox2_tmpl.src mode change 100644 => 100755 sd/source/ui/controller/makefile.mk mode change 100644 => 100755 sd/source/ui/dlg/AnimationChildWindow.cxx mode change 100644 => 100755 sd/source/ui/dlg/LayerDialog.src mode change 100644 => 100755 sd/source/ui/dlg/LayerDialogChildWindow.cxx mode change 100644 => 100755 sd/source/ui/dlg/LayerDialogContent.cxx mode change 100644 => 100755 sd/source/ui/dlg/LayerTabBar.cxx mode change 100644 => 100755 sd/source/ui/dlg/NavigatorChildWindow.cxx mode change 100644 => 100755 sd/source/ui/dlg/PaneChildWindows.cxx mode change 100644 => 100755 sd/source/ui/dlg/PaneDockingWindow.src mode change 100644 => 100755 sd/source/ui/dlg/PaneShells.cxx mode change 100644 => 100755 sd/source/ui/dlg/SpellDialogChildWindow.cxx mode change 100644 => 100755 sd/source/ui/dlg/TemplateScanner.cxx mode change 100644 => 100755 sd/source/ui/dlg/animobjs.cxx mode change 100644 => 100755 sd/source/ui/dlg/animobjs.src mode change 100644 => 100755 sd/source/ui/dlg/assclass.cxx mode change 100644 => 100755 sd/source/ui/dlg/brkdlg.cxx mode change 100644 => 100755 sd/source/ui/dlg/brkdlg.src mode change 100644 => 100755 sd/source/ui/dlg/celltempl.cxx mode change 100644 => 100755 sd/source/ui/dlg/celltempl.src mode change 100644 => 100755 sd/source/ui/dlg/copydlg.cxx mode change 100644 => 100755 sd/source/ui/dlg/copydlg.src mode change 100644 => 100755 sd/source/ui/dlg/custsdlg.cxx mode change 100644 => 100755 sd/source/ui/dlg/custsdlg.src mode change 100644 => 100755 sd/source/ui/dlg/diactrl.cxx mode change 100644 => 100755 sd/source/ui/dlg/dlg_char.src mode change 100644 => 100755 sd/source/ui/dlg/dlgass.cxx mode change 100644 => 100755 sd/source/ui/dlg/dlgass.src mode change 100644 => 100755 sd/source/ui/dlg/dlgassim.cxx mode change 100644 => 100755 sd/source/ui/dlg/dlgassim.hxx mode change 100644 => 100755 sd/source/ui/dlg/dlgchar.cxx mode change 100644 => 100755 sd/source/ui/dlg/dlgctrls.cxx mode change 100644 => 100755 sd/source/ui/dlg/dlgfield.cxx mode change 100644 => 100755 sd/source/ui/dlg/dlgfield.src mode change 100644 => 100755 sd/source/ui/dlg/dlgolbul.cxx mode change 100644 => 100755 sd/source/ui/dlg/dlgolbul.src mode change 100644 => 100755 sd/source/ui/dlg/dlgpage.cxx mode change 100644 => 100755 sd/source/ui/dlg/dlgpage.src mode change 100644 => 100755 sd/source/ui/dlg/dlgsnap.cxx mode change 100644 => 100755 sd/source/ui/dlg/dlgsnap.src mode change 100644 => 100755 sd/source/ui/dlg/docprev.cxx mode change 100644 => 100755 sd/source/ui/dlg/filedlg.cxx mode change 100644 => 100755 sd/source/ui/dlg/gluectrl.cxx mode change 100644 => 100755 sd/source/ui/dlg/headerfooterdlg.cxx mode change 100644 => 100755 sd/source/ui/dlg/headerfooterdlg.src mode change 100644 => 100755 sd/source/ui/dlg/ins_paste.cxx mode change 100644 => 100755 sd/source/ui/dlg/ins_paste.src mode change 100644 => 100755 sd/source/ui/dlg/inspagob.cxx mode change 100644 => 100755 sd/source/ui/dlg/inspagob.src mode change 100644 => 100755 sd/source/ui/dlg/layeroptionsdlg.cxx mode change 100644 => 100755 sd/source/ui/dlg/layeroptionsdlg.src mode change 100644 => 100755 sd/source/ui/dlg/makefile.mk mode change 100644 => 100755 sd/source/ui/dlg/masterlayoutdlg.cxx mode change 100644 => 100755 sd/source/ui/dlg/masterlayoutdlg.src mode change 100644 => 100755 sd/source/ui/dlg/morphdlg.cxx mode change 100644 => 100755 sd/source/ui/dlg/morphdlg.src mode change 100644 => 100755 sd/source/ui/dlg/navigatr.cxx mode change 100644 => 100755 sd/source/ui/dlg/navigatr.src mode change 100644 => 100755 sd/source/ui/dlg/paragr.cxx mode change 100644 => 100755 sd/source/ui/dlg/paragr.src mode change 100644 => 100755 sd/source/ui/dlg/present.cxx mode change 100644 => 100755 sd/source/ui/dlg/present.src mode change 100644 => 100755 sd/source/ui/dlg/prltempl.cxx mode change 100644 => 100755 sd/source/ui/dlg/prltempl.src mode change 100644 => 100755 sd/source/ui/dlg/prntopts.cxx mode change 100644 => 100755 sd/source/ui/dlg/prntopts.src mode change 100644 => 100755 sd/source/ui/dlg/sdabstdlg.cxx mode change 100644 => 100755 sd/source/ui/dlg/sddlgfact.cxx mode change 100644 => 100755 sd/source/ui/dlg/sddlgfact.hxx mode change 100644 => 100755 sd/source/ui/dlg/sdpreslt.cxx mode change 100644 => 100755 sd/source/ui/dlg/sdpreslt.src mode change 100644 => 100755 sd/source/ui/dlg/sdtreelb.cxx mode change 100644 => 100755 sd/source/ui/dlg/sduiexp.cxx mode change 100644 => 100755 sd/source/ui/dlg/tabtempl.cxx mode change 100644 => 100755 sd/source/ui/dlg/tabtempl.src mode change 100644 => 100755 sd/source/ui/dlg/tpaction.cxx mode change 100644 => 100755 sd/source/ui/dlg/tpaction.src mode change 100644 => 100755 sd/source/ui/dlg/tpoption.cxx mode change 100644 => 100755 sd/source/ui/dlg/tpoption.src mode change 100644 => 100755 sd/source/ui/dlg/unchss.cxx mode change 100644 => 100755 sd/source/ui/dlg/vectdlg.cxx mode change 100644 => 100755 sd/source/ui/dlg/vectdlg.src mode change 100644 => 100755 sd/source/ui/docshell/docshel2.cxx mode change 100644 => 100755 sd/source/ui/docshell/docshel3.cxx mode change 100644 => 100755 sd/source/ui/docshell/docshel4.cxx mode change 100644 => 100755 sd/source/ui/docshell/docshell.cxx mode change 100644 => 100755 sd/source/ui/docshell/grdocsh.cxx mode change 100644 => 100755 sd/source/ui/docshell/makefile.mk mode change 100644 => 100755 sd/source/ui/docshell/sdclient.cxx mode change 100644 => 100755 sd/source/ui/framework/configuration/ChangeRequestQueue.cxx mode change 100644 => 100755 sd/source/ui/framework/configuration/ChangeRequestQueue.hxx mode change 100644 => 100755 sd/source/ui/framework/configuration/ChangeRequestQueueProcessor.cxx mode change 100644 => 100755 sd/source/ui/framework/configuration/ChangeRequestQueueProcessor.hxx mode change 100644 => 100755 sd/source/ui/framework/configuration/Configuration.cxx mode change 100644 => 100755 sd/source/ui/framework/configuration/ConfigurationClassifier.cxx mode change 100644 => 100755 sd/source/ui/framework/configuration/ConfigurationClassifier.hxx mode change 100644 => 100755 sd/source/ui/framework/configuration/ConfigurationController.cxx mode change 100644 => 100755 sd/source/ui/framework/configuration/ConfigurationControllerBroadcaster.cxx mode change 100644 => 100755 sd/source/ui/framework/configuration/ConfigurationControllerBroadcaster.hxx mode change 100644 => 100755 sd/source/ui/framework/configuration/ConfigurationControllerResourceManager.cxx mode change 100644 => 100755 sd/source/ui/framework/configuration/ConfigurationControllerResourceManager.hxx mode change 100644 => 100755 sd/source/ui/framework/configuration/ConfigurationTracer.cxx mode change 100644 => 100755 sd/source/ui/framework/configuration/ConfigurationTracer.hxx mode change 100644 => 100755 sd/source/ui/framework/configuration/ConfigurationUpdater.cxx mode change 100644 => 100755 sd/source/ui/framework/configuration/ConfigurationUpdater.hxx mode change 100644 => 100755 sd/source/ui/framework/configuration/GenericConfigurationChangeRequest.cxx mode change 100644 => 100755 sd/source/ui/framework/configuration/GenericConfigurationChangeRequest.hxx mode change 100644 => 100755 sd/source/ui/framework/configuration/ResourceFactoryManager.cxx mode change 100644 => 100755 sd/source/ui/framework/configuration/ResourceFactoryManager.hxx mode change 100644 => 100755 sd/source/ui/framework/configuration/ResourceId.cxx mode change 100644 => 100755 sd/source/ui/framework/configuration/UpdateRequest.cxx mode change 100644 => 100755 sd/source/ui/framework/configuration/UpdateRequest.hxx mode change 100644 => 100755 sd/source/ui/framework/configuration/makefile.mk mode change 100644 => 100755 sd/source/ui/framework/factories/BasicPaneFactory.cxx mode change 100644 => 100755 sd/source/ui/framework/factories/BasicPaneFactory.hxx mode change 100644 => 100755 sd/source/ui/framework/factories/BasicToolBarFactory.cxx mode change 100644 => 100755 sd/source/ui/framework/factories/BasicToolBarFactory.hxx mode change 100644 => 100755 sd/source/ui/framework/factories/BasicViewFactory.cxx mode change 100644 => 100755 sd/source/ui/framework/factories/BasicViewFactory.hxx mode change 100644 => 100755 sd/source/ui/framework/factories/ChildWindowPane.cxx mode change 100644 => 100755 sd/source/ui/framework/factories/ChildWindowPane.hxx mode change 100644 => 100755 sd/source/ui/framework/factories/FrameWindowPane.cxx mode change 100644 => 100755 sd/source/ui/framework/factories/FrameWindowPane.hxx mode change 100644 => 100755 sd/source/ui/framework/factories/FullScreenPane.cxx mode change 100644 => 100755 sd/source/ui/framework/factories/FullScreenPane.hxx mode change 100644 => 100755 sd/source/ui/framework/factories/Pane.cxx mode change 100644 => 100755 sd/source/ui/framework/factories/PresentationFactory.cxx mode change 100644 => 100755 sd/source/ui/framework/factories/TaskPanelFactory.cxx mode change 100644 => 100755 sd/source/ui/framework/factories/TaskPanelFactory.hxx mode change 100644 => 100755 sd/source/ui/framework/factories/ViewShellWrapper.cxx mode change 100644 => 100755 sd/source/ui/framework/factories/makefile.mk mode change 100644 => 100755 sd/source/ui/framework/module/CenterViewFocusModule.cxx mode change 100644 => 100755 sd/source/ui/framework/module/CenterViewFocusModule.hxx mode change 100644 => 100755 sd/source/ui/framework/module/DrawModule.cxx mode change 100644 => 100755 sd/source/ui/framework/module/ImpressModule.cxx mode change 100644 => 100755 sd/source/ui/framework/module/ModuleController.cxx mode change 100644 => 100755 sd/source/ui/framework/module/PresentationModule.cxx mode change 100644 => 100755 sd/source/ui/framework/module/ReadOnlyModeObserver.cxx mode change 100644 => 100755 sd/source/ui/framework/module/ReadOnlyModeObserver.hxx mode change 100644 => 100755 sd/source/ui/framework/module/ResourceManager.cxx mode change 100644 => 100755 sd/source/ui/framework/module/ResourceManager.hxx mode change 100644 => 100755 sd/source/ui/framework/module/ShellStackGuard.cxx mode change 100644 => 100755 sd/source/ui/framework/module/ShellStackGuard.hxx mode change 100644 => 100755 sd/source/ui/framework/module/SlideSorterModule.cxx mode change 100644 => 100755 sd/source/ui/framework/module/SlideSorterModule.hxx mode change 100644 => 100755 sd/source/ui/framework/module/ToolBarModule.cxx mode change 100644 => 100755 sd/source/ui/framework/module/ToolBarModule.hxx mode change 100644 => 100755 sd/source/ui/framework/module/ViewTabBarModule.cxx mode change 100644 => 100755 sd/source/ui/framework/module/ViewTabBarModule.hxx mode change 100644 => 100755 sd/source/ui/framework/module/makefile.mk mode change 100644 => 100755 sd/source/ui/framework/tools/FrameworkHelper.cxx mode change 100644 => 100755 sd/source/ui/framework/tools/makefile.mk mode change 100644 => 100755 sd/source/ui/func/bulmaper.cxx mode change 100644 => 100755 sd/source/ui/func/fuarea.cxx mode change 100644 => 100755 sd/source/ui/func/fubullet.cxx mode change 100644 => 100755 sd/source/ui/func/fuchar.cxx mode change 100644 => 100755 sd/source/ui/func/fucon3d.cxx mode change 100644 => 100755 sd/source/ui/func/fuconarc.cxx mode change 100644 => 100755 sd/source/ui/func/fuconbez.cxx mode change 100644 => 100755 sd/source/ui/func/fuconcs.cxx mode change 100644 => 100755 sd/source/ui/func/fuconnct.cxx mode change 100644 => 100755 sd/source/ui/func/fuconrec.cxx mode change 100644 => 100755 sd/source/ui/func/fuconstr.cxx mode change 100644 => 100755 sd/source/ui/func/fuconuno.cxx mode change 100644 => 100755 sd/source/ui/func/fucopy.cxx mode change 100644 => 100755 sd/source/ui/func/fucushow.cxx mode change 100644 => 100755 sd/source/ui/func/fudraw.cxx mode change 100644 => 100755 sd/source/ui/func/fudspord.cxx mode change 100644 => 100755 sd/source/ui/func/fuediglu.cxx mode change 100644 => 100755 sd/source/ui/func/fuexpand.cxx mode change 100644 => 100755 sd/source/ui/func/fuformatpaintbrush.cxx mode change 100644 => 100755 sd/source/ui/func/fuhhconv.cxx mode change 100644 => 100755 sd/source/ui/func/fuinsert.cxx mode change 100644 => 100755 sd/source/ui/func/fuinsfil.cxx mode change 100644 => 100755 sd/source/ui/func/fuline.cxx mode change 100644 => 100755 sd/source/ui/func/fulinend.cxx mode change 100644 => 100755 sd/source/ui/func/fulink.cxx mode change 100644 => 100755 sd/source/ui/func/fumeasur.cxx mode change 100644 => 100755 sd/source/ui/func/fumorph.cxx mode change 100644 => 100755 sd/source/ui/func/fuoaprms.cxx mode change 100644 => 100755 sd/source/ui/func/fuolbull.cxx mode change 100644 => 100755 sd/source/ui/func/fuoltext.cxx mode change 100644 => 100755 sd/source/ui/func/fuoutl.cxx mode change 100644 => 100755 sd/source/ui/func/fupage.cxx mode change 100644 => 100755 sd/source/ui/func/fuparagr.cxx mode change 100644 => 100755 sd/source/ui/func/fupoor.cxx mode change 100644 => 100755 sd/source/ui/func/fuprlout.cxx mode change 100644 => 100755 sd/source/ui/func/fuprobjs.cxx mode change 100644 => 100755 sd/source/ui/func/fuscale.cxx mode change 100644 => 100755 sd/source/ui/func/fusearch.cxx mode change 100644 => 100755 sd/source/ui/func/fusel.cxx mode change 100644 => 100755 sd/source/ui/func/fusldlg.cxx mode change 100644 => 100755 sd/source/ui/func/fusnapln.cxx mode change 100644 => 100755 sd/source/ui/func/fusumry.cxx mode change 100644 => 100755 sd/source/ui/func/futempl.cxx mode change 100644 => 100755 sd/source/ui/func/futext.cxx mode change 100644 => 100755 sd/source/ui/func/futhes.cxx mode change 100644 => 100755 sd/source/ui/func/futransf.cxx mode change 100644 => 100755 sd/source/ui/func/futxtatt.cxx mode change 100644 => 100755 sd/source/ui/func/fuvect.cxx mode change 100644 => 100755 sd/source/ui/func/fuzoom.cxx mode change 100644 => 100755 sd/source/ui/func/makefile.mk mode change 100644 => 100755 sd/source/ui/func/sdundo.cxx mode change 100644 => 100755 sd/source/ui/func/sdundogr.cxx mode change 100644 => 100755 sd/source/ui/func/smarttag.cxx mode change 100644 => 100755 sd/source/ui/func/undoback.cxx mode change 100644 => 100755 sd/source/ui/func/undoheaderfooter.cxx mode change 100644 => 100755 sd/source/ui/func/undolayer.cxx mode change 100644 => 100755 sd/source/ui/func/undopage.cxx mode change 100644 => 100755 sd/source/ui/func/unmovss.cxx mode change 100644 => 100755 sd/source/ui/func/unoaprms.cxx mode change 100644 => 100755 sd/source/ui/func/unprlout.cxx mode change 100644 => 100755 sd/source/ui/inc/3dchld.hxx mode change 100644 => 100755 sd/source/ui/inc/AccessibleDocumentViewBase.hxx mode change 100644 => 100755 sd/source/ui/inc/AccessibleDrawDocumentView.hxx mode change 100644 => 100755 sd/source/ui/inc/AccessibleOutlineEditSource.hxx mode change 100644 => 100755 sd/source/ui/inc/AccessibleOutlineView.hxx mode change 100644 => 100755 sd/source/ui/inc/AccessiblePageShape.hxx mode change 100644 => 100755 sd/source/ui/inc/AccessiblePresentationGraphicShape.hxx mode change 100644 => 100755 sd/source/ui/inc/AccessiblePresentationOLEShape.hxx mode change 100644 => 100755 sd/source/ui/inc/AccessiblePresentationShape.hxx mode change 100644 => 100755 sd/source/ui/inc/AccessibleScrollPanel.hxx mode change 100644 => 100755 sd/source/ui/inc/AccessibleSlideSorterObject.hxx mode change 100644 => 100755 sd/source/ui/inc/AccessibleSlideSorterView.hxx mode change 100644 => 100755 sd/source/ui/inc/AccessibleSlideView.hxx mode change 100644 => 100755 sd/source/ui/inc/AccessibleTreeNode.hxx mode change 100644 => 100755 sd/source/ui/inc/AccessibleViewForwarder.hxx mode change 100644 => 100755 sd/source/ui/inc/AnimationChildWindow.hxx mode change 100644 => 100755 sd/source/ui/inc/BezierObjectBar.hxx mode change 100644 => 100755 sd/source/ui/inc/BreakDlg.hxx mode change 100644 => 100755 sd/source/ui/inc/Client.hxx mode change 100644 => 100755 sd/source/ui/inc/ClientView.hxx mode change 100644 => 100755 sd/source/ui/inc/CustomAnimation.hxx mode change 100644 => 100755 sd/source/ui/inc/DialogListBox.hxx mode change 100644 => 100755 sd/source/ui/inc/DocumentRenderer.hxx mode change 100644 => 100755 sd/source/ui/inc/DrawController.hxx mode change 100644 => 100755 sd/source/ui/inc/DrawDocShell.hxx mode change 100644 => 100755 sd/source/ui/inc/DrawSubController.hxx mode change 100644 => 100755 sd/source/ui/inc/DrawViewShell.hxx mode change 100644 => 100755 sd/source/ui/inc/EventMultiplexer.hxx mode change 100644 => 100755 sd/source/ui/inc/FormShellManager.hxx mode change 100644 => 100755 sd/source/ui/inc/FrameView.hxx mode change 100644 => 100755 sd/source/ui/inc/GraphicDocShell.hxx mode change 100644 => 100755 sd/source/ui/inc/GraphicObjectBar.hxx mode change 100644 => 100755 sd/source/ui/inc/GraphicViewShell.hxx mode change 100644 => 100755 sd/source/ui/inc/GraphicViewShellBase.hxx mode change 100644 => 100755 sd/source/ui/inc/ImpressViewShellBase.hxx mode change 100644 => 100755 sd/source/ui/inc/LayerDialog.hrc mode change 100644 => 100755 sd/source/ui/inc/LayerDialogChildWindow.hxx mode change 100644 => 100755 sd/source/ui/inc/LayerDialogContent.hxx mode change 100644 => 100755 sd/source/ui/inc/LayerTabBar.hxx mode change 100644 => 100755 sd/source/ui/inc/MasterPageObserver.hxx mode change 100644 => 100755 sd/source/ui/inc/MediaObjectBar.hxx mode change 100644 => 100755 sd/source/ui/inc/MutexOwner.hxx mode change 100644 => 100755 sd/source/ui/inc/NavigatorChildWindow.hxx mode change 100644 => 100755 sd/source/ui/inc/NotesChildWindow.hrc mode change 100644 => 100755 sd/source/ui/inc/NotesChildWindow.hxx mode change 100644 => 100755 sd/source/ui/inc/OutlineBulletDlg.hxx mode change 100644 => 100755 sd/source/ui/inc/OutlineView.hxx mode change 100644 => 100755 sd/source/ui/inc/OutlineViewShell.hxx mode change 100644 => 100755 sd/source/ui/inc/OutlineViewShellBase.hxx mode change 100644 => 100755 sd/source/ui/inc/OutlinerIteratorImpl.hxx mode change 100644 => 100755 sd/source/ui/inc/PaneChildWindows.hxx mode change 100644 => 100755 sd/source/ui/inc/PaneDockingWindow.hrc mode change 100644 => 100755 sd/source/ui/inc/PaneShells.hxx mode change 100644 => 100755 sd/source/ui/inc/PresentationViewShell.hxx mode change 100644 => 100755 sd/source/ui/inc/PresentationViewShellBase.hxx mode change 100644 => 100755 sd/source/ui/inc/PreviewRenderer.hxx mode change 100644 => 100755 sd/source/ui/inc/Ruler.hxx mode change 100644 => 100755 sd/source/ui/inc/SdUnoDrawView.hxx mode change 100644 => 100755 sd/source/ui/inc/SdUnoOutlineView.hxx mode change 100644 => 100755 sd/source/ui/inc/SdUnoSlideView.hxx mode change 100644 => 100755 sd/source/ui/inc/ShellFactory.hxx mode change 100644 => 100755 sd/source/ui/inc/SlideSorter.hxx mode change 100644 => 100755 sd/source/ui/inc/SlideSorterChildWindow.hrc mode change 100644 => 100755 sd/source/ui/inc/SlideSorterChildWindow.hxx mode change 100644 => 100755 sd/source/ui/inc/SlideSorterViewShell.hxx mode change 100644 => 100755 sd/source/ui/inc/SlideSorterViewShellBase.hxx mode change 100644 => 100755 sd/source/ui/inc/SlideView.hxx mode change 100644 => 100755 sd/source/ui/inc/SlideViewShell.hxx mode change 100644 => 100755 sd/source/ui/inc/SpellDialogChildWindow.hxx mode change 100644 => 100755 sd/source/ui/inc/TabControl.hxx mode change 100644 => 100755 sd/source/ui/inc/TemplateScanner.hxx mode change 100644 => 100755 sd/source/ui/inc/TextLogger.hxx mode change 100644 => 100755 sd/source/ui/inc/TextObjectBar.hxx mode change 100644 => 100755 sd/source/ui/inc/ToolBarManager.hxx mode change 100644 => 100755 sd/source/ui/inc/UpdateLockManager.hxx mode change 100644 => 100755 sd/source/ui/inc/View.hxx mode change 100644 => 100755 sd/source/ui/inc/ViewClipboard.hxx mode change 100644 => 100755 sd/source/ui/inc/ViewShell.hxx mode change 100644 => 100755 sd/source/ui/inc/ViewShellBase.hxx mode change 100644 => 100755 sd/source/ui/inc/ViewShellHint.hxx mode change 100644 => 100755 sd/source/ui/inc/ViewShellImplementation.hxx mode change 100644 => 100755 sd/source/ui/inc/ViewShellManager.hxx mode change 100644 => 100755 sd/source/ui/inc/ViewTabBar.hxx mode change 100644 => 100755 sd/source/ui/inc/ViewTabControl.hxx mode change 100644 => 100755 sd/source/ui/inc/Window.hxx mode change 100644 => 100755 sd/source/ui/inc/WindowUpdater.hxx mode change 100644 => 100755 sd/source/ui/inc/animobjs.hrc mode change 100644 => 100755 sd/source/ui/inc/animobjs.hxx mode change 100644 => 100755 sd/source/ui/inc/assclass.hxx mode change 100644 => 100755 sd/source/ui/inc/bmcache.hxx mode change 100644 => 100755 sd/source/ui/inc/brkdlg.hrc mode change 100644 => 100755 sd/source/ui/inc/bulmaper.hxx mode change 100644 => 100755 sd/source/ui/inc/celltempl.hrc mode change 100644 => 100755 sd/source/ui/inc/celltempl.hxx mode change 100644 => 100755 sd/source/ui/inc/cfgids.hxx mode change 100644 => 100755 sd/source/ui/inc/copydlg.hrc mode change 100644 => 100755 sd/source/ui/inc/copydlg.hxx mode change 100644 => 100755 sd/source/ui/inc/custsdlg.hrc mode change 100644 => 100755 sd/source/ui/inc/custsdlg.hxx mode change 100644 => 100755 sd/source/ui/inc/diactrl.hxx mode change 100644 => 100755 sd/source/ui/inc/dialogs.hrc mode change 100644 => 100755 sd/source/ui/inc/dlg_char.hrc mode change 100644 => 100755 sd/source/ui/inc/dlg_char.hxx mode change 100644 => 100755 sd/source/ui/inc/dlgass.hrc mode change 100644 => 100755 sd/source/ui/inc/dlgass.hxx mode change 100644 => 100755 sd/source/ui/inc/dlgctrls.hxx mode change 100644 => 100755 sd/source/ui/inc/dlgfield.hrc mode change 100644 => 100755 sd/source/ui/inc/dlgfield.hxx mode change 100644 => 100755 sd/source/ui/inc/dlgolbul.hrc mode change 100644 => 100755 sd/source/ui/inc/dlgpage.hrc mode change 100644 => 100755 sd/source/ui/inc/dlgpage.hxx mode change 100644 => 100755 sd/source/ui/inc/dlgsnap.hrc mode change 100644 => 100755 sd/source/ui/inc/dlgsnap.hxx mode change 100644 => 100755 sd/source/ui/inc/docprev.hxx mode change 100644 => 100755 sd/source/ui/inc/drawview.hxx mode change 100644 => 100755 sd/source/ui/inc/enumdlg.hrc mode change 100644 => 100755 sd/source/ui/inc/filedlg.hxx mode change 100644 => 100755 sd/source/ui/inc/fontwork.hrc mode change 100644 => 100755 sd/source/ui/inc/framework/Configuration.hxx mode change 100644 => 100755 sd/source/ui/inc/framework/ConfigurationController.hxx mode change 100644 => 100755 sd/source/ui/inc/framework/DrawModule.hxx mode change 100644 => 100755 sd/source/ui/inc/framework/FrameworkHelper.hxx mode change 100644 => 100755 sd/source/ui/inc/framework/ImpressModule.hxx mode change 100644 => 100755 sd/source/ui/inc/framework/ModuleController.hxx mode change 100644 => 100755 sd/source/ui/inc/framework/Pane.hxx mode change 100644 => 100755 sd/source/ui/inc/framework/PresentationFactory.hxx mode change 100644 => 100755 sd/source/ui/inc/framework/PresentationModule.hxx mode change 100644 => 100755 sd/source/ui/inc/framework/ResourceId.hxx mode change 100644 => 100755 sd/source/ui/inc/framework/ViewShellWrapper.hxx mode change 100644 => 100755 sd/source/ui/inc/fuarea.hxx mode change 100644 => 100755 sd/source/ui/inc/fubullet.hxx mode change 100644 => 100755 sd/source/ui/inc/fuchar.hxx mode change 100644 => 100755 sd/source/ui/inc/fucon3d.hxx mode change 100644 => 100755 sd/source/ui/inc/fuconarc.hxx mode change 100644 => 100755 sd/source/ui/inc/fuconbez.hxx mode change 100644 => 100755 sd/source/ui/inc/fuconcs.hxx mode change 100644 => 100755 sd/source/ui/inc/fuconnct.hxx mode change 100644 => 100755 sd/source/ui/inc/fuconrec.hxx mode change 100644 => 100755 sd/source/ui/inc/fuconstr.hxx mode change 100644 => 100755 sd/source/ui/inc/fuconuno.hxx mode change 100644 => 100755 sd/source/ui/inc/fucopy.hxx mode change 100644 => 100755 sd/source/ui/inc/fucushow.hxx mode change 100644 => 100755 sd/source/ui/inc/fudraw.hxx mode change 100644 => 100755 sd/source/ui/inc/fudspord.hxx mode change 100644 => 100755 sd/source/ui/inc/fuediglu.hxx mode change 100644 => 100755 sd/source/ui/inc/fuexpand.hxx mode change 100644 => 100755 sd/source/ui/inc/fuformatpaintbrush.hxx mode change 100644 => 100755 sd/source/ui/inc/fugrid.hxx mode change 100644 => 100755 sd/source/ui/inc/fuhhconv.hxx mode change 100644 => 100755 sd/source/ui/inc/fuinsert.hxx mode change 100644 => 100755 sd/source/ui/inc/fuinsfil.hxx mode change 100644 => 100755 sd/source/ui/inc/fuline.hxx mode change 100644 => 100755 sd/source/ui/inc/fulinend.hxx mode change 100644 => 100755 sd/source/ui/inc/fulink.hxx mode change 100644 => 100755 sd/source/ui/inc/fumeasur.hxx mode change 100644 => 100755 sd/source/ui/inc/fumorph.hxx mode change 100644 => 100755 sd/source/ui/inc/fuoaprms.hxx mode change 100644 => 100755 sd/source/ui/inc/fuolbull.hxx mode change 100644 => 100755 sd/source/ui/inc/fuoltext.hxx mode change 100644 => 100755 sd/source/ui/inc/fuoutl.hxx mode change 100644 => 100755 sd/source/ui/inc/fupage.hxx mode change 100644 => 100755 sd/source/ui/inc/fuparagr.hxx mode change 100644 => 100755 sd/source/ui/inc/fupoor.hxx mode change 100644 => 100755 sd/source/ui/inc/fuprlout.hxx mode change 100644 => 100755 sd/source/ui/inc/fuprobjs.hxx mode change 100644 => 100755 sd/source/ui/inc/fuscale.hxx mode change 100644 => 100755 sd/source/ui/inc/fusearch.hxx mode change 100644 => 100755 sd/source/ui/inc/fusel.hxx mode change 100644 => 100755 sd/source/ui/inc/fusldlg.hxx mode change 100644 => 100755 sd/source/ui/inc/fuslhide.hxx mode change 100644 => 100755 sd/source/ui/inc/fuslid.hxx mode change 100644 => 100755 sd/source/ui/inc/fuslsel.hxx mode change 100644 => 100755 sd/source/ui/inc/fusnapln.hxx mode change 100644 => 100755 sd/source/ui/inc/fusumry.hxx mode change 100644 => 100755 sd/source/ui/inc/futempl.hxx mode change 100644 => 100755 sd/source/ui/inc/futext.hxx mode change 100644 => 100755 sd/source/ui/inc/futhes.hxx mode change 100644 => 100755 sd/source/ui/inc/futransf.hxx mode change 100644 => 100755 sd/source/ui/inc/futxtatt.hxx mode change 100644 => 100755 sd/source/ui/inc/fuvect.hxx mode change 100644 => 100755 sd/source/ui/inc/fuzoom.hxx mode change 100644 => 100755 sd/source/ui/inc/gluectrl.hxx mode change 100644 => 100755 sd/source/ui/inc/headerfooterdlg.hrc mode change 100644 => 100755 sd/source/ui/inc/headerfooterdlg.hxx mode change 100644 => 100755 sd/source/ui/inc/ins_paste.hrc mode change 100644 => 100755 sd/source/ui/inc/ins_paste.hxx mode change 100644 => 100755 sd/source/ui/inc/inspagob.hrc mode change 100644 => 100755 sd/source/ui/inc/inspagob.hxx mode change 100644 => 100755 sd/source/ui/inc/layeroptionsdlg.hrc mode change 100644 => 100755 sd/source/ui/inc/layeroptionsdlg.hxx mode change 100644 => 100755 sd/source/ui/inc/masterlayoutdlg.hrc mode change 100644 => 100755 sd/source/ui/inc/masterlayoutdlg.hxx mode change 100644 => 100755 sd/source/ui/inc/morphdlg.hrc mode change 100644 => 100755 sd/source/ui/inc/morphdlg.hxx mode change 100644 => 100755 sd/source/ui/inc/navigatr.hrc mode change 100644 => 100755 sd/source/ui/inc/navigatr.hxx mode change 100644 => 100755 sd/source/ui/inc/optdlg.hrc mode change 100644 => 100755 sd/source/ui/inc/optdlg.hxx mode change 100644 => 100755 sd/source/ui/inc/optsitem.hxx mode change 100644 => 100755 sd/source/ui/inc/packgdlg.hrc mode change 100644 => 100755 sd/source/ui/inc/paragr.hrc mode change 100644 => 100755 sd/source/ui/inc/paragr.hxx mode change 100644 => 100755 sd/source/ui/inc/pgjump.hxx mode change 100644 => 100755 sd/source/ui/inc/present.hrc mode change 100644 => 100755 sd/source/ui/inc/present.hxx mode change 100644 => 100755 sd/source/ui/inc/preview.hrc mode change 100644 => 100755 sd/source/ui/inc/prltempl.hrc mode change 100644 => 100755 sd/source/ui/inc/prltempl.hxx mode change 100644 => 100755 sd/source/ui/inc/prntopts.hrc mode change 100644 => 100755 sd/source/ui/inc/prntopts.hxx mode change 100644 => 100755 sd/source/ui/inc/pubdlg.hrc mode change 100644 => 100755 sd/source/ui/inc/pubdlg.hxx mode change 100644 => 100755 sd/source/ui/inc/res_bmp.hrc mode change 100644 => 100755 sd/source/ui/inc/sdpopup.hxx mode change 100644 => 100755 sd/source/ui/inc/sdpreslt.hrc mode change 100644 => 100755 sd/source/ui/inc/sdpreslt.hxx mode change 100644 => 100755 sd/source/ui/inc/sdstring.hrc mode change 100644 => 100755 sd/source/ui/inc/sdtreelb.hxx mode change 100644 => 100755 sd/source/ui/inc/sdundogr.hxx mode change 100644 => 100755 sd/source/ui/inc/sdxfer.hxx mode change 100644 => 100755 sd/source/ui/inc/slideshow.hxx mode change 100644 => 100755 sd/source/ui/inc/smarttag.hxx mode change 100644 => 100755 sd/source/ui/inc/sprite.hxx mode change 100644 => 100755 sd/source/ui/inc/strings.hrc mode change 100644 => 100755 sd/source/ui/inc/tabtempl.hrc mode change 100644 => 100755 sd/source/ui/inc/tabtempl.hxx mode change 100644 => 100755 sd/source/ui/inc/taskpane/ControlContainer.hxx mode change 100644 => 100755 sd/source/ui/inc/taskpane/ILayoutableWindow.hxx mode change 100644 => 100755 sd/source/ui/inc/taskpane/ScrollPanel.hxx mode change 100644 => 100755 sd/source/ui/inc/taskpane/SlideSorterCacheDisplay.hxx mode change 100644 => 100755 sd/source/ui/inc/taskpane/SubToolPanel.hxx mode change 100644 => 100755 sd/source/ui/inc/taskpane/TaskPaneControlFactory.hxx mode change 100644 => 100755 sd/source/ui/inc/taskpane/TaskPaneTreeNode.hxx mode change 100644 => 100755 sd/source/ui/inc/taskpane/TitleBar.hxx mode change 100644 => 100755 sd/source/ui/inc/taskpane/TitledControl.hxx mode change 100644 => 100755 sd/source/ui/inc/tbx_ww.hrc mode change 100644 => 100755 sd/source/ui/inc/tbx_ww.hxx mode change 100644 => 100755 sd/source/ui/inc/tmplctrl.hxx mode change 100644 => 100755 sd/source/ui/inc/tools/AsynchronousCall.hxx mode change 100644 => 100755 sd/source/ui/inc/tools/AsynchronousTask.hxx mode change 100644 => 100755 sd/source/ui/inc/tools/ConfigurationAccess.hxx mode change 100644 => 100755 sd/source/ui/inc/tools/IconCache.hxx mode change 100644 => 100755 sd/source/ui/inc/tools/IdleDetection.hxx mode change 100644 => 100755 sd/source/ui/inc/tools/PropertySet.hxx mode change 100644 => 100755 sd/source/ui/inc/tools/SdGlobalResourceContainer.hxx mode change 100644 => 100755 sd/source/ui/inc/tools/SlotStateListener.hxx mode change 100644 => 100755 sd/source/ui/inc/tools/TimerBasedTaskExecution.hxx mode change 100644 => 100755 sd/source/ui/inc/tpaction.hrc mode change 100644 => 100755 sd/source/ui/inc/tpaction.hxx mode change 100644 => 100755 sd/source/ui/inc/tpoption.hrc mode change 100644 => 100755 sd/source/ui/inc/tpoption.hxx mode change 100644 => 100755 sd/source/ui/inc/unchss.hxx mode change 100644 => 100755 sd/source/ui/inc/undoback.hxx mode change 100644 => 100755 sd/source/ui/inc/undoheaderfooter.hxx mode change 100644 => 100755 sd/source/ui/inc/undolayer.hxx mode change 100644 => 100755 sd/source/ui/inc/undopage.hxx mode change 100644 => 100755 sd/source/ui/inc/unmodpg.hxx mode change 100644 => 100755 sd/source/ui/inc/unmovss.hxx mode change 100644 => 100755 sd/source/ui/inc/unoaprms.hxx mode change 100644 => 100755 sd/source/ui/inc/unokywds.hxx mode change 100644 => 100755 sd/source/ui/inc/unomodel.hxx mode change 100644 => 100755 sd/source/ui/inc/unoprnms.hxx mode change 100644 => 100755 sd/source/ui/inc/unosrch.hxx mode change 100644 => 100755 sd/source/ui/inc/unprlout.hxx mode change 100644 => 100755 sd/source/ui/inc/unslsel.hxx mode change 100644 => 100755 sd/source/ui/inc/vectdlg.hrc mode change 100644 => 100755 sd/source/ui/inc/vectdlg.hxx mode change 100644 => 100755 sd/source/ui/inc/view/viewoverlaymanager.hxx mode change 100644 => 100755 sd/source/ui/inc/zoomlist.hxx mode change 100644 => 100755 sd/source/ui/presenter/CanvasUpdateRequester.cxx mode change 100644 => 100755 sd/source/ui/presenter/CanvasUpdateRequester.hxx mode change 100644 => 100755 sd/source/ui/presenter/PresenterCanvas.cxx mode change 100644 => 100755 sd/source/ui/presenter/PresenterCanvas.hxx mode change 100644 => 100755 sd/source/ui/presenter/PresenterCanvasFactory.cxx mode change 100644 => 100755 sd/source/ui/presenter/PresenterHelper.cxx mode change 100644 => 100755 sd/source/ui/presenter/PresenterHelper.hxx mode change 100644 => 100755 sd/source/ui/presenter/PresenterPreviewCache.cxx mode change 100644 => 100755 sd/source/ui/presenter/PresenterPreviewCache.hxx mode change 100644 => 100755 sd/source/ui/presenter/PresenterTextView.cxx mode change 100644 => 100755 sd/source/ui/presenter/PresenterTextView.hxx mode change 100644 => 100755 sd/source/ui/presenter/SlideRenderer.cxx mode change 100644 => 100755 sd/source/ui/presenter/SlideRenderer.hxx mode change 100644 => 100755 sd/source/ui/presenter/makefile.mk mode change 100644 => 100755 sd/source/ui/slideshow/PaneHider.cxx mode change 100644 => 100755 sd/source/ui/slideshow/PaneHider.hxx mode change 100644 => 100755 sd/source/ui/slideshow/SlideShowRestarter.cxx mode change 100644 => 100755 sd/source/ui/slideshow/SlideShowRestarter.hxx mode change 100644 => 100755 sd/source/ui/slideshow/makefile.mk mode change 100644 => 100755 sd/source/ui/slideshow/showwin.cxx mode change 100644 => 100755 sd/source/ui/slideshow/showwindow.hxx mode change 100644 => 100755 sd/source/ui/slideshow/slideshow.cxx mode change 100644 => 100755 sd/source/ui/slideshow/slideshow.hrc mode change 100644 => 100755 sd/source/ui/slideshow/slideshow.src mode change 100644 => 100755 sd/source/ui/slideshow/slideshowimpl.cxx mode change 100644 => 100755 sd/source/ui/slideshow/slideshowimpl.hxx mode change 100644 => 100755 sd/source/ui/slideshow/slideshowviewimpl.cxx mode change 100644 => 100755 sd/source/ui/slideshow/slideshowviewimpl.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/cache/SlsBitmapCompressor.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/cache/SlsBitmapCompressor.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/cache/SlsBitmapFactory.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/cache/SlsBitmapFactory.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/cache/SlsCacheCompactor.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/cache/SlsCacheCompactor.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/cache/SlsCacheConfiguration.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/cache/SlsCacheConfiguration.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/cache/SlsPageCacheManager.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/cache/SlsQueueProcessor.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/cache/SlsQueueProcessor.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/cache/SlsQueueProcessorThread.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/cache/SlsRequestFactory.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/cache/SlsRequestFactory.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/cache/SlsRequestPriorityClass.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/cache/SlsRequestQueue.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/cache/SlsRequestQueue.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/cache/makefile.mk mode change 100644 => 100755 sd/source/ui/slidesorter/controller/SlsAnimator.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/controller/SlsClipboard.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/controller/SlsCommand.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/controller/SlsFocusManager.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/controller/SlsHideSlideFunction.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/controller/SlsHideSlideFunction.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/controller/SlsListener.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/controller/SlsListener.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/controller/SlsPageObjectFactory.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/controller/SlsProperties.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/controller/SlsSelectionCommand.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/controller/SlsSelectionCommand.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/controller/SlsSelectionManager.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/controller/SlsSlideFunction.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/controller/SlsTransferable.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/controller/makefile.mk mode change 100644 => 100755 sd/source/ui/slidesorter/inc/cache/SlsCacheContext.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/inc/cache/SlsPageCacheManager.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/inc/controller/SlideSorterController.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/inc/controller/SlsAnimator.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/inc/controller/SlsClipboard.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/inc/controller/SlsCurrentSlideManager.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/inc/controller/SlsFocusManager.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/inc/controller/SlsPageObjectFactory.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/inc/controller/SlsProperties.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/inc/controller/SlsScrollBarManager.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/inc/controller/SlsSelectionManager.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/inc/controller/SlsSlideFunction.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/inc/model/SlsEnumeration.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/inc/model/SlsPageEnumeration.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/inc/model/SlsPageEnumerationProvider.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/inc/model/SlsSharedPageDescriptor.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/inc/view/SlsFontProvider.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/inc/view/SlsPageObject.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/inc/view/SlsPageObjectViewContact.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/inc/view/SlsPageObjectViewObjectContact.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/makefile.mk mode change 100644 => 100755 sd/source/ui/slidesorter/model/SlsPageEnumeration.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/model/SlsPageEnumerationProvider.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/model/makefile.mk mode change 100644 => 100755 sd/source/ui/slidesorter/shell/SlideSorter.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/shell/SlideSorterChildWindow.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/shell/SlideSorterChildWindow.src mode change 100644 => 100755 sd/source/ui/slidesorter/shell/SlideSorterService.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/shell/SlideSorterService.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/shell/SlideSorterViewShell.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/shell/makefile.mk mode change 100644 => 100755 sd/source/ui/slidesorter/view/SlsFontProvider.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/view/SlsPageObject.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/view/SlsViewCacheContext.cxx mode change 100644 => 100755 sd/source/ui/slidesorter/view/SlsViewCacheContext.hxx mode change 100644 => 100755 sd/source/ui/slidesorter/view/makefile.mk mode change 100644 => 100755 sd/source/ui/table/TableDesignPane.cxx mode change 100644 => 100755 sd/source/ui/table/TableDesignPane.hrc mode change 100644 => 100755 sd/source/ui/table/TableDesignPane.hxx mode change 100644 => 100755 sd/source/ui/table/TableDesignPane.src mode change 100644 => 100755 sd/source/ui/table/makefile.mk mode change 100644 => 100755 sd/source/ui/table/tablefunction.cxx mode change 100644 => 100755 sd/source/ui/table/tableobjectbar.cxx mode change 100644 => 100755 sd/source/ui/table/tableobjectbar.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/ConstrainedIterator.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/ConstrainedIterator.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/ControlContainer.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/ControlContainerDescriptor.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/ControlList.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/LayoutMenu.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/LayoutMenu.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/ScrollPanel.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/SlideSorterCacheDisplay.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/SubToolPanel.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/TaskPaneControlFactory.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/TaskPaneFocusManager.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/TaskPaneFocusManager.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/TaskPaneShellManager.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/TaskPaneShellManager.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/TaskPaneTreeNode.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/TestMenu.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/TestMenu.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/TestPanel.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/TestPanel.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/TitleBar.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/TitledControl.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/ToolPanel.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/ToolPanelDescriptor.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/ToolPanelViewShell.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/AllMasterPagesSelector.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/AllMasterPagesSelector.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/AnimationSchemesPanel.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/AnimationSchemesPanel.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/CurrentMasterPagesSelector.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/CurrentMasterPagesSelector.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/CustomAnimationPanel.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/CustomAnimationPanel.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/DocumentHelper.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/DocumentHelper.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/MasterPageContainer.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/MasterPageContainer.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/MasterPageContainerFiller.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/MasterPageContainerFiller.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/MasterPageContainerProviders.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/MasterPageContainerProviders.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/MasterPageContainerQueue.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/MasterPageContainerQueue.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/MasterPageDescriptor.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/MasterPageDescriptor.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/MasterPageObserver.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/MasterPagesPanel.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/MasterPagesPanel.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/MasterPagesSelector.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/MasterPagesSelector.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/PreviewValueSet.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/PreviewValueSet.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/RecentMasterPagesSelector.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/RecentMasterPagesSelector.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/RecentlyUsedMasterPages.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/RecentlyUsedMasterPages.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/SlideTransitionPanel.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/SlideTransitionPanel.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/TableDesignPanel.cxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/TableDesignPanel.hxx mode change 100644 => 100755 sd/source/ui/toolpanel/controls/makefile.mk mode change 100644 => 100755 sd/source/ui/toolpanel/makefile.mk mode change 100644 => 100755 sd/source/ui/tools/AsynchronousCall.cxx mode change 100644 => 100755 sd/source/ui/tools/ConfigurationAccess.cxx mode change 100644 => 100755 sd/source/ui/tools/EventMultiplexer.cxx mode change 100644 => 100755 sd/source/ui/tools/IconCache.cxx mode change 100644 => 100755 sd/source/ui/tools/IdleDetection.cxx mode change 100644 => 100755 sd/source/ui/tools/PropertySet.cxx mode change 100644 => 100755 sd/source/ui/tools/SdGlobalResourceContainer.cxx mode change 100644 => 100755 sd/source/ui/tools/SlotStateListener.cxx mode change 100644 => 100755 sd/source/ui/tools/TimerBasedTaskExecution.cxx mode change 100644 => 100755 sd/source/ui/tools/makefile.mk mode change 100644 => 100755 sd/source/ui/unoidl/DrawController.cxx mode change 100644 => 100755 sd/source/ui/unoidl/SdUnoDrawView.cxx mode change 100644 => 100755 sd/source/ui/unoidl/SdUnoOutlineView.cxx mode change 100644 => 100755 sd/source/ui/unoidl/SdUnoSlideView.cxx mode change 100644 => 100755 sd/source/ui/unoidl/UnoDocumentSettings.cxx mode change 100644 => 100755 sd/source/ui/unoidl/UnoDocumentSettings.hxx mode change 100644 => 100755 sd/source/ui/unoidl/detreg.cxx mode change 100644 => 100755 sd/source/ui/unoidl/facreg.cxx mode change 100644 => 100755 sd/source/ui/unoidl/makefile.mk mode change 100644 => 100755 sd/source/ui/unoidl/randomnode.cxx mode change 100644 => 100755 sd/source/ui/unoidl/sddetect.cxx mode change 100644 => 100755 sd/source/ui/unoidl/sddetect.hxx mode change 100644 => 100755 sd/source/ui/unoidl/unocpres.cxx mode change 100644 => 100755 sd/source/ui/unoidl/unocpres.hxx mode change 100644 => 100755 sd/source/ui/unoidl/unodoc.cxx mode change 100644 => 100755 sd/source/ui/unoidl/unohelp.hxx mode change 100644 => 100755 sd/source/ui/unoidl/unokywds.cxx mode change 100644 => 100755 sd/source/ui/unoidl/unolayer.cxx mode change 100644 => 100755 sd/source/ui/unoidl/unolayer.hxx mode change 100644 => 100755 sd/source/ui/unoidl/unomodel.cxx mode change 100644 => 100755 sd/source/ui/unoidl/unomodule.cxx mode change 100644 => 100755 sd/source/ui/unoidl/unomodule.hxx mode change 100644 => 100755 sd/source/ui/unoidl/unoobj.cxx mode change 100644 => 100755 sd/source/ui/unoidl/unoobj.hxx mode change 100644 => 100755 sd/source/ui/unoidl/unopage.cxx mode change 100644 => 100755 sd/source/ui/unoidl/unopage.hxx mode change 100644 => 100755 sd/source/ui/unoidl/unopback.cxx mode change 100644 => 100755 sd/source/ui/unoidl/unopback.hxx mode change 100644 => 100755 sd/source/ui/unoidl/unopool.cxx mode change 100644 => 100755 sd/source/ui/unoidl/unosrch.cxx mode change 100644 => 100755 sd/source/ui/unoidl/unowcntr.cxx mode change 100644 => 100755 sd/source/ui/unoidl/unowcntr.hxx mode change 100644 => 100755 sd/source/ui/view/DocumentRenderer.cxx mode change 100644 => 100755 sd/source/ui/view/DocumentRenderer.hrc mode change 100644 => 100755 sd/source/ui/view/DocumentRenderer.src mode change 100644 => 100755 sd/source/ui/view/FormShellManager.cxx mode change 100644 => 100755 sd/source/ui/view/GraphicObjectBar.cxx mode change 100644 => 100755 sd/source/ui/view/GraphicViewShellBase.cxx mode change 100644 => 100755 sd/source/ui/view/ImpressViewShellBase.cxx mode change 100644 => 100755 sd/source/ui/view/MediaObjectBar.cxx mode change 100644 => 100755 sd/source/ui/view/OutlineViewShellBase.cxx mode change 100644 => 100755 sd/source/ui/view/Outliner.cxx mode change 100644 => 100755 sd/source/ui/view/OutlinerIterator.cxx mode change 100644 => 100755 sd/source/ui/view/PresentationViewShellBase.cxx mode change 100644 => 100755 sd/source/ui/view/SlideSorterViewShellBase.cxx mode change 100644 => 100755 sd/source/ui/view/ToolBarManager.cxx mode change 100644 => 100755 sd/source/ui/view/UpdateLockManager.cxx mode change 100644 => 100755 sd/source/ui/view/ViewShellHint.cxx mode change 100644 => 100755 sd/source/ui/view/ViewShellImplementation.cxx mode change 100644 => 100755 sd/source/ui/view/ViewTabBar.cxx mode change 100644 => 100755 sd/source/ui/view/WindowUpdater.cxx mode change 100644 => 100755 sd/source/ui/view/bmcache.cxx mode change 100644 => 100755 sd/source/ui/view/clview.cxx mode change 100644 => 100755 sd/source/ui/view/drawview.cxx mode change 100644 => 100755 sd/source/ui/view/drbezob.cxx mode change 100644 => 100755 sd/source/ui/view/drtxtob.cxx mode change 100644 => 100755 sd/source/ui/view/drtxtob1.cxx mode change 100644 => 100755 sd/source/ui/view/drviews1.cxx mode change 100644 => 100755 sd/source/ui/view/drviews2.cxx mode change 100644 => 100755 sd/source/ui/view/drviews3.cxx mode change 100644 => 100755 sd/source/ui/view/drviews4.cxx mode change 100644 => 100755 sd/source/ui/view/drviews5.cxx mode change 100644 => 100755 sd/source/ui/view/drviews6.cxx mode change 100644 => 100755 sd/source/ui/view/drviews7.cxx mode change 100644 => 100755 sd/source/ui/view/drviews8.cxx mode change 100644 => 100755 sd/source/ui/view/drviews9.cxx mode change 100644 => 100755 sd/source/ui/view/drviewsa.cxx mode change 100644 => 100755 sd/source/ui/view/drviewsb.cxx mode change 100644 => 100755 sd/source/ui/view/drviewsc.cxx mode change 100644 => 100755 sd/source/ui/view/drviewsd.cxx mode change 100644 => 100755 sd/source/ui/view/drviewse.cxx mode change 100644 => 100755 sd/source/ui/view/drviewsf.cxx mode change 100644 => 100755 sd/source/ui/view/drviewsg.cxx mode change 100644 => 100755 sd/source/ui/view/drviewsh.cxx mode change 100644 => 100755 sd/source/ui/view/drviewsi.cxx mode change 100644 => 100755 sd/source/ui/view/drviewsj.cxx mode change 100644 => 100755 sd/source/ui/view/drvwshrg.cxx mode change 100644 => 100755 sd/source/ui/view/frmview.cxx mode change 100644 => 100755 sd/source/ui/view/grviewsh.cxx mode change 100644 => 100755 sd/source/ui/view/outlnvs2.cxx mode change 100644 => 100755 sd/source/ui/view/outlnvsh.cxx mode change 100644 => 100755 sd/source/ui/view/outlview.cxx mode change 100644 => 100755 sd/source/ui/view/presvish.cxx mode change 100644 => 100755 sd/source/ui/view/sdruler.cxx mode change 100644 => 100755 sd/source/ui/view/sdview.cxx mode change 100644 => 100755 sd/source/ui/view/sdview2.cxx mode change 100644 => 100755 sd/source/ui/view/sdview3.cxx mode change 100644 => 100755 sd/source/ui/view/sdview4.cxx mode change 100644 => 100755 sd/source/ui/view/sdview5.cxx mode change 100644 => 100755 sd/source/ui/view/sdwindow.cxx mode change 100644 => 100755 sd/source/ui/view/tabcontr.cxx mode change 100644 => 100755 sd/source/ui/view/unmodpg.cxx mode change 100644 => 100755 sd/source/ui/view/viewoverlaymanager.cxx mode change 100644 => 100755 sd/source/ui/view/viewshe2.cxx mode change 100644 => 100755 sd/source/ui/view/viewshel.cxx mode change 100644 => 100755 sd/source/ui/view/zoomlist.cxx mode change 100644 => 100755 sd/source/unotypes/makefile.mk mode change 100644 => 100755 sd/uiconfig/sdraw/menubar/menubar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/statusbar/statusbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/3dobjectsbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/alignmentbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/arrowsbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/arrowshapes.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/basicshapes.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/bezierobjectbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/calloutshapes.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/choosemodebar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/colorbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/commentsbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/connectorsbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/drawingobjectbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/ellipsesbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/extrusionobjectbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/flowchartshapes.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/fontworkobjectbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/fontworkshapetype.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/formcontrols.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/formdesign.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/formsfilterbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/formsnavigationbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/formtextobjectbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/fullscreenbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/gluepointsobjectbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/graffilterbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/graphicobjectbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/insertbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/linesbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/masterviewtoolbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/mediaobjectbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/moreformcontrols.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/optimizetablebar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/optionsbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/positionbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/rectanglesbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/standardbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/starshapes.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/symbolshapes.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/tableobjectbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/textbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/textobjectbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/toolbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/viewerbar.xml mode change 100644 => 100755 sd/uiconfig/sdraw/toolbar/zoombar.xml mode change 100644 => 100755 sd/uiconfig/simpress/menubar/menubar.xml mode change 100644 => 100755 sd/uiconfig/simpress/statusbar/statusbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/3dobjectsbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/alignmentbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/arrowsbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/arrowshapes.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/basicshapes.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/bezierobjectbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/calloutshapes.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/choosemodebar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/colorbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/commentsbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/commontaskbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/connectorsbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/drawingobjectbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/ellipsesbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/extrusionobjectbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/flowchartshapes.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/fontworkobjectbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/fontworkshapetype.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/formcontrols.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/formdesign.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/formsfilterbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/formsnavigationbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/formtextobjectbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/fullscreenbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/gluepointsobjectbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/graffilterbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/graphicobjectbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/insertbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/linesbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/masterviewtoolbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/mediaobjectbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/moreformcontrols.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/optimizetablebar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/optionsbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/outlinetoolbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/positionbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/rectanglesbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/slideviewobjectbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/slideviewtoolbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/standardbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/starshapes.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/symbolshapes.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/tableobjectbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/textbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/textobjectbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/toolbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/viewerbar.xml mode change 100644 => 100755 sd/uiconfig/simpress/toolbar/zoombar.xml mode change 100644 => 100755 sd/util/exports.dxp mode change 100644 => 100755 sd/util/hidother.hrc mode change 100644 => 100755 sd/util/hidother.src mode change 100644 => 100755 sd/util/makefile.mk mode change 100644 => 100755 sd/util/makefile.pmk mode change 100644 => 100755 sd/util/sd.flt mode change 100644 => 100755 sd/util/sdfilt.map mode change 100644 => 100755 sd/util/sdui.map mode change 100644 => 100755 sd/workben/testdll/makefile mode change 100644 => 100755 sd/xml/AccessibleDrawDocumentView.xml mode change 100644 => 100755 sd/xml/AccessibleOutlineView.xml mode change 100644 => 100755 sd/xml/AccessiblePageShape.xml mode change 100644 => 100755 sd/xml/AccessiblePresentationGraphicShape.xml mode change 100644 => 100755 sd/xml/AccessiblePresentationOLEShape.xml mode change 100644 => 100755 sd/xml/AccessiblePresentationShape.xml mode change 100644 => 100755 sd/xml/AccessibleSlideView.xml mode change 100644 => 100755 sd/xml/AccessibleSlideViewObject.xml mode change 100644 => 100755 sd/xml/DrawingView.xml mode change 100644 => 100755 sd/xml/HandoutView.xml mode change 100644 => 100755 sd/xml/NotesView.xml mode change 100644 => 100755 sd/xml/OutlineView.xml mode change 100644 => 100755 sd/xml/PresentationView.xml mode change 100644 => 100755 sd/xml/SdDocLinkTargets.xml mode change 100644 => 100755 sd/xml/SdDrawPage.xml mode change 100644 => 100755 sd/xml/SdDrawPagesAccess.xml mode change 100644 => 100755 sd/xml/SdGenericDrawPage.xml mode change 100644 => 100755 sd/xml/SdLayer.xml mode change 100644 => 100755 sd/xml/SdLayerManager.xml mode change 100644 => 100755 sd/xml/SdMasterPage.xml mode change 100644 => 100755 sd/xml/SdMasterPagesAccess.xml mode change 100644 => 100755 sd/xml/SdPageLinkTargets.xml mode change 100644 => 100755 sd/xml/SdXCustomPresentation.xml mode change 100644 => 100755 sd/xml/SdXCustomPresentationAccess.xml mode change 100644 => 100755 sd/xml/SdXImpressDocument.xml mode change 100644 => 100755 sd/xml/SdXPresentation.xml mode change 100644 => 100755 sd/xml/SdXShape.xml mode change 100644 => 100755 sd/xml/SlidesView.xml mode change 100644 => 100755 sd/xml/effects.xml mode change 100644 => 100755 sd/xml/transitions-ogl.xml mode change 100644 => 100755 sd/xml/transitions.xml mode change 100644 => 100755 sd/xsl/effect.xsl (limited to 'sd/sdi') diff --git a/sd/inc/CustomAnimationCloner.hxx b/sd/inc/CustomAnimationCloner.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/CustomAnimationEffect.hxx b/sd/inc/CustomAnimationEffect.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/CustomAnimationPreset.hxx b/sd/inc/CustomAnimationPreset.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/EffectMigration.hxx b/sd/inc/EffectMigration.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/FactoryIds.hxx b/sd/inc/FactoryIds.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/Outliner.hxx b/sd/inc/Outliner.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/OutlinerIterator.hxx b/sd/inc/OutlinerIterator.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/SdShapeTypes.hxx b/sd/inc/SdShapeTypes.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/TransitionPreset.hxx b/sd/inc/TransitionPreset.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/animations.hxx b/sd/inc/animations.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/anmdef.hxx b/sd/inc/anmdef.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/anminfo.hxx b/sd/inc/anminfo.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/app.hrc b/sd/inc/app.hrc old mode 100644 new mode 100755 diff --git a/sd/inc/app.hxx b/sd/inc/app.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/cusshow.hxx b/sd/inc/cusshow.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/diadef.h b/sd/inc/diadef.h old mode 100644 new mode 100755 diff --git a/sd/inc/drawdoc.hxx b/sd/inc/drawdoc.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/eetext.hxx b/sd/inc/eetext.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/fadedef.h b/sd/inc/fadedef.h old mode 100644 new mode 100755 diff --git a/sd/inc/glob.hrc b/sd/inc/glob.hrc old mode 100644 new mode 100755 diff --git a/sd/inc/glob.hxx b/sd/inc/glob.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/helper/simplereferencecomponent.hxx b/sd/inc/helper/simplereferencecomponent.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/helpids.h b/sd/inc/helpids.h old mode 100644 new mode 100755 diff --git a/sd/inc/imapinfo.hxx b/sd/inc/imapinfo.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/makefile.mk b/sd/inc/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/inc/misc.hxx b/sd/inc/misc.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/misc/scopelock.hxx b/sd/inc/misc/scopelock.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/movedef.hxx b/sd/inc/movedef.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/pch/precompiled_sd.cxx b/sd/inc/pch/precompiled_sd.cxx old mode 100644 new mode 100755 diff --git a/sd/inc/pch/precompiled_sd.hxx b/sd/inc/pch/precompiled_sd.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/pglink.hxx b/sd/inc/pglink.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/pres.hxx b/sd/inc/pres.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/prlayout.hxx b/sd/inc/prlayout.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/resltn.hxx b/sd/inc/resltn.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/sd_primitivetypes2d.hxx b/sd/inc/sd_primitivetypes2d.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/sdabstdlg.hxx b/sd/inc/sdabstdlg.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/sdattr.hrc b/sd/inc/sdattr.hrc old mode 100644 new mode 100755 diff --git a/sd/inc/sdattr.hxx b/sd/inc/sdattr.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/sdcgmfilter.hxx b/sd/inc/sdcgmfilter.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/sddll.hxx b/sd/inc/sddll.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/sddllapi.h b/sd/inc/sddllapi.h old mode 100644 new mode 100755 diff --git a/sd/inc/sdenumdef.hxx b/sd/inc/sdenumdef.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/sderror.hxx b/sd/inc/sderror.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/sdfilter.hxx b/sd/inc/sdfilter.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/sdgrffilter.hxx b/sd/inc/sdgrffilter.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/sdhtmlfilter.hxx b/sd/inc/sdhtmlfilter.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/sdiocmpt.hxx b/sd/inc/sdiocmpt.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/sdmod.hxx b/sd/inc/sdmod.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/sdobjfac.hxx b/sd/inc/sdobjfac.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/sdpage.hxx b/sd/inc/sdpage.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/sdpptwrp.hxx b/sd/inc/sdpptwrp.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/sdresid.hxx b/sd/inc/sdresid.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/sduiks.hrc b/sd/inc/sduiks.hrc old mode 100644 new mode 100755 diff --git a/sd/inc/sdundo.hxx b/sd/inc/sdundo.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/sdxmlwrp.hxx b/sd/inc/sdxmlwrp.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/shapelist.hxx b/sd/inc/shapelist.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/stlfamily.hxx b/sd/inc/stlfamily.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/stlpool.hxx b/sd/inc/stlpool.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/stlsheet.hxx b/sd/inc/stlsheet.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/strmname.h b/sd/inc/strmname.h old mode 100644 new mode 100755 diff --git a/sd/inc/textapi.hxx b/sd/inc/textapi.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/undo/undofactory.hxx b/sd/inc/undo/undofactory.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/undo/undomanager.hxx b/sd/inc/undo/undomanager.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/undo/undoobjects.hxx b/sd/inc/undo/undoobjects.hxx old mode 100644 new mode 100755 diff --git a/sd/inc/undoanim.hxx b/sd/inc/undoanim.hxx old mode 100644 new mode 100755 diff --git a/sd/prj/d.lst b/sd/prj/d.lst old mode 100644 new mode 100755 diff --git a/sd/prj/struct.txt b/sd/prj/struct.txt old mode 100644 new mode 100755 diff --git a/sd/qa/unoapi/knownissues.xcl b/sd/qa/unoapi/knownissues.xcl old mode 100644 new mode 100755 diff --git a/sd/qa/unoapi/makefile.mk b/sd/qa/unoapi/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/qa/unoapi/sd.sce b/sd/qa/unoapi/sd.sce old mode 100644 new mode 100755 diff --git a/sd/res/buttons/glas-blue.zip b/sd/res/buttons/glas-blue.zip old mode 100644 new mode 100755 diff --git a/sd/res/buttons/glas-green.zip b/sd/res/buttons/glas-green.zip old mode 100644 new mode 100755 diff --git a/sd/res/buttons/glas-red.zip b/sd/res/buttons/glas-red.zip old mode 100644 new mode 100755 diff --git a/sd/res/buttons/round-gorilla.zip b/sd/res/buttons/round-gorilla.zip old mode 100644 new mode 100755 diff --git a/sd/res/buttons/round-white.zip b/sd/res/buttons/round-white.zip old mode 100644 new mode 100755 diff --git a/sd/res/buttons/simple.zip b/sd/res/buttons/simple.zip old mode 100644 new mode 100755 diff --git a/sd/res/buttons/square-blue.zip b/sd/res/buttons/square-blue.zip old mode 100644 new mode 100755 diff --git a/sd/res/buttons/square-gray.zip b/sd/res/buttons/square-gray.zip old mode 100644 new mode 100755 diff --git a/sd/res/buttons/square-green.zip b/sd/res/buttons/square-green.zip old mode 100644 new mode 100755 diff --git a/sd/res/buttons/square-red.zip b/sd/res/buttons/square-red.zip old mode 100644 new mode 100755 diff --git a/sd/res/buttons/square-yellow.zip b/sd/res/buttons/square-yellow.zip old mode 100644 new mode 100755 diff --git a/sd/res/webview/common.inc b/sd/res/webview/common.inc old mode 100644 new mode 100755 diff --git a/sd/res/webview/common.pl b/sd/res/webview/common.pl old mode 100644 new mode 100755 diff --git a/sd/res/webview/edit.asp b/sd/res/webview/edit.asp old mode 100644 new mode 100755 diff --git a/sd/res/webview/edit.pl b/sd/res/webview/edit.pl old mode 100644 new mode 100755 diff --git a/sd/res/webview/editpic.asp b/sd/res/webview/editpic.asp old mode 100644 new mode 100755 diff --git a/sd/res/webview/editpic.pl b/sd/res/webview/editpic.pl old mode 100644 new mode 100755 diff --git a/sd/res/webview/index.pl b/sd/res/webview/index.pl old mode 100644 new mode 100755 diff --git a/sd/res/webview/poll.asp b/sd/res/webview/poll.asp old mode 100644 new mode 100755 diff --git a/sd/res/webview/poll.pl b/sd/res/webview/poll.pl old mode 100644 new mode 100755 diff --git a/sd/res/webview/savepic.asp b/sd/res/webview/savepic.asp old mode 100644 new mode 100755 diff --git a/sd/res/webview/savepic.pl b/sd/res/webview/savepic.pl old mode 100644 new mode 100755 diff --git a/sd/res/webview/show.asp b/sd/res/webview/show.asp old mode 100644 new mode 100755 diff --git a/sd/res/webview/show.pl b/sd/res/webview/show.pl old mode 100644 new mode 100755 diff --git a/sd/res/webview/webview.asp b/sd/res/webview/webview.asp old mode 100644 new mode 100755 diff --git a/sd/res/webview/webview.pl b/sd/res/webview/webview.pl old mode 100644 new mode 100755 diff --git a/sd/sdi/SlideSorterController.sdi b/sd/sdi/SlideSorterController.sdi old mode 100644 new mode 100755 diff --git a/sd/sdi/ViewShellBase.sdi b/sd/sdi/ViewShellBase.sdi old mode 100644 new mode 100755 diff --git a/sd/sdi/_docsh.sdi b/sd/sdi/_docsh.sdi old mode 100644 new mode 100755 diff --git a/sd/sdi/_drvwsh.sdi b/sd/sdi/_drvwsh.sdi old mode 100644 new mode 100755 diff --git a/sd/sdi/app.sdi b/sd/sdi/app.sdi old mode 100644 new mode 100755 diff --git a/sd/sdi/docshell.sdi b/sd/sdi/docshell.sdi old mode 100644 new mode 100755 diff --git a/sd/sdi/drbezob.sdi b/sd/sdi/drbezob.sdi old mode 100644 new mode 100755 diff --git a/sd/sdi/drgrfob.sdi b/sd/sdi/drgrfob.sdi old mode 100644 new mode 100755 diff --git a/sd/sdi/drtxtob.sdi b/sd/sdi/drtxtob.sdi old mode 100644 new mode 100755 diff --git a/sd/sdi/drviewsh.sdi b/sd/sdi/drviewsh.sdi old mode 100644 new mode 100755 diff --git a/sd/sdi/grdocsh.sdi b/sd/sdi/grdocsh.sdi old mode 100644 new mode 100755 diff --git a/sd/sdi/grviewsh.sdi b/sd/sdi/grviewsh.sdi old mode 100644 new mode 100755 diff --git a/sd/sdi/makefile.mk b/sd/sdi/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/sdi/mediaob.sdi b/sd/sdi/mediaob.sdi old mode 100644 new mode 100755 diff --git a/sd/sdi/outlnvsh.sdi b/sd/sdi/outlnvsh.sdi old mode 100644 new mode 100755 diff --git a/sd/sdi/sdgslots.sdi b/sd/sdi/sdgslots.sdi old mode 100644 new mode 100755 diff --git a/sd/sdi/sdnew.sdi b/sd/sdi/sdnew.sdi old mode 100644 new mode 100755 diff --git a/sd/sdi/sdraw.sdi b/sd/sdi/sdraw.sdi old mode 100644 new mode 100755 diff --git a/sd/sdi/sdslots.hrc b/sd/sdi/sdslots.hrc old mode 100644 new mode 100755 diff --git a/sd/sdi/sdslots.sdi b/sd/sdi/sdslots.sdi old mode 100644 new mode 100755 diff --git a/sd/sdi/tables.sdi b/sd/sdi/tables.sdi old mode 100644 new mode 100755 diff --git a/sd/source/core/CustomAnimationCloner.cxx b/sd/source/core/CustomAnimationCloner.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/CustomAnimationEffect.cxx b/sd/source/core/CustomAnimationEffect.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/CustomAnimationPreset.cxx b/sd/source/core/CustomAnimationPreset.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/EffectMigration.cxx b/sd/source/core/EffectMigration.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/PageListWatcher.cxx b/sd/source/core/PageListWatcher.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/PageListWatcher.hxx b/sd/source/core/PageListWatcher.hxx old mode 100644 new mode 100755 diff --git a/sd/source/core/TransitionPreset.cxx b/sd/source/core/TransitionPreset.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/anminfo.cxx b/sd/source/core/anminfo.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/annotations/Annotation.cxx b/sd/source/core/annotations/Annotation.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/annotations/AnnotationAccess.cxx b/sd/source/core/annotations/AnnotationAccess.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/annotations/AnnotationEnumeration.cxx b/sd/source/core/annotations/AnnotationEnumeration.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/annotations/makefile.mk b/sd/source/core/annotations/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/core/cusshow.cxx b/sd/source/core/cusshow.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/drawdoc.cxx b/sd/source/core/drawdoc.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/drawdoc2.cxx b/sd/source/core/drawdoc2.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/drawdoc3.cxx b/sd/source/core/drawdoc3.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/drawdoc4.cxx b/sd/source/core/drawdoc4.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/drawdoc_animations.cxx b/sd/source/core/drawdoc_animations.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/glob.src b/sd/source/core/glob.src old mode 100644 new mode 100755 diff --git a/sd/source/core/makefile.mk b/sd/source/core/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/core/pglink.cxx b/sd/source/core/pglink.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/sdattr.cxx b/sd/source/core/sdattr.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/sdiocmpt.cxx b/sd/source/core/sdiocmpt.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/sdobjfac.cxx b/sd/source/core/sdobjfac.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/sdpage.cxx b/sd/source/core/sdpage.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/sdpage2.cxx b/sd/source/core/sdpage2.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/sdpage_animations.cxx b/sd/source/core/sdpage_animations.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/shapelist.cxx b/sd/source/core/shapelist.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/stlfamily.cxx b/sd/source/core/stlfamily.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/stlpool.cxx b/sd/source/core/stlpool.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/stlsheet.cxx b/sd/source/core/stlsheet.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/text/makefile.mk b/sd/source/core/text/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/core/text/textapi.cxx b/sd/source/core/text/textapi.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/typemap.cxx b/sd/source/core/typemap.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/undo/makefile.mk b/sd/source/core/undo/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/core/undo/undofactory.cxx b/sd/source/core/undo/undofactory.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/undo/undomanager.cxx b/sd/source/core/undo/undomanager.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/undo/undoobjects.cxx b/sd/source/core/undo/undoobjects.cxx old mode 100644 new mode 100755 diff --git a/sd/source/core/undoanim.cxx b/sd/source/core/undoanim.cxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/cgm/makefile.mk b/sd/source/filter/cgm/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/filter/cgm/sdcgmfilter.cxx b/sd/source/filter/cgm/sdcgmfilter.cxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/eppt/eppt.cxx b/sd/source/filter/eppt/eppt.cxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/eppt/eppt.hxx b/sd/source/filter/eppt/eppt.hxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/eppt/epptdef.hxx b/sd/source/filter/eppt/epptdef.hxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/eppt/epptso.cxx b/sd/source/filter/eppt/epptso.cxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/eppt/escherex.cxx b/sd/source/filter/eppt/escherex.cxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/eppt/escherex.hxx b/sd/source/filter/eppt/escherex.hxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/eppt/makefile.mk b/sd/source/filter/eppt/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/filter/eppt/pptexanimations.cxx b/sd/source/filter/eppt/pptexanimations.cxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/eppt/pptexanimations.hxx b/sd/source/filter/eppt/pptexanimations.hxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/eppt/pptexsoundcollection.cxx b/sd/source/filter/eppt/pptexsoundcollection.cxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/eppt/pptexsoundcollection.hxx b/sd/source/filter/eppt/pptexsoundcollection.hxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/grf/makefile.mk b/sd/source/filter/grf/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/filter/grf/sdgrffilter.cxx b/sd/source/filter/grf/sdgrffilter.cxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/html/HtmlOptionsDialog.cxx b/sd/source/filter/html/HtmlOptionsDialog.cxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/html/buttonset.cxx b/sd/source/filter/html/buttonset.cxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/html/buttonset.hxx b/sd/source/filter/html/buttonset.hxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/html/htmlattr.cxx b/sd/source/filter/html/htmlattr.cxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/html/htmlattr.hxx b/sd/source/filter/html/htmlattr.hxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/html/htmlex.cxx b/sd/source/filter/html/htmlex.cxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/html/htmlex.hxx b/sd/source/filter/html/htmlex.hxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/html/makefile.mk b/sd/source/filter/html/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/filter/html/pubdlg.cxx b/sd/source/filter/html/pubdlg.cxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/html/pubdlg.src b/sd/source/filter/html/pubdlg.src old mode 100644 new mode 100755 diff --git a/sd/source/filter/html/sdhtmlfilter.cxx b/sd/source/filter/html/sdhtmlfilter.cxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/makefile.mk b/sd/source/filter/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/filter/ppt/makefile.mk b/sd/source/filter/ppt/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/filter/ppt/ppt97animations.cxx b/sd/source/filter/ppt/ppt97animations.cxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/ppt/ppt97animations.hxx b/sd/source/filter/ppt/ppt97animations.hxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/ppt/pptanimations.hxx b/sd/source/filter/ppt/pptanimations.hxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/ppt/pptatom.cpp b/sd/source/filter/ppt/pptatom.cpp old mode 100644 new mode 100755 diff --git a/sd/source/filter/ppt/pptatom.hxx b/sd/source/filter/ppt/pptatom.hxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/ppt/pptin.cxx b/sd/source/filter/ppt/pptin.cxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/ppt/pptin.hxx b/sd/source/filter/ppt/pptin.hxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/ppt/pptinanimations.cxx b/sd/source/filter/ppt/pptinanimations.cxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/ppt/pptinanimations.hxx b/sd/source/filter/ppt/pptinanimations.hxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/ppt/propread.cxx b/sd/source/filter/ppt/propread.cxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/ppt/propread.hxx b/sd/source/filter/ppt/propread.hxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/sdfilter.cxx b/sd/source/filter/sdfilter.cxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/sdpptwrp.cxx b/sd/source/filter/sdpptwrp.cxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/xml/makefile.mk b/sd/source/filter/xml/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/filter/xml/sdtransform.cxx b/sd/source/filter/xml/sdtransform.cxx old mode 100644 new mode 100755 diff --git a/sd/source/filter/xml/sdxmlwrp.cxx b/sd/source/filter/xml/sdxmlwrp.cxx old mode 100644 new mode 100755 diff --git a/sd/source/helper/makefile.mk b/sd/source/helper/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/helper/simplereferencecomponent.cxx b/sd/source/helper/simplereferencecomponent.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/accessibility/AccessibleDocumentViewBase.cxx b/sd/source/ui/accessibility/AccessibleDocumentViewBase.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/accessibility/AccessibleDrawDocumentView.cxx b/sd/source/ui/accessibility/AccessibleDrawDocumentView.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/accessibility/AccessibleOutlineEditSource.cxx b/sd/source/ui/accessibility/AccessibleOutlineEditSource.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/accessibility/AccessibleOutlineView.cxx b/sd/source/ui/accessibility/AccessibleOutlineView.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/accessibility/AccessiblePageShape.cxx b/sd/source/ui/accessibility/AccessiblePageShape.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/accessibility/AccessiblePresentationGraphicShape.cxx b/sd/source/ui/accessibility/AccessiblePresentationGraphicShape.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/accessibility/AccessiblePresentationOLEShape.cxx b/sd/source/ui/accessibility/AccessiblePresentationOLEShape.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/accessibility/AccessiblePresentationShape.cxx b/sd/source/ui/accessibility/AccessiblePresentationShape.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/accessibility/AccessibleScrollPanel.cxx b/sd/source/ui/accessibility/AccessibleScrollPanel.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/accessibility/AccessibleSlideSorterObject.cxx b/sd/source/ui/accessibility/AccessibleSlideSorterObject.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/accessibility/AccessibleTreeNode.cxx b/sd/source/ui/accessibility/AccessibleTreeNode.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/accessibility/AccessibleViewForwarder.cxx b/sd/source/ui/accessibility/AccessibleViewForwarder.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/accessibility/SdShapeTypes.cxx b/sd/source/ui/accessibility/SdShapeTypes.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/accessibility/accessibility.hrc b/sd/source/ui/accessibility/accessibility.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/accessibility/accessibility.src b/sd/source/ui/accessibility/accessibility.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/animations/CustomAnimation.hrc b/sd/source/ui/animations/CustomAnimation.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/animations/CustomAnimation.src b/sd/source/ui/animations/CustomAnimation.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/animations/CustomAnimationCreateDialog.cxx b/sd/source/ui/animations/CustomAnimationCreateDialog.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/animations/CustomAnimationCreateDialog.hrc b/sd/source/ui/animations/CustomAnimationCreateDialog.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/animations/CustomAnimationCreateDialog.hxx b/sd/source/ui/animations/CustomAnimationCreateDialog.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/animations/CustomAnimationCreateDialog.src b/sd/source/ui/animations/CustomAnimationCreateDialog.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/animations/CustomAnimationDialog.cxx b/sd/source/ui/animations/CustomAnimationDialog.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/animations/CustomAnimationDialog.hrc b/sd/source/ui/animations/CustomAnimationDialog.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/animations/CustomAnimationDialog.hxx b/sd/source/ui/animations/CustomAnimationDialog.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/animations/CustomAnimationDialog.src b/sd/source/ui/animations/CustomAnimationDialog.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/animations/CustomAnimationList.cxx b/sd/source/ui/animations/CustomAnimationList.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/animations/CustomAnimationList.hxx b/sd/source/ui/animations/CustomAnimationList.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/animations/CustomAnimationPane.cxx b/sd/source/ui/animations/CustomAnimationPane.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/animations/CustomAnimationPane.hrc b/sd/source/ui/animations/CustomAnimationPane.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/animations/CustomAnimationPane.hxx b/sd/source/ui/animations/CustomAnimationPane.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/animations/CustomAnimationPane.src b/sd/source/ui/animations/CustomAnimationPane.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/animations/DialogListBox.cxx b/sd/source/ui/animations/DialogListBox.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/animations/STLPropertySet.cxx b/sd/source/ui/animations/STLPropertySet.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/animations/STLPropertySet.hxx b/sd/source/ui/animations/STLPropertySet.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/animations/SlideTransitionPane.cxx b/sd/source/ui/animations/SlideTransitionPane.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/animations/SlideTransitionPane.hrc b/sd/source/ui/animations/SlideTransitionPane.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/animations/SlideTransitionPane.hxx b/sd/source/ui/animations/SlideTransitionPane.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/animations/SlideTransitionPane.src b/sd/source/ui/animations/SlideTransitionPane.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/animations/makefile.mk b/sd/source/ui/animations/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/ui/animations/motionpathtag.cxx b/sd/source/ui/animations/motionpathtag.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/animations/motionpathtag.hxx b/sd/source/ui/animations/motionpathtag.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/annotations/annotationmanager.cxx b/sd/source/ui/annotations/annotationmanager.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/annotations/annotations.hrc b/sd/source/ui/annotations/annotations.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/annotations/annotations.src b/sd/source/ui/annotations/annotations.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/annotations/annotationtag.cxx b/sd/source/ui/annotations/annotationtag.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/annotations/annotationtag.hxx b/sd/source/ui/annotations/annotationtag.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/annotations/annotationwindow.cxx b/sd/source/ui/annotations/annotationwindow.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/annotations/annotationwindow.hxx b/sd/source/ui/annotations/annotationwindow.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/annotations/makefile.mk b/sd/source/ui/annotations/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/_app.hrc b/sd/source/ui/app/_app.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/accel_tmpl.src b/sd/source/ui/app/accel_tmpl.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/accelids_tmpl.src b/sd/source/ui/app/accelids_tmpl.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/app.img b/sd/source/ui/app/app.img old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/app.src b/sd/source/ui/app/app.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/makefile.mk b/sd/source/ui/app/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/menu_tmpl.src b/sd/source/ui/app/menu_tmpl.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/menuids2_tmpl.src b/sd/source/ui/app/menuids2_tmpl.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/menuids3_tmpl.src b/sd/source/ui/app/menuids3_tmpl.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/menuids4_tmpl.src b/sd/source/ui/app/menuids4_tmpl.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/menuids_tmpl.src b/sd/source/ui/app/menuids_tmpl.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/menuportal_tmpl.src b/sd/source/ui/app/menuportal_tmpl.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/popup.src b/sd/source/ui/app/popup.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/popup2_tmpl.src b/sd/source/ui/app/popup2_tmpl.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/res_bmp.src b/sd/source/ui/app/res_bmp.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/sddll.cxx b/sd/source/ui/app/sddll.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/sddll1.cxx b/sd/source/ui/app/sddll1.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/sddll2.cxx b/sd/source/ui/app/sddll2.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/sdmod.cxx b/sd/source/ui/app/sdmod.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/sdmod1.cxx b/sd/source/ui/app/sdmod1.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/sdmod2.cxx b/sd/source/ui/app/sdmod2.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/sdpopup.cxx b/sd/source/ui/app/sdpopup.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/sdresid.cxx b/sd/source/ui/app/sdresid.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/sdstring.src b/sd/source/ui/app/sdstring.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/sdxfer.cxx b/sd/source/ui/app/sdxfer.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/strings.src b/sd/source/ui/app/strings.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/tbx_ww.src b/sd/source/ui/app/tbx_ww.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/tbxids_tmpl.src b/sd/source/ui/app/tbxids_tmpl.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/tbxww.cxx b/sd/source/ui/app/tbxww.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/tmplctrl.cxx b/sd/source/ui/app/tmplctrl.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/toolbox.src b/sd/source/ui/app/toolbox.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/app/toolbox2_tmpl.src b/sd/source/ui/app/toolbox2_tmpl.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/controller/makefile.mk b/sd/source/ui/controller/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/AnimationChildWindow.cxx b/sd/source/ui/dlg/AnimationChildWindow.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/LayerDialog.src b/sd/source/ui/dlg/LayerDialog.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/LayerDialogChildWindow.cxx b/sd/source/ui/dlg/LayerDialogChildWindow.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/LayerDialogContent.cxx b/sd/source/ui/dlg/LayerDialogContent.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/LayerTabBar.cxx b/sd/source/ui/dlg/LayerTabBar.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/NavigatorChildWindow.cxx b/sd/source/ui/dlg/NavigatorChildWindow.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/PaneChildWindows.cxx b/sd/source/ui/dlg/PaneChildWindows.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/PaneDockingWindow.cxx b/sd/source/ui/dlg/PaneDockingWindow.cxx index ced567f4f6f6..bcf58c38c0b1 100644 --- a/sd/source/ui/dlg/PaneDockingWindow.cxx +++ b/sd/source/ui/dlg/PaneDockingWindow.cxx @@ -67,7 +67,7 @@ void PaneDockingWindow::StateChanged( StateChangedType nType ) { case STATE_CHANGE_INITSHOW: Resize(); - mpContentWindow->SetStyle(mpContentWindow->GetStyle() | WB_DIALOGCONTROL); + GetContentWindow().SetStyle(GetContentWindow().GetStyle() | WB_DIALOGCONTROL); break; case STATE_CHANGE_VISIBLE: @@ -89,15 +89,15 @@ void PaneDockingWindow::StateChanged( StateChangedType nType ) void PaneDockingWindow::MouseButtonDown (const MouseEvent& rEvent) { - if (rEvent.GetButtons() == MOUSE_LEFT && mpContentWindow) + if (rEvent.GetButtons() == MOUSE_LEFT) { // For some strange reason we have to set the WB_DIALOGCONTROL at // the content window in order to have it pass focus to its content // window. Without setting this flag here that works only on views // that have not been taken from the cash and relocated to this pane // docking window. - mpContentWindow->SetStyle(mpContentWindow->GetStyle() | WB_DIALOGCONTROL); - mpContentWindow->GrabFocus(); + GetContentWindow().SetStyle(GetContentWindow().GetStyle() | WB_DIALOGCONTROL); + GetContentWindow().GrabFocus(); } SfxDockingWindow::MouseButtonDown(rEvent); } @@ -118,9 +118,10 @@ void PaneDockingWindow::SetValidSizeRange (const Range aValidSizeRange) const USHORT nSetId (pSplitWindow->GetSet(nId)); // Because the PaneDockingWindow paints its own decoration, we have // to compensate the valid size range for that. + const SvBorder aBorder (GetDecorationBorder()); sal_Int32 nCompensation (pSplitWindow->IsHorizontal() - ? mnTitleBarHeight + maBorder.Top() + maBorder.Bottom() - : maBorder.Left() + maBorder.Right()); + ? mnTitleBarHeight + aBorder.Top() + aBorder.Bottom() + : aBorder.Left() + aBorder.Right()); pSplitWindow->SetItemSizeRange( nSetId, Range( diff --git a/sd/source/ui/dlg/PaneDockingWindow.src b/sd/source/ui/dlg/PaneDockingWindow.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/PaneShells.cxx b/sd/source/ui/dlg/PaneShells.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/SpellDialogChildWindow.cxx b/sd/source/ui/dlg/SpellDialogChildWindow.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/TemplateScanner.cxx b/sd/source/ui/dlg/TemplateScanner.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/animobjs.cxx b/sd/source/ui/dlg/animobjs.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/animobjs.src b/sd/source/ui/dlg/animobjs.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/assclass.cxx b/sd/source/ui/dlg/assclass.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/brkdlg.cxx b/sd/source/ui/dlg/brkdlg.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/brkdlg.src b/sd/source/ui/dlg/brkdlg.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/celltempl.cxx b/sd/source/ui/dlg/celltempl.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/celltempl.src b/sd/source/ui/dlg/celltempl.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/copydlg.cxx b/sd/source/ui/dlg/copydlg.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/copydlg.src b/sd/source/ui/dlg/copydlg.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/custsdlg.cxx b/sd/source/ui/dlg/custsdlg.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/custsdlg.src b/sd/source/ui/dlg/custsdlg.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/diactrl.cxx b/sd/source/ui/dlg/diactrl.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/dlg_char.src b/sd/source/ui/dlg/dlg_char.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/dlgass.cxx b/sd/source/ui/dlg/dlgass.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/dlgass.src b/sd/source/ui/dlg/dlgass.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/dlgassim.cxx b/sd/source/ui/dlg/dlgassim.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/dlgassim.hxx b/sd/source/ui/dlg/dlgassim.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/dlgchar.cxx b/sd/source/ui/dlg/dlgchar.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/dlgctrls.cxx b/sd/source/ui/dlg/dlgctrls.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/dlgfield.cxx b/sd/source/ui/dlg/dlgfield.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/dlgfield.src b/sd/source/ui/dlg/dlgfield.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/dlgolbul.cxx b/sd/source/ui/dlg/dlgolbul.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/dlgolbul.src b/sd/source/ui/dlg/dlgolbul.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/dlgpage.cxx b/sd/source/ui/dlg/dlgpage.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/dlgpage.src b/sd/source/ui/dlg/dlgpage.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/dlgsnap.cxx b/sd/source/ui/dlg/dlgsnap.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/dlgsnap.src b/sd/source/ui/dlg/dlgsnap.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/docprev.cxx b/sd/source/ui/dlg/docprev.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/filedlg.cxx b/sd/source/ui/dlg/filedlg.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/gluectrl.cxx b/sd/source/ui/dlg/gluectrl.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/headerfooterdlg.cxx b/sd/source/ui/dlg/headerfooterdlg.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/headerfooterdlg.src b/sd/source/ui/dlg/headerfooterdlg.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/ins_paste.cxx b/sd/source/ui/dlg/ins_paste.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/ins_paste.src b/sd/source/ui/dlg/ins_paste.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/inspagob.cxx b/sd/source/ui/dlg/inspagob.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/inspagob.src b/sd/source/ui/dlg/inspagob.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/layeroptionsdlg.cxx b/sd/source/ui/dlg/layeroptionsdlg.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/layeroptionsdlg.src b/sd/source/ui/dlg/layeroptionsdlg.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/makefile.mk b/sd/source/ui/dlg/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/masterlayoutdlg.cxx b/sd/source/ui/dlg/masterlayoutdlg.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/masterlayoutdlg.src b/sd/source/ui/dlg/masterlayoutdlg.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/morphdlg.cxx b/sd/source/ui/dlg/morphdlg.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/morphdlg.src b/sd/source/ui/dlg/morphdlg.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/navigatr.cxx b/sd/source/ui/dlg/navigatr.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/navigatr.src b/sd/source/ui/dlg/navigatr.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/paragr.cxx b/sd/source/ui/dlg/paragr.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/paragr.src b/sd/source/ui/dlg/paragr.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/present.cxx b/sd/source/ui/dlg/present.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/present.src b/sd/source/ui/dlg/present.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/prltempl.cxx b/sd/source/ui/dlg/prltempl.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/prltempl.src b/sd/source/ui/dlg/prltempl.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/prntopts.cxx b/sd/source/ui/dlg/prntopts.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/prntopts.src b/sd/source/ui/dlg/prntopts.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/sdabstdlg.cxx b/sd/source/ui/dlg/sdabstdlg.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/sddlgfact.cxx b/sd/source/ui/dlg/sddlgfact.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/sddlgfact.hxx b/sd/source/ui/dlg/sddlgfact.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/sdpreslt.cxx b/sd/source/ui/dlg/sdpreslt.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/sdpreslt.src b/sd/source/ui/dlg/sdpreslt.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/sdtreelb.cxx b/sd/source/ui/dlg/sdtreelb.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/sduiexp.cxx b/sd/source/ui/dlg/sduiexp.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/tabtempl.cxx b/sd/source/ui/dlg/tabtempl.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/tabtempl.src b/sd/source/ui/dlg/tabtempl.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/tpaction.cxx b/sd/source/ui/dlg/tpaction.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/tpaction.src b/sd/source/ui/dlg/tpaction.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/tpoption.cxx b/sd/source/ui/dlg/tpoption.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/tpoption.src b/sd/source/ui/dlg/tpoption.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/unchss.cxx b/sd/source/ui/dlg/unchss.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/vectdlg.cxx b/sd/source/ui/dlg/vectdlg.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/dlg/vectdlg.src b/sd/source/ui/dlg/vectdlg.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/docshell/docshel2.cxx b/sd/source/ui/docshell/docshel2.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/docshell/docshel3.cxx b/sd/source/ui/docshell/docshel3.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/docshell/docshel4.cxx b/sd/source/ui/docshell/docshel4.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/docshell/docshell.cxx b/sd/source/ui/docshell/docshell.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/docshell/grdocsh.cxx b/sd/source/ui/docshell/grdocsh.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/docshell/makefile.mk b/sd/source/ui/docshell/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/ui/docshell/sdclient.cxx b/sd/source/ui/docshell/sdclient.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/configuration/ChangeRequestQueue.cxx b/sd/source/ui/framework/configuration/ChangeRequestQueue.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/configuration/ChangeRequestQueue.hxx b/sd/source/ui/framework/configuration/ChangeRequestQueue.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/configuration/ChangeRequestQueueProcessor.cxx b/sd/source/ui/framework/configuration/ChangeRequestQueueProcessor.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/configuration/ChangeRequestQueueProcessor.hxx b/sd/source/ui/framework/configuration/ChangeRequestQueueProcessor.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/configuration/Configuration.cxx b/sd/source/ui/framework/configuration/Configuration.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/configuration/ConfigurationClassifier.cxx b/sd/source/ui/framework/configuration/ConfigurationClassifier.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/configuration/ConfigurationClassifier.hxx b/sd/source/ui/framework/configuration/ConfigurationClassifier.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/configuration/ConfigurationController.cxx b/sd/source/ui/framework/configuration/ConfigurationController.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/configuration/ConfigurationControllerBroadcaster.cxx b/sd/source/ui/framework/configuration/ConfigurationControllerBroadcaster.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/configuration/ConfigurationControllerBroadcaster.hxx b/sd/source/ui/framework/configuration/ConfigurationControllerBroadcaster.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/configuration/ConfigurationControllerResourceManager.cxx b/sd/source/ui/framework/configuration/ConfigurationControllerResourceManager.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/configuration/ConfigurationControllerResourceManager.hxx b/sd/source/ui/framework/configuration/ConfigurationControllerResourceManager.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/configuration/ConfigurationTracer.cxx b/sd/source/ui/framework/configuration/ConfigurationTracer.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/configuration/ConfigurationTracer.hxx b/sd/source/ui/framework/configuration/ConfigurationTracer.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/configuration/ConfigurationUpdater.cxx b/sd/source/ui/framework/configuration/ConfigurationUpdater.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/configuration/ConfigurationUpdater.hxx b/sd/source/ui/framework/configuration/ConfigurationUpdater.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/configuration/GenericConfigurationChangeRequest.cxx b/sd/source/ui/framework/configuration/GenericConfigurationChangeRequest.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/configuration/GenericConfigurationChangeRequest.hxx b/sd/source/ui/framework/configuration/GenericConfigurationChangeRequest.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/configuration/ResourceFactoryManager.cxx b/sd/source/ui/framework/configuration/ResourceFactoryManager.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/configuration/ResourceFactoryManager.hxx b/sd/source/ui/framework/configuration/ResourceFactoryManager.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/configuration/ResourceId.cxx b/sd/source/ui/framework/configuration/ResourceId.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/configuration/UpdateRequest.cxx b/sd/source/ui/framework/configuration/UpdateRequest.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/configuration/UpdateRequest.hxx b/sd/source/ui/framework/configuration/UpdateRequest.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/configuration/makefile.mk b/sd/source/ui/framework/configuration/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/factories/BasicPaneFactory.cxx b/sd/source/ui/framework/factories/BasicPaneFactory.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/factories/BasicPaneFactory.hxx b/sd/source/ui/framework/factories/BasicPaneFactory.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/factories/BasicToolBarFactory.cxx b/sd/source/ui/framework/factories/BasicToolBarFactory.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/factories/BasicToolBarFactory.hxx b/sd/source/ui/framework/factories/BasicToolBarFactory.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/factories/BasicViewFactory.cxx b/sd/source/ui/framework/factories/BasicViewFactory.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/factories/BasicViewFactory.hxx b/sd/source/ui/framework/factories/BasicViewFactory.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/factories/ChildWindowPane.cxx b/sd/source/ui/framework/factories/ChildWindowPane.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/factories/ChildWindowPane.hxx b/sd/source/ui/framework/factories/ChildWindowPane.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/factories/FrameWindowPane.cxx b/sd/source/ui/framework/factories/FrameWindowPane.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/factories/FrameWindowPane.hxx b/sd/source/ui/framework/factories/FrameWindowPane.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/factories/FullScreenPane.cxx b/sd/source/ui/framework/factories/FullScreenPane.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/factories/FullScreenPane.hxx b/sd/source/ui/framework/factories/FullScreenPane.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/factories/Pane.cxx b/sd/source/ui/framework/factories/Pane.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/factories/PresentationFactory.cxx b/sd/source/ui/framework/factories/PresentationFactory.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/factories/TaskPanelFactory.cxx b/sd/source/ui/framework/factories/TaskPanelFactory.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/factories/TaskPanelFactory.hxx b/sd/source/ui/framework/factories/TaskPanelFactory.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/factories/ViewShellWrapper.cxx b/sd/source/ui/framework/factories/ViewShellWrapper.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/factories/makefile.mk b/sd/source/ui/framework/factories/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/module/CenterViewFocusModule.cxx b/sd/source/ui/framework/module/CenterViewFocusModule.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/module/CenterViewFocusModule.hxx b/sd/source/ui/framework/module/CenterViewFocusModule.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/module/DrawModule.cxx b/sd/source/ui/framework/module/DrawModule.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/module/ImpressModule.cxx b/sd/source/ui/framework/module/ImpressModule.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/module/ModuleController.cxx b/sd/source/ui/framework/module/ModuleController.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/module/PresentationModule.cxx b/sd/source/ui/framework/module/PresentationModule.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/module/ReadOnlyModeObserver.cxx b/sd/source/ui/framework/module/ReadOnlyModeObserver.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/module/ReadOnlyModeObserver.hxx b/sd/source/ui/framework/module/ReadOnlyModeObserver.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/module/ResourceManager.cxx b/sd/source/ui/framework/module/ResourceManager.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/module/ResourceManager.hxx b/sd/source/ui/framework/module/ResourceManager.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/module/ShellStackGuard.cxx b/sd/source/ui/framework/module/ShellStackGuard.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/module/ShellStackGuard.hxx b/sd/source/ui/framework/module/ShellStackGuard.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/module/SlideSorterModule.cxx b/sd/source/ui/framework/module/SlideSorterModule.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/module/SlideSorterModule.hxx b/sd/source/ui/framework/module/SlideSorterModule.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/module/ToolBarModule.cxx b/sd/source/ui/framework/module/ToolBarModule.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/module/ToolBarModule.hxx b/sd/source/ui/framework/module/ToolBarModule.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/module/ViewTabBarModule.cxx b/sd/source/ui/framework/module/ViewTabBarModule.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/module/ViewTabBarModule.hxx b/sd/source/ui/framework/module/ViewTabBarModule.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/module/makefile.mk b/sd/source/ui/framework/module/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/tools/FrameworkHelper.cxx b/sd/source/ui/framework/tools/FrameworkHelper.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/framework/tools/makefile.mk b/sd/source/ui/framework/tools/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/bulmaper.cxx b/sd/source/ui/func/bulmaper.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fuarea.cxx b/sd/source/ui/func/fuarea.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fubullet.cxx b/sd/source/ui/func/fubullet.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fuchar.cxx b/sd/source/ui/func/fuchar.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fucon3d.cxx b/sd/source/ui/func/fucon3d.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fuconarc.cxx b/sd/source/ui/func/fuconarc.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fuconbez.cxx b/sd/source/ui/func/fuconbez.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fuconcs.cxx b/sd/source/ui/func/fuconcs.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fuconnct.cxx b/sd/source/ui/func/fuconnct.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fuconrec.cxx b/sd/source/ui/func/fuconrec.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fuconstr.cxx b/sd/source/ui/func/fuconstr.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fuconuno.cxx b/sd/source/ui/func/fuconuno.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fucopy.cxx b/sd/source/ui/func/fucopy.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fucushow.cxx b/sd/source/ui/func/fucushow.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fudraw.cxx b/sd/source/ui/func/fudraw.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fudspord.cxx b/sd/source/ui/func/fudspord.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fuediglu.cxx b/sd/source/ui/func/fuediglu.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fuexpand.cxx b/sd/source/ui/func/fuexpand.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fuformatpaintbrush.cxx b/sd/source/ui/func/fuformatpaintbrush.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fuhhconv.cxx b/sd/source/ui/func/fuhhconv.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fuinsert.cxx b/sd/source/ui/func/fuinsert.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fuinsfil.cxx b/sd/source/ui/func/fuinsfil.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fuline.cxx b/sd/source/ui/func/fuline.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fulinend.cxx b/sd/source/ui/func/fulinend.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fulink.cxx b/sd/source/ui/func/fulink.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fumeasur.cxx b/sd/source/ui/func/fumeasur.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fumorph.cxx b/sd/source/ui/func/fumorph.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fuoaprms.cxx b/sd/source/ui/func/fuoaprms.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fuolbull.cxx b/sd/source/ui/func/fuolbull.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fuoltext.cxx b/sd/source/ui/func/fuoltext.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fuoutl.cxx b/sd/source/ui/func/fuoutl.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fupage.cxx b/sd/source/ui/func/fupage.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fuparagr.cxx b/sd/source/ui/func/fuparagr.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fupoor.cxx b/sd/source/ui/func/fupoor.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fuprlout.cxx b/sd/source/ui/func/fuprlout.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fuprobjs.cxx b/sd/source/ui/func/fuprobjs.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fuscale.cxx b/sd/source/ui/func/fuscale.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fusearch.cxx b/sd/source/ui/func/fusearch.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fusel.cxx b/sd/source/ui/func/fusel.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fusldlg.cxx b/sd/source/ui/func/fusldlg.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fusnapln.cxx b/sd/source/ui/func/fusnapln.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fusumry.cxx b/sd/source/ui/func/fusumry.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/futempl.cxx b/sd/source/ui/func/futempl.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/futext.cxx b/sd/source/ui/func/futext.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/futhes.cxx b/sd/source/ui/func/futhes.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/futransf.cxx b/sd/source/ui/func/futransf.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/futxtatt.cxx b/sd/source/ui/func/futxtatt.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fuvect.cxx b/sd/source/ui/func/fuvect.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/fuzoom.cxx b/sd/source/ui/func/fuzoom.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/makefile.mk b/sd/source/ui/func/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/sdundo.cxx b/sd/source/ui/func/sdundo.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/sdundogr.cxx b/sd/source/ui/func/sdundogr.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/smarttag.cxx b/sd/source/ui/func/smarttag.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/undoback.cxx b/sd/source/ui/func/undoback.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/undoheaderfooter.cxx b/sd/source/ui/func/undoheaderfooter.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/undolayer.cxx b/sd/source/ui/func/undolayer.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/undopage.cxx b/sd/source/ui/func/undopage.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/unmovss.cxx b/sd/source/ui/func/unmovss.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/unoaprms.cxx b/sd/source/ui/func/unoaprms.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/func/unprlout.cxx b/sd/source/ui/func/unprlout.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/3dchld.hxx b/sd/source/ui/inc/3dchld.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/AccessibleDocumentViewBase.hxx b/sd/source/ui/inc/AccessibleDocumentViewBase.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/AccessibleDrawDocumentView.hxx b/sd/source/ui/inc/AccessibleDrawDocumentView.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/AccessibleOutlineEditSource.hxx b/sd/source/ui/inc/AccessibleOutlineEditSource.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/AccessibleOutlineView.hxx b/sd/source/ui/inc/AccessibleOutlineView.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/AccessiblePageShape.hxx b/sd/source/ui/inc/AccessiblePageShape.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/AccessiblePresentationGraphicShape.hxx b/sd/source/ui/inc/AccessiblePresentationGraphicShape.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/AccessiblePresentationOLEShape.hxx b/sd/source/ui/inc/AccessiblePresentationOLEShape.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/AccessiblePresentationShape.hxx b/sd/source/ui/inc/AccessiblePresentationShape.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/AccessibleScrollPanel.hxx b/sd/source/ui/inc/AccessibleScrollPanel.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/AccessibleSlideSorterObject.hxx b/sd/source/ui/inc/AccessibleSlideSorterObject.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/AccessibleSlideSorterView.hxx b/sd/source/ui/inc/AccessibleSlideSorterView.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/AccessibleSlideView.hxx b/sd/source/ui/inc/AccessibleSlideView.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/AccessibleTreeNode.hxx b/sd/source/ui/inc/AccessibleTreeNode.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/AccessibleViewForwarder.hxx b/sd/source/ui/inc/AccessibleViewForwarder.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/AnimationChildWindow.hxx b/sd/source/ui/inc/AnimationChildWindow.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/BezierObjectBar.hxx b/sd/source/ui/inc/BezierObjectBar.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/BreakDlg.hxx b/sd/source/ui/inc/BreakDlg.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/Client.hxx b/sd/source/ui/inc/Client.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/ClientView.hxx b/sd/source/ui/inc/ClientView.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/CustomAnimation.hxx b/sd/source/ui/inc/CustomAnimation.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/DialogListBox.hxx b/sd/source/ui/inc/DialogListBox.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/DocumentRenderer.hxx b/sd/source/ui/inc/DocumentRenderer.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/DrawController.hxx b/sd/source/ui/inc/DrawController.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/DrawDocShell.hxx b/sd/source/ui/inc/DrawDocShell.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/DrawSubController.hxx b/sd/source/ui/inc/DrawSubController.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/DrawViewShell.hxx b/sd/source/ui/inc/DrawViewShell.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/EventMultiplexer.hxx b/sd/source/ui/inc/EventMultiplexer.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/FormShellManager.hxx b/sd/source/ui/inc/FormShellManager.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/FrameView.hxx b/sd/source/ui/inc/FrameView.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/GraphicDocShell.hxx b/sd/source/ui/inc/GraphicDocShell.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/GraphicObjectBar.hxx b/sd/source/ui/inc/GraphicObjectBar.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/GraphicViewShell.hxx b/sd/source/ui/inc/GraphicViewShell.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/GraphicViewShellBase.hxx b/sd/source/ui/inc/GraphicViewShellBase.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/ImpressViewShellBase.hxx b/sd/source/ui/inc/ImpressViewShellBase.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/LayerDialog.hrc b/sd/source/ui/inc/LayerDialog.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/LayerDialogChildWindow.hxx b/sd/source/ui/inc/LayerDialogChildWindow.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/LayerDialogContent.hxx b/sd/source/ui/inc/LayerDialogContent.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/LayerTabBar.hxx b/sd/source/ui/inc/LayerTabBar.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/MasterPageObserver.hxx b/sd/source/ui/inc/MasterPageObserver.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/MediaObjectBar.hxx b/sd/source/ui/inc/MediaObjectBar.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/MutexOwner.hxx b/sd/source/ui/inc/MutexOwner.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/NavigatorChildWindow.hxx b/sd/source/ui/inc/NavigatorChildWindow.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/NotesChildWindow.hrc b/sd/source/ui/inc/NotesChildWindow.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/NotesChildWindow.hxx b/sd/source/ui/inc/NotesChildWindow.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/OutlineBulletDlg.hxx b/sd/source/ui/inc/OutlineBulletDlg.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/OutlineView.hxx b/sd/source/ui/inc/OutlineView.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/OutlineViewShell.hxx b/sd/source/ui/inc/OutlineViewShell.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/OutlineViewShellBase.hxx b/sd/source/ui/inc/OutlineViewShellBase.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/OutlinerIteratorImpl.hxx b/sd/source/ui/inc/OutlinerIteratorImpl.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/PaneChildWindows.hxx b/sd/source/ui/inc/PaneChildWindows.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/PaneDockingWindow.hrc b/sd/source/ui/inc/PaneDockingWindow.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/PaneShells.hxx b/sd/source/ui/inc/PaneShells.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/PresentationViewShell.hxx b/sd/source/ui/inc/PresentationViewShell.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/PresentationViewShellBase.hxx b/sd/source/ui/inc/PresentationViewShellBase.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/PreviewRenderer.hxx b/sd/source/ui/inc/PreviewRenderer.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/Ruler.hxx b/sd/source/ui/inc/Ruler.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/SdUnoDrawView.hxx b/sd/source/ui/inc/SdUnoDrawView.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/SdUnoOutlineView.hxx b/sd/source/ui/inc/SdUnoOutlineView.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/SdUnoSlideView.hxx b/sd/source/ui/inc/SdUnoSlideView.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/ShellFactory.hxx b/sd/source/ui/inc/ShellFactory.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/SlideSorter.hxx b/sd/source/ui/inc/SlideSorter.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/SlideSorterChildWindow.hrc b/sd/source/ui/inc/SlideSorterChildWindow.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/SlideSorterChildWindow.hxx b/sd/source/ui/inc/SlideSorterChildWindow.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/SlideSorterViewShell.hxx b/sd/source/ui/inc/SlideSorterViewShell.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/SlideSorterViewShellBase.hxx b/sd/source/ui/inc/SlideSorterViewShellBase.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/SlideView.hxx b/sd/source/ui/inc/SlideView.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/SlideViewShell.hxx b/sd/source/ui/inc/SlideViewShell.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/SpellDialogChildWindow.hxx b/sd/source/ui/inc/SpellDialogChildWindow.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/TabControl.hxx b/sd/source/ui/inc/TabControl.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/TemplateScanner.hxx b/sd/source/ui/inc/TemplateScanner.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/TextLogger.hxx b/sd/source/ui/inc/TextLogger.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/TextObjectBar.hxx b/sd/source/ui/inc/TextObjectBar.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/ToolBarManager.hxx b/sd/source/ui/inc/ToolBarManager.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/UpdateLockManager.hxx b/sd/source/ui/inc/UpdateLockManager.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/View.hxx b/sd/source/ui/inc/View.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/ViewClipboard.hxx b/sd/source/ui/inc/ViewClipboard.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/ViewShell.hxx b/sd/source/ui/inc/ViewShell.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/ViewShellBase.hxx b/sd/source/ui/inc/ViewShellBase.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/ViewShellHint.hxx b/sd/source/ui/inc/ViewShellHint.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/ViewShellImplementation.hxx b/sd/source/ui/inc/ViewShellImplementation.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/ViewShellManager.hxx b/sd/source/ui/inc/ViewShellManager.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/ViewTabBar.hxx b/sd/source/ui/inc/ViewTabBar.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/ViewTabControl.hxx b/sd/source/ui/inc/ViewTabControl.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/Window.hxx b/sd/source/ui/inc/Window.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/WindowUpdater.hxx b/sd/source/ui/inc/WindowUpdater.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/animobjs.hrc b/sd/source/ui/inc/animobjs.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/animobjs.hxx b/sd/source/ui/inc/animobjs.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/assclass.hxx b/sd/source/ui/inc/assclass.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/bmcache.hxx b/sd/source/ui/inc/bmcache.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/brkdlg.hrc b/sd/source/ui/inc/brkdlg.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/bulmaper.hxx b/sd/source/ui/inc/bulmaper.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/celltempl.hrc b/sd/source/ui/inc/celltempl.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/celltempl.hxx b/sd/source/ui/inc/celltempl.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/cfgids.hxx b/sd/source/ui/inc/cfgids.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/copydlg.hrc b/sd/source/ui/inc/copydlg.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/copydlg.hxx b/sd/source/ui/inc/copydlg.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/custsdlg.hrc b/sd/source/ui/inc/custsdlg.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/custsdlg.hxx b/sd/source/ui/inc/custsdlg.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/diactrl.hxx b/sd/source/ui/inc/diactrl.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/dialogs.hrc b/sd/source/ui/inc/dialogs.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/dlg_char.hrc b/sd/source/ui/inc/dlg_char.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/dlg_char.hxx b/sd/source/ui/inc/dlg_char.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/dlgass.hrc b/sd/source/ui/inc/dlgass.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/dlgass.hxx b/sd/source/ui/inc/dlgass.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/dlgctrls.hxx b/sd/source/ui/inc/dlgctrls.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/dlgfield.hrc b/sd/source/ui/inc/dlgfield.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/dlgfield.hxx b/sd/source/ui/inc/dlgfield.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/dlgolbul.hrc b/sd/source/ui/inc/dlgolbul.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/dlgpage.hrc b/sd/source/ui/inc/dlgpage.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/dlgpage.hxx b/sd/source/ui/inc/dlgpage.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/dlgsnap.hrc b/sd/source/ui/inc/dlgsnap.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/dlgsnap.hxx b/sd/source/ui/inc/dlgsnap.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/docprev.hxx b/sd/source/ui/inc/docprev.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/drawview.hxx b/sd/source/ui/inc/drawview.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/enumdlg.hrc b/sd/source/ui/inc/enumdlg.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/filedlg.hxx b/sd/source/ui/inc/filedlg.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fontwork.hrc b/sd/source/ui/inc/fontwork.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/framework/Configuration.hxx b/sd/source/ui/inc/framework/Configuration.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/framework/ConfigurationController.hxx b/sd/source/ui/inc/framework/ConfigurationController.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/framework/DrawModule.hxx b/sd/source/ui/inc/framework/DrawModule.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/framework/FrameworkHelper.hxx b/sd/source/ui/inc/framework/FrameworkHelper.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/framework/ImpressModule.hxx b/sd/source/ui/inc/framework/ImpressModule.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/framework/ModuleController.hxx b/sd/source/ui/inc/framework/ModuleController.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/framework/Pane.hxx b/sd/source/ui/inc/framework/Pane.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/framework/PresentationFactory.hxx b/sd/source/ui/inc/framework/PresentationFactory.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/framework/PresentationModule.hxx b/sd/source/ui/inc/framework/PresentationModule.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/framework/ResourceId.hxx b/sd/source/ui/inc/framework/ResourceId.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/framework/ViewShellWrapper.hxx b/sd/source/ui/inc/framework/ViewShellWrapper.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuarea.hxx b/sd/source/ui/inc/fuarea.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fubullet.hxx b/sd/source/ui/inc/fubullet.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuchar.hxx b/sd/source/ui/inc/fuchar.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fucon3d.hxx b/sd/source/ui/inc/fucon3d.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuconarc.hxx b/sd/source/ui/inc/fuconarc.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuconbez.hxx b/sd/source/ui/inc/fuconbez.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuconcs.hxx b/sd/source/ui/inc/fuconcs.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuconnct.hxx b/sd/source/ui/inc/fuconnct.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuconrec.hxx b/sd/source/ui/inc/fuconrec.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuconstr.hxx b/sd/source/ui/inc/fuconstr.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuconuno.hxx b/sd/source/ui/inc/fuconuno.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fucopy.hxx b/sd/source/ui/inc/fucopy.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fucushow.hxx b/sd/source/ui/inc/fucushow.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fudraw.hxx b/sd/source/ui/inc/fudraw.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fudspord.hxx b/sd/source/ui/inc/fudspord.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuediglu.hxx b/sd/source/ui/inc/fuediglu.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuexpand.hxx b/sd/source/ui/inc/fuexpand.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuformatpaintbrush.hxx b/sd/source/ui/inc/fuformatpaintbrush.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fugrid.hxx b/sd/source/ui/inc/fugrid.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuhhconv.hxx b/sd/source/ui/inc/fuhhconv.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuinsert.hxx b/sd/source/ui/inc/fuinsert.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuinsfil.hxx b/sd/source/ui/inc/fuinsfil.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuline.hxx b/sd/source/ui/inc/fuline.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fulinend.hxx b/sd/source/ui/inc/fulinend.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fulink.hxx b/sd/source/ui/inc/fulink.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fumeasur.hxx b/sd/source/ui/inc/fumeasur.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fumorph.hxx b/sd/source/ui/inc/fumorph.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuoaprms.hxx b/sd/source/ui/inc/fuoaprms.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuolbull.hxx b/sd/source/ui/inc/fuolbull.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuoltext.hxx b/sd/source/ui/inc/fuoltext.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuoutl.hxx b/sd/source/ui/inc/fuoutl.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fupage.hxx b/sd/source/ui/inc/fupage.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuparagr.hxx b/sd/source/ui/inc/fuparagr.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fupoor.hxx b/sd/source/ui/inc/fupoor.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuprlout.hxx b/sd/source/ui/inc/fuprlout.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuprobjs.hxx b/sd/source/ui/inc/fuprobjs.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuscale.hxx b/sd/source/ui/inc/fuscale.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fusearch.hxx b/sd/source/ui/inc/fusearch.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fusel.hxx b/sd/source/ui/inc/fusel.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fusldlg.hxx b/sd/source/ui/inc/fusldlg.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuslhide.hxx b/sd/source/ui/inc/fuslhide.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuslid.hxx b/sd/source/ui/inc/fuslid.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuslsel.hxx b/sd/source/ui/inc/fuslsel.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fusnapln.hxx b/sd/source/ui/inc/fusnapln.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fusumry.hxx b/sd/source/ui/inc/fusumry.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/futempl.hxx b/sd/source/ui/inc/futempl.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/futext.hxx b/sd/source/ui/inc/futext.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/futhes.hxx b/sd/source/ui/inc/futhes.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/futransf.hxx b/sd/source/ui/inc/futransf.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/futxtatt.hxx b/sd/source/ui/inc/futxtatt.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuvect.hxx b/sd/source/ui/inc/fuvect.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/fuzoom.hxx b/sd/source/ui/inc/fuzoom.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/gluectrl.hxx b/sd/source/ui/inc/gluectrl.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/headerfooterdlg.hrc b/sd/source/ui/inc/headerfooterdlg.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/headerfooterdlg.hxx b/sd/source/ui/inc/headerfooterdlg.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/ins_paste.hrc b/sd/source/ui/inc/ins_paste.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/ins_paste.hxx b/sd/source/ui/inc/ins_paste.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/inspagob.hrc b/sd/source/ui/inc/inspagob.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/inspagob.hxx b/sd/source/ui/inc/inspagob.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/layeroptionsdlg.hrc b/sd/source/ui/inc/layeroptionsdlg.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/layeroptionsdlg.hxx b/sd/source/ui/inc/layeroptionsdlg.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/masterlayoutdlg.hrc b/sd/source/ui/inc/masterlayoutdlg.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/masterlayoutdlg.hxx b/sd/source/ui/inc/masterlayoutdlg.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/morphdlg.hrc b/sd/source/ui/inc/morphdlg.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/morphdlg.hxx b/sd/source/ui/inc/morphdlg.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/navigatr.hrc b/sd/source/ui/inc/navigatr.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/navigatr.hxx b/sd/source/ui/inc/navigatr.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/optdlg.hrc b/sd/source/ui/inc/optdlg.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/optdlg.hxx b/sd/source/ui/inc/optdlg.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/optsitem.hxx b/sd/source/ui/inc/optsitem.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/packgdlg.hrc b/sd/source/ui/inc/packgdlg.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/paragr.hrc b/sd/source/ui/inc/paragr.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/paragr.hxx b/sd/source/ui/inc/paragr.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/pgjump.hxx b/sd/source/ui/inc/pgjump.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/present.hrc b/sd/source/ui/inc/present.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/present.hxx b/sd/source/ui/inc/present.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/preview.hrc b/sd/source/ui/inc/preview.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/prltempl.hrc b/sd/source/ui/inc/prltempl.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/prltempl.hxx b/sd/source/ui/inc/prltempl.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/prntopts.hrc b/sd/source/ui/inc/prntopts.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/prntopts.hxx b/sd/source/ui/inc/prntopts.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/pubdlg.hrc b/sd/source/ui/inc/pubdlg.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/pubdlg.hxx b/sd/source/ui/inc/pubdlg.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/res_bmp.hrc b/sd/source/ui/inc/res_bmp.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/sdpopup.hxx b/sd/source/ui/inc/sdpopup.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/sdpreslt.hrc b/sd/source/ui/inc/sdpreslt.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/sdpreslt.hxx b/sd/source/ui/inc/sdpreslt.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/sdstring.hrc b/sd/source/ui/inc/sdstring.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/sdtreelb.hxx b/sd/source/ui/inc/sdtreelb.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/sdundogr.hxx b/sd/source/ui/inc/sdundogr.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/sdxfer.hxx b/sd/source/ui/inc/sdxfer.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/slideshow.hxx b/sd/source/ui/inc/slideshow.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/smarttag.hxx b/sd/source/ui/inc/smarttag.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/sprite.hxx b/sd/source/ui/inc/sprite.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/strings.hrc b/sd/source/ui/inc/strings.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/tabtempl.hrc b/sd/source/ui/inc/tabtempl.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/tabtempl.hxx b/sd/source/ui/inc/tabtempl.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/taskpane/ControlContainer.hxx b/sd/source/ui/inc/taskpane/ControlContainer.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/taskpane/ILayoutableWindow.hxx b/sd/source/ui/inc/taskpane/ILayoutableWindow.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/taskpane/ScrollPanel.hxx b/sd/source/ui/inc/taskpane/ScrollPanel.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/taskpane/SlideSorterCacheDisplay.hxx b/sd/source/ui/inc/taskpane/SlideSorterCacheDisplay.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/taskpane/SubToolPanel.hxx b/sd/source/ui/inc/taskpane/SubToolPanel.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/taskpane/TaskPaneControlFactory.hxx b/sd/source/ui/inc/taskpane/TaskPaneControlFactory.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/taskpane/TaskPaneTreeNode.hxx b/sd/source/ui/inc/taskpane/TaskPaneTreeNode.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/taskpane/TitleBar.hxx b/sd/source/ui/inc/taskpane/TitleBar.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/taskpane/TitledControl.hxx b/sd/source/ui/inc/taskpane/TitledControl.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/tbx_ww.hrc b/sd/source/ui/inc/tbx_ww.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/tbx_ww.hxx b/sd/source/ui/inc/tbx_ww.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/tmplctrl.hxx b/sd/source/ui/inc/tmplctrl.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/tools/AsynchronousCall.hxx b/sd/source/ui/inc/tools/AsynchronousCall.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/tools/AsynchronousTask.hxx b/sd/source/ui/inc/tools/AsynchronousTask.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/tools/ConfigurationAccess.hxx b/sd/source/ui/inc/tools/ConfigurationAccess.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/tools/IconCache.hxx b/sd/source/ui/inc/tools/IconCache.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/tools/IdleDetection.hxx b/sd/source/ui/inc/tools/IdleDetection.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/tools/PropertySet.hxx b/sd/source/ui/inc/tools/PropertySet.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/tools/SdGlobalResourceContainer.hxx b/sd/source/ui/inc/tools/SdGlobalResourceContainer.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/tools/SlotStateListener.hxx b/sd/source/ui/inc/tools/SlotStateListener.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/tools/TimerBasedTaskExecution.hxx b/sd/source/ui/inc/tools/TimerBasedTaskExecution.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/tpaction.hrc b/sd/source/ui/inc/tpaction.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/tpaction.hxx b/sd/source/ui/inc/tpaction.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/tpoption.hrc b/sd/source/ui/inc/tpoption.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/tpoption.hxx b/sd/source/ui/inc/tpoption.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/unchss.hxx b/sd/source/ui/inc/unchss.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/undoback.hxx b/sd/source/ui/inc/undoback.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/undoheaderfooter.hxx b/sd/source/ui/inc/undoheaderfooter.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/undolayer.hxx b/sd/source/ui/inc/undolayer.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/undopage.hxx b/sd/source/ui/inc/undopage.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/unmodpg.hxx b/sd/source/ui/inc/unmodpg.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/unmovss.hxx b/sd/source/ui/inc/unmovss.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/unoaprms.hxx b/sd/source/ui/inc/unoaprms.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/unokywds.hxx b/sd/source/ui/inc/unokywds.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/unomodel.hxx b/sd/source/ui/inc/unomodel.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/unoprnms.hxx b/sd/source/ui/inc/unoprnms.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/unosrch.hxx b/sd/source/ui/inc/unosrch.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/unprlout.hxx b/sd/source/ui/inc/unprlout.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/unslsel.hxx b/sd/source/ui/inc/unslsel.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/vectdlg.hrc b/sd/source/ui/inc/vectdlg.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/vectdlg.hxx b/sd/source/ui/inc/vectdlg.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/view/viewoverlaymanager.hxx b/sd/source/ui/inc/view/viewoverlaymanager.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/inc/zoomlist.hxx b/sd/source/ui/inc/zoomlist.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/presenter/CanvasUpdateRequester.cxx b/sd/source/ui/presenter/CanvasUpdateRequester.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/presenter/CanvasUpdateRequester.hxx b/sd/source/ui/presenter/CanvasUpdateRequester.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/presenter/PresenterCanvas.cxx b/sd/source/ui/presenter/PresenterCanvas.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/presenter/PresenterCanvas.hxx b/sd/source/ui/presenter/PresenterCanvas.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/presenter/PresenterCanvasFactory.cxx b/sd/source/ui/presenter/PresenterCanvasFactory.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/presenter/PresenterHelper.cxx b/sd/source/ui/presenter/PresenterHelper.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/presenter/PresenterHelper.hxx b/sd/source/ui/presenter/PresenterHelper.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/presenter/PresenterPreviewCache.cxx b/sd/source/ui/presenter/PresenterPreviewCache.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/presenter/PresenterPreviewCache.hxx b/sd/source/ui/presenter/PresenterPreviewCache.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/presenter/PresenterTextView.cxx b/sd/source/ui/presenter/PresenterTextView.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/presenter/PresenterTextView.hxx b/sd/source/ui/presenter/PresenterTextView.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/presenter/SlideRenderer.cxx b/sd/source/ui/presenter/SlideRenderer.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/presenter/SlideRenderer.hxx b/sd/source/ui/presenter/SlideRenderer.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/presenter/makefile.mk b/sd/source/ui/presenter/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/ui/slideshow/PaneHider.cxx b/sd/source/ui/slideshow/PaneHider.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slideshow/PaneHider.hxx b/sd/source/ui/slideshow/PaneHider.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slideshow/SlideShowRestarter.cxx b/sd/source/ui/slideshow/SlideShowRestarter.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slideshow/SlideShowRestarter.hxx b/sd/source/ui/slideshow/SlideShowRestarter.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slideshow/makefile.mk b/sd/source/ui/slideshow/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/ui/slideshow/showwin.cxx b/sd/source/ui/slideshow/showwin.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slideshow/showwindow.hxx b/sd/source/ui/slideshow/showwindow.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slideshow/slideshow.cxx b/sd/source/ui/slideshow/slideshow.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slideshow/slideshow.hrc b/sd/source/ui/slideshow/slideshow.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/slideshow/slideshow.src b/sd/source/ui/slideshow/slideshow.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/slideshow/slideshowimpl.cxx b/sd/source/ui/slideshow/slideshowimpl.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slideshow/slideshowimpl.hxx b/sd/source/ui/slideshow/slideshowimpl.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slideshow/slideshowviewimpl.cxx b/sd/source/ui/slideshow/slideshowviewimpl.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slideshow/slideshowviewimpl.hxx b/sd/source/ui/slideshow/slideshowviewimpl.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/cache/SlsBitmapCache.cxx b/sd/source/ui/slidesorter/cache/SlsBitmapCache.cxx index 48f52a9ee015..ddb50ea878e0 100644 --- a/sd/source/ui/slidesorter/cache/SlsBitmapCache.cxx +++ b/sd/source/ui/slidesorter/cache/SlsBitmapCache.cxx @@ -275,6 +275,21 @@ Bitmap BitmapCache::GetMarkedBitmap (const CacheKey& rKey) +void BitmapCache::ReleaseBitmap (const CacheKey& rKey) +{ + ::osl::MutexGuard aGuard (maMutex); + + CacheBitmapContainer::iterator aIterator (mpBitmapContainer->find(rKey)); + if (aIterator != mpBitmapContainer->end()) + { + UpdateCacheSize(aIterator->second, REMOVE); + mpBitmapContainer->erase(aIterator); + } +} + + + + bool BitmapCache::InvalidateBitmap (const CacheKey& rKey) { ::osl::MutexGuard aGuard (maMutex); diff --git a/sd/source/ui/slidesorter/cache/SlsBitmapCache.hxx b/sd/source/ui/slidesorter/cache/SlsBitmapCache.hxx index 7e6b3f858b8d..734c630d31ce 100644 --- a/sd/source/ui/slidesorter/cache/SlsBitmapCache.hxx +++ b/sd/source/ui/slidesorter/cache/SlsBitmapCache.hxx @@ -112,6 +112,11 @@ public: */ Bitmap GetMarkedBitmap (const CacheKey& rKey); + /** Release the reference to the preview bitmap that is associated with + the given key. + */ + void ReleaseBitmap (const CacheKey& rKey); + /** Mark the specified preview bitmap as not being up-to-date anymore. @return diff --git a/sd/source/ui/slidesorter/cache/SlsBitmapCompressor.cxx b/sd/source/ui/slidesorter/cache/SlsBitmapCompressor.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/cache/SlsBitmapCompressor.hxx b/sd/source/ui/slidesorter/cache/SlsBitmapCompressor.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/cache/SlsBitmapFactory.cxx b/sd/source/ui/slidesorter/cache/SlsBitmapFactory.cxx old mode 100644 new mode 100755 index c7479e1482d4..8abba77faf4f --- a/sd/source/ui/slidesorter/cache/SlsBitmapFactory.cxx +++ b/sd/source/ui/slidesorter/cache/SlsBitmapFactory.cxx @@ -24,8 +24,6 @@ * for a copy of the LGPLv3 License. * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_sd.hxx" #include "precompiled_sd.hxx" diff --git a/sd/source/ui/slidesorter/cache/SlsBitmapFactory.hxx b/sd/source/ui/slidesorter/cache/SlsBitmapFactory.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/cache/SlsCacheCompactor.cxx b/sd/source/ui/slidesorter/cache/SlsCacheCompactor.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/cache/SlsCacheCompactor.hxx b/sd/source/ui/slidesorter/cache/SlsCacheCompactor.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/cache/SlsCacheConfiguration.cxx b/sd/source/ui/slidesorter/cache/SlsCacheConfiguration.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/cache/SlsCacheConfiguration.hxx b/sd/source/ui/slidesorter/cache/SlsCacheConfiguration.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/cache/SlsGenericPageCache.cxx b/sd/source/ui/slidesorter/cache/SlsGenericPageCache.cxx index 0854a7786dfa..f7fb30a4c6ec 100644 --- a/sd/source/ui/slidesorter/cache/SlsGenericPageCache.cxx +++ b/sd/source/ui/slidesorter/cache/SlsGenericPageCache.cxx @@ -24,8 +24,6 @@ * for a copy of the LGPLv3 License. * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_sd.hxx" #include "precompiled_sd.hxx" @@ -263,6 +261,11 @@ bool GenericPageCache::InvalidatePreviewBitmap (const CacheKey aKey) return mpBitmapCache->InvalidateBitmap(mpCacheContext->GetPage(aKey)); else return false; +} + + + + void GenericPageCache::ReleasePreviewBitmap (const CacheKey aKey) { if (mpBitmapCache.get() != NULL) diff --git a/sd/source/ui/slidesorter/cache/SlsGenericPageCache.hxx b/sd/source/ui/slidesorter/cache/SlsGenericPageCache.hxx index 6d29fe3e5f6e..96636576f79a 100644 --- a/sd/source/ui/slidesorter/cache/SlsGenericPageCache.hxx +++ b/sd/source/ui/slidesorter/cache/SlsGenericPageCache.hxx @@ -111,9 +111,14 @@ public: const CacheKey aKey, const bool bMayBeUpToDate = true); + /** Tell the cache to replace the bitmap associated with the given + request data with a new one that reflects recent changes in the + content of the page object. @return When the key is kown then return . + */ bool InvalidatePreviewBitmap (const CacheKey aKey); + /** Call this method when a view-object-contact object is being deleted and does not need (a) its current bitmap in the cache and (b) a requested a new bitmap. diff --git a/sd/source/ui/slidesorter/cache/SlsPageCache.cxx b/sd/source/ui/slidesorter/cache/SlsPageCache.cxx index ace5eddcc543..e51630ec79ac 100644 --- a/sd/source/ui/slidesorter/cache/SlsPageCache.cxx +++ b/sd/source/ui/slidesorter/cache/SlsPageCache.cxx @@ -107,10 +107,22 @@ void PageCache::SetMarkedPreviewBitmap ( void PageCache::RequestPreviewBitmap (const CacheKey aKey) { return mpImplementation->RequestPreviewBitmap(aKey); +} + + + + +void PageCache::InvalidatePreviewBitmap ( const CacheKey aKey, const bool bRequestPreview) +{ if (mpImplementation->InvalidatePreviewBitmap(aKey) && bRequestPreview) RequestPreviewBitmap(aKey); +} + + + + void PageCache::ReleasePreviewBitmap (const CacheKey aKey) { mpImplementation->ReleasePreviewBitmap(aKey); diff --git a/sd/source/ui/slidesorter/cache/SlsPageCacheManager.cxx b/sd/source/ui/slidesorter/cache/SlsPageCacheManager.cxx old mode 100644 new mode 100755 index 37bb6aa10208..e3083ecb4aaf --- a/sd/source/ui/slidesorter/cache/SlsPageCacheManager.cxx +++ b/sd/source/ui/slidesorter/cache/SlsPageCacheManager.cxx @@ -430,7 +430,7 @@ void PageCacheManager::InvalidateAllCaches (void) void PageCacheManager::ReleasePreviewBitmap (const SdrPage* pPage) { PageCacheContainer::iterator iCache; - for (iCache=mpPageCaches->begin(); iCache!=mpPageCaches->end(); ++iCache) + for (iCache=mpPageCaches->begin(); iCache!=mpPageCaches->end(); ++iCache) iCache->second->ReleaseBitmap(pPage); } diff --git a/sd/source/ui/slidesorter/cache/SlsQueueProcessor.cxx b/sd/source/ui/slidesorter/cache/SlsQueueProcessor.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/cache/SlsQueueProcessor.hxx b/sd/source/ui/slidesorter/cache/SlsQueueProcessor.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/cache/SlsQueueProcessorThread.hxx b/sd/source/ui/slidesorter/cache/SlsQueueProcessorThread.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/cache/SlsRequestFactory.cxx b/sd/source/ui/slidesorter/cache/SlsRequestFactory.cxx old mode 100644 new mode 100755 index 8030558759f3..166b04661d99 --- a/sd/source/ui/slidesorter/cache/SlsRequestFactory.cxx +++ b/sd/source/ui/slidesorter/cache/SlsRequestFactory.cxx @@ -24,8 +24,6 @@ * for a copy of the LGPLv3 License. * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_sd.hxx" #include "precompiled_sd.hxx" diff --git a/sd/source/ui/slidesorter/cache/SlsRequestFactory.hxx b/sd/source/ui/slidesorter/cache/SlsRequestFactory.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/cache/SlsRequestPriorityClass.hxx b/sd/source/ui/slidesorter/cache/SlsRequestPriorityClass.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/cache/SlsRequestQueue.cxx b/sd/source/ui/slidesorter/cache/SlsRequestQueue.cxx old mode 100644 new mode 100755 index ccd590131343..11721e09ecb3 --- a/sd/source/ui/slidesorter/cache/SlsRequestQueue.cxx +++ b/sd/source/ui/slidesorter/cache/SlsRequestQueue.cxx @@ -24,8 +24,6 @@ * for a copy of the LGPLv3 License. * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_sd.hxx" #include "precompiled_sd.hxx" diff --git a/sd/source/ui/slidesorter/cache/SlsRequestQueue.hxx b/sd/source/ui/slidesorter/cache/SlsRequestQueue.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/cache/makefile.mk b/sd/source/ui/slidesorter/cache/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/controller/SlideSorterController.cxx b/sd/source/ui/slidesorter/controller/SlideSorterController.cxx index eeded8da0601..2750956b8876 100644 --- a/sd/source/ui/slidesorter/controller/SlideSorterController.cxx +++ b/sd/source/ui/slidesorter/controller/SlideSorterController.cxx @@ -204,12 +204,10 @@ SlideSorterController::~SlideSorterController (void) void SlideSorterController::Dispose (void) +{ mpInsertionIndicatorHandler->End(Animator::AM_Immediate); mpSelectionManager.reset(); mpAnimator->Dispose(); -SlideSorter& SlideSorterController::GetSlideSorter (void) const -{ - return mrSlideSorter; } diff --git a/sd/source/ui/slidesorter/controller/SlsAnimator.cxx b/sd/source/ui/slidesorter/controller/SlsAnimator.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/controller/SlsClipboard.cxx b/sd/source/ui/slidesorter/controller/SlsClipboard.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/controller/SlsCommand.hxx b/sd/source/ui/slidesorter/controller/SlsCommand.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/controller/SlsFocusManager.cxx b/sd/source/ui/slidesorter/controller/SlsFocusManager.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/controller/SlsHideSlideFunction.cxx b/sd/source/ui/slidesorter/controller/SlsHideSlideFunction.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/controller/SlsHideSlideFunction.hxx b/sd/source/ui/slidesorter/controller/SlsHideSlideFunction.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/controller/SlsListener.cxx b/sd/source/ui/slidesorter/controller/SlsListener.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/controller/SlsListener.hxx b/sd/source/ui/slidesorter/controller/SlsListener.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/controller/SlsPageObjectFactory.cxx b/sd/source/ui/slidesorter/controller/SlsPageObjectFactory.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/controller/SlsProperties.cxx b/sd/source/ui/slidesorter/controller/SlsProperties.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/controller/SlsScrollBarManager.cxx b/sd/source/ui/slidesorter/controller/SlsScrollBarManager.cxx index 50cc574801e4..c94dd6d550b0 100644 --- a/sd/source/ui/slidesorter/controller/SlsScrollBarManager.cxx +++ b/sd/source/ui/slidesorter/controller/SlsScrollBarManager.cxx @@ -215,25 +215,6 @@ void ScrollBarManager::PlaceFiller (const Rectangle& aArea) -void ScrollBarManager::AdaptWindowSize (const Rectangle& rArea) -{ - Size aPixelContentSize (mpContentWindow->LogicToPixel( - mrSlideSorter.GetView().GetLayouter().GetTotalBoundingBox().GetSize())); - int nHeightDifference = aPixelContentSize.Height() - rArea.GetHeight(); - ::Window* pParentWindow = mpContentWindow->GetParent(); - Size aNewWindowSize (pParentWindow->GetSizePixel()); - if (nHeightDifference != 0) - { - aNewWindowSize.Height() += nHeightDifference; - pParentWindow->SetPosSizePixel( - pParentWindow->GetPosPixel(), - aNewWindowSize); - } -} - - - - void ScrollBarManager::UpdateScrollBars (bool bResetThumbPosition, bool bUseScrolling) { Rectangle aModelArea (mrSlideSorter.GetView().GetModelArea()); diff --git a/sd/source/ui/slidesorter/controller/SlsSelectionCommand.cxx b/sd/source/ui/slidesorter/controller/SlsSelectionCommand.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/controller/SlsSelectionCommand.hxx b/sd/source/ui/slidesorter/controller/SlsSelectionCommand.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/controller/SlsSelectionManager.cxx b/sd/source/ui/slidesorter/controller/SlsSelectionManager.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/controller/SlsSlideFunction.cxx b/sd/source/ui/slidesorter/controller/SlsSlideFunction.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/controller/SlsTransferable.cxx b/sd/source/ui/slidesorter/controller/SlsTransferable.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/controller/makefile.mk b/sd/source/ui/slidesorter/controller/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/inc/cache/SlsCacheContext.hxx b/sd/source/ui/slidesorter/inc/cache/SlsCacheContext.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/inc/cache/SlsPageCacheManager.hxx b/sd/source/ui/slidesorter/inc/cache/SlsPageCacheManager.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/inc/controller/SlideSorterController.hxx b/sd/source/ui/slidesorter/inc/controller/SlideSorterController.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/inc/controller/SlsAnimator.hxx b/sd/source/ui/slidesorter/inc/controller/SlsAnimator.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/inc/controller/SlsClipboard.hxx b/sd/source/ui/slidesorter/inc/controller/SlsClipboard.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/inc/controller/SlsCurrentSlideManager.hxx b/sd/source/ui/slidesorter/inc/controller/SlsCurrentSlideManager.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/inc/controller/SlsFocusManager.hxx b/sd/source/ui/slidesorter/inc/controller/SlsFocusManager.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/inc/controller/SlsPageObjectFactory.hxx b/sd/source/ui/slidesorter/inc/controller/SlsPageObjectFactory.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/inc/controller/SlsProperties.hxx b/sd/source/ui/slidesorter/inc/controller/SlsProperties.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/inc/controller/SlsScrollBarManager.hxx b/sd/source/ui/slidesorter/inc/controller/SlsScrollBarManager.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/inc/controller/SlsSelectionManager.hxx b/sd/source/ui/slidesorter/inc/controller/SlsSelectionManager.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/inc/controller/SlsSlideFunction.hxx b/sd/source/ui/slidesorter/inc/controller/SlsSlideFunction.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/inc/model/SlsEnumeration.hxx b/sd/source/ui/slidesorter/inc/model/SlsEnumeration.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/inc/model/SlsPageDescriptor.hxx b/sd/source/ui/slidesorter/inc/model/SlsPageDescriptor.hxx index 705a438ba13a..276f1a7c10a7 100644 --- a/sd/source/ui/slidesorter/inc/model/SlsPageDescriptor.hxx +++ b/sd/source/ui/slidesorter/inc/model/SlsPageDescriptor.hxx @@ -90,7 +90,14 @@ public: */ css::uno::Reference GetXDrawPage (void) const; + /** Returns the index of the page as it is displayed in the view as page + number. The value may differ from the index returned by the + XDrawPage when there are hidden slides and the XIndexAccess used to + access the model filters them out. + */ + sal_Int32 GetPageIndex (void) const; void SetPageIndex (const sal_Int32 nIndex); + bool UpdateMasterPage (void); enum State { ST_Visible, ST_Selected, ST_WasSelected, diff --git a/sd/source/ui/slidesorter/inc/model/SlsPageEnumeration.hxx b/sd/source/ui/slidesorter/inc/model/SlsPageEnumeration.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/inc/model/SlsPageEnumerationProvider.hxx b/sd/source/ui/slidesorter/inc/model/SlsPageEnumerationProvider.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/inc/model/SlsSharedPageDescriptor.hxx b/sd/source/ui/slidesorter/inc/model/SlsSharedPageDescriptor.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/inc/view/SlsFontProvider.hxx b/sd/source/ui/slidesorter/inc/view/SlsFontProvider.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/inc/view/SlsPageObject.hxx b/sd/source/ui/slidesorter/inc/view/SlsPageObject.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/inc/view/SlsPageObjectViewContact.hxx b/sd/source/ui/slidesorter/inc/view/SlsPageObjectViewContact.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/inc/view/SlsPageObjectViewObjectContact.hxx b/sd/source/ui/slidesorter/inc/view/SlsPageObjectViewObjectContact.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/makefile.mk b/sd/source/ui/slidesorter/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/model/SlsPageDescriptor.cxx b/sd/source/ui/slidesorter/model/SlsPageDescriptor.cxx index 21211fd4d376..24d744e459d6 100644 --- a/sd/source/ui/slidesorter/model/SlsPageDescriptor.cxx +++ b/sd/source/ui/slidesorter/model/SlsPageDescriptor.cxx @@ -93,6 +93,14 @@ Reference PageDescriptor::GetXDrawPage (void) const +sal_Int32 PageDescriptor::GetPageIndex (void) const +{ + return mnIndex; +} + + + + void PageDescriptor::SetPageIndex (const sal_Int32 nNewIndex) { mnIndex = nNewIndex; diff --git a/sd/source/ui/slidesorter/model/SlsPageEnumeration.cxx b/sd/source/ui/slidesorter/model/SlsPageEnumeration.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/model/SlsPageEnumerationProvider.cxx b/sd/source/ui/slidesorter/model/SlsPageEnumerationProvider.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/model/SlsVisualState.cxx b/sd/source/ui/slidesorter/model/SlsVisualState.cxx index 9714be3feef0..3dee5e914ab9 100644 --- a/sd/source/ui/slidesorter/model/SlsVisualState.cxx +++ b/sd/source/ui/slidesorter/model/SlsVisualState.cxx @@ -25,6 +25,8 @@ * ************************************************************************/ +#include "precompiled_sd.hxx" + #include "model/SlsVisualState.hxx" #include "model/SlsPageDescriptor.hxx" #include "controller/SlsAnimator.hxx" diff --git a/sd/source/ui/slidesorter/model/makefile.mk b/sd/source/ui/slidesorter/model/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/shell/SlideSorter.cxx b/sd/source/ui/slidesorter/shell/SlideSorter.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/shell/SlideSorterChildWindow.cxx b/sd/source/ui/slidesorter/shell/SlideSorterChildWindow.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/shell/SlideSorterChildWindow.src b/sd/source/ui/slidesorter/shell/SlideSorterChildWindow.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/shell/SlideSorterService.cxx b/sd/source/ui/slidesorter/shell/SlideSorterService.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/shell/SlideSorterService.hxx b/sd/source/ui/slidesorter/shell/SlideSorterService.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/shell/SlideSorterViewShell.cxx b/sd/source/ui/slidesorter/shell/SlideSorterViewShell.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/shell/SlsDebugDialog.cxx b/sd/source/ui/slidesorter/shell/SlsDebugDialog.cxx index d34e24de5a34..185750ea1c94 100644 --- a/sd/source/ui/slidesorter/shell/SlsDebugDialog.cxx +++ b/sd/source/ui/slidesorter/shell/SlsDebugDialog.cxx @@ -25,6 +25,8 @@ * ************************************************************************/ +#include "precompiled_sd.hxx" + #include "SlsDebugDialog.hxx" #include "view/SlideSorterView.hxx" #include "view/SlsTheme.hxx" diff --git a/sd/source/ui/slidesorter/shell/makefile.mk b/sd/source/ui/slidesorter/shell/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/view/SlsFontProvider.cxx b/sd/source/ui/slidesorter/view/SlsFontProvider.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/view/SlsLayouter.cxx b/sd/source/ui/slidesorter/view/SlsLayouter.cxx index 25ed8d612ebc..ee81dbc45202 100644 --- a/sd/source/ui/slidesorter/view/SlsLayouter.cxx +++ b/sd/source/ui/slidesorter/view/SlsLayouter.cxx @@ -334,6 +334,11 @@ Layouter::Layouter ( Layouter::~Layouter (void) { +} + + + + ::boost::shared_ptr Layouter::GetPageObjectLayouter (void) const { return mpImplementation->mpPageObjectLayouter; @@ -361,23 +366,6 @@ void Layouter::SetBorders ( -void Layouter::SetGaps ( - sal_Int32 nHorizontalGap, - sal_Int32 nVerticalGap) -{ - const sal_Int32 nFocusIndicatorWidth ( - mpImplementation->mpTheme->GetIntegerValue(Theme::Integer_FocusIndicatorWidth)); - - if (nHorizontalGap >= 0) - mpImplementation->mnHorizontalGap = nHorizontalGap - 2*nFocusIndicatorWidth; - if (nVerticalGap >= 0) - mpImplementation->mnVerticalGap = nVerticalGap - 2*nFocusIndicatorWidth; -} - - - - - void Layouter::SetColumnCount ( sal_Int32 nMinimalColumnCount, sal_Int32 nMaximalColumnCount) @@ -470,14 +458,6 @@ sal_Int32 Layouter::GetIndex (const sal_Int32 nRow, const sal_Int32 nColumn) con -bool Layouter::IsColumnCountFixed (void) const -{ - return mpImplementation->mnMinimalColumnCount == mpImplementation->mnMaximalColumnCount; -} - - - - Size Layouter::GetPageObjectSize (void) const { return mpImplementation->maPageObjectSize; diff --git a/sd/source/ui/slidesorter/view/SlsPageObject.cxx b/sd/source/ui/slidesorter/view/SlsPageObject.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/view/SlsTheme.cxx b/sd/source/ui/slidesorter/view/SlsTheme.cxx index 6317bd087211..fb1c34a9103d 100644 --- a/sd/source/ui/slidesorter/view/SlsTheme.cxx +++ b/sd/source/ui/slidesorter/view/SlsTheme.cxx @@ -25,6 +25,8 @@ * ************************************************************************/ +#include "precompiled_sd.hxx" + #include "view/SlsTheme.hxx" #include "SlsResource.hxx" #include "controller/SlsProperties.hxx" diff --git a/sd/source/ui/slidesorter/view/SlsToolTip.cxx b/sd/source/ui/slidesorter/view/SlsToolTip.cxx index ab5bfeba3674..211760ef2002 100644 --- a/sd/source/ui/slidesorter/view/SlsToolTip.cxx +++ b/sd/source/ui/slidesorter/view/SlsToolTip.cxx @@ -25,6 +25,8 @@ * ************************************************************************/ +#include "precompiled_sd.hxx" + #include "view/SlsToolTip.hxx" #include "view/SlideSorterView.hxx" #include "view/SlsLayouter.hxx" diff --git a/sd/source/ui/slidesorter/view/SlsViewCacheContext.cxx b/sd/source/ui/slidesorter/view/SlsViewCacheContext.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/view/SlsViewCacheContext.hxx b/sd/source/ui/slidesorter/view/SlsViewCacheContext.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/slidesorter/view/makefile.mk b/sd/source/ui/slidesorter/view/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/ui/table/TableDesignPane.cxx b/sd/source/ui/table/TableDesignPane.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/table/TableDesignPane.hrc b/sd/source/ui/table/TableDesignPane.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/table/TableDesignPane.hxx b/sd/source/ui/table/TableDesignPane.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/table/TableDesignPane.src b/sd/source/ui/table/TableDesignPane.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/table/makefile.mk b/sd/source/ui/table/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/ui/table/tablefunction.cxx b/sd/source/ui/table/tablefunction.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/table/tableobjectbar.cxx b/sd/source/ui/table/tableobjectbar.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/table/tableobjectbar.hxx b/sd/source/ui/table/tableobjectbar.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/ConstrainedIterator.cxx b/sd/source/ui/toolpanel/ConstrainedIterator.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/ConstrainedIterator.hxx b/sd/source/ui/toolpanel/ConstrainedIterator.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/ControlContainer.cxx b/sd/source/ui/toolpanel/ControlContainer.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/ControlContainerDescriptor.hxx b/sd/source/ui/toolpanel/ControlContainerDescriptor.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/ControlList.hxx b/sd/source/ui/toolpanel/ControlList.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/LayoutMenu.cxx b/sd/source/ui/toolpanel/LayoutMenu.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/LayoutMenu.hxx b/sd/source/ui/toolpanel/LayoutMenu.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/ScrollPanel.cxx b/sd/source/ui/toolpanel/ScrollPanel.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/SlideSorterCacheDisplay.cxx b/sd/source/ui/toolpanel/SlideSorterCacheDisplay.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/SubToolPanel.cxx b/sd/source/ui/toolpanel/SubToolPanel.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/TaskPaneControlFactory.cxx b/sd/source/ui/toolpanel/TaskPaneControlFactory.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/TaskPaneFocusManager.cxx b/sd/source/ui/toolpanel/TaskPaneFocusManager.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/TaskPaneFocusManager.hxx b/sd/source/ui/toolpanel/TaskPaneFocusManager.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/TaskPaneShellManager.cxx b/sd/source/ui/toolpanel/TaskPaneShellManager.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/TaskPaneShellManager.hxx b/sd/source/ui/toolpanel/TaskPaneShellManager.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/TaskPaneTreeNode.cxx b/sd/source/ui/toolpanel/TaskPaneTreeNode.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/TestMenu.cxx b/sd/source/ui/toolpanel/TestMenu.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/TestMenu.hxx b/sd/source/ui/toolpanel/TestMenu.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/TestPanel.cxx b/sd/source/ui/toolpanel/TestPanel.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/TestPanel.hxx b/sd/source/ui/toolpanel/TestPanel.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/TitleBar.cxx b/sd/source/ui/toolpanel/TitleBar.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/TitledControl.cxx b/sd/source/ui/toolpanel/TitledControl.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/ToolPanel.cxx b/sd/source/ui/toolpanel/ToolPanel.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/ToolPanelDescriptor.hxx b/sd/source/ui/toolpanel/ToolPanelDescriptor.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/ToolPanelViewShell.cxx b/sd/source/ui/toolpanel/ToolPanelViewShell.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/AllMasterPagesSelector.cxx b/sd/source/ui/toolpanel/controls/AllMasterPagesSelector.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/AllMasterPagesSelector.hxx b/sd/source/ui/toolpanel/controls/AllMasterPagesSelector.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/AnimationSchemesPanel.cxx b/sd/source/ui/toolpanel/controls/AnimationSchemesPanel.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/AnimationSchemesPanel.hxx b/sd/source/ui/toolpanel/controls/AnimationSchemesPanel.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/CurrentMasterPagesSelector.cxx b/sd/source/ui/toolpanel/controls/CurrentMasterPagesSelector.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/CurrentMasterPagesSelector.hxx b/sd/source/ui/toolpanel/controls/CurrentMasterPagesSelector.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/CustomAnimationPanel.cxx b/sd/source/ui/toolpanel/controls/CustomAnimationPanel.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/CustomAnimationPanel.hxx b/sd/source/ui/toolpanel/controls/CustomAnimationPanel.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/DocumentHelper.cxx b/sd/source/ui/toolpanel/controls/DocumentHelper.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/DocumentHelper.hxx b/sd/source/ui/toolpanel/controls/DocumentHelper.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/MasterPageContainer.cxx b/sd/source/ui/toolpanel/controls/MasterPageContainer.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/MasterPageContainer.hxx b/sd/source/ui/toolpanel/controls/MasterPageContainer.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/MasterPageContainerFiller.cxx b/sd/source/ui/toolpanel/controls/MasterPageContainerFiller.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/MasterPageContainerFiller.hxx b/sd/source/ui/toolpanel/controls/MasterPageContainerFiller.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/MasterPageContainerProviders.cxx b/sd/source/ui/toolpanel/controls/MasterPageContainerProviders.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/MasterPageContainerProviders.hxx b/sd/source/ui/toolpanel/controls/MasterPageContainerProviders.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/MasterPageContainerQueue.cxx b/sd/source/ui/toolpanel/controls/MasterPageContainerQueue.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/MasterPageContainerQueue.hxx b/sd/source/ui/toolpanel/controls/MasterPageContainerQueue.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/MasterPageDescriptor.cxx b/sd/source/ui/toolpanel/controls/MasterPageDescriptor.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/MasterPageDescriptor.hxx b/sd/source/ui/toolpanel/controls/MasterPageDescriptor.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/MasterPageObserver.cxx b/sd/source/ui/toolpanel/controls/MasterPageObserver.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/MasterPagesPanel.cxx b/sd/source/ui/toolpanel/controls/MasterPagesPanel.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/MasterPagesPanel.hxx b/sd/source/ui/toolpanel/controls/MasterPagesPanel.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/MasterPagesSelector.cxx b/sd/source/ui/toolpanel/controls/MasterPagesSelector.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/MasterPagesSelector.hxx b/sd/source/ui/toolpanel/controls/MasterPagesSelector.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/PreviewValueSet.cxx b/sd/source/ui/toolpanel/controls/PreviewValueSet.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/PreviewValueSet.hxx b/sd/source/ui/toolpanel/controls/PreviewValueSet.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/RecentMasterPagesSelector.cxx b/sd/source/ui/toolpanel/controls/RecentMasterPagesSelector.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/RecentMasterPagesSelector.hxx b/sd/source/ui/toolpanel/controls/RecentMasterPagesSelector.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/RecentlyUsedMasterPages.cxx b/sd/source/ui/toolpanel/controls/RecentlyUsedMasterPages.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/RecentlyUsedMasterPages.hxx b/sd/source/ui/toolpanel/controls/RecentlyUsedMasterPages.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/SlideTransitionPanel.cxx b/sd/source/ui/toolpanel/controls/SlideTransitionPanel.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/SlideTransitionPanel.hxx b/sd/source/ui/toolpanel/controls/SlideTransitionPanel.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/TableDesignPanel.cxx b/sd/source/ui/toolpanel/controls/TableDesignPanel.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/TableDesignPanel.hxx b/sd/source/ui/toolpanel/controls/TableDesignPanel.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/controls/makefile.mk b/sd/source/ui/toolpanel/controls/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/ui/toolpanel/makefile.mk b/sd/source/ui/toolpanel/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/ui/tools/AsynchronousCall.cxx b/sd/source/ui/tools/AsynchronousCall.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/tools/ConfigurationAccess.cxx b/sd/source/ui/tools/ConfigurationAccess.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/tools/EventMultiplexer.cxx b/sd/source/ui/tools/EventMultiplexer.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/tools/IconCache.cxx b/sd/source/ui/tools/IconCache.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/tools/IdleDetection.cxx b/sd/source/ui/tools/IdleDetection.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/tools/PreviewRenderer.cxx b/sd/source/ui/tools/PreviewRenderer.cxx index 4b53dd8e1f1d..3b6e8339c22d 100644 --- a/sd/source/ui/tools/PreviewRenderer.cxx +++ b/sd/source/ui/tools/PreviewRenderer.cxx @@ -42,6 +42,7 @@ #include #include #include +#include #include #include diff --git a/sd/source/ui/tools/PropertySet.cxx b/sd/source/ui/tools/PropertySet.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/tools/SdGlobalResourceContainer.cxx b/sd/source/ui/tools/SdGlobalResourceContainer.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/tools/SlotStateListener.cxx b/sd/source/ui/tools/SlotStateListener.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/tools/TimerBasedTaskExecution.cxx b/sd/source/ui/tools/TimerBasedTaskExecution.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/tools/makefile.mk b/sd/source/ui/tools/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/DrawController.cxx b/sd/source/ui/unoidl/DrawController.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/SdUnoDrawView.cxx b/sd/source/ui/unoidl/SdUnoDrawView.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/SdUnoOutlineView.cxx b/sd/source/ui/unoidl/SdUnoOutlineView.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/SdUnoSlideView.cxx b/sd/source/ui/unoidl/SdUnoSlideView.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/UnoDocumentSettings.cxx b/sd/source/ui/unoidl/UnoDocumentSettings.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/UnoDocumentSettings.hxx b/sd/source/ui/unoidl/UnoDocumentSettings.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/detreg.cxx b/sd/source/ui/unoidl/detreg.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/facreg.cxx b/sd/source/ui/unoidl/facreg.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/makefile.mk b/sd/source/ui/unoidl/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/randomnode.cxx b/sd/source/ui/unoidl/randomnode.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/sddetect.cxx b/sd/source/ui/unoidl/sddetect.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/sddetect.hxx b/sd/source/ui/unoidl/sddetect.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/unocpres.cxx b/sd/source/ui/unoidl/unocpres.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/unocpres.hxx b/sd/source/ui/unoidl/unocpres.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/unodoc.cxx b/sd/source/ui/unoidl/unodoc.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/unohelp.hxx b/sd/source/ui/unoidl/unohelp.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/unokywds.cxx b/sd/source/ui/unoidl/unokywds.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/unolayer.cxx b/sd/source/ui/unoidl/unolayer.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/unolayer.hxx b/sd/source/ui/unoidl/unolayer.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/unomodel.cxx b/sd/source/ui/unoidl/unomodel.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/unomodule.cxx b/sd/source/ui/unoidl/unomodule.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/unomodule.hxx b/sd/source/ui/unoidl/unomodule.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/unoobj.cxx b/sd/source/ui/unoidl/unoobj.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/unoobj.hxx b/sd/source/ui/unoidl/unoobj.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/unopage.cxx b/sd/source/ui/unoidl/unopage.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/unopage.hxx b/sd/source/ui/unoidl/unopage.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/unopback.cxx b/sd/source/ui/unoidl/unopback.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/unopback.hxx b/sd/source/ui/unoidl/unopback.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/unopool.cxx b/sd/source/ui/unoidl/unopool.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/unosrch.cxx b/sd/source/ui/unoidl/unosrch.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/unowcntr.cxx b/sd/source/ui/unoidl/unowcntr.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/unoidl/unowcntr.hxx b/sd/source/ui/unoidl/unowcntr.hxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/DocumentRenderer.cxx b/sd/source/ui/view/DocumentRenderer.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/DocumentRenderer.hrc b/sd/source/ui/view/DocumentRenderer.hrc old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/DocumentRenderer.src b/sd/source/ui/view/DocumentRenderer.src old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/FormShellManager.cxx b/sd/source/ui/view/FormShellManager.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/GraphicObjectBar.cxx b/sd/source/ui/view/GraphicObjectBar.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/GraphicViewShellBase.cxx b/sd/source/ui/view/GraphicViewShellBase.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/ImpressViewShellBase.cxx b/sd/source/ui/view/ImpressViewShellBase.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/MediaObjectBar.cxx b/sd/source/ui/view/MediaObjectBar.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/OutlineViewShellBase.cxx b/sd/source/ui/view/OutlineViewShellBase.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/Outliner.cxx b/sd/source/ui/view/Outliner.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/OutlinerIterator.cxx b/sd/source/ui/view/OutlinerIterator.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/PresentationViewShellBase.cxx b/sd/source/ui/view/PresentationViewShellBase.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/SlideSorterViewShellBase.cxx b/sd/source/ui/view/SlideSorterViewShellBase.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/ToolBarManager.cxx b/sd/source/ui/view/ToolBarManager.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/UpdateLockManager.cxx b/sd/source/ui/view/UpdateLockManager.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/ViewShellHint.cxx b/sd/source/ui/view/ViewShellHint.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/ViewShellImplementation.cxx b/sd/source/ui/view/ViewShellImplementation.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/ViewTabBar.cxx b/sd/source/ui/view/ViewTabBar.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/WindowUpdater.cxx b/sd/source/ui/view/WindowUpdater.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/bmcache.cxx b/sd/source/ui/view/bmcache.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/clview.cxx b/sd/source/ui/view/clview.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/drawview.cxx b/sd/source/ui/view/drawview.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/drbezob.cxx b/sd/source/ui/view/drbezob.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/drtxtob.cxx b/sd/source/ui/view/drtxtob.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/drtxtob1.cxx b/sd/source/ui/view/drtxtob1.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/drviews1.cxx b/sd/source/ui/view/drviews1.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/drviews2.cxx b/sd/source/ui/view/drviews2.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/drviews3.cxx b/sd/source/ui/view/drviews3.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/drviews4.cxx b/sd/source/ui/view/drviews4.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/drviews5.cxx b/sd/source/ui/view/drviews5.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/drviews6.cxx b/sd/source/ui/view/drviews6.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/drviews7.cxx b/sd/source/ui/view/drviews7.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/drviews8.cxx b/sd/source/ui/view/drviews8.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/drviews9.cxx b/sd/source/ui/view/drviews9.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/drviewsa.cxx b/sd/source/ui/view/drviewsa.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/drviewsb.cxx b/sd/source/ui/view/drviewsb.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/drviewsc.cxx b/sd/source/ui/view/drviewsc.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/drviewsd.cxx b/sd/source/ui/view/drviewsd.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/drviewse.cxx b/sd/source/ui/view/drviewse.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/drviewsf.cxx b/sd/source/ui/view/drviewsf.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/drviewsg.cxx b/sd/source/ui/view/drviewsg.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/drviewsh.cxx b/sd/source/ui/view/drviewsh.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/drviewsi.cxx b/sd/source/ui/view/drviewsi.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/drviewsj.cxx b/sd/source/ui/view/drviewsj.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/drvwshrg.cxx b/sd/source/ui/view/drvwshrg.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/frmview.cxx b/sd/source/ui/view/frmview.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/grviewsh.cxx b/sd/source/ui/view/grviewsh.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/outlnvs2.cxx b/sd/source/ui/view/outlnvs2.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/outlnvsh.cxx b/sd/source/ui/view/outlnvsh.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/outlview.cxx b/sd/source/ui/view/outlview.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/presvish.cxx b/sd/source/ui/view/presvish.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/sdruler.cxx b/sd/source/ui/view/sdruler.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/sdview.cxx b/sd/source/ui/view/sdview.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/sdview2.cxx b/sd/source/ui/view/sdview2.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/sdview3.cxx b/sd/source/ui/view/sdview3.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/sdview4.cxx b/sd/source/ui/view/sdview4.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/sdview5.cxx b/sd/source/ui/view/sdview5.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/sdwindow.cxx b/sd/source/ui/view/sdwindow.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/tabcontr.cxx b/sd/source/ui/view/tabcontr.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/unmodpg.cxx b/sd/source/ui/view/unmodpg.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/viewoverlaymanager.cxx b/sd/source/ui/view/viewoverlaymanager.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/viewshe2.cxx b/sd/source/ui/view/viewshe2.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/viewshel.cxx b/sd/source/ui/view/viewshel.cxx old mode 100644 new mode 100755 diff --git a/sd/source/ui/view/zoomlist.cxx b/sd/source/ui/view/zoomlist.cxx old mode 100644 new mode 100755 diff --git a/sd/source/unotypes/makefile.mk b/sd/source/unotypes/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/menubar/menubar.xml b/sd/uiconfig/sdraw/menubar/menubar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/statusbar/statusbar.xml b/sd/uiconfig/sdraw/statusbar/statusbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/3dobjectsbar.xml b/sd/uiconfig/sdraw/toolbar/3dobjectsbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/alignmentbar.xml b/sd/uiconfig/sdraw/toolbar/alignmentbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/arrowsbar.xml b/sd/uiconfig/sdraw/toolbar/arrowsbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/arrowshapes.xml b/sd/uiconfig/sdraw/toolbar/arrowshapes.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/basicshapes.xml b/sd/uiconfig/sdraw/toolbar/basicshapes.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/bezierobjectbar.xml b/sd/uiconfig/sdraw/toolbar/bezierobjectbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/calloutshapes.xml b/sd/uiconfig/sdraw/toolbar/calloutshapes.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/choosemodebar.xml b/sd/uiconfig/sdraw/toolbar/choosemodebar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/colorbar.xml b/sd/uiconfig/sdraw/toolbar/colorbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/commentsbar.xml b/sd/uiconfig/sdraw/toolbar/commentsbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/connectorsbar.xml b/sd/uiconfig/sdraw/toolbar/connectorsbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/drawingobjectbar.xml b/sd/uiconfig/sdraw/toolbar/drawingobjectbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/ellipsesbar.xml b/sd/uiconfig/sdraw/toolbar/ellipsesbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/extrusionobjectbar.xml b/sd/uiconfig/sdraw/toolbar/extrusionobjectbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/flowchartshapes.xml b/sd/uiconfig/sdraw/toolbar/flowchartshapes.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/fontworkobjectbar.xml b/sd/uiconfig/sdraw/toolbar/fontworkobjectbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/fontworkshapetype.xml b/sd/uiconfig/sdraw/toolbar/fontworkshapetype.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/formcontrols.xml b/sd/uiconfig/sdraw/toolbar/formcontrols.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/formdesign.xml b/sd/uiconfig/sdraw/toolbar/formdesign.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/formsfilterbar.xml b/sd/uiconfig/sdraw/toolbar/formsfilterbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/formsnavigationbar.xml b/sd/uiconfig/sdraw/toolbar/formsnavigationbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/formtextobjectbar.xml b/sd/uiconfig/sdraw/toolbar/formtextobjectbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/fullscreenbar.xml b/sd/uiconfig/sdraw/toolbar/fullscreenbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/gluepointsobjectbar.xml b/sd/uiconfig/sdraw/toolbar/gluepointsobjectbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/graffilterbar.xml b/sd/uiconfig/sdraw/toolbar/graffilterbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/graphicobjectbar.xml b/sd/uiconfig/sdraw/toolbar/graphicobjectbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/insertbar.xml b/sd/uiconfig/sdraw/toolbar/insertbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/linesbar.xml b/sd/uiconfig/sdraw/toolbar/linesbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/masterviewtoolbar.xml b/sd/uiconfig/sdraw/toolbar/masterviewtoolbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/mediaobjectbar.xml b/sd/uiconfig/sdraw/toolbar/mediaobjectbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/moreformcontrols.xml b/sd/uiconfig/sdraw/toolbar/moreformcontrols.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/optimizetablebar.xml b/sd/uiconfig/sdraw/toolbar/optimizetablebar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/optionsbar.xml b/sd/uiconfig/sdraw/toolbar/optionsbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/positionbar.xml b/sd/uiconfig/sdraw/toolbar/positionbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/rectanglesbar.xml b/sd/uiconfig/sdraw/toolbar/rectanglesbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/standardbar.xml b/sd/uiconfig/sdraw/toolbar/standardbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/starshapes.xml b/sd/uiconfig/sdraw/toolbar/starshapes.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/symbolshapes.xml b/sd/uiconfig/sdraw/toolbar/symbolshapes.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/tableobjectbar.xml b/sd/uiconfig/sdraw/toolbar/tableobjectbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/textbar.xml b/sd/uiconfig/sdraw/toolbar/textbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/textobjectbar.xml b/sd/uiconfig/sdraw/toolbar/textobjectbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/toolbar.xml b/sd/uiconfig/sdraw/toolbar/toolbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/viewerbar.xml b/sd/uiconfig/sdraw/toolbar/viewerbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/sdraw/toolbar/zoombar.xml b/sd/uiconfig/sdraw/toolbar/zoombar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/menubar/menubar.xml b/sd/uiconfig/simpress/menubar/menubar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/statusbar/statusbar.xml b/sd/uiconfig/simpress/statusbar/statusbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/3dobjectsbar.xml b/sd/uiconfig/simpress/toolbar/3dobjectsbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/alignmentbar.xml b/sd/uiconfig/simpress/toolbar/alignmentbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/arrowsbar.xml b/sd/uiconfig/simpress/toolbar/arrowsbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/arrowshapes.xml b/sd/uiconfig/simpress/toolbar/arrowshapes.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/basicshapes.xml b/sd/uiconfig/simpress/toolbar/basicshapes.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/bezierobjectbar.xml b/sd/uiconfig/simpress/toolbar/bezierobjectbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/calloutshapes.xml b/sd/uiconfig/simpress/toolbar/calloutshapes.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/choosemodebar.xml b/sd/uiconfig/simpress/toolbar/choosemodebar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/colorbar.xml b/sd/uiconfig/simpress/toolbar/colorbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/commentsbar.xml b/sd/uiconfig/simpress/toolbar/commentsbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/commontaskbar.xml b/sd/uiconfig/simpress/toolbar/commontaskbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/connectorsbar.xml b/sd/uiconfig/simpress/toolbar/connectorsbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/drawingobjectbar.xml b/sd/uiconfig/simpress/toolbar/drawingobjectbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/ellipsesbar.xml b/sd/uiconfig/simpress/toolbar/ellipsesbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/extrusionobjectbar.xml b/sd/uiconfig/simpress/toolbar/extrusionobjectbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/flowchartshapes.xml b/sd/uiconfig/simpress/toolbar/flowchartshapes.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/fontworkobjectbar.xml b/sd/uiconfig/simpress/toolbar/fontworkobjectbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/fontworkshapetype.xml b/sd/uiconfig/simpress/toolbar/fontworkshapetype.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/formcontrols.xml b/sd/uiconfig/simpress/toolbar/formcontrols.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/formdesign.xml b/sd/uiconfig/simpress/toolbar/formdesign.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/formsfilterbar.xml b/sd/uiconfig/simpress/toolbar/formsfilterbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/formsnavigationbar.xml b/sd/uiconfig/simpress/toolbar/formsnavigationbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/formtextobjectbar.xml b/sd/uiconfig/simpress/toolbar/formtextobjectbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/fullscreenbar.xml b/sd/uiconfig/simpress/toolbar/fullscreenbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/gluepointsobjectbar.xml b/sd/uiconfig/simpress/toolbar/gluepointsobjectbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/graffilterbar.xml b/sd/uiconfig/simpress/toolbar/graffilterbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/graphicobjectbar.xml b/sd/uiconfig/simpress/toolbar/graphicobjectbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/insertbar.xml b/sd/uiconfig/simpress/toolbar/insertbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/linesbar.xml b/sd/uiconfig/simpress/toolbar/linesbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/masterviewtoolbar.xml b/sd/uiconfig/simpress/toolbar/masterviewtoolbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/mediaobjectbar.xml b/sd/uiconfig/simpress/toolbar/mediaobjectbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/moreformcontrols.xml b/sd/uiconfig/simpress/toolbar/moreformcontrols.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/optimizetablebar.xml b/sd/uiconfig/simpress/toolbar/optimizetablebar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/optionsbar.xml b/sd/uiconfig/simpress/toolbar/optionsbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/outlinetoolbar.xml b/sd/uiconfig/simpress/toolbar/outlinetoolbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/positionbar.xml b/sd/uiconfig/simpress/toolbar/positionbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/rectanglesbar.xml b/sd/uiconfig/simpress/toolbar/rectanglesbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/slideviewobjectbar.xml b/sd/uiconfig/simpress/toolbar/slideviewobjectbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/slideviewtoolbar.xml b/sd/uiconfig/simpress/toolbar/slideviewtoolbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/standardbar.xml b/sd/uiconfig/simpress/toolbar/standardbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/starshapes.xml b/sd/uiconfig/simpress/toolbar/starshapes.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/symbolshapes.xml b/sd/uiconfig/simpress/toolbar/symbolshapes.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/tableobjectbar.xml b/sd/uiconfig/simpress/toolbar/tableobjectbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/textbar.xml b/sd/uiconfig/simpress/toolbar/textbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/textobjectbar.xml b/sd/uiconfig/simpress/toolbar/textobjectbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/toolbar.xml b/sd/uiconfig/simpress/toolbar/toolbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/viewerbar.xml b/sd/uiconfig/simpress/toolbar/viewerbar.xml old mode 100644 new mode 100755 diff --git a/sd/uiconfig/simpress/toolbar/zoombar.xml b/sd/uiconfig/simpress/toolbar/zoombar.xml old mode 100644 new mode 100755 diff --git a/sd/util/exports.dxp b/sd/util/exports.dxp old mode 100644 new mode 100755 diff --git a/sd/util/hidother.hrc b/sd/util/hidother.hrc old mode 100644 new mode 100755 diff --git a/sd/util/hidother.src b/sd/util/hidother.src old mode 100644 new mode 100755 diff --git a/sd/util/makefile.mk b/sd/util/makefile.mk old mode 100644 new mode 100755 diff --git a/sd/util/makefile.pmk b/sd/util/makefile.pmk old mode 100644 new mode 100755 diff --git a/sd/util/sd.flt b/sd/util/sd.flt old mode 100644 new mode 100755 diff --git a/sd/util/sdfilt.map b/sd/util/sdfilt.map old mode 100644 new mode 100755 diff --git a/sd/util/sdui.map b/sd/util/sdui.map old mode 100644 new mode 100755 diff --git a/sd/workben/testdll/makefile b/sd/workben/testdll/makefile old mode 100644 new mode 100755 diff --git a/sd/xml/AccessibleDrawDocumentView.xml b/sd/xml/AccessibleDrawDocumentView.xml old mode 100644 new mode 100755 diff --git a/sd/xml/AccessibleOutlineView.xml b/sd/xml/AccessibleOutlineView.xml old mode 100644 new mode 100755 diff --git a/sd/xml/AccessiblePageShape.xml b/sd/xml/AccessiblePageShape.xml old mode 100644 new mode 100755 diff --git a/sd/xml/AccessiblePresentationGraphicShape.xml b/sd/xml/AccessiblePresentationGraphicShape.xml old mode 100644 new mode 100755 diff --git a/sd/xml/AccessiblePresentationOLEShape.xml b/sd/xml/AccessiblePresentationOLEShape.xml old mode 100644 new mode 100755 diff --git a/sd/xml/AccessiblePresentationShape.xml b/sd/xml/AccessiblePresentationShape.xml old mode 100644 new mode 100755 diff --git a/sd/xml/AccessibleSlideView.xml b/sd/xml/AccessibleSlideView.xml old mode 100644 new mode 100755 diff --git a/sd/xml/AccessibleSlideViewObject.xml b/sd/xml/AccessibleSlideViewObject.xml old mode 100644 new mode 100755 diff --git a/sd/xml/DrawingView.xml b/sd/xml/DrawingView.xml old mode 100644 new mode 100755 diff --git a/sd/xml/HandoutView.xml b/sd/xml/HandoutView.xml old mode 100644 new mode 100755 diff --git a/sd/xml/NotesView.xml b/sd/xml/NotesView.xml old mode 100644 new mode 100755 diff --git a/sd/xml/OutlineView.xml b/sd/xml/OutlineView.xml old mode 100644 new mode 100755 diff --git a/sd/xml/PresentationView.xml b/sd/xml/PresentationView.xml old mode 100644 new mode 100755 diff --git a/sd/xml/SdDocLinkTargets.xml b/sd/xml/SdDocLinkTargets.xml old mode 100644 new mode 100755 diff --git a/sd/xml/SdDrawPage.xml b/sd/xml/SdDrawPage.xml old mode 100644 new mode 100755 diff --git a/sd/xml/SdDrawPagesAccess.xml b/sd/xml/SdDrawPagesAccess.xml old mode 100644 new mode 100755 diff --git a/sd/xml/SdGenericDrawPage.xml b/sd/xml/SdGenericDrawPage.xml old mode 100644 new mode 100755 diff --git a/sd/xml/SdLayer.xml b/sd/xml/SdLayer.xml old mode 100644 new mode 100755 diff --git a/sd/xml/SdLayerManager.xml b/sd/xml/SdLayerManager.xml old mode 100644 new mode 100755 diff --git a/sd/xml/SdMasterPage.xml b/sd/xml/SdMasterPage.xml old mode 100644 new mode 100755 diff --git a/sd/xml/SdMasterPagesAccess.xml b/sd/xml/SdMasterPagesAccess.xml old mode 100644 new mode 100755 diff --git a/sd/xml/SdPageLinkTargets.xml b/sd/xml/SdPageLinkTargets.xml old mode 100644 new mode 100755 diff --git a/sd/xml/SdXCustomPresentation.xml b/sd/xml/SdXCustomPresentation.xml old mode 100644 new mode 100755 diff --git a/sd/xml/SdXCustomPresentationAccess.xml b/sd/xml/SdXCustomPresentationAccess.xml old mode 100644 new mode 100755 diff --git a/sd/xml/SdXImpressDocument.xml b/sd/xml/SdXImpressDocument.xml old mode 100644 new mode 100755 diff --git a/sd/xml/SdXPresentation.xml b/sd/xml/SdXPresentation.xml old mode 100644 new mode 100755 diff --git a/sd/xml/SdXShape.xml b/sd/xml/SdXShape.xml old mode 100644 new mode 100755 diff --git a/sd/xml/SlidesView.xml b/sd/xml/SlidesView.xml old mode 100644 new mode 100755 diff --git a/sd/xml/effects.xml b/sd/xml/effects.xml old mode 100644 new mode 100755 diff --git a/sd/xml/transitions-ogl.xml b/sd/xml/transitions-ogl.xml old mode 100644 new mode 100755 diff --git a/sd/xml/transitions.xml b/sd/xml/transitions.xml old mode 100644 new mode 100755 diff --git a/sd/xsl/effect.xsl b/sd/xsl/effect.xsl old mode 100644 new mode 100755 -- cgit v1.2.3 From e2280d56bfd8f963b4caea5b200a83be8664d5a3 Mon Sep 17 00:00:00 2001 From: Mathias Bauer Date: Sat, 10 Jul 2010 18:21:24 +0200 Subject: CWS changehid: #i111874#: change code to support HelpIds as byte strings --- sd/inc/helpids.h | 441 ++++---- sd/inc/sdabstdlg.hxx | 2 +- sd/inc/sdcommands.h | 310 ++++++ sd/inc/sdmod.hxx | 2 - sd/sdi/TaskPaneViewShell.sdi | 178 ---- sd/sdi/ViewShellBase.sdi | 239 ----- sd/sdi/sdraw.sdi | 417 ++++++++ sd/source/filter/html/pubdlg.cxx | 9 +- .../ui/animations/CustomAnimationCreateDialog.cxx | 15 +- sd/source/ui/animations/CustomAnimationDialog.cxx | 24 +- sd/source/ui/annotations/annotations.src | 29 +- sd/source/ui/app/makefile.mk | 1 - sd/source/ui/app/menuids2_tmpl.src | 198 ++-- sd/source/ui/app/menuids3_tmpl.src | 38 +- sd/source/ui/app/menuids4_tmpl.src | 2 +- sd/source/ui/app/menuids_tmpl.src | 274 ++--- sd/source/ui/app/popup.src | 57 +- sd/source/ui/app/popup2_tmpl.src | 28 +- sd/source/ui/app/sdmod.cxx | 52 - sd/source/ui/app/strings.src | 4 +- sd/source/ui/app/tbx_ww.src | 1124 -------------------- sd/source/ui/app/toolbox.src | 737 +------------ sd/source/ui/dlg/LayerTabBar.cxx | 3 +- sd/source/ui/dlg/PaneDockingWindow.cxx | 6 +- sd/source/ui/dlg/animobjs.src | 4 +- sd/source/ui/dlg/copydlg.src | 4 +- sd/source/ui/dlg/custsdlg.src | 2 +- sd/source/ui/dlg/dlgass.cxx | 6 +- sd/source/ui/dlg/dlgsnap.src | 4 +- sd/source/ui/dlg/headerfooterdlg.cxx | 6 +- sd/source/ui/dlg/inspagob.src | 2 +- sd/source/ui/dlg/layeroptionsdlg.src | 3 +- sd/source/ui/dlg/morphdlg.src | 5 +- sd/source/ui/dlg/navigatr.cxx | 13 +- sd/source/ui/dlg/paragr.src | 3 +- sd/source/ui/dlg/present.src | 2 +- sd/source/ui/dlg/sddlgfact.cxx | 6 +- sd/source/ui/dlg/sddlgfact.hxx | 2 +- sd/source/ui/dlg/sdpreslt.src | 4 +- sd/source/ui/dlg/tpaction.src | 2 +- sd/source/ui/dlg/vectdlg.src | 3 +- sd/source/ui/func/fuinsert.cxx | 5 +- sd/source/ui/inc/PaneDockingWindow.hxx | 2 +- sd/source/ui/inc/taskpane/ScrollPanel.hxx | 2 +- sd/source/ui/inc/taskpane/SubToolPanel.hxx | 2 +- sd/source/ui/inc/taskpane/ToolPanel.hxx | 2 +- sd/source/ui/notes/NotesChildWindow.src | 3 +- sd/source/ui/slideshow/showwin.cxx | 6 +- sd/source/ui/table/tableobjectbar.cxx | 4 +- sd/source/ui/toolpanel/LayoutMenu.cxx | 5 +- sd/source/ui/toolpanel/ScrollPanel.cxx | 6 +- sd/source/ui/toolpanel/SubToolPanel.cxx | 6 +- sd/source/ui/toolpanel/TaskPaneViewShell.cxx | 3 +- sd/source/ui/toolpanel/TestPanel.cxx | 6 +- sd/source/ui/toolpanel/ToolPanel.cxx | 6 +- .../ui/toolpanel/controls/MasterPagesPanel.cxx | 15 +- .../ui/toolpanel/controls/MasterPagesSelector.cxx | 1 - sd/source/ui/view/ViewShellImplementation.cxx | 6 +- sd/source/ui/view/drviews2.cxx | 6 +- sd/source/ui/view/drviews5.cxx | 20 +- sd/source/ui/view/drviewsa.cxx | 26 +- sd/source/ui/view/drviewsb.cxx | 6 +- sd/source/ui/view/outlnvsh.cxx | 8 +- sd/source/ui/view/sdruler.cxx | 6 +- sd/source/ui/view/sdwindow.cxx | 3 +- sd/source/ui/view/tabcontr.cxx | 3 +- 66 files changed, 1407 insertions(+), 3012 deletions(-) create mode 100644 sd/inc/sdcommands.h delete mode 100644 sd/source/ui/app/tbx_ww.src (limited to 'sd/sdi') diff --git a/sd/inc/helpids.h b/sd/inc/helpids.h index b693ebe6fd2c..d9e0f5561a6b 100644 --- a/sd/inc/helpids.h +++ b/sd/inc/helpids.h @@ -28,92 +28,107 @@ #include #endif -#define HID_SD_PRINT_OPTIONS (HID_SD_START + 0) -#define HID_SD_OPTIONS_SNAP (HID_SD_START + 1) -#define HID_SD_OPTIONS_VIEW (HID_SD_START + 2) - -#define HID_SD_AUTOPILOT_PAGE1 (HID_SD_START + 3) -#define HID_SD_AUTOPILOT_PAGE2 (HID_SD_START + 4) -#define HID_SD_AUTOPILOT_PAGE3 (HID_SD_START + 5) -#define HID_SD_AUTOPILOT_PAGE4 (HID_SD_START + 6) -#define HID_SD_AUTOPILOT_PAGE5 (HID_SD_START + 7) -#define HID_SD_AUTOPILOT_PAGE6 (HID_SD_START + 8) - -#define HID_SD_CBX_ONLYSELECTED (HID_SD_START + 9) -#define HID_SD_BTN_FILTERDIALOG (HID_SD_START + 10) - -#define HID_SD_BTN_PAGE (HID_SD_START + 11) -#define HID_SD_BTN_MASTERPAGE (HID_SD_START + 12) -#define HID_SD_BTN_LAYER (HID_SD_START + 13) - -#define HID_SD_BTN_DRAW (HID_SD_START + 14) -#define HID_SD_BTN_SLIDE (HID_SD_START + 15) -#define HID_SD_BTN_OUTLINE (HID_SD_START + 16) -#define HID_SD_BTN_NOTES (HID_SD_START + 17) -#define HID_SD_BTN_HANDOUT (HID_SD_START + 18) - -#define HID_SD_WIN_DOCUMENT (HID_SD_START + 19) - -#define HID_SD_OPTIONS_LAYOUT (HID_SD_START + 20) -#define HID_SD_OPTIONS_CONTENTS (HID_SD_START + 21) -#define HID_SD_OPTIONS_MISC (HID_SD_START + 22) - -#define HID_SD_EFFECT_PREVIEW (HID_SD_START + 23) -#define HID_SD_CTL_NEWFOIL (HID_SD_START + 24) -#define HID_SD_NAVIGATOR_TLB (HID_SD_START + 25) -#define HID_SD_NAVIGATOR (HID_SD_START + 26) - -#define HID_SD_CTL_EFFECTS (HID_SD_START + 27) -#define HID_SD_CTL_TEXT_EFFECTS (HID_SD_START + 28) - -#define HID_SD_CTL_SLIDE_CHANGE (HID_SD_START + 29) - -#define HID_SD_NAVIGATOR_TBX (HID_SD_START + 30) -#define HID_SD_NAVIGATOR_LB (HID_SD_START + 31) - -#define HID_SD_NAVIGATOR_TBI_PEN (HID_SD_START + 33) -#define HID_SD_NAVIGATOR_TBI_FIRST (HID_SD_START + 34) -#define HID_SD_NAVIGATOR_TBI_PREV (HID_SD_START + 35) -#define HID_SD_NAVIGATOR_TBI_NEXT (HID_SD_START + 36) -#define HID_SD_NAVIGATOR_TBI_LAST (HID_SD_START + 37) -#define HID_SD_NAVIGATOR_TBI_DRAGTYPE (HID_SD_START + 38) -#define HID_SD_NAVIGATOR_TBI_SHAPE_FILTER (HID_SD_START + 39) +#include +#include +#include "sdcommands.h" + +#define SHELLID_SD_TASK_PANE_PREVIEW_CURRENT (HID_SD_START + 174) +#define SHELLID_SD_TASK_PANE_PREVIEW_RECENT (HID_SD_START + 175) +#define SHELLID_SD_TASK_PANE_PREVIEW_ALL (HID_SD_START + 176) +#define SHELLID_SD_TASK_PANE_PREVIEW_LAYOUTS (HID_SD_START + 177) + +#define HID_NOTESMODE "SD_HID_NOTESMODE" +#define HID_HANDOUTMODE "SD_HID_HANDOUTMODE" +#define HID_SDDRAWVIEWSHELL "SD_HID_SDDRAWVIEWSHELL" +#define HID_SDGRAPHICVIEWSHELL "SD_HID_SDGRAPHICVIEWSHELL" +#define HID_SDOUTLINEVIEWSHELL "SD_HID_SDOUTLINEVIEWSHELL" + +#define HID_SD_PRINT_OPTIONS "SD_HID_SD_PRINT_OPTIONS" +#define HID_SD_OPTIONS_SNAP "SD_HID_SD_OPTIONS_SNAP" +#define HID_SD_OPTIONS_VIEW "SD_HID_SD_OPTIONS_VIEW" + +#define HID_SD_AUTOPILOT_PAGE1 "SD_HID_SD_AUTOPILOT_PAGE1" +#define HID_SD_AUTOPILOT_PAGE2 "SD_HID_SD_AUTOPILOT_PAGE2" +#define HID_SD_AUTOPILOT_PAGE3 "SD_HID_SD_AUTOPILOT_PAGE3" +#define HID_SD_AUTOPILOT_PAGE4 "SD_HID_SD_AUTOPILOT_PAGE4" +#define HID_SD_AUTOPILOT_PAGE5 "SD_HID_SD_AUTOPILOT_PAGE5" +#define HID_SD_AUTOPILOT_PAGE6 "SD_HID_SD_AUTOPILOT_PAGE6" + +#define HID_SD_CBX_ONLYSELECTED "SD_HID_SD_CBX_ONLYSELECTED" +#define HID_SD_BTN_FILTERDIALOG "SD_HID_SD_BTN_FILTERDIALOG" + +#define HID_SD_BTN_PAGE "SD_HID_SD_BTN_PAGE" +#define HID_SD_BTN_MASTERPAGE "SD_HID_SD_BTN_MASTERPAGE" +#define HID_SD_BTN_LAYER "SD_HID_SD_BTN_LAYER" + +#define HID_SD_BTN_DRAW "SD_HID_SD_BTN_DRAW" +#define HID_SD_BTN_SLIDE "SD_HID_SD_BTN_SLIDE" +#define HID_SD_BTN_OUTLINE "SD_HID_SD_BTN_OUTLINE" +#define HID_SD_BTN_NOTES "SD_HID_SD_BTN_NOTES" +#define HID_SD_BTN_HANDOUT "SD_HID_SD_BTN_HANDOUT" + +#define HID_SD_WIN_DOCUMENT "SD_HID_SD_WIN_DOCUMENT" + +#define HID_SD_OPTIONS_LAYOUT "SD_HID_SD_OPTIONS_LAYOUT" +#define HID_SD_OPTIONS_CONTENTS "SD_HID_SD_OPTIONS_CONTENTS" +#define HID_SD_OPTIONS_MISC "SD_HID_SD_OPTIONS_MISC" + +#define HID_SD_EFFECT_PREVIEW "SD_HID_SD_EFFECT_PREVIEW" +#define HID_SD_CTL_NEWFOIL "SD_HID_SD_CTL_NEWFOIL" +#define HID_SD_NAVIGATOR_TLB "SD_HID_SD_NAVIGATOR_TLB" +#define HID_SD_NAVIGATOR "SD_HID_SD_NAVIGATOR" + +#define HID_SD_CTL_EFFECTS "SD_HID_SD_CTL_EFFECTS" +#define HID_SD_CTL_TEXT_EFFECTS "SD_HID_SD_CTL_TEXT_EFFECTS" + +#define HID_SD_CTL_SLIDE_CHANGE "SD_HID_SD_CTL_SLIDE_CHANGE" + +#define HID_SD_NAVIGATOR_TBX "SD_HID_SD_NAVIGATOR_TBX" +#define HID_SD_NAVIGATOR_LB "SD_HID_SD_NAVIGATOR_LB" + +#define HID_SD_NAVIGATOR_TBI_PEN "SD_HID_SD_NAVIGATOR_TBI_PEN" +#define HID_SD_NAVIGATOR_TBI_FIRST "SD_HID_SD_NAVIGATOR_TBI_FIRST" +#define HID_SD_NAVIGATOR_TBI_PREV "SD_HID_SD_NAVIGATOR_TBI_PREV" +#define HID_SD_NAVIGATOR_TBI_NEXT "SD_HID_SD_NAVIGATOR_TBI_NEXT" +#define HID_SD_NAVIGATOR_TBI_LAST "SD_HID_SD_NAVIGATOR_TBI_LAST" +#define HID_SD_NAVIGATOR_TBI_DRAGTYPE "SD_HID_SD_NAVIGATOR_TBI_DRAGTYPE" +#define HID_SD_NAVIGATOR_TBI_SHAPE_FILTER "SD_HID_SD_NAVIGATOR_TBI_SHAPE_FILTER" // Toolboxen -#define HID_SD_DRAW_DEFAULTTOOLBOX (HID_SD_START + 40) -#define HID_SD_PLUGINTOOLBOX (HID_SD_START + 41) -#define HID_SD_DRAW_TOOLBOX (HID_SD_START + 42) -#define HID_SD_SLIDE_TOOLBOX (HID_SD_START + 43) -#define HID_SD_OUTLINE_TOOLBOX (HID_SD_START + 44) -#define HID_SD_DRAW_OBJ_TOOLBOX (HID_SD_START + 45) -#define HID_SD_DRAW_OPTIONS_TOOLBOX (HID_SD_START + 46) -#define HID_SD_DRAW_COMMONTASK_TOOLBOX (HID_SD_START + 47) -#define HID_SD_BEZIER_TOOLBOX (HID_SD_START + 48) -#define HID_SD_TEXT_TOOLBOX (HID_SD_START + 49) -#define HID_SD_GLUEPOINTS_TOOLBOX (HID_SD_START + 50) -#define HID_SD_SLIDE_OBJ_TOOLBOX (HID_SD_START + 51) +#define HID_SD_DRAW_DEFAULTTOOLBOX "SD_HID_SD_DRAW_DEFAULTTOOLBOX" +#define HID_SD_PLUGINTOOLBOX "SD_HID_SD_PLUGINTOOLBOX" +#define HID_SD_DRAW_TOOLBOX "SD_HID_SD_DRAW_TOOLBOX" +#define HID_SD_SLIDE_TOOLBOX "SD_HID_SD_SLIDE_TOOLBOX" +#define HID_SD_OUTLINE_TOOLBOX "SD_HID_SD_OUTLINE_TOOLBOX" +#define HID_SD_DRAW_OBJ_TOOLBOX "SD_HID_SD_DRAW_OBJ_TOOLBOX" +#define HID_SD_DRAW_OPTIONS_TOOLBOX "SD_HID_SD_DRAW_OPTIONS_TOOLBOX" +#define HID_SD_DRAW_COMMONTASK_TOOLBOX "SD_HID_SD_DRAW_COMMONTASK_TOOLBOX" +#define HID_SD_BEZIER_TOOLBOX "SD_HID_SD_BEZIER_TOOLBOX" +#define HID_SD_TEXT_TOOLBOX "SD_HID_SD_TEXT_TOOLBOX" +#define HID_SD_GLUEPOINTS_TOOLBOX "SD_HID_SD_GLUEPOINTS_TOOLBOX" +#define HID_SD_SLIDE_OBJ_TOOLBOX "SD_HID_SD_SLIDE_OBJ_TOOLBOX" // FloatingWindows -#define HID_SD_FW_ALIGNMENT (HID_SD_START + 52) -#define HID_SD_FW_ZOOM (HID_SD_START + 53) -#define HID_SD_FW_CHOOSE_MODE (HID_SD_START + 54) -#define HID_SD_FW_TEXT (HID_SD_START + 55) -#define HID_SD_FW_RECTANGLES (HID_SD_START + 56) -#define HID_SD_FW_ELLIPSES (HID_SD_START + 57) -#define HID_SD_FW_LINES (HID_SD_START + 58) -#define HID_SD_FW_ARROWS (HID_SD_START + 59) -#define HID_SD_FW_3D_OBJECTS (HID_SD_START + 60) -#define HID_SD_FW_CONNECTORS (HID_SD_START + 61) -#define HID_SD_FW_INSERT (HID_SD_START + 62) -#define HID_SD_FW_POSITION (HID_SD_START + 63) - -#define HID_SD_BTN_PREVIEW (HID_SD_START + 64) - -#define HID_SD_NAVIGATOR_MENU1 (HID_SD_START + 65) -#define HID_SD_NAVIGATOR_MENU2 (HID_SD_START + 66) -#define HID_SD_NAVIGATOR_MENU3 (HID_SD_START + 67) - -#define HID_SD_WIN_PRESENTATION (HID_SD_START + 68) +#define HID_SD_FW_ALIGNMENT "SD_HID_SD_FW_ALIGNMENT" +#define HID_SD_FW_ZOOM "SD_HID_SD_FW_ZOOM" +#define HID_SD_FW_CHOOSE_MODE "SD_HID_SD_FW_CHOOSE_MODE" +#define HID_SD_FW_TEXT "SD_HID_SD_FW_TEXT" +#define HID_SD_FW_RECTANGLES "SD_HID_SD_FW_RECTANGLES" +#define HID_SD_FW_ELLIPSES "SD_HID_SD_FW_ELLIPSES" +#define HID_SD_FW_LINES "SD_HID_SD_FW_LINES" +#define HID_SD_FW_ARROWS "SD_HID_SD_FW_ARROWS" +#define HID_SD_FW_3D_OBJECTS "SD_HID_SD_FW_3D_OBJECTS" +#define HID_SD_FW_CONNECTORS "SD_HID_SD_FW_CONNECTORS" +#define HID_SD_FW_INSERT "SD_HID_SD_FW_INSERT" +#define HID_SD_FW_POSITION "SD_HID_SD_FW_POSITION" + +#define HID_SD_BTN_PREVIEW "SD_HID_SD_BTN_PREVIEW" + +#define HID_SD_NAVIGATOR_MENU1 "SD_HID_SD_NAVIGATOR_MENU1" +#define HID_SD_NAVIGATOR_MENU2 "SD_HID_SD_NAVIGATOR_MENU2" +#define HID_SD_NAVIGATOR_MENU3 "SD_HID_SD_NAVIGATOR_MENU3" + +#define HID_SD_WIN_PRESENTATION "SD_HID_SD_WIN_PRESENTATION" // HelpIDs fuer Vorlagen #define HID_STANDARD_STYLESHEET_NAME (HID_SD_START + 70) @@ -147,127 +162,127 @@ #define HID_PSEUDOSHEET_BACKGROUND (HID_SD_START + 97) #define HID_PSEUDOSHEET_NOTES (HID_SD_START + 98) -#define HID_DLG_DEFINE_CUSTOMSHOW (HID_SD_START + 99) -#define HID_DLG_DEFINE_CUSTOMSHOW_CTL (HID_SD_START + 100) - #define HID_PSEUDOSHEET_SUBTITLE (HID_SD_START + 101) -#define HID_CTL_ACTION_DLG_1 (HID_SD_START + 102) -#define HID_CTL_ACTION_DLG_2 (HID_SD_START + 103) - -#define HID_SD_BTN_PRESENTATION (HID_SD_START + 104) - -#define HID_SD_HTMLEXPORT_PAGE1 (HID_SD_START + 105) -#define HID_SD_HTMLEXPORT_PAGE2 (HID_SD_START + 106) -#define HID_SD_HTMLEXPORT_PAGE3 (HID_SD_START + 107) -#define HID_SD_HTMLEXPORT_PAGE4 (HID_SD_START + 108) -#define HID_SD_HTMLEXPORT_PAGE5 (HID_SD_START + 109) -#define HID_SD_HTMLEXPORT_PAGE6 (HID_SD_START + 110) - -#define HID_SD_CHGFOIL_LAYOUT (HID_SD_START + 111) -#define HID_SD_CHGFOIL_BACKGROUND (HID_SD_START + 112) -#define HID_SD_CHGFOIL_OBJECTS (HID_SD_START + 113) -#define HID_SD_CHGFOIL_NAME (HID_SD_START + 114) - -#define HID_SD_HTMLEXPORT_DLG_DNAME (HID_SD_START + 115) - -#define HID_FM_CTL_SELECTION (HID_SD_START + 116) - -#define HID_SD_AUTOPILOT_REGION (HID_SD_START + 117) -#define HID_SD_AUTOPILOT_TEMPLATES (HID_SD_START + 118) -#define HID_SD_AUTOPILOT_OPEN (HID_SD_START + 119) -#define HID_SD_AUTOPILOT_PAGETEMPLATES (HID_SD_START + 120) - -#define HID_SD_DRAW_GRAF_TOOLBOX (HID_SD_START + 121) - -#define HID_SD_FW_GRAFFILTERS (HID_SD_START + 122) - -#define HID_SD_TABBAR_PAGES (HID_SD_START + 123) -#define HID_SD_TABBAR_LAYERS (HID_SD_START + 124) - -#define HID_SD_UNDODELETEWARNING_DLG (HID_SD_START + 125) -#define HID_SD_UNDODELETEWARNING_CBX (HID_SD_START + 126) - -#define HID_SD_PAGEOBJSTLB (HID_SD_START + 127) - -#define HID_SD_NAMEDIALOG_OBJECT (HID_SD_START + 128) -#define HID_SD_NAMEDIALOG_PAGE (HID_SD_START + 129) -#define HID_SD_NAMEDIALOG_LINEEND (HID_SD_START + 130) - -#define HID_SD_DRAW_3D_TOOLBOX (HID_SD_START + 131) -#define HID_SD_DRAW_FONTWORK_TOOLBOX (HID_SD_START + 132) - -#define HID_SD_TABPAGE_HEADERFOOTER_SLIDE (HID_SD_START + 133) -#define HID_SD_TABPAGE_HEADERFOOTER_NOTESHANDOUT (HID_SD_START + 134) - -#define HID_SD_DRAW_MEDIA_TOOLBOX (HID_SD_START + 135) - -#define HID_SD_TASK_PANE (HID_SD_START + 136) -#define HID_SD_SLIDE_DESIGNS (HID_SD_START + 137) -#define HID_SD_CURRENT_MASTERS (HID_SD_START + 138) -#define HID_SD_RECENT_MASTERS (HID_SD_START + 139) -#define HID_SD_ALL_MASTERS (HID_SD_START + 140) -#define HID_SD_SLIDE_LAYOUTS (HID_SD_START + 141) -#define HID_SD_CUSTOM_ANIMATIONS (HID_SD_START + 142) -#define HID_SD_SLIDE_TRANSITIONS (HID_SD_START + 143) - -#define HID_SD_CUSTOMANIMATIONPANE_PB_ADD_EFFECT (HID_SD_START + 144) -#define HID_SD_CUSTOMANIMATIONPANE_PB_CHANGE_EFFECT (HID_SD_START + 145) -#define HID_SD_CUSTOMANIMATIONPANE_PB_REMOVE_EFFECT (HID_SD_START + 146) -#define HID_SD_CUSTOMANIMATIONPANE_LB_START (HID_SD_START + 147) -#define HID_SD_CUSTOMANIMATIONPANE_LB_PROPERTY (HID_SD_START + 148) -#define HID_SD_CUSTOMANIMATIONPANE_PB_PROPERTY_MORE (HID_SD_START + 149) -#define HID_SD_CUSTOMANIMATIONPANE_CB_SPEED (HID_SD_START + 150) -#define HID_SD_CUSTOMANIMATIONPANE_CT_CUSTOM_ANIMATION_LIST (HID_SD_START + 151) -#define HID_SD_CUSTOMANIMATIONPANE_PB_MOVE_UP (HID_SD_START + 152) -#define HID_SD_CUSTOMANIMATIONPANE_PB_MOVE_DOWN (HID_SD_START + 153) -#define HID_SD_CUSTOMANIMATIONPANE_PB_PLAY (HID_SD_START + 154) -#define HID_SD_CUSTOMANIMATIONPANE_PB_SLIDE_SHOW (HID_SD_START + 155) -#define HID_SD_CUSTOMANIMATIONPANE_CB_AUTOPREVIEW (HID_SD_START + 156) - -#define HID_SD_ANIMATIONSCHEMESPANE_LB_ANIMATION_SCHEMES (HID_SD_START + 157) -#define HID_SD_ANIMATIONSCHEMESPANE_PB_APPLY_TO_ALL (HID_SD_START + 158) -#define HID_SD_ANIMATIONSCHEMESPANE_PB_PLAY (HID_SD_START + 159) -#define HID_SD_ANIMATIONSCHEMESPANE_PB_SLIDE_SHOW (HID_SD_START + 160) -#define HID_SD_ANIMATIONSCHEMESPANE_CB_AUTO_PREVIEW (HID_SD_START + 161) - -#define HID_SD_SLIDETRANSITIONPANE_LB_SLIDE_TRANSITIONS (HID_SD_START + 162) -#define HID_SD_SLIDETRANSITIONPANE_LB_SPEED (HID_SD_START + 163) -#define HID_SD_SLIDETRANSITIONPANE_LB_SOUND (HID_SD_START + 164) -#define HID_SD_SLIDETRANSITIONPANE_CB_LOOP_SOUND (HID_SD_START + 165) -#define HID_SD_SLIDETRANSITIONPANE_RB_ADVANCE_ON_MOUSE (HID_SD_START + 166) -#define HID_SD_SLIDETRANSITIONPANE_RB_ADVANCE_AUTO (HID_SD_START + 167) -#define HID_SD_SLIDETRANSITIONPANE_MF_ADVANCE_AUTO_AFTER (HID_SD_START + 168) -#define HID_SD_SLIDETRANSITIONPANE_PB_APPLY_TO_ALL (HID_SD_START + 169) -#define HID_SD_SLIDETRANSITIONPANE_PB_PLAY (HID_SD_START + 170) -#define HID_SD_SLIDETRANSITIONPANE_PB_SLIDE_SHOW (HID_SD_START + 171) -#define HID_SD_SLIDETRANSITIONPANE_CB_AUTO_PREVIEW (HID_SD_START + 172) - -#define HID_SD_TASK_PANE_VIEW_MENU (HID_SD_START + 173) -#define HID_SD_TASK_PANE_PREVIEW_CURRENT (HID_SD_START + 174) -#define HID_SD_TASK_PANE_PREVIEW_RECENT (HID_SD_START + 175) -#define HID_SD_TASK_PANE_PREVIEW_ALL (HID_SD_START + 176) -#define HID_SD_TASK_PANE_PREVIEW_LAYOUTS (HID_SD_START + 177) - -#define HID_SD_CUSTOMANIMATIONDIALOG_ENTRANCE (HID_SD_START + 178) -#define HID_SD_CUSTOMANIMATIONDIALOG_EMPHASIS (HID_SD_START + 179) -#define HID_SD_CUSTOMANIMATIONDIALOG_EXIT (HID_SD_START + 180) -#define HID_SD_CUSTOMANIMATIONDIALOG_MOTIONPATH (HID_SD_START + 181) -#define HID_SD_CUSTOMANIMATIONDIALOG_MISCEFFECTS (HID_SD_START + 182) - -#define HID_SD_CUSTOMANIMATIONPANE_PRESETPROPERTYBOX (HID_SD_START + 183) -#define HID_SD_CUSTOMANIMATIONPANE_COLORPROPERTYBOX (HID_SD_START + 184) -#define HID_SD_CUSTOMANIMATIONPANE_FONTPROPERTYBOX (HID_SD_START + 185) -#define HID_SD_CUSTOMANIMATIONPANE_CHARHEIGHTPROPERTYBOX (HID_SD_START + 186) -#define HID_SD_CUSTOMANIMATIONPANE_ROTATIONPROPERTYBOX (HID_SD_START + 187) -#define HID_SD_CUSTOMANIMATIONPANE_TRANSPARENCYPROPERTYBOX (HID_SD_START + 188) -#define HID_SD_CUSTOMANIMATIONPANE_SCALEPROPERTYBOX (HID_SD_START + 189) -#define HID_SD_CUSTOMANIMATIONPANE_FONTSTYLEPROPERTYBOX (HID_SD_START + 190) - -#define HID_SD_SLIDESHOW_DISPLAY (HID_SD_START + 191) - -#define HID_SD_RULER_HORIZONTAL (HID_SD_START + 192) -#define HID_SD_RULER_VERTICAL (HID_SD_START + 193) +#define HID_DLG_DEFINE_CUSTOMSHOW "SD_HID_DLG_DEFINE_CUSTOMSHOW" +#define HID_DLG_DEFINE_CUSTOMSHOW_CTL "SD_HID_DLG_DEFINE_CUSTOMSHOW_CTL" + +#define HID_CTL_ACTION_DLG_1 "SD_HID_CTL_ACTION_DLG_1" +#define HID_CTL_ACTION_DLG_2 "SD_HID_CTL_ACTION_DLG_2" + +#define HID_SD_BTN_PRESENTATION "SD_HID_SD_BTN_PRESENTATION" + +#define HID_SD_HTMLEXPORT_PAGE1 "SD_HID_SD_HTMLEXPORT_PAGE1" +#define HID_SD_HTMLEXPORT_PAGE2 "SD_HID_SD_HTMLEXPORT_PAGE2" +#define HID_SD_HTMLEXPORT_PAGE3 "SD_HID_SD_HTMLEXPORT_PAGE3" +#define HID_SD_HTMLEXPORT_PAGE4 "SD_HID_SD_HTMLEXPORT_PAGE4" +#define HID_SD_HTMLEXPORT_PAGE5 "SD_HID_SD_HTMLEXPORT_PAGE5" +#define HID_SD_HTMLEXPORT_PAGE6 "SD_HID_SD_HTMLEXPORT_PAGE6" + +#define HID_SD_CHGFOIL_LAYOUT "SD_HID_SD_CHGFOIL_LAYOUT" +#define HID_SD_CHGFOIL_BACKGROUND "SD_HID_SD_CHGFOIL_BACKGROUND" +#define HID_SD_CHGFOIL_OBJECTS "SD_HID_SD_CHGFOIL_OBJECTS" +#define HID_SD_CHGFOIL_NAME "SD_HID_SD_CHGFOIL_NAME" + +#define HID_SD_HTMLEXPORT_DLG_DNAME "SD_HID_SD_HTMLEXPORT_DLG_DNAME" + +#define HID_FM_CTL_SELECTION "SD_HID_FM_CTL_SELECTION" + +#define HID_SD_AUTOPILOT_REGION "SD_HID_SD_AUTOPILOT_REGION" +#define HID_SD_AUTOPILOT_TEMPLATES "SD_HID_SD_AUTOPILOT_TEMPLATES" +#define HID_SD_AUTOPILOT_OPEN "SD_HID_SD_AUTOPILOT_OPEN" +#define HID_SD_AUTOPILOT_PAGETEMPLATES "SD_HID_SD_AUTOPILOT_PAGETEMPLATES" + +#define HID_SD_DRAW_GRAF_TOOLBOX "SD_HID_SD_DRAW_GRAF_TOOLBOX" + +#define HID_SD_FW_GRAFFILTERS "SD_HID_SD_FW_GRAFFILTERS" + +#define HID_SD_TABBAR_PAGES "SD_HID_SD_TABBAR_PAGES" +#define HID_SD_TABBAR_LAYERS "SD_HID_SD_TABBAR_LAYERS" + +#define HID_SD_UNDODELETEWARNING_DLG "SD_HID_SD_UNDODELETEWARNING_DLG" +#define HID_SD_UNDODELETEWARNING_CBX "SD_HID_SD_UNDODELETEWARNING_CBX" + +#define HID_SD_PAGEOBJSTLB "SD_HID_SD_PAGEOBJSTLB" + +#define HID_SD_NAMEDIALOG_OBJECT "SD_HID_SD_NAMEDIALOG_OBJECT" +#define HID_SD_NAMEDIALOG_PAGE "SD_HID_SD_NAMEDIALOG_PAGE" +#define HID_SD_NAMEDIALOG_LINEEND "SD_HID_SD_NAMEDIALOG_LINEEND" + +#define HID_SD_DRAW_3D_TOOLBOX "SD_HID_SD_DRAW_3D_TOOLBOX" +#define HID_SD_DRAW_FONTWORK_TOOLBOX "SD_HID_SD_DRAW_FONTWORK_TOOLBOX" + +#define HID_SD_TABPAGE_HEADERFOOTER_SLIDE "SD_HID_SD_TABPAGE_HEADERFOOTER_SLIDE" +#define HID_SD_TABPAGE_HEADERFOOTER_NOTESHANDOUT "SD_HID_SD_TABPAGE_HEADERFOOTER_NOTESHANDOUT" + +#define HID_SD_DRAW_MEDIA_TOOLBOX "SD_HID_SD_DRAW_MEDIA_TOOLBOX" + +#define HID_SD_TASK_PANE "SD_HID_SD_TASK_PANE" +#define HID_SD_SLIDE_DESIGNS "SD_HID_SD_SLIDE_DESIGNS" +#define HID_SD_CURRENT_MASTERS "SD_HID_SD_CURRENT_MASTERS" +#define HID_SD_RECENT_MASTERS "SD_HID_SD_RECENT_MASTERS" +#define HID_SD_ALL_MASTERS "SD_HID_SD_ALL_MASTERS" +#define HID_SD_SLIDE_LAYOUTS "SD_HID_SD_SLIDE_LAYOUTS" +#define HID_SD_CUSTOM_ANIMATIONS "SD_HID_SD_CUSTOM_ANIMATIONS" +#define HID_SD_SLIDE_TRANSITIONS "SD_HID_SD_SLIDE_TRANSITIONS" + +#define HID_SD_CUSTOMANIMATIONPANE_PB_ADD_EFFECT "SD_HID_SD_CUSTOMANIMATIONPANE_PB_ADD_EFFECT" +#define HID_SD_CUSTOMANIMATIONPANE_PB_CHANGE_EFFECT "SD_HID_SD_CUSTOMANIMATIONPANE_PB_CHANGE_EFFECT" +#define HID_SD_CUSTOMANIMATIONPANE_PB_REMOVE_EFFECT "SD_HID_SD_CUSTOMANIMATIONPANE_PB_REMOVE_EFFECT" +#define HID_SD_CUSTOMANIMATIONPANE_LB_START "SD_HID_SD_CUSTOMANIMATIONPANE_LB_START" +#define HID_SD_CUSTOMANIMATIONPANE_LB_PROPERTY "SD_HID_SD_CUSTOMANIMATIONPANE_LB_PROPERTY" +#define HID_SD_CUSTOMANIMATIONPANE_PB_PROPERTY_MORE "SD_HID_SD_CUSTOMANIMATIONPANE_PB_PROPERTY_MORE" +#define HID_SD_CUSTOMANIMATIONPANE_CB_SPEED "SD_HID_SD_CUSTOMANIMATIONPANE_CB_SPEED" +#define HID_SD_CUSTOMANIMATIONPANE_CT_CUSTOM_ANIMATION_LIST "SD_HID_SD_CUSTOMANIMATIONPANE_CT_CUSTOM_ANIMATION_LIST" +#define HID_SD_CUSTOMANIMATIONPANE_PB_MOVE_UP "SD_HID_SD_CUSTOMANIMATIONPANE_PB_MOVE_UP" +#define HID_SD_CUSTOMANIMATIONPANE_PB_MOVE_DOWN "SD_HID_SD_CUSTOMANIMATIONPANE_PB_MOVE_DOWN" +#define HID_SD_CUSTOMANIMATIONPANE_PB_PLAY "SD_HID_SD_CUSTOMANIMATIONPANE_PB_PLAY" +#define HID_SD_CUSTOMANIMATIONPANE_PB_SLIDE_SHOW "SD_HID_SD_CUSTOMANIMATIONPANE_PB_SLIDE_SHOW" +#define HID_SD_CUSTOMANIMATIONPANE_CB_AUTOPREVIEW "SD_HID_SD_CUSTOMANIMATIONPANE_CB_AUTOPREVIEW" + +#define HID_SD_ANIMATIONSCHEMESPANE_LB_ANIMATION_SCHEMES "SD_HID_SD_ANIMATIONSCHEMESPANE_LB_ANIMATION_SCHEMES" +#define HID_SD_ANIMATIONSCHEMESPANE_PB_APPLY_TO_ALL "SD_HID_SD_ANIMATIONSCHEMESPANE_PB_APPLY_TO_ALL" +#define HID_SD_ANIMATIONSCHEMESPANE_PB_PLAY "SD_HID_SD_ANIMATIONSCHEMESPANE_PB_PLAY" +#define HID_SD_ANIMATIONSCHEMESPANE_PB_SLIDE_SHOW "SD_HID_SD_ANIMATIONSCHEMESPANE_PB_SLIDE_SHOW" +#define HID_SD_ANIMATIONSCHEMESPANE_CB_AUTO_PREVIEW "SD_HID_SD_ANIMATIONSCHEMESPANE_CB_AUTO_PREVIEW" + +#define HID_SD_SLIDETRANSITIONPANE_LB_SLIDE_TRANSITIONS "SD_HID_SD_SLIDETRANSITIONPANE_LB_SLIDE_TRANSITIONS" +#define HID_SD_SLIDETRANSITIONPANE_LB_SPEED "SD_HID_SD_SLIDETRANSITIONPANE_LB_SPEED" +#define HID_SD_SLIDETRANSITIONPANE_LB_SOUND "SD_HID_SD_SLIDETRANSITIONPANE_LB_SOUND" +#define HID_SD_SLIDETRANSITIONPANE_CB_LOOP_SOUND "SD_HID_SD_SLIDETRANSITIONPANE_CB_LOOP_SOUND" +#define HID_SD_SLIDETRANSITIONPANE_RB_ADVANCE_ON_MOUSE "SD_HID_SD_SLIDETRANSITIONPANE_RB_ADVANCE_ON_MOUSE" +#define HID_SD_SLIDETRANSITIONPANE_RB_ADVANCE_AUTO "SD_HID_SD_SLIDETRANSITIONPANE_RB_ADVANCE_AUTO" +#define HID_SD_SLIDETRANSITIONPANE_MF_ADVANCE_AUTO_AFTER "SD_HID_SD_SLIDETRANSITIONPANE_MF_ADVANCE_AUTO_AFTER" +#define HID_SD_SLIDETRANSITIONPANE_PB_APPLY_TO_ALL "SD_HID_SD_SLIDETRANSITIONPANE_PB_APPLY_TO_ALL" +#define HID_SD_SLIDETRANSITIONPANE_PB_PLAY "SD_HID_SD_SLIDETRANSITIONPANE_PB_PLAY" +#define HID_SD_SLIDETRANSITIONPANE_PB_SLIDE_SHOW "SD_HID_SD_SLIDETRANSITIONPANE_PB_SLIDE_SHOW" +#define HID_SD_SLIDETRANSITIONPANE_CB_AUTO_PREVIEW "SD_HID_SD_SLIDETRANSITIONPANE_CB_AUTO_PREVIEW" + +#define HID_SD_TASK_PANE_VIEW_MENU "SD_HID_SD_TASK_PANE_VIEW_MENU" +#define HID_SD_TASK_PANE_PREVIEW_CURRENT "SD_HID_SD_TASK_PANE_PREVIEW_CURRENT" +#define HID_SD_TASK_PANE_PREVIEW_RECENT "SD_HID_SD_TASK_PANE_PREVIEW_RECENT" +#define HID_SD_TASK_PANE_PREVIEW_ALL "SD_HID_SD_TASK_PANE_PREVIEW_ALL" +#define HID_SD_TASK_PANE_PREVIEW_LAYOUTS "SD_HID_SD_TASK_PANE_PREVIEW_LAYOUTS" + +#define HID_SD_CUSTOMANIMATIONDIALOG_ENTRANCE "SD_HID_SD_CUSTOMANIMATIONDIALOG_ENTRANCE" +#define HID_SD_CUSTOMANIMATIONDIALOG_EMPHASIS "SD_HID_SD_CUSTOMANIMATIONDIALOG_EMPHASIS" +#define HID_SD_CUSTOMANIMATIONDIALOG_EXIT "SD_HID_SD_CUSTOMANIMATIONDIALOG_EXIT" +#define HID_SD_CUSTOMANIMATIONDIALOG_MOTIONPATH "SD_HID_SD_CUSTOMANIMATIONDIALOG_MOTIONPATH" +#define HID_SD_CUSTOMANIMATIONDIALOG_MISCEFFECTS "SD_HID_SD_CUSTOMANIMATIONDIALOG_MISCEFFECTS" + +#define HID_SD_CUSTOMANIMATIONPANE_PRESETPROPERTYBOX "SD_HID_SD_CUSTOMANIMATIONPANE_PRESETPROPERTYBOX" +#define HID_SD_CUSTOMANIMATIONPANE_COLORPROPERTYBOX "SD_HID_SD_CUSTOMANIMATIONPANE_COLORPROPERTYBOX" +#define HID_SD_CUSTOMANIMATIONPANE_FONTPROPERTYBOX "SD_HID_SD_CUSTOMANIMATIONPANE_FONTPROPERTYBOX" +#define HID_SD_CUSTOMANIMATIONPANE_CHARHEIGHTPROPERTYBOX "SD_HID_SD_CUSTOMANIMATIONPANE_CHARHEIGHTPROPERTYBOX" +#define HID_SD_CUSTOMANIMATIONPANE_ROTATIONPROPERTYBOX "SD_HID_SD_CUSTOMANIMATIONPANE_ROTATIONPROPERTYBOX" +#define HID_SD_CUSTOMANIMATIONPANE_TRANSPARENCYPROPERTYBOX "SD_HID_SD_CUSTOMANIMATIONPANE_TRANSPARENCYPROPERTYBOX" +#define HID_SD_CUSTOMANIMATIONPANE_SCALEPROPERTYBOX "SD_HID_SD_CUSTOMANIMATIONPANE_SCALEPROPERTYBOX" +#define HID_SD_CUSTOMANIMATIONPANE_FONTSTYLEPROPERTYBOX "SD_HID_SD_CUSTOMANIMATIONPANE_FONTSTYLEPROPERTYBOX" + +#define HID_SD_SLIDESHOW_DISPLAY "SD_HID_SD_SLIDESHOW_DISPLAY" + +#define HID_SD_RULER_HORIZONTAL "SD_HID_SD_RULER_HORIZONTAL" +#define HID_SD_RULER_VERTICAL "SD_HID_SD_RULER_VERTICAL" #define HID_SD_CELL_STYLE_DEFAULT (HID_SD_START + 194) #define HID_SD_CELL_STYLE_BANDED (HID_SD_START + 195) @@ -276,6 +291,26 @@ #define HID_SD_CELL_STYLE_FIRST_COLUMN (HID_SD_START + 198) #define HID_SD_CELL_STYLE_LAST_COLUMN (HID_SD_START + 199) -#define HID_SD_TABLE_DESIGN (HID_SD_START + 200) -#define HID_SD_ANNOTATIONS (HID_SD_START + 201) +#define HID_SD_TABLE_DESIGN "SD_HID_SD_TABLE_DESIGN" +#define HID_SD_ANNOTATIONS "SD_HID_SD_ANNOTATIONS" + +#define HID_DLG_INSERT_PAGES_OBJS "SD_HID_DLG_INSERT_PAGES_OBJS" +#define HID_TABPAGE_PARA_NUMBERING "SD_HID_TABPAGE_PARA_NUMBERING" +#define HID_VECTORIZE_DLG "SD_HID_VECTORIZE_DLG" +#define HID_UNDO_DELETE_WARNING "SD_HID_UNDO_DELETE_WARNING" + +#define HID_MN_SUB_GROUP "SD_HID_MN_SUB_GROUP" +#define HID_MN_SUB_GRAPHIC "SD_HID_MN_SUB_GRAPHIC" +#define HID_MN_SUB_SEND "SD_HID_MN_SUB_SEND" +#define HID_MN_SUB_MASTER_LAYOUTS "SD_HID_MN_SUB_MASTER_LAYOUTS" +#define HID_MN_SUB_VIEW "SD_HID_MN_SUB_VIEW" +#define HID_MN_SUB_MASTERPAGE "SD_HID_MN_SUB_MASTERPAGE" +#define HID_MN_SUB_FIELD "SD_HID_MN_SUB_FIELD" +#define HID_MN_SUB_TEMPLATES "SD_HID_MN_SUB_TEMPLATES" +#define HID_MN_SUB_SPELLING "SD_HID_MN_SUB_SPELLING" +#define HID_MN_SUB_POSITION "SD_HID_MN_SUB_POSITION" +#define HID_MN_SUB_OUTPUT_QUALITY "SD_HID_MN_SUB_OUTPUT_QUALITY" +#define HID_MN_SUB_PREVIEW_OUTPUT_QUALITY "SD_HID_MN_SUB_PREVIEW_OUTPUT_QUALITY" +#define HID_MN_SUB_CONVERT "SD_HID_MN_SUB_CONVERT" +#define HID_MN_SUB_MIRROR "SD_HID_MN_SUB_MIRROR" diff --git a/sd/inc/sdabstdlg.hxx b/sd/inc/sdabstdlg.hxx index e9ae8df1a192..28736c0d4f80 100644 --- a/sd/inc/sdabstdlg.hxx +++ b/sd/inc/sdabstdlg.hxx @@ -120,7 +120,7 @@ class AbstractSdInsertLayerDlg : public VclAbstractDialog //add for SdInsertLay public: virtual void GetAttr( SfxItemSet& rOutAttrs ) = 0; //from class ::Window - virtual void SetHelpId( ULONG nHelpId ) = 0; + virtual void SetHelpId( const rtl::OString& rHelpId ) = 0; }; class AbstractSdInsertPasteDlg : public VclAbstractDialog //add for SdInsertPasteDlg diff --git a/sd/inc/sdcommands.h b/sd/inc/sdcommands.h new file mode 100644 index 000000000000..d0c1c059cdbe --- /dev/null +++ b/sd/inc/sdcommands.h @@ -0,0 +1,310 @@ +/************************************************************************* + * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * + ************************************************************************/ +#ifndef SD_SDCOMMANDS_HRC +#define SD_SDCOMMANDS_HRC + +#define CMD_SID_OBJECT_MIRROR ".uno:Mirror" +#define CMD_SID_OBJECT_CHOOSE_MODE ".uno:AdvancedMode" +#define CMD_SID_ANIMATION_EFFECTS ".uno:AnimationEffects" +#define CMD_SID_ANIMATION_OBJECTS ".uno:AnimationObjects" +#define CMD_SID_ANIMATOR_ADD ".uno:AnimatorAddObject" +#define CMD_SID_ANIMATOR_CREATE ".uno:AnimatorCreateObject" +#define CMD_SID_ANIMATOR_INIT ".uno:AnimatorInit" +#define CMD_SID_ANIMATOR_STATE ".uno:AnimatorState" +#define CMD_SID_DRAWTBX_ARROWS ".uno:ArrowsToolbox" +#define CMD_SID_MOREBACK ".uno:Backward" +#define CMD_SID_BEFORE_OBJ ".uno:BeforeObject" +#define CMD_SID_BEHIND_OBJ ".uno:BehindObject" +#define CMD_SID_BIG_HANDLES ".uno:BigHandles" +#define CMD_SID_BREAK ".uno:Break" +#define CMD_SID_CAPTUREPOINT ".uno:CapturePoint" +#define CMD_SID_CHANGEBEZIER ".uno:ChangeBezier" +#define CMD_SID_CHANGEPOLYGON ".uno:ChangePolygon" +#define CMD_SID_CLICK_CHANGE_ROTATION ".uno:ClickChangeRotation" +#define CMD_SID_OBJECT_CLOSE ".uno:CloseObject" +#define CMD_SID_COLORVIEW ".uno:ColorView" +#define CMD_SID_COMBINE ".uno:Combine" +#define CMD_SID_3D_CONE ".uno:Cone" +#define CMD_SID_CONNECT ".uno:Connect" +#define CMD_SID_TOOL_CONNECTOR ".uno:Connector" +#define CMD_SID_CONNECTOR_ARROW_END ".uno:ConnectorArrowEnd" +#define CMD_SID_CONNECTOR_ARROWS ".uno:ConnectorArrows" +#define CMD_SID_CONNECTOR_ARROW_START ".uno:ConnectorArrowStart" +#define CMD_SID_CONNECTION_DLG ".uno:ConnectorAttributes" +#define CMD_SID_CONNECTOR_CIRCLE_END ".uno:ConnectorCircleEnd" +#define CMD_SID_CONNECTOR_CIRCLES ".uno:ConnectorCircles" +#define CMD_SID_CONNECTOR_CIRCLE_START ".uno:ConnectorCircleStart" +#define CMD_SID_CONNECTOR_CURVE ".uno:ConnectorCurve" +#define CMD_SID_CONNECTOR_CURVE_ARROW_END ".uno:ConnectorCurveArrowEnd" +#define CMD_SID_CONNECTOR_CURVE_ARROWS ".uno:ConnectorCurveArrows" +#define CMD_SID_CONNECTOR_CURVE_ARROW_START ".uno:ConnectorCurveArrowStart" +#define CMD_SID_CONNECTOR_CURVE_CIRCLE_END ".uno:ConnectorCurveCircleEnd" +#define CMD_SID_CONNECTOR_CURVE_CIRCLES ".uno:ConnectorCurveCircles" +#define CMD_SID_CONNECTOR_CURVE_CIRCLE_START ".uno:ConnectorCurveCircleStart" +#define CMD_SID_CONNECTOR_LINE ".uno:ConnectorLine" +#define CMD_SID_CONNECTOR_LINE_ARROW_END ".uno:ConnectorLineArrowEnd" +#define CMD_SID_CONNECTOR_LINE_ARROWS ".uno:ConnectorLineArrows" +#define CMD_SID_CONNECTOR_LINE_ARROW_START ".uno:ConnectorLineArrowStart" +#define CMD_SID_CONNECTOR_LINE_CIRCLE_END ".uno:ConnectorLineCircleEnd" +#define CMD_SID_CONNECTOR_LINE_CIRCLES ".uno:ConnectorLineCircles" +#define CMD_SID_CONNECTOR_LINE_CIRCLE_START ".uno:ConnectorLineCircleStart" +#define CMD_SID_CONNECTOR_LINES ".uno:ConnectorLines" +#define CMD_SID_CONNECTOR_LINES_ARROW_END ".uno:ConnectorLinesArrowEnd" +#define CMD_SID_CONNECTOR_LINES_ARROWS ".uno:ConnectorLinesArrows" +#define CMD_SID_CONNECTOR_LINES_ARROW_START ".uno:ConnectorLinesArrowStart" +#define CMD_SID_CONNECTOR_LINES_CIRCLE_END ".uno:ConnectorLinesCircleEnd" +#define CMD_SID_CONNECTOR_LINES_CIRCLES ".uno:ConnectorLinesCircles" +#define CMD_SID_CONNECTOR_LINES_CIRCLE_START ".uno:ConnectorLinesCircleStart" +#define CMD_SID_DRAWTBX_CONNECTORS ".uno:ConnectorToolbox" +#define CMD_SID_CONVERT_TO_CONTOUR ".uno:convert_to_contour" +#define CMD_SID_CONVERT_TO_3D ".uno:ConvertInto3D" +#define CMD_SID_CONVERT_TO_3D_LATHE ".uno:ConvertInto3DLathe" +#define CMD_SID_CONVERT_TO_3D_LATHE_FAST ".uno:ConvertInto3DLatheFast" +#define CMD_SID_CONVERT_TO_BITMAP ".uno:ConvertIntoBitmap" +#define CMD_SID_CONVERT_TO_METAFILE ".uno:ConvertIntoMetaFile" +#define CMD_SID_CONVERT_TO_1BIT_MATRIX ".uno:ConvertTo1BitMatrix" +#define CMD_SID_CONVERT_TO_1BIT_THRESHOLD ".uno:ConvertTo1BitThreshold" +#define CMD_SID_CONVERT_TO_4BIT_COLORS ".uno:ConvertTo4BitColors" +#define CMD_SID_CONVERT_TO_4BIT_GRAYS ".uno:ConvertTo4BitGrays" +#define CMD_SID_CONVERT_TO_8BIT_COLORS ".uno:ConvertTo8BitColors" +#define CMD_SID_CONVERT_TO_8BIT_GRAYS ".uno:ConvertTo8BitGrays" +#define CMD_SID_CONVERT_TO_24BIT ".uno:ConvertToTrueColor" +#define CMD_SID_COPYOBJECTS ".uno:CopyObjects" +#define CMD_SID_OBJECT_CROOK_ROTATE ".uno:CrookRotate" +#define CMD_SID_OBJECT_CROOK_SLANT ".uno:CrookSlant" +#define CMD_SID_OBJECT_CROOK_STRETCH ".uno:CrookStretch" +#define CMD_SID_3D_CUBE ".uno:Cube" +#define CMD_SID_CUSTOMSHOW_DLG ".uno:CustomShowDialog" +#define CMD_SID_3D_CYLINDER ".uno:Cylinder" +#define CMD_SID_3D_PYRAMID ".uno:Cyramid" +#define CMD_SID_DELETE_LAYER ".uno:DeleteLayer" +#define CMD_SID_DELETE_PAGE ".uno:DeletePage" +#define CMD_SID_DELETE_SNAPITEM ".uno:DeleteSnapItem" +#define CMD_SID_UNSELECT ".uno:DeSelect" +#define CMD_SID_DIAMODE ".uno:DiaMode" +#define CMD_SID_DISMANTLE ".uno:Dismantle" +#define CMD_SID_DOUBLECLICK_TEXTEDIT ".uno:DoubleClickTextEdit" +#define CMD_SID_DRAWINGMODE ".uno:DrawingMode" +#define CMD_SID_DUPLICATE_PAGE ".uno:DuplicatePage" +#define CMD_SID_EDIT_HYPERLINK ".uno:EditHyperlink" +#define CMD_SID_EDIT_OUTLINER ".uno:EditOutline" +#define CMD_SID_CUSTOM_ANIMATION_PANEL ".uno:CustomAnimation" +#define CMD_SID_CUSTOM_ANIMATION_SCHEMES_PANEL ".uno:CustomAnimationSchemes" +#define CMD_SID_DRAWTBX_ELLIPSES ".uno:EllipseToolbox" +#define CMD_SID_EXPAND_PAGE ".uno:ExpandPage" +#define CMD_SID_SETFILLCOLOR ".uno:SetFillColor" +#define CMD_SID_MOREFRONT ".uno:Forward" +#define CMD_SID_GETBLUE ".uno:GetBlue" +#define CMD_SID_GETFILLSTYLE ".uno:GetFillStyle" +#define CMD_SID_GETGREEN ".uno:GetGreen" +#define CMD_SID_GETLINESTYLE ".uno:GetLineStyle" +#define CMD_SID_GETLINEWIDTH ".uno:GetLineWidth" +#define CMD_SID_GETRED ".uno:GetRed" +#define CMD_SID_GLUE_EDITMODE ".uno:GlueEditMode" +#define CMD_SID_GLUE_ESCDIR ".uno:GlueEscapeDirection" +#define CMD_SID_GLUE_ESCDIR_BOTTOM ".uno:GlueEscapeDirectionBottom" +#define CMD_SID_GLUE_ESCDIR_LEFT ".uno:GlueEscapeDirectionLeft" +#define CMD_SID_GLUE_ESCDIR_RIGHT ".uno:GlueEscapeDirectionRight" +#define CMD_SID_GLUE_ESCDIR_TOP ".uno:GlueEscapeDirectionTop" +#define CMD_SID_GLUE_HORZALIGN_CENTER ".uno:GlueHorzAlignCenter" +#define CMD_SID_GLUE_HORZALIGN_LEFT ".uno:GlueHorzAlignLeft" +#define CMD_SID_GLUE_HORZALIGN_RIGHT ".uno:GlueHorzAlignRight" +#define CMD_SID_GLUE_INSERT_POINT ".uno:GlueInsertPoint" +#define CMD_SID_GLUE_PERCENT ".uno:GluePercent" +#define CMD_SID_GLUE_VERTALIGN_BOTTOM ".uno:GlueVertAlignBottom" +#define CMD_SID_GLUE_VERTALIGN_CENTER ".uno:GlueVertAlignCenter" +#define CMD_SID_GLUE_VERTALIGN_TOP ".uno:GlueVertAlignTop" +#define CMD_SID_GRADIENT ".uno:Gradient" +#define CMD_SID_SETGRADENDCOLOR ".uno:GradientEndColor" +#define CMD_SID_SETGRADSTARTCOLOR ".uno:GradientStartColor" +#define CMD_SID_GRAPHIC_EXPORT ".uno:GraphicExport" +#define CMD_SID_GRID_FRONT ".uno:GridFront" +#define CMD_SID_3D_HALF_SPHERE ".uno:HalfSphere" +#define CMD_SID_HANDLES_DRAFT ".uno:HandlesDraft" +#define CMD_SID_HANDOUT_MASTERPAGE ".uno:HandoutMasterPage" +#define CMD_SID_HANDOUTMODE ".uno:HandoutMode" +#define CMD_SID_HATCH ".uno:Hatch" +#define CMD_SID_SETHATCHCOLOR ".uno:HatchColor" +#define CMD_SID_HELPLINES_FRONT ".uno:HelplinesFront" +#define CMD_SID_HELPLINES_USE ".uno:HelplinesUse" +#define CMD_SID_HELPLINES_VISIBLE ".uno:HelplinesVisible" +#define CMD_SID_HIDE_SLIDE ".uno:HideSlide" +#define CMD_SID_SHOW_SLIDE ".uno:ShowSlide" +#define CMD_SID_HYPHENATION ".uno:Hyphenation" +#define CMD_SID_INSERTFILE ".uno:ImportFromFile" +#define CMD_SID_INSERT_FLD_AUTHOR ".uno:InsertAuthorField" +#define CMD_SID_INSERT_FLD_DATE_FIX ".uno:InsertDateFieldFix" +#define CMD_SID_INSERT_FLD_DATE_VAR ".uno:InsertDateFieldVar" +#define CMD_SID_INSERT_FLD_FILE ".uno:InsertFileField" +#define CMD_SID_INSERTLAYER ".uno:InsertLayer" +#define CMD_SID_INSERTPAGE ".uno:InsertPage" +#define CMD_SID_INSERT_FLD_PAGE ".uno:InsertPageField" +#define CMD_SID_INSERT_FLD_PAGES ".uno:InsertPagesField" +#define CMD_SID_INSERTPAGE_QUICK ".uno:InsertPageQuick" +#define CMD_SID_INSERT_FLD_TIME_FIX ".uno:InsertTimeFieldFix" +#define CMD_SID_INSERT_FLD_TIME_VAR ".uno:InsertTimeFieldVar" +#define CMD_SID_DRAWTBX_INSERT ".uno:InsertToolbox" +#define CMD_SID_OBJECT_GRADIENT ".uno:InteractiveGradient" +#define CMD_SID_OBJECT_TRANSPARENCE ".uno:InteractiveTransparence" +#define CMD_SID_LAYERMODE ".uno:LayerMode" +#define CMD_SID_STATUS_LAYOUT ".uno:LayoutStatus" +#define CMD_SID_LEAVE_ALL_GROUPS ".uno:LeaveAllGroups" +#define CMD_SID_LINE_ARROW_CIRCLE ".uno:LineArrowCircle" +#define CMD_SID_LINE_ARROW_END ".uno:LineArrowEnd" +#define CMD_SID_LINE_ARROWS ".uno:LineArrows" +#define CMD_SID_LINE_ARROW_SQUARE ".uno:LineArrowSquare" +#define CMD_SID_LINE_ARROW_START ".uno:LineArrowStart" +#define CMD_SID_LINE_CIRCLE_ARROW ".uno:LineCircleArrow" +#define CMD_SID_SETLINECOLOR ".uno:LineColor" +#define CMD_SID_LINEEND_POLYGON ".uno:LineEndPolygon" +#define CMD_SID_LINE_SQUARE_ARROW ".uno:LineSquareArrow" +#define CMD_SID_LINETO ".uno:LineTo" +#define CMD_SID_DRAWTBX_LINES ".uno:LineToolbox" +#define CMD_SID_MANAGE_LINKS ".uno:ManageLinks" +#define CMD_SID_MASTERPAGE ".uno:MasterPage" +#define CMD_SID_MEASURE_DLG ".uno:MeasureAttributes" +#define CMD_SID_DRAW_MEASURELINE ".uno:MeasureLine" +#define CMD_SID_HORIZONTAL ".uno:MirrorHorz" +#define CMD_SID_VERTICAL ".uno:MirrorVert" +#define CMD_SID_MODIFY_FIELD ".uno:ModifyField" +#define CMD_SID_MODIFYLAYER ".uno:ModifyLayer" +#define CMD_SID_MODIFYPAGE ".uno:ModifyPage" +#define CMD_SID_ASSIGN_LAYOUT ".uno:AssignLayout" +#define CMD_SID_PRESENTATIONOBJECT ".uno:ModifyPresentationObject" +#define CMD_SID_POLYGON_MORPHING ".uno:Morphing" +#define CMD_SID_MOVETO ".uno:MoveTo" +#define CMD_SID_NAME_GROUP ".uno:NameGroup" +#define CMD_SID_OBJECT_TITLE_DESCRIPTION ".uno:ObjectTitleDescription" +#define CMD_SID_NAVIGATOR_INIT ".uno:NavigatorInit" +#define CMD_SID_NAVIGATOR_OBJECT ".uno:NavigatorObject" +#define CMD_SID_NAVIGATOR_PAGE ".uno:NavigatorPage" +#define CMD_SID_NAVIGATOR_PAGENAME ".uno:NavigatorPageName" +#define CMD_SID_NAVIGATOR_PEN ".uno:NavigatorPen" +#define CMD_SID_NAVIGATOR_STATE ".uno:NavigatorState" +#define CMD_SID_CONNECTION_NEW_ROUTING ".uno:NewRouting" +#define CMD_SID_NOTES_MASTERPAGE ".uno:NotesMasterPage" +#define CMD_SID_NOTESMODE ".uno:NotesMode" +#define CMD_SID_POSITION ".uno:ObjectPosition" +#define CMD_SID_DRAWTBX_3D_OBJECTS ".uno:Objects3DToolbox" +#define CMD_SID_ORIGINAL_SIZE ".uno:OriginalSize" +#define CMD_SID_SAVEGRAPHIC ".uno:SaveGraphic" +#define CMD_SID_OUTLINEMODE ".uno:OutlineMode" +#define CMD_SID_OUTPUT_QUALITY_BLACKWHITE ".uno:OutputQualityBlackWhite" +#define CMD_SID_OUTPUT_QUALITY_COLOR ".uno:OutputQualityColor" +#define CMD_SID_OUTPUT_QUALITY_CONTRAST ".uno:OutputQualityContrast" +#define CMD_SID_OUTPUT_QUALITY_GRAYSCALE ".uno:OutputQualityGrayscale" +#define CMD_SID_PACKNGO ".uno:PackAndGo" +#define CMD_SID_PAGEMARGIN ".uno:PageMargin" +#define CMD_SID_PAGEMODE ".uno:PageMode" +#define CMD_SID_PAGESETUP ".uno:PageSetup" +#define CMD_SID_PAGESIZE ".uno:PageSize" +#define CMD_SID_PAGES_PER_ROW ".uno:PagesPerRow" +#define CMD_SID_STATUS_PAGE ".uno:PageStatus" +#define CMD_SID_PARASPACE_DECREASE ".uno:ParaspaceDecrease" +#define CMD_SID_PARASPACE_INCREASE ".uno:ParaspaceIncrease" +#define CMD_SID_PICK_THROUGH ".uno:PickThrough" +#define CMD_SID_DRAW_POLYGON ".uno:Polygon" +#define CMD_SID_PRESENTATION ".uno:Presentation" +#define CMD_SID_PRESENTATION_DLG ".uno:PresentationDialog" +#define CMD_SID_PRESENTATION_END ".uno:PresentationEnd" +#define CMD_SID_CLEAR_UNDO_STACK ".uno:ClearUndoStack" +#define CMD_SID_PRESENTATION_LAYOUT ".uno:PresentationLayout" +#define CMD_SID_PREVIEW_STATE ".uno:PreviewState" +#define CMD_SID_PREVIEW_WIN ".uno:PreviewWindow" +#define CMD_SID_QUICKEDIT ".uno:QuickEdit" +#define CMD_SID_DRAWTBX_RECTANGLES ".uno:RectangleToolbox" +#define CMD_SID_REHEARSE_TIMINGS ".uno:RehearseTimings" +#define CMD_SID_RENAMELAYER ".uno:RenameLayer" +#define CMD_SID_RENAMEPAGE ".uno:RenamePage" +#define CMD_SID_RENAMEPAGE_QUICK ".uno:RenamePageQuick" +#define CMD_SID_REVERSE_ORDER ".uno:ReverseOrder" +#define CMD_SID_RULER_OBJECT ".uno:RulerObject" +#define CMD_SID_SELECTAT ".uno:SelectAt" +#define CMD_SID_SELECTGRADIENT ".uno:SelectGradient" +#define CMD_SID_SELECTHATCH ".uno:SelectHatch" +#define CMD_SID_SETFILLSTYLE ".uno:SetFillStyle" +#define CMD_SID_SETLINESTYLE ".uno:SetLineStyle" +#define CMD_SID_SETLINEWIDTH ".uno:SetLineWidth" +#define CMD_SID_SET_SNAPITEM ".uno:SetSnapItem" +#define CMD_SID_OBJECT_SHEAR ".uno:Shear" +#define CMD_SID_3D_SHELL ".uno:Shell3D" +#define CMD_SID_SLIDE_TRANSITIONS_PANEL ".uno:SlideChangeWindow" +#define CMD_SID_SLIDE_MASTERPAGE ".uno:SlideMasterPage" +#define CMD_SID_SNAP_BORDER ".uno:SnapBorder" +#define CMD_SID_SNAP_FRAME ".uno:SnapFrame" +#define CMD_SID_SNAP_POINTS ".uno:SnapPoints" +#define CMD_SID_SOLID_CREATE ".uno:SolidCreate" +#define CMD_SID_3D_SPHERE ".uno:Sphere" +#define CMD_SID_STARTAPP ".uno:StartApplication" +#define CMD_SID_SUMMARY_PAGE ".uno:SummaryPage" +#define CMD_SID_SWITCHLAYER ".uno:SwitchLayer" +#define CMD_SID_SWITCHPAGE ".uno:SwitchPage" +#define CMD_SID_SWITCH_POINTEDIT ".uno:SwitchPointEdit" +#define CMD_SID_TEXTALIGNMENT ".uno:TextAlignment" +#define CMD_SID_TEXTATTR_DLG ".uno:TextAttributes" +#define CMD_SID_TEXT_FITTOSIZE ".uno:TextFitToSizeTool" +#define CMD_SID_DRAWTBX_TEXT ".uno:TextToolbox" +#define CMD_SID_TITLE_MASTERPAGE ".uno:TitleMasterPage" +#define CMD_SID_3D_TORUS ".uno:Torus" +#define CMD_SID_TEXT_FITTOSIZE_VERTICAL ".uno:VerticalTextFitToSizeTool" +#define CMD_SID_ZOOM_PANNING ".uno:ZoomPanning" +#define CMD_SID_OBJECT_CROP ".uno:Crop" +#define CMD_SID_HEADER_AND_FOOTER ".uno:HeaderAndFooter" +#define CMD_SID_INSERT_PAGE_NUMBER ".uno:InsertPageNumber" +#define CMD_SID_INSERT_DATE_TIME ".uno:InsertDateAndTime" +#define CMD_SID_MASTER_LAYOUTS ".uno:MasterLayouts" +#define CMD_SID_DRAW_FONTWORK ".uno:DrawFontwork" +#define CMD_SID_DRAW_FONTWORK_VERTICAL ".uno:DrawFontworkVertical" +#define CMD_SID_LAYER_DIALOG_WIN ".uno:LayerDialogChildWindow" +#define CMD_SID_INSERT_MASTER_PAGE ".uno:InsertMasterPage" +#define CMD_SID_DELETE_MASTER_PAGE ".uno:DeleteMasterPage" +#define CMD_SID_RENAME_MASTER_PAGE ".uno:RenameMasterPage" +#define CMD_SID_CLOSE_MASTER_VIEW ".uno:CloseMasterView" +#define CMD_SID_SELECT_BACKGROUND ".uno:SelectBackground" +#define CMD_SID_DISPLAY_MASTER_BACKGROUND ".uno:DisplayMasterBackground" +#define CMD_SID_DISPLAY_MASTER_OBJECTS ".uno:DisplayMasterObjects" +#define CMD_SID_TABLE_TOOLBOX ".uno:TableToolBox" +#define CMD_SID_TABLE_DISTRIBUTE_COLUMNS ".uno:DistributeColumns" +#define CMD_SID_TABLE_DISTRIBUTE_ROWS ".uno:DistributeRows" +#define CMD_SID_TP_APPLY_TO_ALL_SLIDES ".uno:TaskPaneApplyToAllSlides" +#define CMD_SID_TP_APPLY_TO_SELECTED_SLIDES ".uno:TaskPaneApplyToSelectedSlides" +#define CMD_SID_TP_USE_FOR_NEW_PRESENTATIONS ".uno:TaskPaneUseForNewPresentations" +#define CMD_SID_TP_SHOW_SMALL_PREVIEW ".uno:TaskPaneShowSmallPreview" +#define CMD_SID_TP_SHOW_LARGE_PREVIEW ".uno:TaskPaneShowLargePreview" +#define CMD_SID_TP_EDIT_MASTER ".uno:TaskPaneEditMaster" +#define CMD_SID_INSERTPAGE_LAYOUT_MENU ".uno:TaskPaneInsertPage" +#define CMD_SID_SWITCH_SHELL ".uno:SwitchViewShell" +#define CMD_SID_SWITCH_SHELL_PANE ".uno:SwitchViewShellPane" +#define CMD_SID_LEFT_PANE_IMPRESS ".uno:LeftPaneImpress" +#define CMD_SID_LEFT_PANE_DRAW ".uno:LeftPaneDraw" +#define CMD_SID_RIGHT_PANE ".uno:RightPane" +#define CMD_SID_NOTES_WINDOW ".uno:NotesChildWindow" +#define CMD_SID_NORMAL_MULTI_PANE_GUI ".uno:NormalMultiPaneGUI" +#define CMD_SID_SLIDE_SORTER_MULTI_PANE_GUI ".uno:SlideSorterMultiPaneGUI" +#define CMD_SID_TASK_PANE ".uno:TaskPaneShowPanel" + +#endif diff --git a/sd/inc/sdmod.hxx b/sd/inc/sdmod.hxx index 0dad3ca237cb..568d855af5b9 100644 --- a/sd/inc/sdmod.hxx +++ b/sd/inc/sdmod.hxx @@ -114,8 +114,6 @@ public: void Execute(SfxRequest& rReq); void GetState(SfxItemSet&); - virtual void FillStatusBar(StatusBar& rBar); - SdOptions* GetSdOptions(DocumentType eDocType); SD_DLLPUBLIC SvStorageStreamRef GetOptionStream( const String& rOptionName, SdOptionStreamMode eMode ); diff --git a/sd/sdi/TaskPaneViewShell.sdi b/sd/sdi/TaskPaneViewShell.sdi index 22f0fba21265..8fcad18dbc22 100644 --- a/sd/sdi/TaskPaneViewShell.sdi +++ b/sd/sdi/TaskPaneViewShell.sdi @@ -24,184 +24,6 @@ * for a copy of the LGPLv3 License. * ************************************************************************/ - -SfxVoidItem TaskPaneApplyToAllSlides SID_TP_APPLY_TO_ALL_SLIDES -[ - /* flags: */ - AutoUpdate = TRUE, - Cachable = Cachable, - FastCall = FALSE, - HasCoreId = FALSE, - HasDialog = FALSE, - ReadOnlyDoc = FALSE, - Toggle = FALSE, - Container = FALSE, - RecordAbsolute = FALSE, - RecordPerSet; - Synchron; - - Readonly = FALSE, - - /* config: */ - AccelConfig = FALSE, - MenuConfig = FALSE, - StatusBarConfig = FALSE, - ToolBoxConfig = FALSE, - GroupId = GID_VIEW; -] - -SfxVoidItem TaskPaneApplyToSelectedSlides SID_TP_APPLY_TO_SELECTED_SLIDES -[ - /* flags: */ - AutoUpdate = TRUE, - Cachable = Cachable, - FastCall = FALSE, - HasCoreId = FALSE, - HasDialog = FALSE, - ReadOnlyDoc = FALSE, - Toggle = FALSE, - Container = FALSE, - RecordAbsolute = FALSE, - RecordPerSet; - Synchron; - - Readonly = FALSE, - - /* config: */ - AccelConfig = FALSE, - MenuConfig = FALSE, - StatusBarConfig = FALSE, - ToolBoxConfig = FALSE, - GroupId = GID_VIEW; -] - -SfxVoidItem TaskPaneUseForNewPresentations SID_TP_USE_FOR_NEW_PRESENTATIONS -[ - /* flags: */ - AutoUpdate = TRUE, - Cachable = Cachable, - FastCall = FALSE, - HasCoreId = FALSE, - HasDialog = FALSE, - ReadOnlyDoc = FALSE, - Toggle = FALSE, - Container = FALSE, - RecordAbsolute = FALSE, - RecordPerSet; - Synchron; - - Readonly = FALSE, - - /* config: */ - AccelConfig = FALSE, - MenuConfig = FALSE, - StatusBarConfig = FALSE, - ToolBoxConfig = FALSE, - GroupId = GID_VIEW; -] - -SfxVoidItem TaskPaneShowSmallPreview SID_TP_SHOW_SMALL_PREVIEW -[ - /* flags: */ - AutoUpdate = TRUE, - Cachable = Cachable, - FastCall = FALSE, - HasCoreId = FALSE, - HasDialog = FALSE, - ReadOnlyDoc = FALSE, - Toggle = FALSE, - Container = FALSE, - RecordAbsolute = FALSE, - RecordPerSet; - Synchron; - - Readonly = FALSE, - - /* config: */ - AccelConfig = FALSE, - MenuConfig = FALSE, - StatusBarConfig = FALSE, - ToolBoxConfig = FALSE, - GroupId = GID_VIEW; -] - - -SfxVoidItem TaskPaneShowLargePreview SID_TP_SHOW_LARGE_PREVIEW -[ - /* flags: */ - AutoUpdate = TRUE, - Cachable = Cachable, - FastCall = FALSE, - HasCoreId = FALSE, - HasDialog = FALSE, - ReadOnlyDoc = FALSE, - Toggle = FALSE, - Container = FALSE, - RecordAbsolute = FALSE, - RecordPerSet; - Synchron; - - Readonly = FALSE, - - /* config: */ - AccelConfig = FALSE, - MenuConfig = FALSE, - StatusBarConfig = FALSE, - ToolBoxConfig = FALSE, - GroupId = GID_VIEW; -] - -SfxVoidItem TaskPaneEditMaster SID_TP_EDIT_MASTER -[ - /* flags: */ - AutoUpdate = TRUE, - Cachable = Cachable, - FastCall = FALSE, - HasCoreId = FALSE, - HasDialog = FALSE, - ReadOnlyDoc = FALSE, - Toggle = FALSE, - Container = FALSE, - RecordAbsolute = FALSE, - RecordPerSet; - Synchron; - - Readonly = FALSE, - - /* config: */ - AccelConfig = FALSE, - MenuConfig = FALSE, - StatusBarConfig = FALSE, - ToolBoxConfig = FALSE, - GroupId = GID_VIEW; -] - -SfxVoidItem TaskPaneInsertPage SID_INSERTPAGE_LAYOUT_MENU -[ - /* flags: */ - AutoUpdate = FALSE, - Cachable = Cachable, - FastCall = FALSE, - HasCoreId = FALSE, - HasDialog = FALSE, - ReadOnlyDoc = FALSE, - Toggle = FALSE, - Container = FALSE, - RecordAbsolute = FALSE, - RecordPerSet; - Synchron; - - Readonly = TRUE, - - /* config: */ - AccelConfig = TRUE, - MenuConfig = TRUE, - StatusBarConfig = FALSE, - ToolBoxConfig = TRUE, - GroupId = GID_INSERT; -] - - interface MasterPagesSelectorInterface { SID_TP_APPLY_TO_ALL_SLIDES diff --git a/sd/sdi/ViewShellBase.sdi b/sd/sdi/ViewShellBase.sdi index e9cb7119fa89..063c2307c220 100644 --- a/sd/sdi/ViewShellBase.sdi +++ b/sd/sdi/ViewShellBase.sdi @@ -25,245 +25,6 @@ * ************************************************************************/ -/** This item holds the requested type of view shell when calling the - SID_SWITCH_SHELL slot. -*/ -SfxInt32Item SwitchViewShell SID_SWITCH_SHELL -[ - /* flags: */ - AutoUpdate = FALSE, - Cachable = Cachable, - FastCall = FALSE, - HasCoreId = FALSE, - HasDialog = FALSE, - ReadOnlyDoc = TRUE, - Toggle = FALSE, - Container = FALSE, - RecordAbsolute = FALSE, - RecordPerSet; - Asynchron; - - Readonly = FALSE, - - /* config: */ - AccelConfig = FALSE, - MenuConfig = FALSE, - StatusBarConfig = FALSE, - ToolBoxConfig = FALSE, - GroupId = GID_VIEW; -] - - -/** This item holds the requested pane of the multi pane GUI in which a - change of the view shell is requested by a call to the SID_SWITCH_SHELL - slot. -*/ -SfxInt32Item SwitchViewShellPane SID_SWITCH_SHELL_PANE -[ - // flags: - AutoUpdate = FALSE, - Cachable = Cachable, - FastCall = FALSE, - HasCoreId = FALSE, - HasDialog = FALSE, - ReadOnlyDoc = TRUE, - Toggle = FALSE, - Container = FALSE, - RecordAbsolute = FALSE, - RecordPerSet; - Asynchron; - - Readonly = FALSE, - - // config: - AccelConfig = FALSE, - MenuConfig = FALSE, - StatusBarConfig = FALSE, - ToolBoxConfig = FALSE, - GroupId = GID_VIEW; -] - -SfxBoolItem LeftPaneImpress SID_LEFT_PANE_IMPRESS - -[ - /* flags: */ - AutoUpdate = TRUE, - Cachable = Cachable, - FastCall = FALSE, - HasCoreId = FALSE, - HasDialog = TRUE, - ReadOnlyDoc = TRUE, - Toggle = FALSE, - Container = FALSE, - RecordAbsolute = FALSE, - RecordPerSet; - Asynchron; - - Readonly = FALSE, - - /* config: */ - AccelConfig = TRUE, - MenuConfig = TRUE, - StatusBarConfig = FALSE, - ToolBoxConfig = TRUE, - GroupId = GID_MODIFY; -] - -SfxBoolItem LeftPaneDraw SID_LEFT_PANE_DRAW - -[ - /* flags: */ - AutoUpdate = TRUE, - Cachable = Cachable, - FastCall = FALSE, - HasCoreId = FALSE, - HasDialog = TRUE, - ReadOnlyDoc = TRUE, - Toggle = FALSE, - Container = FALSE, - RecordAbsolute = FALSE, - RecordPerSet; - Asynchron; - - Readonly = FALSE, - - /* config: */ - AccelConfig = TRUE, - MenuConfig = TRUE, - StatusBarConfig = FALSE, - ToolBoxConfig = TRUE, - GroupId = GID_MODIFY; -] - -SfxBoolItem RightPane SID_RIGHT_PANE - -[ - /* flags: */ - AutoUpdate = TRUE, - Cachable = Cachable, - FastCall = FALSE, - HasCoreId = FALSE, - HasDialog = TRUE, - ReadOnlyDoc = FALSE, - Toggle = FALSE, - Container = FALSE, - RecordAbsolute = FALSE, - RecordPerSet; - Asynchron; - - Readonly = FALSE, - - /* config: */ - AccelConfig = TRUE, - MenuConfig = TRUE, - StatusBarConfig = FALSE, - ToolBoxConfig = TRUE, - GroupId = GID_MODIFY; -] - -SfxVoidItem NotesChildWindow SID_NOTES_WINDOW - -[ - /* flags: */ - AutoUpdate = TRUE, - Cachable = Cachable, - FastCall = FALSE, - HasCoreId = FALSE, - HasDialog = FALSE, - ReadOnlyDoc = FALSE, - Toggle = FALSE, - Container = TRUE, - RecordAbsolute = FALSE, - RecordPerSet; - Asynchron; - - Readonly = FALSE, - - /* config: */ - AccelConfig = FALSE, - MenuConfig = FALSE, - StatusBarConfig = FALSE, - ToolBoxConfig = FALSE, - GroupId = GID_VIEW; -] - -SfxBoolItem NormalMultiPaneGUI SID_NORMAL_MULTI_PANE_GUI - -[ - /* flags: */ - AutoUpdate = TRUE, - Cachable = Cachable, - FastCall = FALSE, - HasCoreId = FALSE, - HasDialog = TRUE, - ReadOnlyDoc = TRUE, - Toggle = FALSE, - Container = FALSE, - RecordAbsolute = FALSE, - RecordPerSet; - Asynchron; - - Readonly = FALSE, - - /* config: */ - AccelConfig = TRUE, - MenuConfig = TRUE, - StatusBarConfig = FALSE, - ToolBoxConfig = TRUE, - GroupId = GID_MODIFY; -] - -SfxBoolItem SlideSorterMultiPaneGUI SID_SLIDE_SORTER_MULTI_PANE_GUI - -[ - /* flags: */ - AutoUpdate = TRUE, - Cachable = Cachable, - FastCall = FALSE, - HasCoreId = FALSE, - HasDialog = TRUE, - ReadOnlyDoc = FALSE, - Toggle = FALSE, - Container = FALSE, - RecordAbsolute = FALSE, - RecordPerSet; - Asynchron; - - Readonly = FALSE, - - /* config: */ - AccelConfig = TRUE, - MenuConfig = TRUE, - StatusBarConfig = FALSE, - ToolBoxConfig = TRUE, - GroupId = GID_MODIFY; -] - -SfxVoidItem TaskPaneShowPanel SID_TASK_PANE ( - SfxBoolItem IsPanelVisible ID_VAL_ISVISIBLE, - SfxUInt32Item PanelId ID_VAL_PANEL_INDEX) -[ - /* flags: */ - AutoUpdate = TRUE, - Cachable = Cachable, - FastCall = FALSE, - HasCoreId = FALSE, - HasDialog = FALSE, - ReadOnlyDoc = FALSE, - Toggle = FALSE, - Container = TRUE, - RecordAbsolute = FALSE, - RecordPerSet; - Synchron; - - /* config: */ - AccelConfig = FALSE, - MenuConfig = FALSE, - StatusBarConfig = FALSE, - ToolBoxConfig = FALSE, - GroupId = GID_VIEW; -] - interface ViewShellBaseView { SID_SWITCH_SHELL diff --git a/sd/sdi/sdraw.sdi b/sd/sdi/sdraw.sdi index 7c37e455276c..e619f3b9986b 100644 --- a/sd/sdi/sdraw.sdi +++ b/sd/sdi/sdraw.sdi @@ -6956,3 +6956,420 @@ SfxVoidItem DistributeRows SID_TABLE_DISTRIBUTE_ROWS ToolBoxConfig = TRUE, GroupId = GID_TABLE; ] + +SfxVoidItem TaskPaneApplyToAllSlides SID_TP_APPLY_TO_ALL_SLIDES +[ + /* flags: */ + AutoUpdate = TRUE, + Cachable = Cachable, + FastCall = FALSE, + HasCoreId = FALSE, + HasDialog = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + Synchron; + + Readonly = FALSE, + + /* config: */ + AccelConfig = FALSE, + MenuConfig = FALSE, + StatusBarConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = GID_VIEW; +] + +SfxVoidItem TaskPaneApplyToSelectedSlides SID_TP_APPLY_TO_SELECTED_SLIDES +[ + /* flags: */ + AutoUpdate = TRUE, + Cachable = Cachable, + FastCall = FALSE, + HasCoreId = FALSE, + HasDialog = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + Synchron; + + Readonly = FALSE, + + /* config: */ + AccelConfig = FALSE, + MenuConfig = FALSE, + StatusBarConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = GID_VIEW; +] + +SfxVoidItem TaskPaneUseForNewPresentations SID_TP_USE_FOR_NEW_PRESENTATIONS +[ + /* flags: */ + AutoUpdate = TRUE, + Cachable = Cachable, + FastCall = FALSE, + HasCoreId = FALSE, + HasDialog = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + Synchron; + + Readonly = FALSE, + + /* config: */ + AccelConfig = FALSE, + MenuConfig = FALSE, + StatusBarConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = GID_VIEW; +] + +SfxVoidItem TaskPaneShowSmallPreview SID_TP_SHOW_SMALL_PREVIEW +[ + /* flags: */ + AutoUpdate = TRUE, + Cachable = Cachable, + FastCall = FALSE, + HasCoreId = FALSE, + HasDialog = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + Synchron; + + Readonly = FALSE, + + /* config: */ + AccelConfig = FALSE, + MenuConfig = FALSE, + StatusBarConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = GID_VIEW; +] + + +SfxVoidItem TaskPaneShowLargePreview SID_TP_SHOW_LARGE_PREVIEW +[ + /* flags: */ + AutoUpdate = TRUE, + Cachable = Cachable, + FastCall = FALSE, + HasCoreId = FALSE, + HasDialog = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + Synchron; + + Readonly = FALSE, + + /* config: */ + AccelConfig = FALSE, + MenuConfig = FALSE, + StatusBarConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = GID_VIEW; +] + +SfxVoidItem TaskPaneEditMaster SID_TP_EDIT_MASTER +[ + /* flags: */ + AutoUpdate = TRUE, + Cachable = Cachable, + FastCall = FALSE, + HasCoreId = FALSE, + HasDialog = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + Synchron; + + Readonly = FALSE, + + /* config: */ + AccelConfig = FALSE, + MenuConfig = FALSE, + StatusBarConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = GID_VIEW; +] + +SfxVoidItem TaskPaneInsertPage SID_INSERTPAGE_LAYOUT_MENU +[ + /* flags: */ + AutoUpdate = FALSE, + Cachable = Cachable, + FastCall = FALSE, + HasCoreId = FALSE, + HasDialog = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + Synchron; + + Readonly = TRUE, + + /* config: */ + AccelConfig = TRUE, + MenuConfig = TRUE, + StatusBarConfig = FALSE, + ToolBoxConfig = TRUE, + GroupId = GID_INSERT; +] + +/** This item holds the requested type of view shell when calling the + SID_SWITCH_SHELL slot. +*/ +SfxInt32Item SwitchViewShell SID_SWITCH_SHELL +[ + /* flags: */ + AutoUpdate = FALSE, + Cachable = Cachable, + FastCall = FALSE, + HasCoreId = FALSE, + HasDialog = FALSE, + ReadOnlyDoc = TRUE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + Asynchron; + + Readonly = FALSE, + + /* config: */ + AccelConfig = FALSE, + MenuConfig = FALSE, + StatusBarConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = GID_VIEW; +] + + +/** This item holds the requested pane of the multi pane GUI in which a + change of the view shell is requested by a call to the SID_SWITCH_SHELL + slot. +*/ +SfxInt32Item SwitchViewShellPane SID_SWITCH_SHELL_PANE +[ + // flags: + AutoUpdate = FALSE, + Cachable = Cachable, + FastCall = FALSE, + HasCoreId = FALSE, + HasDialog = FALSE, + ReadOnlyDoc = TRUE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + Asynchron; + + Readonly = FALSE, + + // config: + AccelConfig = FALSE, + MenuConfig = FALSE, + StatusBarConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = GID_VIEW; +] + +SfxBoolItem LeftPaneImpress SID_LEFT_PANE_IMPRESS + +[ + /* flags: */ + AutoUpdate = TRUE, + Cachable = Cachable, + FastCall = FALSE, + HasCoreId = FALSE, + HasDialog = TRUE, + ReadOnlyDoc = TRUE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + Asynchron; + + Readonly = FALSE, + + /* config: */ + AccelConfig = TRUE, + MenuConfig = TRUE, + StatusBarConfig = FALSE, + ToolBoxConfig = TRUE, + GroupId = GID_MODIFY; +] + +SfxBoolItem LeftPaneDraw SID_LEFT_PANE_DRAW + +[ + /* flags: */ + AutoUpdate = TRUE, + Cachable = Cachable, + FastCall = FALSE, + HasCoreId = FALSE, + HasDialog = TRUE, + ReadOnlyDoc = TRUE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + Asynchron; + + Readonly = FALSE, + + /* config: */ + AccelConfig = TRUE, + MenuConfig = TRUE, + StatusBarConfig = FALSE, + ToolBoxConfig = TRUE, + GroupId = GID_MODIFY; +] + +SfxBoolItem RightPane SID_RIGHT_PANE + +[ + /* flags: */ + AutoUpdate = TRUE, + Cachable = Cachable, + FastCall = FALSE, + HasCoreId = FALSE, + HasDialog = TRUE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + Asynchron; + + Readonly = FALSE, + + /* config: */ + AccelConfig = TRUE, + MenuConfig = TRUE, + StatusBarConfig = FALSE, + ToolBoxConfig = TRUE, + GroupId = GID_MODIFY; +] + +SfxVoidItem NotesChildWindow SID_NOTES_WINDOW + +[ + /* flags: */ + AutoUpdate = TRUE, + Cachable = Cachable, + FastCall = FALSE, + HasCoreId = FALSE, + HasDialog = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = TRUE, + RecordAbsolute = FALSE, + RecordPerSet; + Asynchron; + + Readonly = FALSE, + + /* config: */ + AccelConfig = FALSE, + MenuConfig = FALSE, + StatusBarConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = GID_VIEW; +] + +SfxBoolItem NormalMultiPaneGUI SID_NORMAL_MULTI_PANE_GUI + +[ + /* flags: */ + AutoUpdate = TRUE, + Cachable = Cachable, + FastCall = FALSE, + HasCoreId = FALSE, + HasDialog = TRUE, + ReadOnlyDoc = TRUE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + Asynchron; + + Readonly = FALSE, + + /* config: */ + AccelConfig = TRUE, + MenuConfig = TRUE, + StatusBarConfig = FALSE, + ToolBoxConfig = TRUE, + GroupId = GID_MODIFY; +] + +SfxBoolItem SlideSorterMultiPaneGUI SID_SLIDE_SORTER_MULTI_PANE_GUI + +[ + /* flags: */ + AutoUpdate = TRUE, + Cachable = Cachable, + FastCall = FALSE, + HasCoreId = FALSE, + HasDialog = TRUE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + Asynchron; + + Readonly = FALSE, + + /* config: */ + AccelConfig = TRUE, + MenuConfig = TRUE, + StatusBarConfig = FALSE, + ToolBoxConfig = TRUE, + GroupId = GID_MODIFY; +] + +SfxVoidItem TaskPaneShowPanel SID_TASK_PANE ( + SfxBoolItem IsPanelVisible ID_VAL_ISVISIBLE, + SfxUInt32Item PanelId ID_VAL_PANEL_INDEX) +[ + /* flags: */ + AutoUpdate = TRUE, + Cachable = Cachable, + FastCall = FALSE, + HasCoreId = FALSE, + HasDialog = FALSE, + ReadOnlyDoc = FALSE, + Toggle = FALSE, + Container = TRUE, + RecordAbsolute = FALSE, + RecordPerSet; + Synchron; + + /* config: */ + AccelConfig = FALSE, + MenuConfig = FALSE, + StatusBarConfig = FALSE, + ToolBoxConfig = FALSE, + GroupId = GID_VIEW; +] + + diff --git a/sd/source/filter/html/pubdlg.cxx b/sd/source/filter/html/pubdlg.cxx index c2d975cb9429..99d04ffcf10a 100644 --- a/sd/source/filter/html/pubdlg.cxx +++ b/sd/source/filter/html/pubdlg.cxx @@ -81,7 +81,7 @@ const UINT16 nMagic = (UINT16)0x1977; #define KEY_QUALITY "JPG-EXPORT-QUALITY" // Die Help Ids der einzelnen Seiten -ULONG aPageHelpIds[NOOFPAGES] = +const char* aPageHelpIds[NOOFPAGES] = { HID_SD_HTMLEXPORT_PAGE1, HID_SD_HTMLEXPORT_PAGE2, @@ -478,8 +478,7 @@ SdPublishingDlg::SdPublishingDlg(Window* pWindow, DocumentType eDocType) SetDefaults(); - // FIXME: HELPID - SetHelpId(""/*aPageHelpIds[0]*/); + SetHelpId(aPageHelpIds[0]); aNextPageButton.GrabFocus(); } @@ -1287,9 +1286,7 @@ IMPL_LINK( SdPublishingDlg, FinishHdl, OKButton *, EMPTYARG ) void SdPublishingDlg::ChangePage() { int nPage = aAssistentFunc.GetCurrentPage(); - // FIXME: HELPID - (void)nPage; - SetHelpId(""/*aPageHelpIds[nPage-1]*/); + SetHelpId(aPageHelpIds[nPage-1]); UpdatePage(); diff --git a/sd/source/ui/animations/CustomAnimationCreateDialog.cxx b/sd/source/ui/animations/CustomAnimationCreateDialog.cxx index 217bdd4267cb..3ac3d1f24a07 100644 --- a/sd/source/ui/animations/CustomAnimationCreateDialog.cxx +++ b/sd/source/ui/animations/CustomAnimationCreateDialog.cxx @@ -542,24 +542,19 @@ CustomAnimationCreateDialog::CustomAnimationCreateDialog( Window* pParent, Custo const CustomAnimationPresets& rPresets = CustomAnimationPresets::getCustomAnimationPresets(); mpTabPages[ENTRANCE] = new CustomAnimationCreateTabPage( mpTabControl, this, ENTRANCE, rPresets.getEntrancePresets(), bHasText ); - // FIXME: HELPID - mpTabPages[ENTRANCE]->SetHelpId( ""/*HID_SD_CUSTOMANIMATIONDIALOG_ENTRANCE*/ ); + mpTabPages[ENTRANCE]->SetHelpId( HID_SD_CUSTOMANIMATIONDIALOG_ENTRANCE ); mpTabControl->SetTabPage( RID_TP_CUSTOMANIMATION_ENTRANCE, mpTabPages[ENTRANCE] ); mpTabPages[EMPHASIS] = new CustomAnimationCreateTabPage( mpTabControl, this, EMPHASIS, rPresets.getEmphasisPresets(), bHasText ); - // FIXME: HELPID - mpTabPages[EMPHASIS]->SetHelpId( ""/*HID_SD_CUSTOMANIMATIONDIALOG_EMPHASIS*/ ); + mpTabPages[EMPHASIS]->SetHelpId( HID_SD_CUSTOMANIMATIONDIALOG_EMPHASIS ); mpTabControl->SetTabPage( RID_TP_CUSTOMANIMATION_EMPHASIS, mpTabPages[EMPHASIS] ); mpTabPages[EXIT] = new CustomAnimationCreateTabPage( mpTabControl, this, EXIT, rPresets.getExitPresets(), bHasText ); - // FIXME: HELPID - mpTabPages[EXIT]->SetHelpId( ""/*HID_SD_CUSTOMANIMATIONDIALOG_EXIT*/ ); + mpTabPages[EXIT]->SetHelpId( HID_SD_CUSTOMANIMATIONDIALOG_EXIT ); mpTabControl->SetTabPage( RID_TP_CUSTOMANIMATION_EXIT, mpTabPages[EXIT] ); mpTabPages[MOTIONPATH] = new CustomAnimationCreateTabPage( mpTabControl, this, MOTIONPATH, rPresets.getMotionPathsPresets(), bHasText ); - // FIXME: HELPID - mpTabPages[MOTIONPATH]->SetHelpId( ""/*HID_SD_CUSTOMANIMATIONDIALOG_MOTIONPATH*/ ); + mpTabPages[MOTIONPATH]->SetHelpId( HID_SD_CUSTOMANIMATIONDIALOG_MOTIONPATH ); mpTabControl->SetTabPage( RID_TP_CUSTOMANIMATION_MOTIONPATH, mpTabPages[MOTIONPATH] ); mpTabPages[MISCEFFECTS] = new CustomAnimationCreateTabPage( mpTabControl, this, MISCEFFECTS, rPresets.getMiscPresets(), bHasText ); - // FIXME: HELPID - mpTabPages[MISCEFFECTS]->SetHelpId( ""/*HID_SD_CUSTOMANIMATIONDIALOG_MISCEFFECTS*/ ); + mpTabPages[MISCEFFECTS]->SetHelpId( HID_SD_CUSTOMANIMATIONDIALOG_MISCEFFECTS ); mpTabControl->SetTabPage( RID_TP_CUSTOMANIMATION_MISCEFFECTS, mpTabPages[MISCEFFECTS] ); getCurrentPage()->setDuration( mfDuration ); diff --git a/sd/source/ui/animations/CustomAnimationDialog.cxx b/sd/source/ui/animations/CustomAnimationDialog.cxx index b1efd1cf1904..7f942562b951 100644 --- a/sd/source/ui/animations/CustomAnimationDialog.cxx +++ b/sd/source/ui/animations/CustomAnimationDialog.cxx @@ -144,8 +144,7 @@ PresetPropertyBox::PresetPropertyBox( sal_Int32 nControlType, Window* pParent, c mpControl = new ListBox( pParent, WB_BORDER|WB_TABSTOP|WB_DROPDOWN ); mpControl->SetDropDownLineCount( 10 ); mpControl->SetSelectHdl( rModifyHdl ); - // FIXME: HELPID - mpControl->SetHelpId( ""/*HID_SD_CUSTOMANIMATIONPANE_PRESETPROPERTYBOX*/ ); + mpControl->SetHelpId( HID_SD_CUSTOMANIMATIONPANE_PRESETPROPERTYBOX ); setValue( rValue, aPresetId ); @@ -231,8 +230,7 @@ ColorPropertyBox::ColorPropertyBox( sal_Int32 nControlType, Window* pParent, con mpControl = new ColorListBox( pParent, WB_BORDER|WB_TABSTOP|WB_DROPDOWN ); mpControl->SetDropDownLineCount( 10 ); mpControl->SetSelectHdl( rModifyHdl ); - // FIXME: HELPID - mpControl->SetHelpId( ""/*HID_SD_CUSTOMANIMATIONPANE_COLORPROPERTYBOX*/ ); + mpControl->SetHelpId( HID_SD_CUSTOMANIMATIONPANE_COLORPROPERTYBOX ); SfxObjectShell* pDocSh = SfxObjectShell::Current(); DBG_ASSERT( pDocSh, "DocShell not found!" ); @@ -324,8 +322,7 @@ FontPropertyBox::FontPropertyBox( sal_Int32 nControlType, Window* pParent, const mpControl = new FontNameBox( pParent, WB_BORDER|WB_TABSTOP|WB_DROPDOWN ); mpControl->SetDropDownLineCount( 10 ); mpControl->SetSelectHdl( rModifyHdl ); - // FIXME: HELPID - mpControl->SetHelpId( ""/*HID_SD_CUSTOMANIMATIONPANE_FONTPROPERTYBOX*/ ); + mpControl->SetHelpId( HID_SD_CUSTOMANIMATIONPANE_FONTPROPERTYBOX ); SfxObjectShell* pDocSh = SfxObjectShell::Current(); const SfxPoolItem* pItem; @@ -504,8 +501,7 @@ CharHeightPropertyBox::CharHeightPropertyBox( sal_Int32 nControlType, Window* pP mpControl = new DropdownMenuBox( pParent, mpMetric, mpMenu ); mpControl->SetMenuSelectHdl( LINK( this, CharHeightPropertyBox, implMenuSelectHdl )); mpControl->SetModifyHdl( rModifyHdl ); - // FIXME: HELPID - mpControl->SetHelpId( ""/*HID_SD_CUSTOMANIMATIONPANE_CHARHEIGHTPROPERTYBOX*/ ); + mpControl->SetHelpId( HID_SD_CUSTOMANIMATIONPANE_CHARHEIGHTPROPERTYBOX ); OUString aPresetId; setValue( rValue, aPresetId ); @@ -607,8 +603,7 @@ TransparencyPropertyBox::TransparencyPropertyBox( sal_Int32 nControlType, Window mpControl = new DropdownMenuBox( pParent, mpMetric, mpMenu ); mpControl->SetMenuSelectHdl( LINK( this, TransparencyPropertyBox, implMenuSelectHdl )); - // FIXME: HELPID - mpControl->SetHelpId( ""/*HID_SD_CUSTOMANIMATIONPANE_TRANSPARENCYPROPERTYBOX*/ ); + mpControl->SetHelpId( HID_SD_CUSTOMANIMATIONPANE_TRANSPARENCYPROPERTYBOX ); Link aLink( LINK( this, TransparencyPropertyBox, implModifyHdl ) ); mpControl->SetModifyHdl( aLink ); @@ -724,8 +719,7 @@ RotationPropertyBox::RotationPropertyBox( sal_Int32 nControlType, Window* pParen mpMenu = new PopupMenu(SdResId( RID_CUSTOMANIMATION_ROTATION_POPUP ) ); mpControl = new DropdownMenuBox( pParent, mpMetric, mpMenu ); mpControl->SetMenuSelectHdl( LINK( this, RotationPropertyBox, implMenuSelectHdl )); - // FIXME: HELPID - mpControl->SetHelpId( ""/*HID_SD_CUSTOMANIMATIONPANE_ROTATIONPROPERTYBOX*/ ); + mpControl->SetHelpId( HID_SD_CUSTOMANIMATIONPANE_ROTATIONPROPERTYBOX ); Link aLink( LINK( this, RotationPropertyBox, implModifyHdl ) ); mpControl->SetModifyHdl( aLink ); @@ -866,8 +860,7 @@ ScalePropertyBox::ScalePropertyBox( sal_Int32 nControlType, Window* pParent, con mpMenu = new PopupMenu(SdResId( RID_CUSTOMANIMATION_SCALE_POPUP ) ); mpControl = new DropdownMenuBox( pParent, mpMetric, mpMenu ); mpControl->SetMenuSelectHdl( LINK( this, ScalePropertyBox, implMenuSelectHdl )); - // FIXME: HELPID - mpControl->SetHelpId( ""/*HID_SD_CUSTOMANIMATIONPANE_SCALEPROPERTYBOX*/ ); + mpControl->SetHelpId( HID_SD_CUSTOMANIMATIONPANE_SCALEPROPERTYBOX ); Link aLink( LINK( this, ScalePropertyBox, implModifyHdl ) ); mpControl->SetModifyHdl( aLink ); @@ -1046,8 +1039,7 @@ FontStylePropertyBox::FontStylePropertyBox( sal_Int32 nControlType, Window* pPar mpMenu = new PopupMenu(SdResId( RID_CUSTOMANIMATION_FONTSTYLE_POPUP ) ); mpControl = new DropdownMenuBox( pParent, mpEdit, mpMenu ); mpControl->SetMenuSelectHdl( LINK( this, FontStylePropertyBox, implMenuSelectHdl )); - // FIXME: HELPID - mpControl->SetHelpId( ""/*HID_SD_CUSTOMANIMATIONPANE_FONTSTYLEPROPERTYBOX*/ ); + mpControl->SetHelpId( HID_SD_CUSTOMANIMATIONPANE_FONTSTYLEPROPERTYBOX ); OUString aPresetId; setValue( rValue, aPresetId ); diff --git a/sd/source/ui/annotations/annotations.src b/sd/source/ui/annotations/annotations.src index 0ca43731d6b0..536d10f9a417 100644 --- a/sd/source/ui/annotations/annotations.src +++ b/sd/source/ui/annotations/annotations.src @@ -28,6 +28,7 @@ #include "annotations.hrc" #include "glob.hrc" #include +#include "helpids.h" Menu RID_ANNOTATION_CONTEXTMENU { @@ -36,7 +37,7 @@ Menu RID_ANNOTATION_CONTEXTMENU MenuItem { Identifier = SID_REPLYTO_POSTIT; - HelpID = SID_REPLYTO_POSTIT ; + HelpId = CMD_SID_REPLYTO_POSTIT ; Text [ en-US ] = "~Reply"; }; MenuItem @@ -46,25 +47,25 @@ Menu RID_ANNOTATION_CONTEXTMENU MenuItem { Identifier = SID_ATTR_CHAR_WEIGHT; - HelpID = SID_ATTR_CHAR_WEIGHT ; + HelpId = CMD_SID_ATTR_CHAR_WEIGHT ; Text [ en-US ] = "~Bold"; }; MenuItem { Identifier = SID_ATTR_CHAR_POSTURE; - HelpID = SID_ATTR_CHAR_POSTURE; + HelpId = CMD_SID_ATTR_CHAR_POSTURE; Text [ en-US ] = "~Italic"; }; MenuItem { Identifier = SID_ATTR_CHAR_UNDERLINE; - HelpID = SID_ATTR_CHAR_UNDERLINE; + HelpId = CMD_SID_ATTR_CHAR_UNDERLINE; Text [ en-US ] = "~Underline"; }; MenuItem { Identifier = SID_ATTR_CHAR_STRIKEOUT; - HelpID = SID_ATTR_CHAR_STRIKEOUT; + HelpId = CMD_SID_ATTR_CHAR_STRIKEOUT; Text [ en-US ] = "~Strikethrough"; }; MenuItem @@ -74,13 +75,13 @@ Menu RID_ANNOTATION_CONTEXTMENU MenuItem { Identifier = SID_COPY ; - HelpID = SID_COPY ; + HelpId = CMD_SID_COPY ; Text [ en-US ] = "~Copy" ; }; MenuItem { Identifier = SID_PASTE ; - HelpID = SID_PASTE ; + HelpId = CMD_SID_PASTE ; Text [ en-US ] = "~Paste" ; }; MenuItem @@ -90,19 +91,19 @@ Menu RID_ANNOTATION_CONTEXTMENU MenuItem { Identifier = SID_DELETE_POSTIT ; - HelpID = SID_DELETE_POSTIT; + HelpId = CMD_SID_DELETE_POSTIT; Text [ en-US ] = "~Delete Comment" ; }; MenuItem { Identifier = SID_DELETEALLBYAUTHOR_POSTIT ; - HelpID = SID_DELETEALLBYAUTHOR_POSTIT; + HelpId = CMD_SID_DELETEALLBYAUTHOR_POSTIT; Text [ en-US ] = "Delete All Comments b~y %1" ; }; MenuItem { Identifier = SID_DELETEALL_POSTIT; - HelpID = SID_DELETEALL_POSTIT; + HelpId = CMD_SID_DELETEALL_POSTIT; Text [ en-US ] = "Delete ~All Comments" ; }; }; @@ -115,7 +116,7 @@ Menu RID_ANNOTATION_TAG_CONTEXTMENU MenuItem { Identifier = SID_REPLYTO_POSTIT; - HelpID = SID_REPLYTO_POSTIT; + HelpId = CMD_SID_REPLYTO_POSTIT; Text [ en-US ] = "~Reply"; }; MenuItem @@ -125,19 +126,19 @@ Menu RID_ANNOTATION_TAG_CONTEXTMENU MenuItem { Identifier = SID_DELETE_POSTIT ; - HelpID = SID_DELETE_POSTIT ; + HelpId = CMD_SID_DELETE_POSTIT ; Text [ en-US ] = "~Delete Comment" ; }; MenuItem { Identifier = SID_DELETEALLBYAUTHOR_POSTIT ; - HelpID = SID_DELETEALLBYAUTHOR_POSTIT ; + HelpId = CMD_SID_DELETEALLBYAUTHOR_POSTIT ; Text [ en-US ] = "Delete All Comments ~by %1" ; }; MenuItem { Identifier = SID_DELETEALL_POSTIT; - HelpID = SID_DELETEALL_POSTIT; + HelpId = CMD_SID_DELETEALL_POSTIT; Text [ en-US ] = "Delete ~All Comments" ; }; }; diff --git a/sd/source/ui/app/makefile.mk b/sd/source/ui/app/makefile.mk index d64d9b672f7e..84d1d02e45f8 100644 --- a/sd/source/ui/app/makefile.mk +++ b/sd/source/ui/app/makefile.mk @@ -50,7 +50,6 @@ SRC1FILES = \ toolbox.src \ strings.src \ res_bmp.src \ - tbx_ww.src \ popup.src \ sdstring.src diff --git a/sd/source/ui/app/menuids2_tmpl.src b/sd/source/ui/app/menuids2_tmpl.src index 54b9ed6ba44c..9a7c7f39fae6 100644 --- a/sd/source/ui/app/menuids2_tmpl.src +++ b/sd/source/ui/app/menuids2_tmpl.src @@ -61,7 +61,7 @@ MenuItem\ {\ Identifier = SID_NEWDOCDIRECT ; \ - HelpID = SID_NEWDOCDIRECT ; \ + HelpId = CMD_SID_NEWDOCDIRECT ; \ Text [ en-US ] = "~New" ; \ }; @@ -69,7 +69,7 @@ MenuItem\ {\ Identifier = SID_EXPORTDOC ; \ - HelpID = SID_EXPORTDOC ; \ + HelpId = CMD_SID_EXPORTDOC ; \ Text [ en-US ] = "~Export..." ; \ }; @@ -77,7 +77,7 @@ MenuItem\ {\ Identifier = SID_EXPORTDOCASPDF ; \ - HelpID = SID_EXPORTDOCASPDF ; \ + HelpId = CMD_SID_EXPORTDOCASPDF ; \ Text [ en-US ] = "Export as PDF..." ; \ }; @@ -85,7 +85,7 @@ MenuItem\ {\ Identifier = MN_SUB_SEND ; \ - HelpID = MN_SUB_SEND ; \ + HelpID = HID_MN_SUB_SEND ; \ Command = ".uno:SendMenu" ; \ Text [ en-US ] = "Sen~d" ; \ SubMenu = Menu\ @@ -102,7 +102,7 @@ MenuItem\ {\ Identifier = SID_PAGESETUP ; \ - HelpID = SID_PAGESETUP ; \ + HelpId = CMD_SID_PAGESETUP ; \ Text [ en-US ] = "~Page..." ; \ }; // @@ -110,7 +110,7 @@ // #define MN_EDIT \ Identifier = 20 ; \ - HelpID = 20 ; \ + HelpID = "what a hack!" ; \ Command = ".uno:EditMenu"; \ Text [ en-US ] = "~Edit" ; \ @@ -118,7 +118,7 @@ MenuItem\ {\ Identifier = SID_PASTE2 ; \ - HelpID = SID_PASTE2 ; \ + HelpId = CMD_SID_PASTE2 ; \ Text [ en-US ] = "Paste ~Special..." ; \ }; @@ -126,7 +126,7 @@ MenuItem\ {\ Identifier = SID_COPYOBJECTS ; \ - HelpID = SID_COPYOBJECTS ; \ + HelpId = CMD_SID_COPYOBJECTS ; \ Text [ en-US ] = "Duplicat~e..." ; \ }; @@ -134,7 +134,7 @@ MenuItem\ {\ Identifier = SID_POLYGON_MORPHING ; \ - HelpID = SID_POLYGON_MORPHING ; \ + HelpId = CMD_SID_POLYGON_MORPHING ; \ Text [ en-US ] = "Cross-fading..." ; \ }; @@ -142,7 +142,7 @@ MenuItem\ {\ Identifier = SID_MODIFY_FIELD ; \ - HelpID = SID_MODIFY_FIELD ; \ + HelpId = CMD_SID_MODIFY_FIELD ; \ Text [ en-US ] = "F~ields..." ; \ }; @@ -150,7 +150,7 @@ MenuItem\ {\ Identifier = SID_DELETE_LAYER ; \ - HelpID = SID_DELETE_LAYER ; \ + HelpId = CMD_SID_DELETE_LAYER ; \ Text [ en-US ] = "Delete ~Layer..." ; \ }; @@ -158,7 +158,7 @@ MenuItem\ {\ Identifier = SID_MANAGE_LINKS ; \ - HelpID = SID_MANAGE_LINKS ; \ + HelpId = CMD_SID_MANAGE_LINKS ; \ Text [ en-US ] = "Lin~ks..." ; \ }; // @@ -166,7 +166,7 @@ // #define MN_VIEW \ Identifier = 23 ; \ - HelpID = 23 ; \ + HelpID = "what a hack!" ; \ Command = ".uno:ViewMenu" ; \ Text [ en-US ] = "~View" ; \ @@ -174,7 +174,7 @@ MenuItem\ {\ Identifier = SID_TOGGLETOOLBAR ; \ - HelpID = SID_TOGGLETOOLBAR ; \ + HelpId = CMD_SID_TOGGLETOOLBAR ; \ Text [ en-US ] = "Main ~Toolbar" ; \ }; @@ -182,7 +182,7 @@ MenuItem\ {\ Identifier = SID_TOGGLEOPTIONBAR ; \ - HelpID = SID_TOGGLEOPTIONBAR ; \ + HelpId = CMD_SID_TOGGLEOPTIONBAR ; \ Text [ en-US ] = "Optio~n Bar" ; \ }; @@ -190,7 +190,7 @@ MenuItem\ {\ Identifier = SID_TOGGLECOMMONTASKBAR ; \ - HelpID = SID_TOGGLECOMMONTASKBAR ; \ + HelpId = CMD_SID_TOGGLECOMMONTASKBAR ; \ Text [ en-US ] = "~Presentation" ; \ }; @@ -198,7 +198,7 @@ MenuItem\ {\ Identifier = SID_CUSTOMIZETOOLBOX ; \ - HelpID = SID_CUSTOMIZETOOLBOX ; \ + HelpId = CMD_SID_CUSTOMIZETOOLBOX ; \ Text [ en-US ] = "Customi~ze..." ; \ }; @@ -206,7 +206,7 @@ MenuItem\ {\ Identifier = SID_RULER ; \ - HelpID = SID_RULER ; \ + HelpId = CMD_SID_RULER ; \ Command = ".uno:ShowRuler" ; \ Text [ en-US ] = "~Rulers" ; \ }; @@ -216,7 +216,7 @@ MenuItem\ {\ Identifier = SID_NOTESMODE ; \ - HelpID = SID_NOTESMODE ; \ + HelpId = CMD_SID_NOTESMODE ; \ Check = TRUE ; \ Text [ en-US ] = "~Notes View" ; \ }; @@ -226,7 +226,7 @@ MenuItem\ {\ Identifier = SID_HANDOUTMODE ; \ - HelpID = SID_HANDOUTMODE ; \ + HelpId = CMD_SID_HANDOUTMODE ; \ Check = TRUE ; \ Text [ en-US ] = "~Handout View" ; \ }; @@ -235,7 +235,7 @@ MenuItem\ {\ Identifier = SID_PREVIEW_WIN ; \ - HelpID = SID_PREVIEW_WIN ; \ + HelpId = CMD_SID_PREVIEW_WIN ; \ Text [ en-US ] = "~Preview" ; \ }; @@ -243,7 +243,7 @@ MenuItem\ {\ Identifier = SID_PAGEMODE ; \ - HelpID = SID_PAGEMODE ; \ + HelpId = CMD_SID_PAGEMODE ; \ Check = TRUE ; \ Text [ en-US ] = "S~lide" ; \ }; @@ -252,7 +252,7 @@ MenuItem\ {\ Identifier = SID_SLIDE_MASTERPAGE ; \ - HelpID = SID_SLIDE_MASTERPAGE ; \ + HelpId = CMD_SID_SLIDE_MASTERPAGE ; \ Check = TRUE ; \ Text [ en-US ] = "~Slide Master" ; \ }; @@ -261,7 +261,7 @@ MenuItem\ {\ Identifier = SID_TITLE_MASTERPAGE ; \ - HelpID = SID_TITLE_MASTERPAGE ; \ + HelpId = CMD_SID_TITLE_MASTERPAGE ; \ Check = TRUE ; \ Text [ en-US ] = "~Title" ; \ }; @@ -270,7 +270,7 @@ MenuItem\ {\ Identifier = SID_NOTES_MASTERPAGE ; \ - HelpID = SID_NOTES_MASTERPAGE ; \ + HelpId = CMD_SID_NOTES_MASTERPAGE ; \ Check = TRUE ; \ Text [ en-US ] = "~Notes" ; \ }; @@ -279,7 +279,7 @@ MenuItem\ {\ Identifier = SID_HANDOUT_MASTERPAGE ; \ - HelpID = SID_HANDOUT_MASTERPAGE ; \ + HelpId = CMD_SID_HANDOUT_MASTERPAGE ; \ Check = TRUE ; \ Text [ en-US ] = "~Handout" ; \ }; @@ -288,7 +288,7 @@ MenuItem\ {\ Identifier = SID_LAYERMODE ; \ - HelpID = SID_LAYERMODE ; \ + HelpId = CMD_SID_LAYERMODE ; \ Check = TRUE ; \ Text [ en-US ] = "La~yer" ; \ }; @@ -297,7 +297,7 @@ MenuItem\ {\ Identifier = SID_HEADER_AND_FOOTER ; \ - HelpID = SID_HEADER_AND_FOOTER ; \ + HelpId = CMD_SID_HEADER_AND_FOOTER ; \ Text = "Kopf- und Fußzeile.."; \ }; @@ -305,7 +305,7 @@ MenuItem\ {\ Identifier = SID_INSERT_PAGE_NUMBER ; \ - HelpID = SID_INSERT_PAGE_NUMBER ; \ + HelpId = CMD_SID_INSERT_PAGE_NUMBER ; \ Text = "Seitenzahl..." ; \ }; @@ -313,7 +313,7 @@ MenuItem\ {\ Identifier = SID_INSERT_DATE_TIME ; \ - HelpID = SID_INSERT_DATE_TIME ; \ + HelpId = CMD_SID_INSERT_DATE_TIME ; \ Text = "Datum und Uhrzeit..." ; \ }; @@ -321,7 +321,7 @@ MenuItem\ {\ Identifier = MN_SUB_MASTER_LAYOUTS ; \ - HelpId = MN_SUB_MASTER_LAYOUTS; \ + HelpId = HID_MN_SUB_MASTER_LAYOUTS; \ Text = "Masterlayouts";\ SubMenu = Menu\ {\ @@ -330,19 +330,19 @@ MenuItem\ {\ Identifier = SID_MASTER_LAYOUTS_SLIDE ; \ - HelpID = SID_MASTER_LAYOUTS_SLIDE ; \ + HelpId = CMD_SID_MASTER_LAYOUTS_SLIDE ; \ Text = "Masterlayout..." ; \ };\ MenuItem\ {\ Identifier = SID_MASTER_LAYOUTS_NOTES ; \ - HelpID = SID_MASTER_LAYOUTS_NOTES ; \ + HelpId = CMD_SID_MASTER_LAYOUTS_NOTES ; \ Text = "Notizenmasterlayout..." ; \ };\ MenuItem\ {\ Identifier = SID_MASTER_LAYOUTS_HANDOUTS ; \ - HelpID = SID_MASTER_LAYOUTS_HANDOUTS ; \ + HelpId = CMD_SID_MASTER_LAYOUTS_HANDOUTS ; \ Text = "Handzettelmasterlayout..." ; \ };\ };\ @@ -354,7 +354,7 @@ MenuItem\ {\ Identifier = MN_SUB_VIEW ; \ - HelpID = MN_SUB_VIEW ; \ + HelpID = HID_MN_SUB_VIEW ; \ Command = ".uno:WorkspaceMenu" ; \ Text [ en-US ] = "Wor~kspace" ; \ SubMenu = Menu\ @@ -374,7 +374,7 @@ MenuItem\ {\ Identifier = MN_SUB_MASTERPAGE ; \ - HelpID = MN_SUB_MASTERPAGE ; \ + HelpID = HID_MN_SUB_MASTERPAGE ; \ Command = ".uno:MasterPageMenu" ; \ Text [ en-US ] = "~Master" ; \ SubMenu = Menu\ @@ -393,7 +393,7 @@ // #define MN_INSERT \ Identifier = 21 ; \ - HelpID = 21 ; \ + HelpID = "what a hack" ; \ Command = ".uno:InsertMenu" ; \ Text [ en-US ] = "~Insert" ; \ @@ -401,7 +401,7 @@ MenuItem\ {\ Identifier = SID_INSERTPAGE ; \ - HelpID = SID_INSERTPAGE ; \ + HelpId = CMD_SID_INSERTPAGE ; \ Text [ en-US ] = "Slid~e..." ; \ }; @@ -409,7 +409,7 @@ MenuItem\ {\ Identifier = SID_INSERTPAGE ; \ - HelpID = SID_INSERTPAGE ; \ + HelpId = CMD_SID_INSERTPAGE ; \ Text [ en-US ] = "Slid~e" ; \ }; @@ -417,7 +417,7 @@ MenuItem\ {\ Identifier = SID_DUPLICATE_PAGE ; \ - HelpID = SID_DUPLICATE_PAGE ; \ + HelpId = CMD_SID_DUPLICATE_PAGE ; \ Text [ en-US ] = "D~uplicate Slide" ; \ }; @@ -425,7 +425,7 @@ MenuItem\ {\ Identifier = SID_EXPAND_PAGE ; \ - HelpID = SID_EXPAND_PAGE ; \ + HelpId = CMD_SID_EXPAND_PAGE ; \ Text [ en-US ] = "E~xpand Slide" ; \ }; @@ -433,7 +433,7 @@ MenuItem\ {\ Identifier = SID_SUMMARY_PAGE ; \ - HelpID = SID_SUMMARY_PAGE ; \ + HelpId = CMD_SID_SUMMARY_PAGE ; \ Text [ en-US ] = "Su~mmary Slide" ; \ }; @@ -441,7 +441,7 @@ MenuItem\ {\ Identifier = SID_INSERTLAYER ; \ - HelpID = SID_INSERTLAYER ; \ + HelpId = CMD_SID_INSERTLAYER ; \ Text [ en-US ] = "~Layer..." ; \ }; @@ -449,7 +449,7 @@ MenuItem\ {\ Identifier = SID_INSERT_FLD_DATE_FIX ; \ - HelpID = SID_INSERT_FLD_DATE_FIX ; \ + HelpId = CMD_SID_INSERT_FLD_DATE_FIX ; \ Text [ en-US ] = "~Date (fixed)" ; \ }; @@ -457,7 +457,7 @@ MenuItem\ {\ Identifier = SID_INSERT_FLD_DATE_VAR ; \ - HelpID = SID_INSERT_FLD_DATE_VAR ; \ + HelpId = CMD_SID_INSERT_FLD_DATE_VAR ; \ Text [ en-US ] = "Dat~e (variable)" ; \ }; @@ -465,7 +465,7 @@ MenuItem\ {\ Identifier = SID_INSERT_FLD_TIME_FIX ; \ - HelpID = SID_INSERT_FLD_TIME_FIX ; \ + HelpId = CMD_SID_INSERT_FLD_TIME_FIX ; \ Text [ en-US ] = "~Time (fixed)" ; \ }; @@ -473,7 +473,7 @@ MenuItem\ {\ Identifier = SID_INSERT_FLD_TIME_VAR ; \ - HelpID = SID_INSERT_FLD_TIME_VAR ; \ + HelpId = CMD_SID_INSERT_FLD_TIME_VAR ; \ Text [ en-US ] = "T~ime (variable)" ; \ }; @@ -481,7 +481,7 @@ MenuItem\ {\ Identifier = SID_INSERT_FLD_PAGE ; \ - HelpID = SID_INSERT_FLD_PAGE ; \ + HelpId = CMD_SID_INSERT_FLD_PAGE ; \ Text [ en-US ] = "~Page Number" ; \ }; @@ -489,7 +489,7 @@ MenuItem\ {\ Identifier = SID_INSERT_FLD_FILE ; \ - HelpID = SID_INSERT_FLD_FILE ; \ + HelpId = CMD_SID_INSERT_FLD_FILE ; \ Text [ en-US ] = "~File Name" ; \ }; @@ -497,7 +497,7 @@ MenuItem\ {\ Identifier = SID_INSERT_FLD_AUTHOR ; \ - HelpID = SID_INSERT_FLD_AUTHOR ; \ + HelpId = CMD_SID_INSERT_FLD_AUTHOR ; \ Text [ en-US ] = "~Author" ; \ }; @@ -505,7 +505,7 @@ MenuItem\ {\ Identifier = SID_TWAIN_SELECT ; \ - HelpID = SID_TWAIN_SELECT ; \ + HelpId = CMD_SID_TWAIN_SELECT ; \ Text [ en-US ] = "~Select Source..." ; \ }; @@ -513,7 +513,7 @@ MenuItem\ {\ Identifier = SID_TWAIN_TRANSFER ; \ - HelpID = SID_TWAIN_TRANSFER ; \ + HelpId = CMD_SID_TWAIN_TRANSFER ; \ Text [ en-US ] = "~Request..." ; \ }; @@ -521,7 +521,7 @@ MenuItem\ {\ Identifier = SID_ATTR_TABLE ; \ - HelpID = SID_ATTR_TABLE ; \ + HelpId = CMD_SID_ATTR_TABLE ; \ Text [ en-US ] = "Sp~readsheet" ; \ }; @@ -536,7 +536,7 @@ MenuItem\ {\ Identifier = SID_INSERT_DIAGRAM ; \ - HelpID = SID_INSERT_DIAGRAM ; \ + HelpId = CMD_SID_INSERT_DIAGRAM ; \ Text [ en-US ] = "Chart" ; \ }; @@ -544,7 +544,7 @@ MenuItem\ {\ Identifier = SID_INSERT_FLOATINGFRAME ; \ - HelpID = SID_INSERT_FLOATINGFRAME ; \ + HelpId = CMD_SID_INSERT_FLOATINGFRAME ; \ Text [ en-US ] = "Float~ing Frame..." ; \ }; @@ -552,7 +552,7 @@ MenuItem\ {\ Identifier = SID_INSERTFILE ; \ - HelpID = SID_INSERTFILE ; \ + HelpId = CMD_SID_INSERTFILE ; \ Text [ en-US ] = "~File..." ; \ }; @@ -560,7 +560,7 @@ MenuItem\ {\ Identifier = MN_SUB_FIELD ; \ - HelpID = MN_SUB_FIELD ; \ + HelpID = HID_MN_SUB_FIELD ; \ Command = ".uno:FieldMenu" ; \ Text [ en-US ] = "Fiel~ds" ; \ SubMenu = Menu\ @@ -594,7 +594,7 @@ // #define MN_FORMAT \ Identifier = 22 ; \ - HelpID = 22 ; \ + HelpID = "what a hack!" ; \ Command = ".uno:FormatMenu" ; \ Text [ en-US ] = "F~ormat" ; \ @@ -602,7 +602,7 @@ MenuItem\ {\ Identifier = SID_TEXTATTR_DLG ; \ - HelpID = SID_TEXTATTR_DLG ; \ + HelpId = CMD_SID_TEXTATTR_DLG ; \ Text [ en-US ] = "Te~xt..." ; \ }; @@ -610,7 +610,7 @@ MenuItem\ {\ Identifier = SID_MEASURE_DLG ; \ - HelpID = SID_MEASURE_DLG ; \ + HelpId = CMD_SID_MEASURE_DLG ; \ Text [ en-US ] = "Dimen~sions..." ; \ }; @@ -618,7 +618,7 @@ MenuItem\ {\ Identifier = SID_CONNECTION_DLG ; \ - HelpID = SID_CONNECTION_DLG ; \ + HelpId = CMD_SID_CONNECTION_DLG ; \ Text [ en-US ] = "~Connector..." ; \ }; @@ -626,7 +626,7 @@ MenuItem\ {\ Identifier = SID_MODIFYLAYER ; \ - HelpID = SID_MODIFYLAYER ; \ + HelpId = CMD_SID_MODIFYLAYER ; \ Text [ en-US ] = "~Layer..." ; \ }; @@ -635,7 +635,7 @@ MenuItem\ {\ Identifier = SID_MODIFYPAGE ; \ - HelpID = SID_MODIFYPAGE ; \ + HelpId = CMD_SID_MODIFYPAGE ; \ Text [ en-US ] = "Modify ~Layout..." ; \ }; @@ -643,7 +643,7 @@ MenuItem\ {\ Identifier = MN_SUB_TEMPLATES ; \ - HelpID = MN_SUB_TEMPLATES ; \ + HelpID = HID_MN_SUB_TEMPLATES ; \ Command = ".uno:TemplatesMenu" ; \ Text [ en-US ] = "Styl~es" ; \ SubMenu = Menu\ @@ -661,7 +661,7 @@ // #define MN_EXTRAS \ Identifier = ITEM_TOOLS_ID ; \ - HelpID = 25 ; \ + HelpID = "what a hack!" ; \ Command = ".uno:ToolsMenu" ; \ Text [ en-US ] = "~Tools" ; \ @@ -671,7 +671,7 @@ /* ### ACHTUNG: Neuer Text in Resource! */ #define MN_SLIDESHOW \ Identifier = 26 ; \ - HelpID = 26 ; \ + HelpID = "what a hack!" ; \ Command = ".uno:SlideShowMenu" ; \ Text [ en-US ] = "~Slide Show" ; \ @@ -679,7 +679,7 @@ MenuItem\ {\ Identifier = SID_SPELL_DIALOG ; \ - HelpID = SID_SPELL_DIALOG ; \ + HelpId = CMD_SID_SPELL_DIALOG ; \ Text [ en-US ] = "~Check..." ; \ }; @@ -687,7 +687,7 @@ MenuItem\ {\ Identifier = SID_AUTOSPELL_CHECK ; \ - HelpID = SID_AUTOSPELL_CHECK ; \ + HelpId = CMD_SID_AUTOSPELL_CHECK ; \ Text [ en-US ] = "~AutoSpellcheck" ; \ }; @@ -695,7 +695,7 @@ MenuItem\ {\ Identifier = SID_THESAURUS ; \ - HelpID = SID_THESAURUS ; \ + HelpId = CMD_SID_THESAURUS ; \ Text [ en-US ] = "~Thesaurus..." ; \ }; @@ -703,7 +703,7 @@ MenuItem\ {\ Identifier = SID_HYPHENATION ; \ - HelpID = SID_HYPHENATION ; \ + HelpId = CMD_SID_HYPHENATION ; \ Text [ en-US ] = "~Hyphenation" ; \ }; @@ -711,7 +711,7 @@ MenuItem\ {\ Identifier = SID_AUTO_CORRECT_DLG ; \ - HelpID = SID_AUTO_CORRECT_DLG ; \ + HelpId = CMD_SID_AUTO_CORRECT_DLG ; \ Text [ en-US ] = "~AutoCorrect..." ; \ }; @@ -720,7 +720,7 @@ MenuItem\ {\ Identifier = SID_PRESENTATION_DLG ; \ - HelpID = SID_PRESENTATION_DLG ; \ + HelpId = CMD_SID_PRESENTATION_DLG ; \ Text [ en-US ] = "~Slide Show Settings..." ; \ }; @@ -729,7 +729,7 @@ MenuItem\ {\ Identifier = SID_CUSTOMSHOW_DLG ; \ - HelpID = SID_CUSTOMSHOW_DLG ; \ + HelpId = CMD_SID_CUSTOMSHOW_DLG ; \ Text [ en-US ] = "~Custom Slide Show..." ; \ }; @@ -737,7 +737,7 @@ MenuItem\ {\ Identifier = SID_ANIMATION_OBJECTS ; \ - HelpID = SID_ANIMATION_OBJECTS ; \ + HelpId = CMD_SID_ANIMATION_OBJECTS ; \ Text [ en-US ] = "~Animation" ; \ }; @@ -745,7 +745,7 @@ MenuItem\ {\ Identifier = SID_ANIMATION_EFFECTS ; \ - HelpID = SID_ANIMATION_EFFECTS ; \ + HelpId = CMD_SID_ANIMATION_EFFECTS ; \ Text [ en-US ] = "~Interaction..." ; \ }; @@ -753,7 +753,7 @@ MenuItem\ {\ Identifier = MN_SUB_SPELLING ; \ - HelpID = MN_SUB_SPELLING ; \ + HelpID = HID_MN_SUB_SPELLING ; \ Command = ".uno:SpellingMenu" ; \ Text [ en-US ] = "~Spellcheck" ; \ SubMenu = Menu\ @@ -770,7 +770,7 @@ // #define MN_MODIFY \ Identifier = 24 ; \ - HelpID = 24 ; \ + HelpID = "what a hack!" ; \ Command = ".uno:ModifyMenu" ; \ Text [ en-US ] = "~Modify" ; \ @@ -778,7 +778,7 @@ MenuItem\ {\ Identifier = SID_MOREFRONT ; \ - HelpID = SID_MOREFRONT ; \ + HelpId = CMD_SID_MOREFRONT ; \ Text [ en-US ] = "Bring ~Forward" ; \ }; @@ -786,7 +786,7 @@ MenuItem\ {\ Identifier = SID_MOREBACK ; \ - HelpID = SID_MOREBACK ; \ + HelpId = CMD_SID_MOREBACK ; \ Text [ en-US ] = "Send Back~ward" ; \ }; @@ -794,7 +794,7 @@ MenuItem\ {\ Identifier = SID_BEFORE_OBJ ; \ - HelpID = SID_BEFORE_OBJ ; \ + HelpId = CMD_SID_BEFORE_OBJ ; \ Text [ en-US ] = "In Front of ~Object" ; \ }; @@ -802,7 +802,7 @@ MenuItem\ {\ Identifier = SID_BEHIND_OBJ ; \ - HelpID = SID_BEHIND_OBJ ; \ + HelpId = CMD_SID_BEHIND_OBJ ; \ Text [ en-US ] = "Be~hind Object" ; \ }; @@ -810,7 +810,7 @@ MenuItem\ {\ Identifier = SID_REVERSE_ORDER ; \ - HelpID = SID_REVERSE_ORDER ; \ + HelpId = CMD_SID_REVERSE_ORDER ; \ Text [ en-US ] = "~Reverse" ; \ }; @@ -818,7 +818,7 @@ MenuItem\ {\ Identifier = SID_BMPMASK ; \ - HelpID = SID_BMPMASK ; \ + HelpId = CMD_SID_BMPMASK ; \ Text [ en-US ] = "~Eyedropper" ; \ }; @@ -826,7 +826,7 @@ MenuItem\ {\ Identifier = SID_GALLERY; \ - HelpID = SID_GALLERY; \ + HelpId = CMD_SID_GALLERY; \ Text [ en-US ] = "~Gallery" ; \ }; @@ -834,7 +834,7 @@ MenuItem\ {\ Identifier = SID_OUTPUT_QUALITY_COLOR ; \ - HelpID = SID_OUTPUT_QUALITY_COLOR ; \ + HelpId = CMD_SID_OUTPUT_QUALITY_COLOR ; \ RadioCheck = TRUE ; \ Text [ en-US ] = "~Color" ; \ }; @@ -843,7 +843,7 @@ MenuItem\ {\ Identifier = SID_OUTPUT_QUALITY_GRAYSCALE ; \ - HelpID = SID_OUTPUT_QUALITY_GRAYSCALE ; \ + HelpId = CMD_SID_OUTPUT_QUALITY_GRAYSCALE ; \ RadioCheck = TRUE ; \ Text [ en-US ] = "~Grayscale" ; \ }; @@ -852,7 +852,7 @@ MenuItem\ {\ Identifier = SID_OUTPUT_QUALITY_BLACKWHITE ; \ - HelpID = SID_OUTPUT_QUALITY_BLACKWHITE ; \ + HelpId = CMD_SID_OUTPUT_QUALITY_BLACKWHITE ; \ RadioCheck = TRUE ; \ Text [ en-US ] = "~Black and White" ; \ }; @@ -861,7 +861,7 @@ MenuItem\ {\ Identifier = SID_OUTPUT_QUALITY_CONTRAST ; \ - HelpID = SID_OUTPUT_QUALITY_CONTRAST ; \ + HelpId = CMD_SID_OUTPUT_QUALITY_CONTRAST ; \ RadioCheck = TRUE ; \ Text [ en-US ] = "~High Contrast";\ }; @@ -870,7 +870,7 @@ MenuItem\ {\ Identifier = SID_PREVIEW_QUALITY_COLOR ; \ - HelpID = SID_PREVIEW_QUALITY_COLOR ; \ + HelpId = CMD_SID_PREVIEW_QUALITY_COLOR ; \ RadioCheck = TRUE ; \ Text [ en-US ] = "~Color" ; \ }; @@ -879,7 +879,7 @@ MenuItem\ {\ Identifier = SID_PREVIEW_QUALITY_GRAYSCALE ; \ - HelpID = SID_PREVIEW_QUALITY_GRAYSCALE ; \ + HelpId = CMD_SID_PREVIEW_QUALITY_GRAYSCALE ; \ RadioCheck = TRUE ; \ Text [ en-US ] = "~Grayscale" ; \ }; @@ -888,7 +888,7 @@ MenuItem\ {\ Identifier = SID_PREVIEW_QUALITY_BLACKWHITE ; \ - HelpID = SID_PREVIEW_QUALITY_BLACKWHITE ; \ + HelpId = CMD_SID_PREVIEW_QUALITY_BLACKWHITE ; \ RadioCheck = TRUE ; \ Text [ en-US ] = "~Black and White" ; \ }; @@ -897,7 +897,7 @@ MenuItem\ {\ Identifier = SID_PREVIEW_QUALITY_CONTRAST ; \ - HelpID = SID_PREVIEW_QUALITY_CONTRAST ; \ + HelpId = CMD_SID_PREVIEW_QUALITY_CONTRAST ; \ RadioCheck = TRUE ; \ Text [ en-US ] = "~High Contrast";\ }; @@ -906,7 +906,7 @@ MenuItem\ {\ Identifier = MN_SUB_POSITION ; \ - HelpID = MN_SUB_POSITION ; \ + HelpID = HID_MN_SUB_POSITION ; \ Command = ".uno:ArrangeMenu" ; \ Text [ en-US ] = "~Arrange" ; \ SubMenu = Menu\ @@ -949,7 +949,7 @@ MenuItem\ {\ Identifier = MN_SUB_OUTPUT_QUALITY ; \ - HelpID = MN_SUB_OUTPUT_QUALITY ; \ + HelpID = HID_MN_SUB_OUTPUT_QUALITY ; \ Command = ".uno:DisplayQualityMenu" ; \ SubMenu = Menu\ {\ @@ -968,7 +968,7 @@ MenuItem\ {\ Identifier = MN_SUB_PREVIEW_OUTPUT_QUALITY ; \ - HelpID = MN_SUB_PREVIEW_OUTPUT_QUALITY ; \ + HelpID = HID_MN_SUB_PREVIEW_OUTPUT_QUALITY ; \ Command = ".uno:PreviewDisplayQualityMenu" ; \ SubMenu = Menu\ {\ @@ -987,7 +987,7 @@ MenuItem\ {\ Identifier = SID_MULTI_PANE_GUI ; \ - HelpID = SID_MULTI_PANE_GUI ; \ + HelpId = CMD_SID_MULTI_PANE_GUI ; \ Text = "Multi Pane GUI" ; \ SubMenu = Menu \ {\ @@ -996,21 +996,21 @@ MenuItem\ {\ Identifier = SID_TOOLPANEL ; \ - HelpID = SID_TOOLPANEL ; \ + HelpId = CMD_SID_TOOLPANEL ; \ Check = TRUE ; \ Text = "Tool Panel" ; \ };\ MenuItem\ {\ Identifier = SID_SLIDE_BROWSER ; \ - HelpID = SID_SLIDE_BROWSER ; \ + HelpId = CMD_SID_SLIDE_BROWSER ; \ Check = TRUE ; \ Text = "Slide Browser" ; \ };\ MenuItem\ {\ Identifier = SID_NOTES_WINDOW ; \ - HelpID = SID_NOTES_WINDOW ; \ + HelpId = CMD_SID_NOTES_WINDOW ; \ Check = TRUE ; \ Text = "Notes Window" ; \ };\ diff --git a/sd/source/ui/app/menuids3_tmpl.src b/sd/source/ui/app/menuids3_tmpl.src index 09a90fdc0649..aae782b5fe1e 100644 --- a/sd/source/ui/app/menuids3_tmpl.src +++ b/sd/source/ui/app/menuids3_tmpl.src @@ -32,7 +32,7 @@ MenuItem\ {\ Identifier = SID_CHANGEBEZIER ; \ - HelpID = SID_CHANGEBEZIER ; \ + HelpId = CMD_SID_CHANGEBEZIER ; \ Text [ en-US ] = "To ~Curve" ; \ }; @@ -40,7 +40,7 @@ MenuItem\ {\ Identifier = SID_CHANGEPOLYGON ; \ - HelpID = SID_CHANGEPOLYGON ; \ + HelpId = CMD_SID_CHANGEPOLYGON ; \ Text [ en-US ] = "To ~Polygon" ; \ }; @@ -48,7 +48,7 @@ MenuItem\ {\ Identifier = SID_CONVERT_TO_CONTOUR ; \ - HelpID = SID_CONVERT_TO_CONTOUR ; \ + HelpId = CMD_SID_CONVERT_TO_CONTOUR ; \ Text [ en-US ] = "To C~ontour";\ }; @@ -56,7 +56,7 @@ MenuItem\ {\ Identifier = SID_CONVERT_TO_3D ; \ - HelpID = SID_CONVERT_TO_3D ; \ + HelpId = CMD_SID_CONVERT_TO_3D ; \ Text [ en-US ] = "To 3~D" ; \ }; @@ -64,7 +64,7 @@ MenuItem\ {\ Identifier = SID_CONVERT_TO_BITMAP ; \ - HelpID = SID_CONVERT_TO_BITMAP ; \ + HelpId = CMD_SID_CONVERT_TO_BITMAP ; \ Text [ en-US ] = "To ~Bitmap" ; \ }; @@ -72,7 +72,7 @@ MenuItem\ {\ Identifier = SID_CONVERT_TO_METAFILE ; \ - HelpID = SID_CONVERT_TO_METAFILE ; \ + HelpId = CMD_SID_CONVERT_TO_METAFILE ; \ Text [ en-US ] = "To ~Metafile" ; \ }; @@ -80,7 +80,7 @@ MenuItem\ {\ Identifier = SID_CONVERT_TO_3D_LATHE_FAST ; \ - HelpID = SID_CONVERT_TO_3D_LATHE_FAST ; \ + HelpId = CMD_SID_CONVERT_TO_3D_LATHE_FAST ; \ /* ### ACHTUNG: Neuer Text in Resource? In 3~D-Rotationskörper : In 3~D-Rotationsk÷rper */\ Text [ en-US ] = "To 3D ~Rotation Object" ; \ }; @@ -89,7 +89,7 @@ MenuItem\ {\ Identifier = SID_VERTICAL ; \ - HelpID = SID_VERTICAL ; \ + HelpId = CMD_SID_VERTICAL ; \ Text [ en-US ] = "~Vertically" ; \ }; @@ -97,7 +97,7 @@ MenuItem\ {\ Identifier = SID_HORIZONTAL ; \ - HelpID = SID_HORIZONTAL ; \ + HelpId = CMD_SID_HORIZONTAL ; \ Text [ en-US ] = "~Horizontally" ; \ }; @@ -105,7 +105,7 @@ MenuItem\ {\ Identifier = SID_3D_WIN ; \ - HelpID = SID_3D_WIN ; \ + HelpId = CMD_SID_3D_WIN ; \ Text [ en-US ] = "~3D Effects" ; \ }; @@ -113,7 +113,7 @@ MenuItem\ {\ Identifier = SID_PRESENTATION_LAYOUT ; \ - HelpID = SID_PRESENTATION_LAYOUT ; \ + HelpId = CMD_SID_PRESENTATION_LAYOUT ; \ Text [ en-US ] = "~Slide Design" ; \ }; @@ -121,7 +121,7 @@ MenuItem\ {\ Identifier = SID_SLIDE_TRANSITIONS_PANEL ; \ - HelpID = SID_SLIDE_TRANSITIONS_PANEL ; \ + HelpId = CMD_SID_SLIDE_TRANSITIONS_PANEL ; \ Text [ en-US ] = "Slide ~Transition" ; \ }; @@ -129,7 +129,7 @@ MenuItem\ {\ Identifier = SID_SHOW_SLIDE ; \ - HelpID = SID_SHOW_SLIDE ; \ + HelpId = CMD_SID_SHOW_SLIDE ; \ Text [ en-US ] = "~Show Slide" ; \ }; @@ -137,7 +137,7 @@ MenuItem\ {\ Identifier = SID_HIDE_SLIDE ; \ - HelpID = SID_HIDE_SLIDE ; \ + HelpId = CMD_SID_HIDE_SLIDE ; \ Text [ en-US ] = "~Hide Slide" ; \ }; @@ -145,7 +145,7 @@ MenuItem\ {\ Identifier = SID_GROUP ; \ - HelpID = SID_GROUP ; \ + HelpId = CMD_SID_GROUP ; \ Text [ en-US ] = "~Group" ; \ }; @@ -153,7 +153,7 @@ MenuItem\ {\ Identifier = SID_UNGROUP ; \ - HelpID = SID_UNGROUP ; \ + HelpId = CMD_SID_UNGROUP ; \ Text [ en-US ] = "~Ungroup" ; \ }; @@ -161,7 +161,7 @@ MenuItem\ {\ Identifier = SID_ENTER_GROUP ; \ - HelpID = SID_ENTER_GROUP ; \ + HelpId = CMD_SID_ENTER_GROUP ; \ Text [ en-US ] = "~Edit Group" ; \ }; @@ -169,7 +169,7 @@ MenuItem\ {\ Identifier = SID_LEAVE_GROUP ; \ - HelpID = SID_LEAVE_GROUP ; \ + HelpId = CMD_SID_LEAVE_GROUP ; \ Text [ en-US ] = "E~xit group" ; \ }; @@ -177,7 +177,7 @@ MenuItem\ {\ Identifier = MN_SUB_GROUP ; \ - HelpID = MN_SUB_GROUP ; \ + HelpID = HID_MN_SUB_GROUP ; \ Command = ".uno:GroupMenu" ; \ Text [ en-US ] = "~Group" ; \ SubMenu = Menu\ diff --git a/sd/source/ui/app/menuids4_tmpl.src b/sd/source/ui/app/menuids4_tmpl.src index 9b077db8f22f..61a43aa6d8ba 100644 --- a/sd/source/ui/app/menuids4_tmpl.src +++ b/sd/source/ui/app/menuids4_tmpl.src @@ -36,7 +36,7 @@ MenuItem\ {\ Identifier = MN_SUB_GRAPHIC ; \ - HelpID = MN_SUB_GRAPHIC ; \ + HelpID = HID_MN_SUB_GRAPHIC ; \ Text [ en-US ] = "~Graphics" ; \ SubMenu = Menu\ {\ diff --git a/sd/source/ui/app/menuids_tmpl.src b/sd/source/ui/app/menuids_tmpl.src index e21caafaa739..1e313bbee2fc 100644 --- a/sd/source/ui/app/menuids_tmpl.src +++ b/sd/source/ui/app/menuids_tmpl.src @@ -27,6 +27,8 @@ #include #include "app.hrc" #include "res_bmp.hrc" +#include "helpids.h" + #define SEPARATOR MenuItem { Separator = TRUE; }; // DUMMY ist eine ID wo ein SubMenu folgt // (muss jeweils immer erhoeht werden!) @@ -37,7 +39,7 @@ MenuItem\ {\ Identifier = SID_DISTRIBUTE_DLG ; \ - HelpID = SID_DISTRIBUTE_DLG ; \ + HelpId = CMD_SID_DISTRIBUTE_DLG ; \ Text [ en-US ] = "~Distribution..." ; \ }; @@ -46,7 +48,7 @@ MenuItem\ {\ Identifier = SID_DRAWINGMODE ; \ - HelpID = SID_DRAWINGMODE ; \ + HelpId = CMD_SID_DRAWINGMODE ; \ Check = TRUE ; \ Text [ en-US ] = "~Drawing View" ; \ }; @@ -55,7 +57,7 @@ MenuItem\ {\ Identifier = SID_OUTLINEMODE ; \ - HelpID = SID_OUTLINEMODE ; \ + HelpId = CMD_SID_OUTLINEMODE ; \ Check = TRUE ; \ Text [ en-US ] = "~Outline View" ; \ }; @@ -64,7 +66,7 @@ MenuItem\ {\ Identifier = SID_DIAMODE ; \ - HelpID = SID_DIAMODE ; \ + HelpId = CMD_SID_DIAMODE ; \ Check = TRUE ; \ Text [ en-US ] = "~Slide Sorter" ; \ }; @@ -73,7 +75,7 @@ MenuItem\ {\ Identifier = SID_PRESENTATION ; \ - HelpID = SID_PRESENTATION ; \ + HelpId = CMD_SID_PRESENTATION ; \ /* ### ACHTUNG: Neuer Text in Resource? ~Bildschirmpräsentation : ~Bildschirmpräsentation... */\ /* ### ACHTUNG: Neuer Text in Resource? ~Bildschirmpräsentation : ~Bildschirmpräsentation... */\ /* ### ACHTUNG: Neuer Text in Resource? ~Bildschirmpräsentation : ~Bildschirmprõsentation */\ @@ -85,7 +87,7 @@ MenuItem\ {\ Identifier = SID_CAPTUREPOINT ; \ - HelpID = SID_CAPTUREPOINT ; \ + HelpId = CMD_SID_CAPTUREPOINT ; \ /* ### ACHTUNG: Neuer Text in Resource? F~angpunkt/-linie einfügen... : F~angpunkt/-linie einf³gen... */\ /* ### ACHTUNG: Neuer Text in Resource? Fangpunkt oder -linie einfügen : Fangpunkt oder -linie einf³gen */\ Text [ en-US ] = "~Insert Snap Point/Line..." ; \ @@ -95,7 +97,7 @@ MenuItem\ {\ Identifier = SID_SET_SNAPITEM ; \ - HelpID = SID_SET_SNAPITEM ; \ + HelpId = CMD_SID_SET_SNAPITEM ; \ /* ### ACHTUNG: Neuer Text in Resource? Fangobjekt bearbeiten oder löschen : Fangobjekt bearbeiten oder l÷schen */\ Text [ en-US ] = "~Edit..." ; \ }; @@ -104,7 +106,7 @@ MenuItem\ {\ Identifier = SID_DELETE_SNAPITEM ; \ - HelpID = SID_DELETE_SNAPITEM ; \ + HelpId = CMD_SID_DELETE_SNAPITEM ; \ /* ### ACHTUNG: Neuer Text in Resource? ~Löschen : ~L÷schen */\ /* ### ACHTUNG: Neuer Text in Resource? Fangobjekt löschen : Fangobjekt l÷schen */\ Text [ en-US ] = "~Delete" ; \ @@ -115,7 +117,7 @@ MenuItem\ {\ Identifier = SID_MODIFYPAGE ; \ - HelpID = SID_MODIFYPAGE ; \ + HelpId = CMD_SID_MODIFYPAGE ; \ Text [ en-US ] = "Slide ~Layout" ; \ }; @@ -123,7 +125,7 @@ MenuItem\ {\ Identifier = SID_PAGESETUP ; \ - HelpID = SID_PAGESETUP ; \ + HelpId = CMD_SID_PAGESETUP ; \ /* ### ACHTUNG: Neuer Text in Resource? Seitengröße, Ausrichtung, Rahmen festlegen : Seitengr÷˜e, Ausrichtung, Rahmen festlegen */\ Text [ en-US ] = "~Page Setup..." ; \ }; @@ -133,7 +135,7 @@ MenuItem\ {\ Identifier = SID_INSERTPAGE ; \ - HelpID = SID_INSERTPAGE ; \ + HelpId = CMD_SID_INSERTPAGE ; \ Text [ en-US ] = "~New Slide" ; \ }; @@ -141,7 +143,7 @@ MenuItem\ {\ Identifier = SID_INSERT_MASTER_PAGE ; \ - HelpID = SID_INSERT_MASTER_PAGE ; \ + HelpId = CMD_SID_INSERT_MASTER_PAGE ; \ Text [ en-US ] = "~New Master" ; \ }; @@ -149,28 +151,28 @@ MenuItem\ {\ Identifier = SID_INSERTPAGE ; \ - HelpID = SID_INSERTPAGE ; \ + HelpId = CMD_SID_INSERTPAGE ; \ Text [ en-US ] = "~New Page" ; \ }; #define MN_SELECT_BACKGROUND \ MenuItem\ {\ Identifier = SID_SELECT_BACKGROUND ; \ - HelpID = SID_SELECT_BACKGROUND ; \ + HelpId = CMD_SID_SELECT_BACKGROUND ; \ Text [ en-US ] = "Set Background Picture for Slide ..." ; \ }; #define MN_DISPLAY_MASTER_BACKGROUND \ MenuItem\ {\ Identifier = SID_DISPLAY_MASTER_BACKGROUND ; \ - HelpID = SID_DISPLAY_MASTER_BACKGROUND ; \ + HelpId = CMD_SID_DISPLAY_MASTER_BACKGROUND ; \ Text [ en-US ] = "Display Background of Master" ; \ }; #define MN_DISPLAY_MASTER_OBJECTS \ MenuItem\ {\ Identifier = SID_DISPLAY_MASTER_OBJECTS ; \ - HelpID = SID_DISPLAY_MASTER_OBJECTS ; \ + HelpId = CMD_SID_DISPLAY_MASTER_OBJECTS ; \ Text [ en-US ] = "Display Objects from Master" ; \ }; @@ -225,7 +227,7 @@ MenuItem\ {\ Identifier = SID_RENAMELAYER ; \ - HelpID = SID_RENAMELAYER ; \ + HelpId = CMD_SID_RENAMELAYER ; \ Text [ en-US ] = "~Rename Layer..." ; \ }; @@ -233,7 +235,7 @@ MenuItem\ {\ Identifier = SID_DELETE_PAGE ; \ - HelpID = SID_DELETE_PAGE ; \ + HelpId = CMD_SID_DELETE_PAGE ; \ Text [ en-US ] = "D~elete Slide" ; \ }; @@ -241,7 +243,7 @@ MenuItem\ {\ Identifier = SID_DELETE_MASTER_PAGE ; \ - HelpID = SID_DELETE_MASTER_PAGE ; \ + HelpId = CMD_SID_DELETE_MASTER_PAGE ; \ Text [ en-US ] = "D~elete Master" ; \ }; @@ -251,7 +253,7 @@ MenuItem\ {\ Identifier = SID_DELETE_PAGE ; \ - HelpID = SID_DELETE_PAGE ; \ + HelpId = CMD_SID_DELETE_PAGE ; \ Text [ en-US ] = "D~elete Page" ; \ }; @@ -259,7 +261,7 @@ MenuItem\ {\ Identifier = SID_RENAMEPAGE ; \ - HelpID = SID_RENAMEPAGE ; \ + HelpId = CMD_SID_RENAMEPAGE ; \ Text [ en-US ] = "~Rename Slide" ; \ }; @@ -267,7 +269,7 @@ MenuItem\ {\ Identifier = SID_RENAME_MASTER_PAGE ; \ - HelpID = SID_RENAME_MASTER_PAGE ; \ + HelpId = CMD_SID_RENAME_MASTER_PAGE ; \ Text [ en-US ] = "~Rename Master" ; \ }; @@ -275,7 +277,7 @@ MenuItem\ {\ Identifier = SID_RENAMEPAGE ; \ - HelpID = SID_RENAMEPAGE ; \ + HelpId = CMD_SID_RENAMEPAGE ; \ Text [ en-US ] = "~Rename Page" ; \ }; @@ -284,7 +286,7 @@ MenuItem\ {\ Identifier = SID_ATTRIBUTES_LINE ; \ - HelpID = SID_ATTRIBUTES_LINE ; \ + HelpId = CMD_SID_ATTRIBUTES_LINE ; \ Text [ en-US ] = "L~ine..." ; \ }; @@ -292,7 +294,7 @@ MenuItem\ {\ Identifier = SID_ATTRIBUTES_AREA ; \ - HelpID = SID_ATTRIBUTES_AREA ; \ + HelpId = CMD_SID_ATTRIBUTES_AREA ; \ Text [ en-US ] = "~Area..." ; \ }; @@ -300,7 +302,7 @@ MenuItem\ {\ Identifier = SID_TEXTATTR_DLG ; \ - HelpID = SID_TEXTATTR_DLG ; \ + HelpId = CMD_SID_TEXTATTR_DLG ; \ Text [ en-US ] = "~Text..." ; \ }; @@ -308,7 +310,7 @@ MenuItem\ {\ Identifier = SID_CONNECTION_DLG ; \ - HelpID = SID_CONNECTION_DLG ; \ + HelpId = CMD_SID_CONNECTION_DLG ; \ Text [ en-US ] = "~Connector..." ; \ }; @@ -316,7 +318,7 @@ MenuItem\ {\ Identifier = SID_CONNECTION_NEW_ROUTING ; \ - HelpID = SID_CONNECTION_NEW_ROUTING ; \ + HelpId = CMD_SID_CONNECTION_NEW_ROUTING ; \ /* ### ACHTUNG: Neuer Text in Resource? Linienverlauf ~zurücksetzen : Linienverlauf ~zur³cksetzen */\ Text [ en-US ] = "Reset ~Routing" ; \ }; @@ -325,7 +327,7 @@ MenuItem\ {\ Identifier = SID_MEASURE_DLG ; \ - HelpID = SID_MEASURE_DLG ; \ + HelpId = CMD_SID_MEASURE_DLG ; \ /* ### ACHTUNG: Neuer Text in Resource? Bema~ßung... : Bema~˜ung... */\ Text [ en-US ] = "Dimen~sions..." ; \ }; @@ -334,7 +336,7 @@ MenuItem\ {\ Identifier = SID_ATTR_TRANSFORM ; \ - HelpID = SID_ATTR_TRANSFORM ; \ + HelpId = CMD_SID_ATTR_TRANSFORM ; \ Text [ en-US ] = "Position and Si~ze..." ; \ }; @@ -342,7 +344,7 @@ MenuItem\ {\ Identifier = SID_BEZIER_EDIT ; \ - HelpID = SID_BEZIER_EDIT ; \ + HelpId = CMD_SID_BEZIER_EDIT ; \ Text [ en-US ] = "Edit ~Points" ; \ }; @@ -351,7 +353,7 @@ MenuItem\ {\ Identifier = SID_POSITION ; \ - HelpID = SID_POSITION ; \ + HelpId = CMD_SID_POSITION ; \ Command = ".uno:ObjectPosition"; \ Text [ en-US ] = "Arra~nge" ; \ SubMenu = Menu\ @@ -361,25 +363,25 @@ MenuItem\ {\ Identifier = SID_FRAME_TO_TOP ; \ - HelpID = SID_FRAME_TO_TOP ; \ + HelpId = CMD_SID_FRAME_TO_TOP ; \ Text [ en-US ] = "~Bring to Front" ; \ };\ MenuItem\ {\ Identifier = SID_MOREFRONT ; \ - HelpID = SID_MOREFRONT ; \ + HelpId = CMD_SID_MOREFRONT ; \ Text [ en-US ] = "Bring ~Forward" ; \ };\ MenuItem\ {\ Identifier = SID_MOREBACK ; \ - HelpID = SID_MOREBACK ; \ + HelpId = CMD_SID_MOREBACK ; \ Text [ en-US ] = "Send Back~ward" ; \ };\ MenuItem\ {\ Identifier = SID_FRAME_TO_BOTTOM ; \ - HelpID = SID_FRAME_TO_BOTTOM ; \ + HelpId = CMD_SID_FRAME_TO_BOTTOM ; \ Text [ en-US ] = "~Send to Back" ; \ };\ MenuItem\ @@ -389,13 +391,13 @@ MenuItem\ {\ Identifier = SID_BEFORE_OBJ ; \ - HelpID = SID_BEFORE_OBJ ; \ + HelpId = CMD_SID_BEFORE_OBJ ; \ Text [ en-US ] = "In Front of ~Object" ; \ };\ MenuItem\ {\ Identifier = SID_BEHIND_OBJ ; \ - HelpID = SID_BEHIND_OBJ ; \ + HelpId = CMD_SID_BEHIND_OBJ ; \ Text [ en-US ] = "Be~hind Object" ; \ };\ MenuItem\ @@ -405,7 +407,7 @@ MenuItem\ {\ Identifier = SID_REVERSE_ORDER ; \ - HelpID = SID_REVERSE_ORDER ; \ + HelpId = CMD_SID_REVERSE_ORDER ; \ Text [ en-US ] = "~Reverse" ; \ };\ };\ @@ -417,7 +419,7 @@ MenuItem\ {\ Identifier = SID_CHAR_DLG ; \ - HelpID = SID_CHAR_DLG ; \ + HelpId = CMD_SID_CHAR_DLG ; \ Text [ en-US ] = "C~haracter..." ; \ /* ### ACHTUNG: Neuer Text in Resource? Zeichenattribute für den selektierten Bereich auswählen : Zeichenattribute f³r den selektierten Bereich auswõhlen */\ }; @@ -426,7 +428,7 @@ MN_CHAR \ MenuItem {\ Identifier = SID_PARA_DLG;\ - HelpID = SID_PARA_DLG;\ + HelpId = CMD_SID_PARA_DLG;\ Text [ en-US ] = "P~aragraph...";\ }; @@ -434,13 +436,13 @@ MenuItem\ {\ Identifier = SID_ATTR_CHAR_FONT ; \ - HelpID = SID_ATTR_CHAR_FONT ; \ + HelpId = CMD_SID_ATTR_CHAR_FONT ; \ Text [ en-US ] = "~Font" ; \ };\ MenuItem\ {\ Identifier = SID_ATTR_CHAR_FONTHEIGHT ; \ - HelpID = SID_ATTR_CHAR_FONTHEIGHT ; \ + HelpId = CMD_SID_ATTR_CHAR_FONTHEIGHT ; \ /* ### ACHTUNG: Neuer Text in Resource? ~Größe : ~Gr÷˜e */\ Text [ en-US ] = "~Size" ; \ };\ @@ -456,43 +458,43 @@ MenuItem\ {\ Identifier = SID_ATTR_CHAR_WEIGHT ; \ - HelpID = SID_ATTR_CHAR_WEIGHT ; \ + HelpId = CMD_SID_ATTR_CHAR_WEIGHT ; \ Text [ en-US ] = "Bold" ; \ };\ MenuItem\ {\ Identifier = SID_ATTR_CHAR_POSTURE ; \ - HelpID = SID_ATTR_CHAR_POSTURE ; \ + HelpId = CMD_SID_ATTR_CHAR_POSTURE ; \ Text [ en-US ] = "Italic" ; \ };\ MenuItem\ {\ Identifier = SID_ATTR_CHAR_OVERLINE ; \ - HelpID = SID_ATTR_CHAR_OVERLINE ; \ + HelpId = CMD_SID_ATTR_CHAR_OVERLINE ; \ Text [ en-US ] = "Overline" ; \ };\ MenuItem\ {\ Identifier = SID_ATTR_CHAR_UNDERLINE ; \ - HelpID = SID_ATTR_CHAR_UNDERLINE ; \ + HelpId = CMD_SID_ATTR_CHAR_UNDERLINE ; \ Text [ en-US ] = "Underline" ; \ };\ MenuItem\ {\ Identifier = SID_ATTR_CHAR_STRIKEOUT ; \ - HelpID = SID_ATTR_CHAR_STRIKEOUT ; \ + HelpId = CMD_SID_ATTR_CHAR_STRIKEOUT ; \ Text [ en-US ] = "Strikethrough" ; \ };\ MenuItem\ {\ Identifier = SID_ATTR_CHAR_SHADOWED ; \ - HelpID = SID_ATTR_CHAR_SHADOWED ; \ + HelpId = CMD_SID_ATTR_CHAR_SHADOWED ; \ Text [ en-US ] = "Shadow" ; \ };\ MenuItem\ {\ Identifier = SID_ATTR_CHAR_CONTOUR ; \ - HelpID = SID_ATTR_CHAR_CONTOUR ; \ + HelpId = CMD_SID_ATTR_CHAR_CONTOUR ; \ Text [ en-US ] = "~Contour" ; \ };\ };\ @@ -512,21 +514,21 @@ MenuItem\ {\ Identifier = SID_ATTR_PARA_LINESPACE_10 ; \ - HelpID = SID_ATTR_PARA_LINESPACE_10 ; \ + HelpId = CMD_SID_ATTR_PARA_LINESPACE_10 ; \ RadioCheck = TRUE ; \ Text [ en-US ] = "Single Line Spacing" ; \ };\ MenuItem\ {\ Identifier = SID_ATTR_PARA_LINESPACE_15 ; \ - HelpID = SID_ATTR_PARA_LINESPACE_15 ; \ + HelpId = CMD_SID_ATTR_PARA_LINESPACE_15 ; \ RadioCheck = TRUE ; \ Text [ en-US ] = "1.5 Lines" ; \ };\ MenuItem\ {\ Identifier = SID_ATTR_PARA_LINESPACE_20 ; \ - HelpID = SID_ATTR_PARA_LINESPACE_20 ; \ + HelpId = CMD_SID_ATTR_PARA_LINESPACE_20 ; \ RadioCheck = TRUE ; \ Text [ en-US ] = "~Double" ; \ };\ @@ -538,7 +540,7 @@ MenuItem\ {\ Identifier = SID_CHARMAP ; \ - HelpID = SID_CHARMAP ; \ + HelpId = CMD_SID_CHARMAP ; \ Text [ en-US ] = "S~pecial Character..." ; \ }; @@ -556,28 +558,28 @@ MenuItem\ {\ Identifier = SID_ATTR_PARA_ADJUST_LEFT ; \ - HelpID = SID_ATTR_PARA_ADJUST_LEFT ; \ + HelpId = CMD_SID_ATTR_PARA_ADJUST_LEFT ; \ RadioCheck = TRUE ; \ Text [ en-US ] = "~Left" ; \ };\ MenuItem\ {\ Identifier = SID_ATTR_PARA_ADJUST_RIGHT ; \ - HelpID = SID_ATTR_PARA_ADJUST_RIGHT ; \ + HelpId = CMD_SID_ATTR_PARA_ADJUST_RIGHT ; \ RadioCheck = TRUE ; \ Text [ en-US ] = "~Right" ; \ };\ MenuItem\ {\ Identifier = SID_ATTR_PARA_ADJUST_CENTER ; \ - HelpID = SID_ATTR_PARA_ADJUST_CENTER ; \ + HelpId = CMD_SID_ATTR_PARA_ADJUST_CENTER ; \ RadioCheck = TRUE ; \ Text [ en-US ] = "~Centered" ; \ };\ MenuItem\ {\ Identifier = SID_ATTR_PARA_ADJUST_BLOCK ; \ - HelpID = SID_ATTR_PARA_ADJUST_BLOCK ; \ + HelpId = CMD_SID_ATTR_PARA_ADJUST_BLOCK ; \ RadioCheck = TRUE ; \ Text [ en-US ] = "Justified" ; \ };\ @@ -591,7 +593,7 @@ {\ Identifier = SID_OBJECT_ALIGN ; \ Command = ".uno:AlignObjetMenu" ; \ - HelpID = SID_OBJECT_ALIGN ; \ + HelpId = CMD_SID_OBJECT_ALIGN ; \ Text [ en-US ] = "Al~ignment" ; \ SubMenu = Menu\ {\ @@ -600,38 +602,38 @@ MenuItem\ {\ Identifier = SID_OBJECT_ALIGN_LEFT ; \ - HelpID = SID_OBJECT_ALIGN_LEFT ; \ + HelpId = CMD_SID_OBJECT_ALIGN_LEFT ; \ Text [ en-US ] = "~Left" ; \ };\ MenuItem\ {\ Identifier = SID_OBJECT_ALIGN_CENTER ; \ - HelpID = SID_OBJECT_ALIGN_CENTER ; \ + HelpId = CMD_SID_OBJECT_ALIGN_CENTER ; \ Text [ en-US ] = "~Centered" ; \ };\ MenuItem\ {\ Identifier = SID_OBJECT_ALIGN_RIGHT ; \ - HelpID = SID_OBJECT_ALIGN_RIGHT ; \ + HelpId = CMD_SID_OBJECT_ALIGN_RIGHT ; \ Text [ en-US ] = "~Right" ; \ };\ SEPARATOR\ MenuItem\ {\ Identifier = SID_OBJECT_ALIGN_UP ; \ - HelpID = SID_OBJECT_ALIGN_UP ; \ + HelpId = CMD_SID_OBJECT_ALIGN_UP ; \ Text [ en-US ] = "~Top" ; \ };\ MenuItem\ {\ Identifier = SID_OBJECT_ALIGN_MIDDLE ; \ - HelpID = SID_OBJECT_ALIGN_MIDDLE ; \ + HelpId = CMD_SID_OBJECT_ALIGN_MIDDLE ; \ Text [ en-US ] = "C~enter" ; \ };\ MenuItem\ {\ Identifier = SID_OBJECT_ALIGN_DOWN ; \ - HelpID = SID_OBJECT_ALIGN_DOWN ; \ + HelpId = CMD_SID_OBJECT_ALIGN_DOWN ; \ Text [ en-US ] = "~Bottom" ; \ };\ };\ @@ -643,7 +645,7 @@ MenuItem\ {\ Identifier = SID_OBJECT_CLOSE ; \ - HelpID = SID_OBJECT_CLOSE ; \ + HelpId = CMD_SID_OBJECT_CLOSE ; \ /* ### ACHTUNG: Neuer Text in Resource? ~Objekt schließen : ~Objekt schlie˜en */\ Text [ en-US ] = "Close ~Object" ; \ }; @@ -652,27 +654,27 @@ MenuItem\ {\ Identifier = SID_BEZIER_EDIT ; \ - HelpID = SID_BEZIER_EDIT ; \ + HelpId = CMD_SID_BEZIER_EDIT ; \ Text [ en-US ] = "Edit ~Points" ; \ };\ SEPARATOR\ MenuItem\ {\ Identifier = SID_BEZIER_MOVE ; \ - HelpID = SID_BEZIER_MOVE ; \ + HelpId = CMD_SID_BEZIER_MOVE ; \ Text [ en-US ] = "~Move Points" ; \ };\ MenuItem\ {\ Identifier = SID_BEZIER_INSERT ; \ - HelpID = SID_BEZIER_INSERT ; \ + HelpId = CMD_SID_BEZIER_INSERT ; \ /* ### ACHTUNG: Neuer Text in Resource? Punkte ~einfügen : Punkte ~einf³gen */\ Text [ en-US ] = "Insert ~Points" ; \ };\ MenuItem\ {\ Identifier = SID_BEZIER_DELETE ; \ - HelpID = SID_BEZIER_DELETE ; \ + HelpId = CMD_SID_BEZIER_DELETE ; \ /* ### ACHTUNG: Neuer Text in Resource? Punkte l~öschen : Punkte l~÷schen */\ Text [ en-US ] = "~Delete Points" ; \ };\ @@ -680,46 +682,46 @@ MenuItem\ {\ Identifier = SID_BEZIER_CLOSE ; \ - HelpID = SID_BEZIER_CLOSE ; \ + HelpId = CMD_SID_BEZIER_CLOSE ; \ /* ### ACHTUNG: Neuer Text in Resource? ~Objekt schließen : ~Objekt schlie˜en */\ Text [ en-US ] = "Close ~Object" ; \ };\ MenuItem\ {\ Identifier = SID_BEZIER_CUTLINE ; \ - HelpID = SID_BEZIER_CUTLINE ; \ + HelpId = CMD_SID_BEZIER_CUTLINE ; \ Text [ en-US ] = "~Split Curve" ; \ };\ MenuItem\ {\ Identifier = SID_BEZIER_CONVERT ; \ - HelpID = SID_BEZIER_CONVERT ; \ + HelpId = CMD_SID_BEZIER_CONVERT ; \ Text [ en-US ] = "Con~vert to Curve" ; \ };\ SEPARATOR\ MenuItem\ {\ Identifier = SID_BEZIER_EDGE ; \ - HelpID = SID_BEZIER_EDGE ; \ + HelpId = CMD_SID_BEZIER_EDGE ; \ Text [ en-US ] = "~Corner" ; \ };\ MenuItem\ {\ Identifier = SID_BEZIER_SMOOTH ; \ - HelpID = SID_BEZIER_SMOOTH ; \ + HelpId = CMD_SID_BEZIER_SMOOTH ; \ Text [ en-US ] = "Smoot~h" ; \ };\ MenuItem\ {\ Identifier = SID_BEZIER_SYMMTR ; \ - HelpID = SID_BEZIER_SYMMTR ; \ + HelpId = CMD_SID_BEZIER_SYMMTR ; \ Text [ en-US ] = "S~ymmetric" ; \ };\ SEPARATOR\ MenuItem\ {\ Identifier = SID_BEZIER_ELIMINATE_POINTS ; \ - HelpID = SID_BEZIER_ELIMINATE_POINTS ; \ + HelpId = CMD_SID_BEZIER_ELIMINATE_POINTS ; \ Text [ en-US ] = "~Reduce Points" ; \ }; @@ -728,7 +730,7 @@ MenuItem\ {\ Identifier = SID_GROUP ; \ - HelpID = SID_GROUP ; \ + HelpId = CMD_SID_GROUP ; \ Text [ en-US ] = "~Group" ; \ /* ### ACHTUNG: Neuer Text in Resource? Ausgewählte Objekte gruppieren : Ausgewõhlte Objekte gruppieren */\ }; @@ -737,7 +739,7 @@ MenuItem\ {\ Identifier = SID_UNGROUP ; \ - HelpID = SID_UNGROUP ; \ + HelpId = CMD_SID_UNGROUP ; \ Text [ en-US ] = "~Ungroup" ; \ }; @@ -745,7 +747,7 @@ MenuItem\ {\ Identifier = SID_COMBINE ; \ - HelpID = SID_COMBINE ; \ + HelpId = CMD_SID_COMBINE ; \ Text [ en-US ] = "Comb~ine" ; \ /* ### ACHTUNG: Neuer Text in Resource? Ausgewählte Objekte kombinieren : Ausgewõhlte Objekte kombinieren */\ }; @@ -754,7 +756,7 @@ MenuItem\ {\ Identifier = SID_DISMANTLE ; \ - HelpID = SID_DISMANTLE ; \ + HelpId = CMD_SID_DISMANTLE ; \ Text [ en-US ] = "~Split" ; \ }; @@ -762,7 +764,7 @@ MenuItem\ {\ Identifier = SID_ENTER_GROUP ; \ - HelpID = SID_ENTER_GROUP ; \ + HelpId = CMD_SID_ENTER_GROUP ; \ Text [ en-US ] = "~Enter Group" ; \ /* ### ACHTUNG: Neuer Text in Resource? Objekte der Gruppierung können bearbeitet werden : Objekte der Gruppierung k÷nnen bearbeitet werden */\ }; @@ -771,7 +773,7 @@ MenuItem\ {\ Identifier = SID_LEAVE_GROUP ; \ - HelpID = SID_LEAVE_GROUP ; \ + HelpId = CMD_SID_LEAVE_GROUP ; \ Text [ en-US ] = "E~xit Group" ; \ /* ### ACHTUNG: Neuer Text in Resource? Objekte der Gruppierung können nicht mehr bearbeitet werden : Objekte der Gruppierung k÷nnen nicht mehr bearbeitet werden */\ }; @@ -780,7 +782,7 @@ MenuItem\ {\ Identifier = SID_NAME_GROUP ; \ - HelpID = SID_NAME_GROUP ; \ + HelpId = CMD_SID_NAME_GROUP ; \ Text [ en-US ] = "Name..." ; \ }; @@ -789,7 +791,7 @@ MenuItem\ {\ Identifier = SID_OBJECT_TITLE_DESCRIPTION; \ - HelpID = SID_OBJECT_TITLE_DESCRIPTION; \ + HelpId = CMD_SID_OBJECT_TITLE_DESCRIPTION; \ Text [ en-US ] = "Description..." ; \ }; @@ -798,7 +800,7 @@ MenuItem\ {\ Identifier = SID_REHEARSE_TIMINGS ; \ - HelpID = SID_REHEARSE_TIMINGS ; \ + HelpId = CMD_SID_REHEARSE_TIMINGS ; \ Text [ en-US ] = "~Rehearse Timings" ; \ }; @@ -806,7 +808,7 @@ MenuItem\ {\ Identifier = SID_CUSTOM_ANIMATION_PANEL ; \ - HelpID = SID_CUSTOM_ANIMATION_PANEL ; \ + HelpId = CMD_SID_CUSTOM_ANIMATION_PANEL ; \ Text [ en-US ] = "Custom Animation..." ; \ }; @@ -814,7 +816,7 @@ MenuItem\ {\ Identifier = SID_ANIMATION_EFFECTS ; \ - HelpID = SID_ANIMATION_EFFECTS ; \ + HelpId = CMD_SID_ANIMATION_EFFECTS ; \ Text [ en-US ] = "Int~eraction..." ; \ }; @@ -822,7 +824,7 @@ MenuItem\ {\ Identifier = SID_PRESENTATIONOBJECT ; \ - HelpID = SID_PRESENTATIONOBJECT ; \ + HelpId = CMD_SID_PRESENTATIONOBJECT ; \ /* ### ACHTUNG: Neuer Text in Resource? ~Präsentationsobjekt... : ~Prõsentationsobjekt... */\ /* ### ACHTUNG: Neuer Text in Resource? Selektiertes Präsentationsobjekt bearbeiten : Selektiertes Prõsentationsobjekt bearbeiten */\ Text [ en-US ] = "Presentation ~Object..." ; \ @@ -833,7 +835,7 @@ MenuItem\ {\ Identifier = SID_DELETE ; \ - HelpID = SID_DELETE ; \ + HelpId = CMD_SID_DELETE ; \ /* ### ACHTUNG: Neuer Text in Resource? L~öschen : L~÷schen */\ Text [ en-US ] = "~Delete" ; \ /* ### ACHTUNG: Neuer Text in Resource? Alle selektierten Objekte löschen : Alle selektierten Objekte l÷schen */\ @@ -844,7 +846,7 @@ MenuItem\ {\ Identifier = SID_SET_DEFAULT ; \ - HelpID = SID_SET_DEFAULT ; \ + HelpId = CMD_SID_SET_DEFAULT ; \ Text [ en-US ] = "~Default" ; \ }; @@ -852,7 +854,7 @@ MenuItem\ {\ Identifier = SID_FONTWORK ; \ - HelpID = SID_FONTWORK ; \ + HelpId = CMD_SID_FONTWORK ; \ Text [ en-US ] = "F~ontwork" ; \ }; @@ -860,7 +862,7 @@ MenuItem\ {\ Identifier = SID_OBJECT ; \ - HelpID = SID_OBJECT ; \ + HelpId = CMD_SID_OBJECT ; \ Text [ en-US ] = "~OLE Object" ; \ }; @@ -868,7 +870,7 @@ MenuItem\ {\ Identifier = SID_ORIGINAL_SIZE ; \ - HelpID = SID_ORIGINAL_SIZE ; \ + HelpId = CMD_SID_ORIGINAL_SIZE ; \ Text [ en-US ] = "~Original Size" ; \ }; @@ -876,7 +878,7 @@ MenuItem\ {\ Identifier = SID_SAVEGRAPHIC ; \ - HelpID = SID_SAVEGRAPHIC ; \ + HelpId = CMD_SID_SAVEGRAPHIC ; \ Text [ en-US ] = "Save as Picture..." ; \ }; @@ -884,7 +886,7 @@ MenuItem\ {\ Identifier = SID_ATTR_GRAF_CROP ; \ - HelpID = SID_ATTR_GRAF_CROP ; \ + HelpId = CMD_SID_ATTR_GRAF_CROP ; \ Text [ en-US ] = "Crop Picture..." ; \ }; @@ -893,7 +895,7 @@ {\ Identifier = SID_NAVIGATOR ; \ Command = ".uno:Navigator" ; \ - HelpID = SID_NAVIGATOR ; \ + HelpId = CMD_SID_NAVIGATOR ; \ Text [ en-US ] = "Na~vigator" ; \ }; @@ -901,7 +903,7 @@ MenuItem\ {\ Identifier = SID_GLUE_INSERT_POINT ; \ - HelpID = SID_GLUE_INSERT_POINT ; \ + HelpId = CMD_SID_GLUE_INSERT_POINT ; \ /* ### ACHTUNG: Neuer Text in Resource? ~Punkt einfügen : ~Punkt einf³gen */\ Text [ en-US ] = "Insert ~Point" ; \ }; @@ -910,7 +912,7 @@ MenuItem\ {\ Identifier = SID_GLUE_ESCDIR_LEFT ; \ - HelpID = SID_GLUE_ESCDIR_LEFT ; \ + HelpId = CMD_SID_GLUE_ESCDIR_LEFT ; \ Text [ en-US ] = "~Left" ; \ }; @@ -918,7 +920,7 @@ MenuItem\ {\ Identifier = SID_GLUE_ESCDIR_TOP ; \ - HelpID = SID_GLUE_ESCDIR_TOP ; \ + HelpId = CMD_SID_GLUE_ESCDIR_TOP ; \ Text [ en-US ] = "~Top" ; \ }; @@ -926,7 +928,7 @@ MenuItem\ {\ Identifier = SID_GLUE_ESCDIR_RIGHT ; \ - HelpID = SID_GLUE_ESCDIR_RIGHT ; \ + HelpId = CMD_SID_GLUE_ESCDIR_RIGHT ; \ Text [ en-US ] = "~Right" ; \ }; @@ -934,7 +936,7 @@ MenuItem\ {\ Identifier = SID_GLUE_ESCDIR_BOTTOM ; \ - HelpID = SID_GLUE_ESCDIR_BOTTOM ; \ + HelpId = CMD_SID_GLUE_ESCDIR_BOTTOM ; \ Text [ en-US ] = "~Bottom" ; \ }; @@ -942,7 +944,7 @@ MenuItem\ {\ Identifier = SID_GLUE_PERCENT ; \ - HelpID = SID_GLUE_PERCENT ; \ + HelpId = CMD_SID_GLUE_PERCENT ; \ Text [ en-US ] = "~Adapt Position to Object" ; \ }; @@ -950,7 +952,7 @@ MenuItem\ {\ Identifier = SID_GLUE_HORZALIGN_LEFT ; \ - HelpID = SID_GLUE_HORZALIGN_LEFT ; \ + HelpId = CMD_SID_GLUE_HORZALIGN_LEFT ; \ RadioCheck = TRUE ; \ Text [ en-US ] = "Fixed ~Horizontal Left" ; \ }; @@ -959,7 +961,7 @@ MenuItem\ {\ Identifier = SID_GLUE_HORZALIGN_CENTER ; \ - HelpID = SID_GLUE_HORZALIGN_CENTER ; \ + HelpId = CMD_SID_GLUE_HORZALIGN_CENTER ; \ RadioCheck = TRUE ; \ Text [ en-US ] = "Fixed Horizontal ~Center" ; \ }; @@ -968,7 +970,7 @@ MenuItem\ {\ Identifier = SID_GLUE_HORZALIGN_RIGHT ; \ - HelpID = SID_GLUE_HORZALIGN_RIGHT ; \ + HelpId = CMD_SID_GLUE_HORZALIGN_RIGHT ; \ RadioCheck = TRUE ; \ Text [ en-US ] = "Fixed Hori~zontal Right" ; \ }; @@ -977,7 +979,7 @@ MenuItem\ {\ Identifier = SID_GLUE_VERTALIGN_TOP ; \ - HelpID = SID_GLUE_VERTALIGN_TOP ; \ + HelpId = CMD_SID_GLUE_VERTALIGN_TOP ; \ RadioCheck = TRUE ; \ Text [ en-US ] = "Fixed ~Vertical Top" ; \ }; @@ -986,7 +988,7 @@ MenuItem\ {\ Identifier = SID_GLUE_VERTALIGN_CENTER ; \ - HelpID = SID_GLUE_VERTALIGN_CENTER ; \ + HelpId = CMD_SID_GLUE_VERTALIGN_CENTER ; \ RadioCheck = TRUE ; \ Text [ en-US ] = "Fixed V~ertical Center" ; \ }; @@ -995,7 +997,7 @@ MenuItem\ {\ Identifier = SID_GLUE_VERTALIGN_BOTTOM ; \ - HelpID = SID_GLUE_VERTALIGN_BOTTOM ; \ + HelpId = CMD_SID_GLUE_VERTALIGN_BOTTOM ; \ RadioCheck = TRUE ; \ Text [ en-US ] = "Fixed Ver~tical Bottom" ; \ }; @@ -1004,7 +1006,7 @@ MenuItem\ {\ Identifier = SID_GRID_VISIBLE ; \ - HelpID = SID_GRID_VISIBLE ; \ + HelpId = CMD_SID_GRID_VISIBLE ; \ Text [ en-US ] = "~Visible Grid" ; \ }; @@ -1012,7 +1014,7 @@ MenuItem\ {\ Identifier = SID_GRID_USE ; \ - HelpID = SID_GRID_USE; \ + HelpId = CMD_SID_GRID_USE; \ Text [ en-US ] = "Snap to Grid"; \ }; @@ -1020,7 +1022,7 @@ MenuItem\ {\ Identifier = SID_GRID_FRONT ; \ - HelpID = SID_GRID_FRONT ; \ + HelpId = CMD_SID_GRID_FRONT ; \ Text [ en-US ] = "Grid to ~Front" ; \ }; @@ -1045,7 +1047,7 @@ MenuItem\ {\ Identifier = SID_HELPLINES_VISIBLE ; \ - HelpID = SID_HELPLINES_VISIBLE ; \ + HelpId = CMD_SID_HELPLINES_VISIBLE ; \ /* ### ACHTUNG: Neuer Text in Resource? ~Fanglinien sichtbar : ~Hilfslinien sichtbar */\ Text [ en-US ] = "~Snap Lines Visible" ; \ }; @@ -1054,7 +1056,7 @@ MenuItem\ {\ Identifier = SID_HELPLINES_USE ; \ - HelpID = SID_HELPLINES_USE ; \ + HelpId = CMD_SID_HELPLINES_USE ; \ Text [ en-US ] = "Snap to Snap Lines"; \ }; @@ -1062,7 +1064,7 @@ MenuItem\ {\ Identifier = SID_HELPLINES_FRONT ; \ - HelpID = SID_HELPLINES_FRONT ; \ + HelpId = CMD_SID_HELPLINES_FRONT ; \ /* ### ACHTUNG: Neuer Text in Resource? Fanglini~en vorn : H~ilfslinien vorn */\ Text [ en-US ] = "Snap Lines to Front" ; \ }; @@ -1088,7 +1090,7 @@ MenuItem\ {\ Identifier = SID_SHOW_BROWSER ; \ - HelpID = SID_SHOW_BROWSER ; \ + HelpId = CMD_SID_SHOW_BROWSER ; \ Text [ en-US ] = "Propert~ies..." ; \ }; @@ -1096,7 +1098,7 @@ MenuItem\ {\ Identifier = SID_CONVERT_TO_1BIT_THRESHOLD ; \ - HelpID = SID_CONVERT_TO_1BIT_THRESHOLD ; \ + HelpId = CMD_SID_CONVERT_TO_1BIT_THRESHOLD ; \ Text [ en-US ] = "1Bit ~Threshold" ; \ }; @@ -1104,7 +1106,7 @@ MenuItem\ {\ Identifier = SID_CONVERT_TO_1BIT_MATRIX ; \ - HelpID = SID_CONVERT_TO_1BIT_MATRIX ; \ + HelpId = CMD_SID_CONVERT_TO_1BIT_MATRIX ; \ Text [ en-US ] = "1 Bit ~Dithering" ; \ }; @@ -1112,7 +1114,7 @@ MenuItem\ {\ Identifier = SID_CONVERT_TO_4BIT_GRAYS ; \ - HelpID = SID_CONVERT_TO_4BIT_GRAYS ; \ + HelpId = CMD_SID_CONVERT_TO_4BIT_GRAYS ; \ Text [ en-US ] = "4 Bit G~rayscales" ; \ }; @@ -1120,7 +1122,7 @@ MenuItem\ {\ Identifier = SID_CONVERT_TO_4BIT_COLORS ; \ - HelpID = SID_CONVERT_TO_4BIT_COLORS ; \ + HelpId = CMD_SID_CONVERT_TO_4BIT_COLORS ; \ Text [ en-US ] = "4 Bit ~Color Palette" ; \ }; @@ -1128,7 +1130,7 @@ MenuItem\ {\ Identifier = SID_CONVERT_TO_8BIT_GRAYS ; \ - HelpID = SID_CONVERT_TO_8BIT_GRAYS ; \ + HelpId = CMD_SID_CONVERT_TO_8BIT_GRAYS ; \ Text [ en-US ] = "8 Bit Gr~ayscales" ; \ }; @@ -1136,7 +1138,7 @@ MenuItem\ {\ Identifier = SID_CONVERT_TO_8BIT_COLORS ; \ - HelpID = SID_CONVERT_TO_8BIT_COLORS ; \ + HelpId = CMD_SID_CONVERT_TO_8BIT_COLORS ; \ Text [ en-US ] = "8 Bit C~olor Palette" ; \ }; @@ -1144,7 +1146,7 @@ MenuItem\ {\ Identifier = SID_CONVERT_TO_24BIT ; \ - HelpID = SID_CONVERT_TO_24BIT ; \ + HelpId = CMD_SID_CONVERT_TO_24BIT ; \ Text [ en-US ] = "24 Bit ~True Colors" ; \ }; @@ -1175,7 +1177,7 @@ {\ Identifier = SID_CONVERT ; \ Command = ".uno:ConvertMenu" ; \ - HelpID = SID_CONVERT ; \ + HelpId = HID_MN_SUB_CONVERT ; \ Text [ en-US ] = "Con~vert" ; \ SubMenu = Menu\ {\ @@ -1196,7 +1198,7 @@ MenuItem\ {\ Identifier = SID_MIRROR ; \ - HelpID = SID_MIRROR ; \ + HelpId = HID_MN_SUB_MIRROR ; \ Command = ".uno:MirrorMenu" ; \ Text [ en-US ] = "~Flip" ; \ SubMenu = Menu\ @@ -1213,7 +1215,7 @@ MenuItem\ {\ Identifier = SID_OBJECT_ROTATE ; \ - HelpID = SID_OBJECT_ROTATE ; \ + HelpId = CMD_SID_OBJECT_ROTATE ; \ Text [ en-US ] = "~Rotate";\ }; @@ -1221,7 +1223,7 @@ MenuItem\ {\ Identifier = SID_CONNECT ; \ - HelpID = SID_CONNECT ; \ + HelpId = CMD_SID_CONNECT ; \ Text [ en-US ] = "C~onnect" ; \ }; @@ -1229,7 +1231,7 @@ MenuItem\ {\ Identifier = SID_BREAK ; \ - HelpID = SID_BREAK ; \ + HelpId = CMD_SID_BREAK ; \ Text [ en-US ] = "~Break" ; \ }; @@ -1237,7 +1239,7 @@ MenuItem\ {\ Identifier = SID_STYLE_EDIT ; \ - HelpID = SID_STYLE_EDIT ; \ + HelpId = CMD_SID_STYLE_EDIT ; \ Text [ en-US ] = "Edit Style..." ; \ }; @@ -1245,7 +1247,7 @@ MenuItem\ {\ Identifier = SID_EDIT_HYPERLINK ; \ - HelpID = SID_EDIT_HYPERLINK ; \ + HelpId = CMD_SID_EDIT_HYPERLINK ; \ Text [ en-US ] = "H~yperlink..." ; \ }; @@ -1253,7 +1255,7 @@ MenuItem\ {\ Identifier = SID_BEZIER_EDIT ; \ - HelpID = SID_BEZIER_EDIT ; \ + HelpId = CMD_SID_BEZIER_EDIT ; \ Text [ en-US ] = "Poi~nts";\ }; @@ -1261,7 +1263,7 @@ MenuItem\ {\ Identifier = SID_GLUE_EDITMODE ; \ - HelpID = SID_GLUE_EDITMODE ; \ + HelpId = CMD_SID_GLUE_EDITMODE ; \ Text [ en-US ] = "~Glue Points";\ }; @@ -1278,25 +1280,25 @@ MenuItem \ {\ Identifier = SID_INSERTLAYER ; \ - HelpID = SID_INSERTLAYER ; \ + HelpId = CMD_SID_INSERTLAYER ; \ Text [ en-US ] = "~Insert";\ };\ MenuItem \ {\ Identifier = SID_MODIFYLAYER ; \ - HelpID = SID_MODIFYLAYER ; \ + HelpId = CMD_SID_MODIFYLAYER ; \ Text [ en-US ] = "~Modify";\ };\ MenuItem \ {\ Identifier = SID_DELETE_LAYER ; \ - HelpID = SID_DELETE_LAYER ; \ + HelpId = CMD_SID_DELETE_LAYER ; \ Text [ en-US ] = "Delete";\ };\ MenuItem \ {\ Identifier = SID_RENAMELAYER ; \ - HelpID = SID_RENAMELAYER ; \ + HelpId = CMD_SID_RENAMELAYER ; \ Text [ en-US ] = "~Rename";\ }; \ };\ diff --git a/sd/source/ui/app/popup.src b/sd/source/ui/app/popup.src index 54d25c998ff5..27f91bab3c6d 100644 --- a/sd/source/ui/app/popup.src +++ b/sd/source/ui/app/popup.src @@ -35,6 +35,7 @@ #ifndef _GLOBLMN_HRC #include #endif +#include "helpids.h" #define DEFINE_SLOTID_FOR_NUMBER_BULLETS SID_OUTLINE_BULLET @@ -82,7 +83,7 @@ Menu RID_DRAW_TABLEOBJ_INSIDE_POPUP MenuItem { Identifier = SID_FORMAT_TABLE_DLG; - HelpID = SID_FORMAT_TABLE_DLG; + HelpId = CMD_SID_FORMAT_TABLE_DLG; Text [ en-US ] = "~Table..."; }; MenuItem @@ -97,32 +98,32 @@ Menu RID_DRAW_TABLEOBJ_INSIDE_POPUP MenuItem { Identifier = SID_TABLE_MERGE_CELLS; - HelpID = SID_TABLE_MERGE_CELLS; + HelpId = CMD_SID_TABLE_MERGE_CELLS; Text [ en-US ] = "~Merge"; }; MenuItem { Identifier = SID_TABLE_SPLIT_CELLS; - HelpID = SID_TABLE_SPLIT_CELLS; + HelpId = CMD_SID_TABLE_SPLIT_CELLS; Text [ en-US ] = "~Split..."; }; SEPARATOR MenuItem { Identifier = SID_TABLE_VERT_NONE; - HelpID = SID_TABLE_VERT_NONE; + HelpId = CMD_SID_TABLE_VERT_NONE; Text [ en-US ] = "~Top"; }; MenuItem { Identifier = SID_TABLE_VERT_CENTER; - HelpID = SID_TABLE_VERT_CENTER; + HelpId = CMD_SID_TABLE_VERT_CENTER; Text [ en-US ] = "C~enter"; }; MenuItem { Identifier = SID_TABLE_VERT_BOTTOM; - HelpID = SID_TABLE_VERT_BOTTOM; + HelpId = CMD_SID_TABLE_VERT_BOTTOM; Text [ en-US ] = "~Bottom"; }; }; @@ -140,26 +141,26 @@ Menu RID_DRAW_TABLEOBJ_INSIDE_POPUP MenuItem { Identifier = SID_TABLE_DISTRIBUTE_ROWS; - HelpID = SID_TABLE_DISTRIBUTE_ROWS; + HelpId = CMD_SID_TABLE_DISTRIBUTE_ROWS; Text [ en-US ] = "Space ~Equally"; }; SEPARATOR MenuItem { Identifier = SID_TABLE_SELECT_ROW; - HelpID = SID_TABLE_SELECT_ROW; + HelpId = CMD_SID_TABLE_SELECT_ROW; Text [ en-US ] = "~Select"; }; MenuItem { Identifier = SID_TABLE_INSERT_ROW_DLG; - HelpID = SID_TABLE_INSERT_ROW_DLG; + HelpId = CMD_SID_TABLE_INSERT_ROW_DLG; Text [ en-US ] = "~Insert..."; }; MenuItem { Identifier = SID_TABLE_DELETE_ROW; - HelpID = SID_TABLE_DELETE_ROW; + HelpId = CMD_SID_TABLE_DELETE_ROW; Text [ en-US ] = "~Delete"; }; }; @@ -177,26 +178,26 @@ Menu RID_DRAW_TABLEOBJ_INSIDE_POPUP MenuItem { Identifier = SID_TABLE_DISTRIBUTE_COLUMNS; - HelpID = SID_TABLE_DISTRIBUTE_COLUMNS; + HelpId = CMD_SID_TABLE_DISTRIBUTE_COLUMNS; Text [ en-US ] = "Space ~Equally"; }; SEPARATOR MenuItem { Identifier = SID_TABLE_SELECT_COL; - HelpID = SID_TABLE_SELECT_COL; + HelpId = CMD_SID_TABLE_SELECT_COL; Text [ en-US ] = "~Select"; }; MenuItem { Identifier = SID_TABLE_INSERT_COL_DLG; - HelpID = SID_TABLE_INSERT_COL_DLG; + HelpId = CMD_SID_TABLE_INSERT_COL_DLG; Text [ en-US ] = "~Insert..."; }; MenuItem { Identifier = SID_TABLE_DELETE_COL; - HelpID = SID_TABLE_DELETE_COL; + HelpId = CMD_SID_TABLE_DELETE_COL; Text [ en-US ] = "~Delete"; }; }; @@ -428,21 +429,21 @@ Menu RID_LAYERTAB_POPUP MenuItem { Identifier = SID_INSERTLAYER ; - HelpID = SID_INSERTLAYER ; + HelpId = CMD_SID_INSERTLAYER ; /* ### ACHTUNG: Neuer Text in Resource? ~Ebene einfügen... : ~Ebene einf³gen... */ Text [ en-US ] = "~Insert Layer..." ; }; MenuItem { Identifier = SID_MODIFYLAYER ; - HelpID = SID_MODIFYLAYER ; + HelpId = CMD_SID_MODIFYLAYER ; /* ### ACHTUNG: Neuer Text in Resource? E~bene ändern... : E~bene õndern... */ Text [ en-US ] = "Modify La~yer..." ; }; MenuItem { Identifier = SID_DELETE_LAYER ; - HelpID = SID_DELETE_LAYER ; + HelpId = CMD_SID_DELETE_LAYER ; /* ### ACHTUNG: Neuer Text in Resource? Ebe~ne löschen... : Ebe~ne l÷schen... */ Text [ en-US ] = "Delete ~Layer..." ; }; @@ -457,13 +458,13 @@ Menu RID_TASKPANE_MASTERPAGESSELECTOR_POPUP MenuItem { Identifier = SID_TP_APPLY_TO_ALL_SLIDES; - HelpID = SID_TP_APPLY_TO_ALL_SLIDES; + HelpId = CMD_SID_TP_APPLY_TO_ALL_SLIDES; Text [ en-US ] = "~Apply to All Slides"; }; MenuItem { Identifier = SID_TP_APPLY_TO_SELECTED_SLIDES; - HelpID = SID_TP_APPLY_TO_SELECTED_SLIDES; + HelpId = CMD_SID_TP_APPLY_TO_SELECTED_SLIDES; Text [ en-US ] = "Apply to ~Selected Slides"; }; @@ -472,13 +473,13 @@ Menu RID_TASKPANE_MASTERPAGESSELECTOR_POPUP MenuItem { Identifier = SID_TP_SHOW_LARGE_PREVIEW; - HelpID = SID_TP_SHOW_LARGE_PREVIEW; + HelpId = CMD_SID_TP_SHOW_LARGE_PREVIEW; Text[ en-US ] = "Show ~Large Preview"; }; MenuItem { Identifier = SID_TP_SHOW_SMALL_PREVIEW; - HelpID = SID_TP_SHOW_SMALL_PREVIEW; + HelpId = CMD_SID_TP_SHOW_SMALL_PREVIEW; Text[ en-US ] = "Show S~mall Preview"; }; }; @@ -491,13 +492,13 @@ Menu RID_TASKPANE_CURRENT_MASTERPAGESSELECTOR_POPUP MenuItem { Identifier = SID_TP_APPLY_TO_ALL_SLIDES; - HelpID = SID_TP_APPLY_TO_ALL_SLIDES; + HelpId = CMD_SID_TP_APPLY_TO_ALL_SLIDES; Text [ en-US ] = "~Apply to All Slides"; }; MenuItem { Identifier = SID_TP_APPLY_TO_SELECTED_SLIDES; - HelpID = SID_TP_APPLY_TO_SELECTED_SLIDES; + HelpId = CMD_SID_TP_APPLY_TO_SELECTED_SLIDES; Text [ en-US ] = "Apply to ~Selected Slides"; }; @@ -507,7 +508,7 @@ Menu RID_TASKPANE_CURRENT_MASTERPAGESSELECTOR_POPUP MenuItem { Identifier = SID_TP_EDIT_MASTER; - HelpID = SID_TP_EDIT_MASTER; + HelpId = CMD_SID_TP_EDIT_MASTER; Text[ en-US ] = "~Edit Master..."; }; @@ -518,13 +519,13 @@ Menu RID_TASKPANE_CURRENT_MASTERPAGESSELECTOR_POPUP MenuItem { Identifier = SID_TP_SHOW_LARGE_PREVIEW; - HelpID = SID_TP_SHOW_LARGE_PREVIEW; + HelpId = CMD_SID_TP_SHOW_LARGE_PREVIEW; Text[ en-US ] = "Show ~Large Preview"; }; MenuItem { Identifier = SID_TP_SHOW_SMALL_PREVIEW; - HelpID = SID_TP_SHOW_SMALL_PREVIEW; + HelpId = CMD_SID_TP_SHOW_SMALL_PREVIEW; Text[ en-US ] = "Show S~mall Preview"; }; }; @@ -537,7 +538,7 @@ Menu RID_TASKPANE_LAYOUTMENU_POPUP MenuItem { Identifier = SID_TP_APPLY_TO_SELECTED_SLIDES; - HelpID = SID_TP_APPLY_TO_SELECTED_SLIDES; + HelpId = CMD_SID_TP_APPLY_TO_SELECTED_SLIDES; Text [ en-US ] = "Apply to ~Selected Slides"; }; @@ -546,7 +547,7 @@ Menu RID_TASKPANE_LAYOUTMENU_POPUP MenuItem { Identifier = SID_INSERTPAGE_LAYOUT_MENU; - HelpID = SID_INSERTPAGE_LAYOUT_MENU; + HelpId = CMD_SID_INSERTPAGE_LAYOUT_MENU; Text [ en-US ] = "~Insert Slide"; }; }; diff --git a/sd/source/ui/app/popup2_tmpl.src b/sd/source/ui/app/popup2_tmpl.src index 5ee8fb5e4d6a..c76c09df62e6 100644 --- a/sd/source/ui/app/popup2_tmpl.src +++ b/sd/source/ui/app/popup2_tmpl.src @@ -733,7 +733,7 @@ MenuItem { Identifier = SID_FORMAT_TABLE_DLG; - HelpID = SID_FORMAT_TABLE_DLG; + HelpId = CMD_SID_FORMAT_TABLE_DLG; Text [ en-US ] = "~Table..."; }; MenuItem @@ -748,32 +748,32 @@ MenuItem { Identifier = SID_TABLE_MERGE_CELLS; - HelpID = SID_TABLE_MERGE_CELLS; + HelpId = CMD_SID_TABLE_MERGE_CELLS; Text [ en-US ] = "~Merge"; }; MenuItem { Identifier = SID_TABLE_SPLIT_CELLS; - HelpID = SID_TABLE_SPLIT_CELLS; + HelpId = CMD_SID_TABLE_SPLIT_CELLS; Text [ en-US ] = "~Split..."; }; SEPARATOR MenuItem { Identifier = SID_TABLE_VERT_NONE; - HelpID = SID_TABLE_VERT_NONE; + HelpId = CMD_SID_TABLE_VERT_NONE; Text [ en-US ] = "~Top"; }; MenuItem { Identifier = SID_TABLE_VERT_CENTER; - HelpID = SID_TABLE_VERT_CENTER; + HelpId = CMD_SID_TABLE_VERT_CENTER; Text [ en-US ] = "C~enter"; }; MenuItem { Identifier = SID_TABLE_VERT_BOTTOM; - HelpID = SID_TABLE_VERT_BOTTOM; + HelpId = CMD_SID_TABLE_VERT_BOTTOM; Text [ en-US ] = "~Bottom"; }; }; @@ -791,26 +791,26 @@ MenuItem { Identifier = SID_TABLE_DISTRIBUTE_ROWS; - HelpID = SID_TABLE_DISTRIBUTE_ROWS; + HelpId = CMD_SID_TABLE_DISTRIBUTE_ROWS; Text [ en-US ] = "Space ~Equally"; }; SEPARATOR MenuItem { Identifier = SID_TABLE_SELECT_ROW; - HelpID = SID_TABLE_SELECT_ROW; + HelpId = CMD_SID_TABLE_SELECT_ROW; Text [ en-US ] = "~Select"; }; MenuItem { Identifier = SID_TABLE_INSERT_ROW_DLG; - HelpID = SID_TABLE_INSERT_ROW_DLG; + HelpId = CMD_SID_TABLE_INSERT_ROW_DLG; Text [ en-US ] = "~Insert..."; }; MenuItem { Identifier = SID_TABLE_DELETE_ROW; - HelpID = SID_TABLE_DELETE_ROW; + HelpId = CMD_SID_TABLE_DELETE_ROW; Text [ en-US ] = "~Delete"; }; }; @@ -828,26 +828,26 @@ MenuItem { Identifier = SID_TABLE_DISTRIBUTE_COLUMNS; - HelpID = SID_TABLE_DISTRIBUTE_COLUMNS; + HelpId = CMD_SID_TABLE_DISTRIBUTE_COLUMNS; Text [ en-US ] = "Space ~Equally"; }; SEPARATOR MenuItem { Identifier = SID_TABLE_SELECT_COL; - HelpID = SID_TABLE_SELECT_COL; + HelpId = CMD_SID_TABLE_SELECT_COL; Text [ en-US ] = "~Select"; }; MenuItem { Identifier = SID_TABLE_INSERT_COL_DLG; - HelpID = SID_TABLE_INSERT_COL_DLG; + HelpId = CMD_SID_TABLE_INSERT_COL_DLG; Text [ en-US ] = "~Insert..."; }; MenuItem { Identifier = SID_TABLE_DELETE_COL; - HelpID = SID_TABLE_DELETE_COL; + HelpId = CMD_SID_TABLE_DELETE_COL; Text [ en-US ] = "~Delete"; }; }; diff --git a/sd/source/ui/app/sdmod.cxx b/sd/source/ui/app/sdmod.cxx index 32087f993e62..a1b91d0ac832 100644 --- a/sd/source/ui/app/sdmod.cxx +++ b/sd/source/ui/app/sdmod.cxx @@ -156,58 +156,6 @@ SdModule::~SdModule() } -/************************************************************************* -|* -|* Statusbar erzeugen -|* -\************************************************************************/ - -#define AUTOSIZE_WIDTH 180 -#define TEXT_WIDTH(s) rStatusBar.GetTextWidth((s)) - -void SdModule::FillStatusBar(StatusBar& rStatusBar) -{ - // Hinweis - rStatusBar.InsertItem( SID_CONTEXT, TEXT_WIDTH( String().Fill( 30, 'x' ) ), // vorher 52 - SIB_IN | SIB_LEFT | SIB_AUTOSIZE ); - - // Groesse und Position - rStatusBar.InsertItem( SID_ATTR_SIZE, SvxPosSizeStatusBarControl::GetDefItemWidth(rStatusBar), // vorher 42 - SIB_IN | SIB_USERDRAW ); - // SIB_AUTOSIZE | SIB_LEFT | SIB_OWNERDRAW ); - - // Massstab - rStatusBar.InsertItem( SID_ATTR_ZOOM, SvxZoomStatusBarControl::GetDefItemWidth(rStatusBar), SIB_IN | SIB_CENTER ); -/* - // Einfuege- / Uberschreibmodus - rStatusBar.InsertItem( SID_ATTR_INSERT, TEXT_WIDTH( "EINFG" ), - SIB_IN | SIB_CENTER ); - - // Selektionsmodus - rStatusBar.InsertItem( SID_STATUS_SELMODE, TEXT_WIDTH( "ERG" ), - SIB_IN | SIB_CENTER ); -*/ - // Dokument geaendert - rStatusBar.InsertItem( SID_DOC_MODIFIED, SvxModifyControl::GetDefItemWidth(rStatusBar) ); - - // signatures - rStatusBar.InsertItem( SID_SIGNATURE, XmlSecStatusBarControl::GetDefItemWidth( rStatusBar ), SIB_USERDRAW ); - // FIXME: HELPID - rStatusBar.SetHelpId(SID_SIGNATURE, ""/*SID_SIGNATURE*/); - - - - // Seite - rStatusBar.InsertItem( SID_STATUS_PAGE, TEXT_WIDTH( String().Fill( 24, 'X' ) ), - SIB_IN | SIB_LEFT ); - - // Praesentationslayout - rStatusBar.InsertItem( SID_STATUS_LAYOUT, TEXT_WIDTH( String().Fill( 10, 'X' ) ), - SIB_IN | SIB_LEFT | SIB_AUTOSIZE ); -} - - - /************************************************************************* |* |* get notifications diff --git a/sd/source/ui/app/strings.src b/sd/source/ui/app/strings.src index 3066355ef95e..7b977836297a 100644 --- a/sd/source/ui/app/strings.src +++ b/sd/source/ui/app/strings.src @@ -26,6 +26,8 @@ ************************************************************************/ #include "strings.hrc" #include "glob.hrc" +#include "helpids.h" + String STR_DRAW_TOOLBOX { Text [ en-US ] = "Drawings Toolbar" ; @@ -483,7 +485,7 @@ ModalDialog RID_UNDO_DELETE_WARNING Moveable = TRUE; Closeable = TRUE; - HelpID = RID_UNDO_DELETE_WARNING; + HelpID = HID_UNDO_DELETE_WARNING; FixedImage IMG_UNDO_DELETE_WARNING { diff --git a/sd/source/ui/app/tbx_ww.src b/sd/source/ui/app/tbx_ww.src deleted file mode 100644 index 67e62be0f1be..000000000000 --- a/sd/source/ui/app/tbx_ww.src +++ /dev/null @@ -1,1124 +0,0 @@ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2000, 2010 Oracle and/or its affiliates. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * - * for a copy of the LGPLv3 License. - * - ************************************************************************/ - -#include -#include -#include "app.hrc" -#include "res_bmp.hrc" -#include "helpids.h" - -FloatingWindow RID_ALIGNMENT -{ - HelpId = HID_SD_FW_ALIGNMENT ; - Moveable = TRUE ; - Closeable = TRUE ; - Hide = TRUE ; - SVLook = TRUE ; - Text [ en-US ] = "Alignment" ; - ToolBox RID_ALIGNMENT_TBX - { - SVLook = TRUE ; - MenuStrings = TRUE ; - ItemList = - { - ToolBoxItem - { - ITEM_FORMAT_OBJECT_ALIGN_LEFT - }; - ToolBoxItem - { - ITEM_FORMAT_OBJECT_ALIGN_CENTER - }; - ToolBoxItem - { - ITEM_FORMAT_OBJECT_ALIGN_RIGHT - }; - ToolBoxItem - { - ITEM_FORMAT_OBJECT_ALIGN_UP - }; - ToolBoxItem - { - ITEM_FORMAT_OBJECT_ALIGN_MIDDLE - }; - ToolBoxItem - { - ITEM_FORMAT_OBJECT_ALIGN_DOWN - }; - }; - }; -}; -FloatingWindow RID_ZOOM -{ - HelpId = HID_SD_FW_ZOOM ; - Moveable = TRUE ; - Closeable = TRUE ; - Hide = TRUE ; - SVLook = TRUE ; - Text [ en-US ] = "Zoom" ; - ToolBox RID_ZOOM_TBX - { - SVLook = TRUE ; - MenuStrings = TRUE ; - LineCount = 2 ; - ItemList = - { - ToolBoxItem - { - Identifier = SID_ZOOM_OUT ; - HelpID = SID_ZOOM_OUT ; - }; - ToolBoxItem - { - Identifier = SID_ZOOM_IN ; - HelpID = SID_ZOOM_IN ; - }; - ToolBoxItem - { - Identifier = SID_SIZE_REAL ; - HelpID = SID_SIZE_REAL ; - }; - ToolBoxItem - { - Identifier = SID_ZOOM_PREV ; - HelpID = SID_ZOOM_PREV ; - }; - ToolBoxItem - { - Identifier = SID_ZOOM_NEXT ; - HelpID = SID_ZOOM_NEXT ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_BREAK ; - }; - ToolBoxItem - { - Identifier = SID_SIZE_PAGE ; - HelpID = SID_SIZE_PAGE ; - }; - ToolBoxItem - { - Identifier = SID_SIZE_PAGE_WIDTH ; - HelpID = SID_SIZE_PAGE_WIDTH ; - }; - ToolBoxItem - { - Identifier = SID_SIZE_ALL ; - HelpID = SID_SIZE_ALL ; - }; - ToolBoxItem - { - Identifier = SID_SIZE_OPTIMAL ; - HelpID = SID_SIZE_OPTIMAL ; - }; - ToolBoxItem - { - Identifier = SID_ZOOM_PANNING ; - HelpID = SID_ZOOM_PANNING ; - }; - }; - }; -}; -FloatingWindow RID_CHOOSE_MODE -{ - HelpId = HID_SD_FW_CHOOSE_MODE ; - Moveable = TRUE ; - Closeable = TRUE ; - Hide = TRUE ; - SVLook = TRUE ; - Text [ en-US ] = "Effects" ; - ToolBox RID_CHOOSE_MODE_TBX - { - SVLook = TRUE ; - MenuStrings = TRUE ; - LineCount = 2 ; - ItemList = - { - ToolBoxItem - { - ITEM_TOOLBAR_OBJECT_ROTATE - Checkable = TRUE ; - RadioCheck = TRUE ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_OBJECT_MIRROR ; - HelpID = SID_OBJECT_MIRROR ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONVERT_TO_3D_LATHE ; - HelpID = SID_CONVERT_TO_3D_LATHE ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_OBJECT_CROOK_ROTATE ; - HelpID = SID_OBJECT_CROOK_ROTATE ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_BREAK ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_OBJECT_CROOK_SLANT ; - HelpID = SID_OBJECT_CROOK_SLANT ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_OBJECT_SHEAR ; - HelpID = SID_OBJECT_SHEAR ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_OBJECT_TRANSPARENCE ; - HelpID = SID_OBJECT_TRANSPARENCE ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_OBJECT_GRADIENT ; - HelpID = SID_OBJECT_GRADIENT ; - }; - }; - }; -}; -FloatingWindow RID_TEXT -{ - HelpId = HID_SD_FW_TEXT ; - Moveable = TRUE ; - Closeable = TRUE ; - Hide = TRUE ; - SVLook = TRUE ; - ToolBox RID_TEXT_TBX - { - SVLook = TRUE ; - MenuStrings = TRUE ; - LineCount = 2 ; - ItemList = - { - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_ATTR_CHAR ; - HelpID = SID_ATTR_CHAR ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_TEXT_FITTOSIZE ; - HelpID = SID_TEXT_FITTOSIZE ; - }; - ToolBoxItem - { - Identifier = SID_DRAW_CAPTION ; - HelpId = SID_DRAW_CAPTION ; - }; - ToolBoxItem - { - Identifier = SID_DRAW_FONTWORK ; - HelpId = SID_DRAW_FONTWORK ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_BREAK ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_ATTR_CHAR_VERTICAL ; - HelpID = SID_ATTR_CHAR_VERTICAL ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_TEXT_FITTOSIZE_VERTICAL ; - HelpID = SID_TEXT_FITTOSIZE_VERTICAL ; - }; - ToolBoxItem - { - Identifier = SID_DRAW_CAPTION_VERTICAL ; - HelpId = SID_DRAW_CAPTION_VERTICAL ; - }; - ToolBoxItem - { - Identifier = SID_DRAW_FONTWORK_VERTICAL ; - HelpId = SID_DRAW_FONTWORK_VERTICAL ; - }; - }; - }; - Text [ en-US ] = "Text" ; -}; -FloatingWindow RID_RECTANGLES -{ - HelpId = HID_SD_FW_RECTANGLES ; - Moveable = TRUE ; - Closeable = TRUE ; - Hide = TRUE ; - SVLook = TRUE ; - Text [ en-US ] = "Rectangles" ; - ToolBox RID_RECTANGLES_TBX - { - SVLook = TRUE ; - MenuStrings = TRUE ; - LineCount = 2 ; - ItemList = - { - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_DRAW_RECT ; - HelpID = SID_DRAW_RECT ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_DRAW_SQUARE ; - HelpID = SID_DRAW_SQUARE ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_DRAW_RECT_ROUND ; - HelpID = SID_DRAW_RECT_ROUND ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_DRAW_SQUARE_ROUND ; - HelpID = SID_DRAW_SQUARE_ROUND ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_BREAK ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_DRAW_RECT_NOFILL ; - HelpID = SID_DRAW_RECT_NOFILL ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_DRAW_SQUARE_NOFILL ; - HelpID = SID_DRAW_SQUARE_NOFILL ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_DRAW_RECT_ROUND_NOFILL ; - HelpID = SID_DRAW_RECT_ROUND_NOFILL ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_DRAW_SQUARE_ROUND_NOFILL ; - HelpID = SID_DRAW_SQUARE_ROUND_NOFILL ; - }; - }; - }; -}; -FloatingWindow RID_ELLIPSES -{ - HelpId = HID_SD_FW_ELLIPSES ; - Moveable = TRUE ; - Closeable = TRUE ; - Hide = TRUE ; - SVLook = TRUE ; - Text [ en-US ] = "Ellipses" ; - ToolBox RID_ELLIPSES_TBX - { - SVLook = TRUE ; - MenuStrings = TRUE ; - LineCount = 2 ; - ItemList = - { - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_DRAW_ELLIPSE ; - HelpID = SID_DRAW_ELLIPSE ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_DRAW_CIRCLE ; - HelpID = SID_DRAW_CIRCLE ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_DRAW_PIE ; - HelpID = SID_DRAW_PIE ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_DRAW_CIRCLEPIE ; - HelpID = SID_DRAW_CIRCLEPIE ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_DRAW_ELLIPSECUT ; - HelpID = SID_DRAW_ELLIPSECUT ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_DRAW_CIRCLECUT ; - HelpID = SID_DRAW_CIRCLECUT ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_BREAK ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_DRAW_ELLIPSE_NOFILL ; - HelpID = SID_DRAW_ELLIPSE_NOFILL ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_DRAW_CIRCLE_NOFILL ; - HelpID = SID_DRAW_CIRCLE_NOFILL ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_DRAW_PIE_NOFILL ; - HelpID = SID_DRAW_PIE_NOFILL ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_DRAW_CIRCLEPIE_NOFILL ; - HelpID = SID_DRAW_CIRCLEPIE_NOFILL ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_DRAW_ELLIPSECUT_NOFILL ; - HelpID = SID_DRAW_ELLIPSECUT_NOFILL ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_DRAW_CIRCLECUT_NOFILL ; - HelpID = SID_DRAW_CIRCLECUT_NOFILL ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_DRAW_ARC ; - HelpID = SID_DRAW_ARC ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_DRAW_CIRCLEARC ; - HelpID = SID_DRAW_CIRCLEARC ; - }; - }; - }; -}; -FloatingWindow RID_LINES -{ - HelpId = HID_SD_FW_LINES ; - Moveable = TRUE ; - Closeable = TRUE ; - Hide = TRUE ; - SVLook = TRUE ; - Text [ en-US ] = "Curves" ; - ToolBox RID_LINES_TBX - { - SVLook = TRUE ; - MenuStrings = TRUE ; - HelpID = 1 ; - LineCount = 2 ; - ItemList = - { - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_DRAW_BEZIER_FILL ; - HelpID = SID_DRAW_BEZIER_FILL ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_DRAW_POLYGON ; - HelpID = SID_DRAW_POLYGON ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_DRAW_XPOLYGON ; - HelpID = SID_DRAW_XPOLYGON ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_DRAW_FREELINE ; - HelpID = SID_DRAW_FREELINE ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_BREAK ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_DRAW_BEZIER_NOFILL ; - HelpID = SID_DRAW_BEZIER_NOFILL ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_DRAW_POLYGON_NOFILL ; - HelpID = SID_DRAW_POLYGON_NOFILL ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_DRAW_XPOLYGON_NOFILL ; - HelpID = SID_DRAW_XPOLYGON_NOFILL ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_DRAW_FREELINE_NOFILL ; - HelpID = SID_DRAW_FREELINE_NOFILL ; - }; - }; - }; -}; -FloatingWindow RID_ARROWS -{ - HelpId = HID_SD_FW_ARROWS ; - Moveable = TRUE ; - Closeable = TRUE ; - Hide = TRUE ; - SVLook = TRUE ; - Text [ en-US ] = "Lines" ; - ToolBox RID_ARROWS_TBX - { - SVLook = TRUE ; - MenuStrings = TRUE ; - LineCount = 3 ; - ItemList = - { - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_DRAW_LINE ; - HelpID = SID_DRAW_LINE ; - }; - ToolBoxItem - { - Checkable = TRUE ; - RadioCheck = TRUE ; - Identifier = SID_LINE_ARROW_END ; - HelpID = SID_LINE_ARROW_END ; - }; - ToolBoxItem - { - Checkable = TRUE ; - RadioCheck = TRUE ; - Identifier = SID_LINE_ARROW_CIRCLE ; - HelpID = SID_LINE_ARROW_CIRCLE ; - }; - ToolBoxItem - { - Checkable = TRUE ; - RadioCheck = TRUE ; - Identifier = SID_LINE_ARROW_SQUARE ; - HelpID = SID_LINE_ARROW_SQUARE ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_BREAK ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_DRAW_XLINE ; - HelpID = SID_DRAW_XLINE ; - }; - ToolBoxItem - { - Checkable = TRUE ; - RadioCheck = TRUE ; - Identifier = SID_LINE_ARROW_START ; - HelpID = SID_LINE_ARROW_START ; - }; - ToolBoxItem - { - Checkable = TRUE ; - RadioCheck = TRUE ; - Identifier = SID_LINE_CIRCLE_ARROW ; - HelpID = SID_LINE_CIRCLE_ARROW ; - }; - ToolBoxItem - { - Checkable = TRUE ; - RadioCheck = TRUE ; - Identifier = SID_LINE_SQUARE_ARROW ; - HelpID = SID_LINE_SQUARE_ARROW ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_BREAK ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_DRAW_MEASURELINE ; - HelpID = SID_DRAW_MEASURELINE ; - }; - ToolBoxItem - { - Checkable = TRUE ; - RadioCheck = TRUE ; - Identifier = SID_LINE_ARROWS ; - HelpID = SID_LINE_ARROWS ; - }; - }; - }; -}; -FloatingWindow RID_3D_OBJECTS -{ - HelpId = HID_SD_FW_3D_OBJECTS ; - Moveable = TRUE ; - Closeable = TRUE ; - Hide = TRUE ; - SVLook = TRUE ; - Text [ en-US ] = "3D Objects" ; - ToolBox RID_3D_OBJECTS_TBX - { - SVLook = TRUE ; - MenuStrings = TRUE ; - HelpID = 1 ; - LineCount = 2 ; - ItemList = - { - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_3D_CUBE ; - HelpID = SID_3D_CUBE ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_3D_SPHERE ; - HelpID = SID_3D_SPHERE ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_3D_CYLINDER ; - HelpID = SID_3D_CYLINDER ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_3D_CONE ; - HelpID = SID_3D_CONE ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_BREAK ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_3D_PYRAMID ; - HelpID = SID_3D_PYRAMID ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_3D_TORUS ; - HelpID = SID_3D_TORUS ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_3D_SHELL ; - HelpID = SID_3D_SHELL ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Identifier = SID_3D_HALF_SPHERE ; - HelpID = SID_3D_HALF_SPHERE ; - }; - }; - }; -}; -FloatingWindow RID_CONNECTORS -{ - HelpId = HID_SD_FW_CONNECTORS ; - Moveable = TRUE ; - Closeable = TRUE ; - Hide = TRUE ; - SVLook = TRUE ; - Text [ en-US ] = "Connectors" ; - ToolBox RID_CONNECTORS_TBX - { - SVLook = TRUE ; - MenuStrings = TRUE ; - LineCount = 4 ; - ItemList = - { - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_TOOL_CONNECTOR ; - HelpID = SID_TOOL_CONNECTOR ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_ARROW_START ; - HelpID = SID_CONNECTOR_ARROW_START ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_ARROW_END ; - HelpID = SID_CONNECTOR_ARROW_END ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_ARROWS ; - HelpID = SID_CONNECTOR_ARROWS ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_CIRCLE_START ; - HelpID = SID_CONNECTOR_CIRCLE_START ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_CIRCLE_END ; - HelpID = SID_CONNECTOR_CIRCLE_END ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_CIRCLES ; - HelpID = SID_CONNECTOR_CIRCLES ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_BREAK ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_LINES ; - HelpID = SID_CONNECTOR_LINES ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_LINES_ARROW_START ; - HelpID = SID_CONNECTOR_LINES_ARROW_START ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_LINES_ARROW_END ; - HelpID = SID_CONNECTOR_LINES_ARROW_END ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_LINES_ARROWS ; - HelpID = SID_CONNECTOR_LINES_ARROWS ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_LINES_CIRCLE_START ; - HelpID = SID_CONNECTOR_LINES_CIRCLE_START ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_LINES_CIRCLE_END ; - HelpID = SID_CONNECTOR_LINES_CIRCLE_END ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_LINES_CIRCLES ; - HelpID = SID_CONNECTOR_LINES_CIRCLES ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_BREAK ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_LINE ; - HelpID = SID_CONNECTOR_LINE ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_LINE_ARROW_START ; - HelpID = SID_CONNECTOR_LINE_ARROW_START ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_LINE_ARROW_END ; - HelpID = SID_CONNECTOR_LINE_ARROW_END ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_LINE_ARROWS ; - HelpID = SID_CONNECTOR_LINE_ARROWS ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_LINE_CIRCLE_START ; - HelpID = SID_CONNECTOR_LINE_CIRCLE_START ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_LINE_CIRCLE_END ; - HelpID = SID_CONNECTOR_LINE_CIRCLE_END ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_LINE_CIRCLES ; - HelpID = SID_CONNECTOR_LINE_CIRCLES ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_BREAK ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_CURVE ; - HelpID = SID_CONNECTOR_CURVE ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_CURVE_ARROW_START ; - HelpID = SID_CONNECTOR_CURVE_ARROW_START ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_CURVE_ARROW_END ; - HelpID = SID_CONNECTOR_CURVE_ARROW_END ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_CURVE_ARROWS ; - HelpID = SID_CONNECTOR_CURVE_ARROWS ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_CURVE_CIRCLE_START ; - HelpID = SID_CONNECTOR_CURVE_CIRCLE_START ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_CURVE_CIRCLE_END ; - HelpID = SID_CONNECTOR_CURVE_CIRCLE_END ; - }; - ToolBoxItem - { - RadioCheck = TRUE ; - Checkable = TRUE ; - Identifier = SID_CONNECTOR_CURVE_CIRCLES ; - HelpID = SID_CONNECTOR_CURVE_CIRCLES ; - }; - }; - }; -}; -FloatingWindow RID_INSERT -{ - HelpId = HID_SD_FW_INSERT ; - Moveable = TRUE ; - Closeable = TRUE ; - Hide = TRUE ; - SVLook = TRUE ; - /* ### ACHTUNG: Neuer Text in Resource? Einfügen : Einf³gen */ - Text [ en-US ] = "Insert" ; - ToolBox RID_INSERT_TBX - { - SVLook = TRUE ; - MenuStrings = TRUE ; - HelpID = 1 ; - LineCount = 2 ; - ItemList = - { - ToolBoxItem - { - Identifier = SID_INSERT_DIAGRAM ; - HelpID = SID_INSERT_DIAGRAM; - }; - ToolBoxItem - { - Identifier = SID_INSERT_MATH ; - HelpID = SID_INSERT_MATH ; - }; - ToolBoxItem - { - Identifier = SID_INSERT_FLOATINGFRAME ; - HelpID = SID_INSERT_FLOATINGFRAME ; - }; - ToolBoxItem - { - Identifier = SID_INSERT_OBJECT ; - HelpID = SID_INSERT_OBJECT ; - }; - ToolBoxItem - { - Identifier = SID_INSERT_PLUGIN ; - HelpID = SID_INSERT_PLUGIN ; - }; -#ifdef SOLAR_JAVA - ToolBoxItem - { - Identifier = SID_INSERT_APPLET ; - HelpID = SID_INSERT_APPLET ; - }; -#endif - ToolBoxItem - { - Type = TOOLBOXITEM_BREAK ; - }; - ToolBoxItem - { - Identifier = SID_ATTR_TABLE ; - HelpID = SID_ATTR_TABLE ; - }; - ToolBoxItem - { - Identifier = SID_INSERTFILE ; - HelpID = SID_INSERTFILE ; - }; - ToolBoxItem - { - Identifier = SID_INSERTPAGE ; - HelpID = SID_INSERTPAGE ; - }; - ToolBoxItem - { - Identifier = SID_INSERT_GRAPHIC ; - HelpID = SID_INSERT_GRAPHIC ; - }; - ToolBoxItem - { - Identifier = SID_INSERT_SOUND ; - HelpID = SID_INSERT_SOUND ; - }; - ToolBoxItem - { - Identifier = SID_INSERT_VIDEO ; - HelpID = SID_INSERT_VIDEO ; - }; - ToolBoxItem - { - Identifier = SID_INSERT_AVMEDIA ; - HelpID = SID_INSERT_AVMEDIA ; - }; - }; - }; -}; -FloatingWindow RID_POSITION -{ - HelpId = HID_SD_FW_POSITION ; - Moveable = TRUE ; - Closeable = TRUE ; - Hide = TRUE ; - SVLook = TRUE ; - Text [ en-US ] = "Arrange" ; - ToolBox RID_POSITION_TBX - { - SVLook = TRUE ; - MenuStrings = TRUE ; - LineCount = 2 ; - ItemList = - { - ToolBoxItem - { - ITEM_FORMAT_FRAME_TO_TOP - }; - ToolBoxItem - { - Identifier = SID_MOREFRONT ; - HelpID = SID_MOREFRONT ; - }; - ToolBoxItem - { - Identifier = SID_MOREBACK ; - HelpID = SID_MOREBACK ; - }; - ToolBoxItem - { - ITEM_FORMAT_FRAME_TO_BOTTOM - }; - ToolBoxItem - { - Type = TOOLBOXITEM_BREAK ; - }; - ToolBoxItem - { - Identifier = SID_BEFORE_OBJ ; - HelpID = SID_BEFORE_OBJ ; - }; - ToolBoxItem - { - Identifier = SID_BEHIND_OBJ ; - HelpID = SID_BEHIND_OBJ ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SPACE ; - }; - ToolBoxItem - { - Identifier = SID_REVERSE_ORDER ; - HelpID = SID_REVERSE_ORDER ; - }; - }; - }; -}; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sd/source/ui/app/toolbox.src b/sd/source/ui/app/toolbox.src index a3446a2c58b4..0f3b3c69aeef 100644 --- a/sd/source/ui/app/toolbox.src +++ b/sd/source/ui/app/toolbox.src @@ -27,758 +27,23 @@ #include "app.hrc" #include "cfgids.hxx" -#include "helpids.h" #include - // Werkzeugleiste (Impress) - // Objektleiste (Impress) - // Optionsleiste (Impress) -#include "toolbox2_tmpl.src" - // Werkzeugleiste (Draw (Graphic)) - // Objektleiste (Draw (Graphic)) - // Optionsleiste (Draw (Graphic)) -#undef SD_TOOLBOX -#define SD_TOOLBOX RID_GRAPHIC_TOOLBOX -#include "toolbox2_tmpl.src" - -ToolBox RID_SLIDE_TOOLBOX -{ - HelpId = HID_SD_SLIDE_TOOLBOX ; - LineSpacing = TRUE ; - Dockable = TRUE ; - Moveable = TRUE ; - Sizeable = TRUE ; - Closeable = TRUE ; - Zoomable = TRUE ; - Scroll = TRUE ; - HideWhenDeactivate = TRUE ; - Border = TRUE ; - SVLook = TRUE ; - Customize = TRUE ; - MenuStrings = TRUE ; - Size = MAP_APPFONT ( 0 , 0 ) ; - Align = BOXALIGN_LEFT ; - ItemList = - { - ToolBoxItem - { - Checkable = TRUE ; - Identifier = SID_OBJECT_SELECT ; - HelpID = SID_OBJECT_SELECT ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_ZOOM_TOOLBOX ; - HelpID = SID_ZOOM_TOOLBOX ; - DropDown = TRUE ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_PRESENTATION ; - HelpID = SID_PRESENTATION ; - }; - TBI_ZOOM_IN - TBI_ZOOM_OUT - }; -}; -ToolBox RID_OUTLINE_TOOLBOX -{ - HelpId = HID_SD_OUTLINE_TOOLBOX ; - LineSpacing = TRUE ; - Dockable = TRUE ; - Moveable = TRUE ; - Sizeable = TRUE ; - Closeable = TRUE ; - Zoomable = TRUE ; - Scroll = TRUE ; - HideWhenDeactivate = TRUE ; - Border = TRUE ; - SVLook = TRUE ; - Customize = TRUE ; - MenuStrings = TRUE ; - Size = MAP_APPFONT ( 0 , 0 ) ; - Align = BOXALIGN_LEFT ; - ItemList = - { - ToolBoxItem - { - Identifier = SID_ZOOM_TOOLBOX ; - HelpID = SID_ZOOM_TOOLBOX ; - DropDown = TRUE ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_OUTLINE_COLLAPSE_ALL ; - HelpID = SID_OUTLINE_COLLAPSE_ALL ; - }; - ToolBoxItem - { - Identifier = SID_OUTLINE_EXPAND_ALL ; - HelpID = SID_OUTLINE_EXPAND_ALL ; - }; - ToolBoxItem - { - Identifier = SID_OUTLINE_COLLAPSE ; - HelpID = SID_OUTLINE_COLLAPSE ; - }; - ToolBoxItem - { - Identifier = SID_OUTLINE_EXPAND ; - HelpID = SID_OUTLINE_EXPAND ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_OUTLINE_FORMAT ; - HelpID = SID_OUTLINE_FORMAT ; - }; - ToolBoxItem - { - Identifier = SID_COLORVIEW ; - HelpID = SID_COLORVIEW ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_PRESENTATION ; - HelpID = SID_PRESENTATION ; - }; - TBI_ZOOM_IN - TBI_ZOOM_OUT - }; -}; -ToolBox RID_DRAW_COMMONTASK_TOOLBOX -{ - HelpId = HID_SD_DRAW_COMMONTASK_TOOLBOX ; - ItemList = - { - ToolBoxItem - { - Identifier = SID_INSERTPAGE ; - HelpID = SID_INSERTPAGE ; - }; - ToolBoxItem - { - Identifier = SID_MODIFYPAGE ; - HelpID = SID_MODIFYPAGE ; - }; - ToolBoxItem - { - Identifier = SID_PRESENTATION_LAYOUT ; - HelpID = SID_PRESENTATION_LAYOUT ; - }; - ToolBoxItem - { - Identifier = SID_DUPLICATE_PAGE ; - HelpID = SID_DUPLICATE_PAGE ; - }; - ToolBoxItem - { - Identifier = SID_EXPAND_PAGE ; - HelpID = SID_EXPAND_PAGE ; - }; - }; -}; -ToolBox RID_BEZIER_TOOLBOX -{ - HelpId = HID_SD_BEZIER_TOOLBOX ; - LineSpacing = TRUE ; - Dockable = TRUE ; - Moveable = TRUE ; - Sizeable = TRUE ; - Closeable = TRUE ; - Zoomable = TRUE ; - Scroll = TRUE ; - HideWhenDeactivate = TRUE ; - Border = TRUE ; - SVLook = TRUE ; - Customize = TRUE ; - MenuStrings = TRUE ; - Size = MAP_APPFONT ( 0 , 0 ) ; - Align = BOXALIGN_TOP ; - ItemList = - { - ToolBoxItem - { - ITEM_FORMAT_BEZIER_EDIT - AutoCheck = TRUE ; - Checkable = TRUE ; - RadioCheck = TRUE ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_BEZIER_MOVE ; - HelpID = SID_BEZIER_MOVE ; - }; - ToolBoxItem - { - Identifier = SID_BEZIER_INSERT ; - HelpID = SID_BEZIER_INSERT ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_BEZIER_DELETE ; - HelpID = SID_BEZIER_DELETE ; - }; - ToolBoxItem - { - Identifier = SID_BEZIER_CUTLINE ; - HelpID = SID_BEZIER_CUTLINE ; - }; - ToolBoxItem - { - Identifier = SID_BEZIER_CONVERT ; - HelpID = SID_BEZIER_CONVERT ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_BEZIER_EDGE ; - HelpID = SID_BEZIER_EDGE ; - }; - ToolBoxItem - { - Identifier = SID_BEZIER_SMOOTH ; - HelpID = SID_BEZIER_SMOOTH ; - }; - ToolBoxItem - { - Identifier = SID_BEZIER_SYMMTR ; - HelpID = SID_BEZIER_SYMMTR ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_BEZIER_CLOSE ; - HelpID = SID_BEZIER_CLOSE ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_BEZIER_ELIMINATE_POINTS ; - HelpID = SID_BEZIER_ELIMINATE_POINTS ; - }; - }; -}; -ToolBox RID_GLUEPOINTS_TOOLBOX -{ - HelpId = HID_SD_GLUEPOINTS_TOOLBOX ; - LineSpacing = TRUE ; - Dockable = TRUE ; - Moveable = TRUE ; - Sizeable = TRUE ; - Closeable = TRUE ; - Zoomable = TRUE ; - Scroll = TRUE ; - HideWhenDeactivate = TRUE ; - Border = TRUE ; - SVLook = TRUE ; - Customize = TRUE ; - MenuStrings = TRUE ; - Size = MAP_APPFONT ( 0 , 0 ) ; - Align = BOXALIGN_TOP ; - ItemList = - { - ToolBoxItem - { - Identifier = SID_GLUE_INSERT_POINT ; - HelpID = SID_GLUE_INSERT_POINT ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_GLUE_ESCDIR_LEFT ; - HelpID = SID_GLUE_ESCDIR_LEFT ; - }; - ToolBoxItem - { - Identifier = SID_GLUE_ESCDIR_TOP ; - HelpID = SID_GLUE_ESCDIR_TOP ; - }; - ToolBoxItem - { - Identifier = SID_GLUE_ESCDIR_RIGHT ; - HelpID = SID_GLUE_ESCDIR_RIGHT ; - }; - ToolBoxItem - { - Identifier = SID_GLUE_ESCDIR_BOTTOM ; - HelpID = SID_GLUE_ESCDIR_BOTTOM ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_GLUE_PERCENT ; - HelpID = SID_GLUE_PERCENT ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_GLUE_HORZALIGN_LEFT ; - HelpID = SID_GLUE_HORZALIGN_LEFT ; - }; - ToolBoxItem - { - Identifier = SID_GLUE_HORZALIGN_CENTER ; - HelpID = SID_GLUE_HORZALIGN_CENTER ; - }; - ToolBoxItem - { - Identifier = SID_GLUE_HORZALIGN_RIGHT ; - HelpID = SID_GLUE_HORZALIGN_RIGHT ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_GLUE_VERTALIGN_TOP ; - HelpID = SID_GLUE_VERTALIGN_TOP ; - }; - ToolBoxItem - { - Identifier = SID_GLUE_VERTALIGN_CENTER ; - HelpID = SID_GLUE_VERTALIGN_CENTER ; - }; - ToolBoxItem - { - Identifier = SID_GLUE_VERTALIGN_BOTTOM ; - HelpID = SID_GLUE_VERTALIGN_BOTTOM ; - }; - }; -}; -ToolBox RID_SLIDE_OBJ_TOOLBOX -{ - HelpId = HID_SD_SLIDE_OBJ_TOOLBOX ; - LineSpacing = TRUE ; - Dockable = TRUE ; - Moveable = TRUE ; - Sizeable = TRUE ; - Closeable = TRUE ; - Zoomable = TRUE ; - Scroll = TRUE ; - HideWhenDeactivate = TRUE ; - Border = TRUE ; - SVLook = TRUE ; - Customize = TRUE ; - MenuStrings = TRUE ; - Size = MAP_APPFONT ( 0 , 0 ) ; - Align = BOXALIGN_TOP ; - ItemList = - { - ToolBoxItem - { - Identifier = SID_REHEARSE_TIMINGS ; - HelpID = SID_REHEARSE_TIMINGS ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_HIDE_SLIDE ; - HelpID = SID_HIDE_SLIDE ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_PAGES_PER_ROW ; - HelpID = SID_PAGES_PER_ROW ; - }; - }; -}; -ToolBox RID_DRAW_GRAF_TOOLBOX -{ - HelpId = HID_SD_DRAW_GRAF_TOOLBOX ; - LineSpacing = TRUE ; - Dockable = TRUE ; - Moveable = TRUE ; - Sizeable = TRUE ; - Closeable = TRUE ; - Zoomable = TRUE ; - Scroll = TRUE ; - HideWhenDeactivate = TRUE ; - Border = TRUE ; - SVLook = TRUE ; - Customize = TRUE ; - MenuStrings = TRUE ; - Size = MAP_APPFONT ( 0 , 0 ) ; - Align = BOXALIGN_TOP ; - ItemList = - { - ToolBoxItem - { - Identifier = SID_GRFFILTER; - HelpID = SID_GRFFILTER; - DropDown = TRUE ; - Checkable = FALSE ; - RadioCheck = FALSE ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - - ToolBoxItem - { - Identifier = SID_ATTR_GRAF_MODE; - HelpID = SID_ATTR_GRAF_MODE; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - - ToolBoxItem - { - Identifier = SID_ATTR_GRAF_RED; - HelpID = SID_ATTR_GRAF_RED; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - - ToolBoxItem - { - Identifier = SID_ATTR_GRAF_GREEN; - HelpID = SID_ATTR_GRAF_GREEN; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - - ToolBoxItem - { - Identifier = SID_ATTR_GRAF_BLUE; - HelpID = SID_ATTR_GRAF_BLUE; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - - ToolBoxItem - { - Identifier = SID_ATTR_GRAF_LUMINANCE; - HelpID = SID_ATTR_GRAF_BLUE; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - - ToolBoxItem - { - Identifier = SID_ATTR_GRAF_CONTRAST; - HelpID = SID_ATTR_GRAF_BLUE; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - - ToolBoxItem - { - Identifier = SID_ATTR_GRAF_GAMMA; - HelpID = SID_ATTR_GRAF_BLUE; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_ATTR_GRAF_TRANSPARENCE; - HelpID = SID_ATTR_GRAF_BLUE; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - - // #i25616# - ToolBoxItem - { - Identifier = SID_ATTRIBUTES_LINE; - HelpID = SID_ATTRIBUTES_LINE; - }; - ToolBoxItem - { - Identifier = SID_ATTRIBUTES_AREA; - HelpID = SID_ATTRIBUTES_AREA; - }; - ToolBoxItem - { - Identifier = SID_ATTR_FILL_SHADOW; - HelpID = SID_ATTR_FILL_SHADOW; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - - ToolBoxItem - { - Identifier = SID_ATTR_GRAF_CROP; - HelpID = SID_ATTR_GRAF_CROP; - }; - }; -}; String RID_DRAW_VIEWER_TOOLBOX { Text [ en-US ] = "Function Bar (viewing mode)" ; }; -ToolBox RID_DRAW_VIEWER_TOOLBOX -{ - Border = TRUE ; - SVLook = TRUE ; - Dockable = TRUE ; - Moveable = TRUE ; - Sizeable = TRUE ; - Closeable = TRUE ; - Zoomable = TRUE ; - HideWhenDeactivate = TRUE ; - LineSpacing = TRUE ; - Customize = TRUE ; - MenuStrings = TRUE ; - Hide = TRUE ; - ItemList = - { - ToolBoxItem - { - Identifier = SID_SAVEASDOC ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_EDITDOC ; - }; - ToolBoxItem - { - Identifier = SID_MAIL_SENDDOC ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_DIRECTEXPORTDOCASPDF ; - }; - ToolBoxItem - { - Identifier = SID_PRINTDOCDIRECT ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_COPY ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_SEARCH_DLG ; - }; - ToolBoxItem - { - Identifier = SID_NAVIGATOR ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_ATTR_ZOOM ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_PRESENTATION; - }; - }; - Scroll = TRUE ; -}; - String RID_GRAPHIC_VIEWER_TOOLBOX { Text [ en-US ] = "Function Bar (viewing mode)" ; }; -ToolBox RID_GRAPHIC_VIEWER_TOOLBOX -{ - Border = TRUE ; - SVLook = TRUE ; - Dockable = TRUE ; - Moveable = TRUE ; - Sizeable = TRUE ; - Closeable = TRUE ; - Zoomable = TRUE ; - HideWhenDeactivate = TRUE ; - LineSpacing = TRUE ; - Customize = TRUE ; - MenuStrings = TRUE ; - Hide = TRUE ; - ItemList = - { - ToolBoxItem - { - Identifier = SID_SAVEASDOC ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_EDITDOC ; - }; - ToolBoxItem - { - Identifier = SID_MAIL_SENDDOC ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_DIRECTEXPORTDOCASPDF ; - }; - ToolBoxItem - { - Identifier = SID_PRINTDOCDIRECT ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_COPY ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_SEARCH_DLG ; - }; - ToolBoxItem - { - Identifier = SID_NAVIGATOR ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - ToolBoxItem - { - Identifier = SID_ATTR_ZOOM ; - }; - ToolBoxItem - { - Type = TOOLBOXITEM_SEPARATOR ; - }; - }; - Scroll = TRUE ; -}; - -ToolBox RID_DRAW_MEDIA_TOOLBOX -{ - HelpId = HID_SD_DRAW_MEDIA_TOOLBOX ; - LineSpacing = TRUE ; - Dockable = TRUE ; - Moveable = TRUE ; - Sizeable = TRUE ; - Closeable = TRUE ; - Zoomable = TRUE ; - Scroll = TRUE ; - HideWhenDeactivate = TRUE ; - Border = TRUE ; - SVLook = TRUE ; - Customize = TRUE ; - MenuStrings = TRUE ; - Size = MAP_APPFONT ( 0 , 0 ) ; - Align = BOXALIGN_TOP ; - ItemList = - { - ToolBoxItem - { - Identifier = SID_AVMEDIA_TOOLBOX; - HelpID = SID_AVMEDIA_TOOLBOX; - }; - }; -}; String RID_DRAW_MEDIA_TOOLBOX { Text [ en-US ] = "Media Playback" ; }; + String RID_DRAW_TABLE_TOOLBOX { TEXT [ de ] = "Tabelle" ; diff --git a/sd/source/ui/dlg/LayerTabBar.cxx b/sd/source/ui/dlg/LayerTabBar.cxx index a5053617288d..29425a3bda71 100644 --- a/sd/source/ui/dlg/LayerTabBar.cxx +++ b/sd/source/ui/dlg/LayerTabBar.cxx @@ -71,8 +71,7 @@ LayerTabBar::LayerTabBar(DrawViewShell* pViewSh, Window* pParent) EnableEditMode(); SetSizePixel(Size(0, 0)); SetMaxPageWidth( 150 ); - // FIXME: HELPID - SetHelpId( ""/*HID_SD_TABBAR_LAYERS*/ ); + SetHelpId( HID_SD_TABBAR_LAYERS ); } diff --git a/sd/source/ui/dlg/PaneDockingWindow.cxx b/sd/source/ui/dlg/PaneDockingWindow.cxx index e545d832b1d9..e64e18697a77 100644 --- a/sd/source/ui/dlg/PaneDockingWindow.cxx +++ b/sd/source/ui/dlg/PaneDockingWindow.cxx @@ -271,7 +271,7 @@ void PaneDockingWindow::InitializeTitleToolBox (void) USHORT PaneDockingWindow::AddMenu ( const String& rsMenuName, - ULONG nHelpId, + const rtl::OString& rHelpId, const Link& rCallback) { // Add the menu before the closer button. @@ -282,9 +282,7 @@ USHORT PaneDockingWindow::AddMenu ( rsMenuName, TIB_DROPDOWNONLY, nItemCount>0 ? nItemCount-1 : (USHORT)-1); - // FIXME: HELPID - mpTitleToolBox->SetHelpId( nItemId, ""/*nHelpId*/ ); - (void)nHelpId; + mpTitleToolBox->SetHelpId( nItemId, rHelpId ); mpTitleToolBox->SetClickHdl (rCallback); mpTitleToolBox->SetDropdownClickHdl (rCallback); diff --git a/sd/source/ui/dlg/animobjs.src b/sd/source/ui/dlg/animobjs.src index d631dcaba2b2..58fb31137e34 100644 --- a/sd/source/ui/dlg/animobjs.src +++ b/sd/source/ui/dlg/animobjs.src @@ -28,6 +28,8 @@ #include "res_bmp.hrc" #include "app.hrc" #include "animobjs.hrc" +#include "helpids.h" + #define BUTTON_WIDTH 16 #define BUTTON_HEIGHT 14 #define BUTTON_SIZE MAP_APPFONT( BUTTON_WIDTH, BUTTON_HEIGHT ); @@ -36,7 +38,7 @@ #define MIN_BUTTON_SIZE MAP_APPFONT( MIN_BUTTON_WIDTH, MIN_BUTTON_HEIGHT ); DockingWindow FLT_WIN_ANIMATION { - HelpID = SID_ANIMATION_OBJECTS ; + HelpID = CMD_SID_ANIMATION_OBJECTS ; Border = TRUE ; Hide = TRUE ; SVLook = TRUE ; diff --git a/sd/source/ui/dlg/copydlg.src b/sd/source/ui/dlg/copydlg.src index 920be5e8df70..6cb04804ea9e 100644 --- a/sd/source/ui/dlg/copydlg.src +++ b/sd/source/ui/dlg/copydlg.src @@ -28,9 +28,11 @@ #include "app.hrc" #include "res_bmp.hrc" #include "copydlg.hrc" +#include "helpids.h" + ModalDialog DLG_COPY { - HelpID = SID_COPYOBJECTS ; + HelpID = CMD_SID_COPYOBJECTS ; OutputSize = TRUE ; SVLook = TRUE ; Size = MAP_APPFONT ( 204 , 177 ) ; diff --git a/sd/source/ui/dlg/custsdlg.src b/sd/source/ui/dlg/custsdlg.src index c8c49e9c0d48..871781ad5fa3 100644 --- a/sd/source/ui/dlg/custsdlg.src +++ b/sd/source/ui/dlg/custsdlg.src @@ -32,7 +32,7 @@ #define DIFF_Y 17 ModalDialog DLG_CUSTOMSHOW { - HelpID = SID_CUSTOMSHOW_DLG ; + HelpID = CMD_SID_CUSTOMSHOW_DLG ; OutputSize = TRUE ; SVLook = TRUE ; Size = MAP_APPFONT ( 175 + DIFF , 114 + DIFF_Y ) ; diff --git a/sd/source/ui/dlg/dlgass.cxx b/sd/source/ui/dlg/dlgass.cxx index 455cca1d281a..0fa644e3ac95 100644 --- a/sd/source/ui/dlg/dlgass.cxx +++ b/sd/source/ui/dlg/dlgass.cxx @@ -102,7 +102,7 @@ void InterpolateFixedBitmap( FixedBitmap * pBitmap ) // ==================================================================== // ==================================================================== -UINT32 PageHelpIds[] = +const char* PageHelpIds[] = { HID_SD_AUTOPILOT_PAGE1, HID_SD_AUTOPILOT_PAGE2, @@ -1120,9 +1120,7 @@ void AssistentDlgImpl::ChangePage() if( mpWindow ) { - // FIXME: HELPID - (void)nPage; - mpWindow->SetHelpId( ""/*PageHelpIds[nPage-1]*/); + mpWindow->SetHelpId( PageHelpIds[nPage-1]); } UpdatePage(); diff --git a/sd/source/ui/dlg/dlgsnap.src b/sd/source/ui/dlg/dlgsnap.src index 631034dd5879..2cc106db4b75 100644 --- a/sd/source/ui/dlg/dlgsnap.src +++ b/sd/source/ui/dlg/dlgsnap.src @@ -28,9 +28,11 @@ #include "app.hrc" #include "res_bmp.hrc" #include "dlgsnap.hrc" +#include "helpids.h" + ModalDialog DLG_SNAPLINE { - HelpID = SID_CAPTUREPOINT ; + HelpID = CMD_SID_CAPTUREPOINT ; OutputSize = TRUE ; SVLook = TRUE ; Size = MAP_APPFONT ( 140 , 125 ) ; diff --git a/sd/source/ui/dlg/headerfooterdlg.cxx b/sd/source/ui/dlg/headerfooterdlg.cxx index 6669b98c6818..294e61f3fe40 100644 --- a/sd/source/ui/dlg/headerfooterdlg.cxx +++ b/sd/source/ui/dlg/headerfooterdlg.cxx @@ -240,8 +240,7 @@ HeaderFooterDialog::HeaderFooterDialog( ViewShell* pViewShell, ::Window* pParent maTabCtrl.Show(); mpSlideTabPage = new HeaderFooterTabPage( this, &maTabCtrl, pDoc, pSlide, false ); - // FIXME: HELPID - mpSlideTabPage->SetHelpId( ""/*HID_SD_TABPAGE_HEADERFOOTER_SLIDE*/ ); + mpSlideTabPage->SetHelpId( HID_SD_TABPAGE_HEADERFOOTER_SLIDE ); maTabCtrl.SetTabPage( RID_SD_TABPAGE_HEADERFOOTER_SLIDE, mpSlideTabPage ); Size aSiz = mpSlideTabPage->GetSizePixel(); @@ -254,8 +253,7 @@ HeaderFooterDialog::HeaderFooterDialog( ViewShell* pViewShell, ::Window* pParent } mpNotesHandoutsTabPage = new HeaderFooterTabPage( this, &maTabCtrl, pDoc, pNotes, true ); - // FIXME: HELPID - mpNotesHandoutsTabPage->SetHelpId( ""/*HID_SD_TABPAGE_HEADERFOOTER_NOTESHANDOUT*/ ); + mpNotesHandoutsTabPage->SetHelpId( HID_SD_TABPAGE_HEADERFOOTER_NOTESHANDOUT ); maTabCtrl.SetTabPage( RID_SD_TABPAGE_HEADERFOOTER_NOTESHANDOUT, mpNotesHandoutsTabPage ); aSiz = mpNotesHandoutsTabPage->GetSizePixel(); diff --git a/sd/source/ui/dlg/inspagob.src b/sd/source/ui/dlg/inspagob.src index 4eae011a9ba2..99cfee3de049 100644 --- a/sd/source/ui/dlg/inspagob.src +++ b/sd/source/ui/dlg/inspagob.src @@ -30,7 +30,7 @@ ModalDialog DLG_INSERT_PAGES_OBJS { - HelpID = DLG_INSERT_PAGES_OBJS ; + HelpID = HID_DLG_INSERT_PAGES_OBJS ; OutputSize = TRUE ; SVLook = TRUE ; Size = MAP_APPFONT ( 200 , 128 ) ; diff --git a/sd/source/ui/dlg/layeroptionsdlg.src b/sd/source/ui/dlg/layeroptionsdlg.src index cd50a810d3fd..e57876093570 100644 --- a/sd/source/ui/dlg/layeroptionsdlg.src +++ b/sd/source/ui/dlg/layeroptionsdlg.src @@ -27,10 +27,11 @@ #include "app.hrc" #include "layeroptionsdlg.hrc" +#include "helpids.h" ModalDialog DLG_INSERT_LAYER { - HelpID = SID_INSERTLAYER ; + HelpID = CMD_SID_INSERTLAYER ; OutputSize = TRUE ; SVLook = TRUE ; Size = MAP_APPFONT ( 200 , 172 ) ; diff --git a/sd/source/ui/dlg/morphdlg.src b/sd/source/ui/dlg/morphdlg.src index 64e63a33cd59..7bdebec16bf7 100644 --- a/sd/source/ui/dlg/morphdlg.src +++ b/sd/source/ui/dlg/morphdlg.src @@ -27,6 +27,8 @@ #include "app.hrc" #include "morphdlg.hrc" +#include "helpids.h" + /****************************************************************************** |* |* @@ -34,7 +36,8 @@ \******************************************************************************/ ModalDialog DLG_MORPH { - HelpID = SID_POLYGON_MORPHING ; + HelpID = CMD_SID_POLYGON_MORPHING ; + HelpID = ".uno:Morphing" ; OutputSize = TRUE ; SVLook = TRUE ; Size = MAP_APPFONT ( 196 , 68 ) ; diff --git a/sd/source/ui/dlg/navigatr.cxx b/sd/source/ui/dlg/navigatr.cxx index c019ab330c71..2b21802b7a9e 100644 --- a/sd/source/ui/dlg/navigatr.cxx +++ b/sd/source/ui/dlg/navigatr.cxx @@ -309,6 +309,14 @@ IMPL_LINK( SdNavigatorWin, DropdownClickToolBoxHdl, ToolBox*, pBox ) // gespeichert ist oder nicht PopupMenu *pMenu = new PopupMenu; + static const char* aHIDs[] = + { + HID_SD_NAVIGATOR_MENU1, + HID_SD_NAVIGATOR_MENU2, + HID_SD_NAVIGATOR_MENU3, + 0 + }; + for( USHORT nID = NAVIGATOR_DRAGTYPE_URL; nID < NAVIGATOR_DRAGTYPE_COUNT; nID++ ) @@ -316,10 +324,9 @@ IMPL_LINK( SdNavigatorWin, DropdownClickToolBoxHdl, ToolBox*, pBox ) USHORT nRId = GetDragTypeSdResId( (NavigatorDragType)nID ); if( nRId > 0 ) { + DBG_ASSERT(aHIDs[nID-NAVIGATOR_DRAGTYPE_URL],"HelpId not added!"); pMenu->InsertItem( nID, String( SdResId( nRId ) ) ); - // FIXME: HELPID - pMenu->SetHelpId( nID, ""/*HID_SD_NAVIGATOR_MENU1 + - nID - NAVIGATOR_DRAGTYPE_URL*/ ); + pMenu->SetHelpId( nID, aHIDs[nID - NAVIGATOR_DRAGTYPE_URL] ); } } diff --git a/sd/source/ui/dlg/paragr.src b/sd/source/ui/dlg/paragr.src index 041a4524a705..65ac21c5142f 100644 --- a/sd/source/ui/dlg/paragr.src +++ b/sd/source/ui/dlg/paragr.src @@ -27,6 +27,7 @@ #include #include "glob.hrc" +#include "helpids.h" #include "paragr.hrc" TabDialog TAB_PARAGRAPH @@ -105,7 +106,7 @@ TabDialog TAB_PARAGRAPH TabPage RID_TABPAGE_PARA_NUMBERING { - HelpId = RID_TABPAGE_PARA_NUMBERING ; + HelpId = HID_TABPAGE_PARA_NUMBERING ; Hide = TRUE ; Text = "Numbering" ; Size = MAP_APPFONT ( 260 , 185 ) ; diff --git a/sd/source/ui/dlg/present.src b/sd/source/ui/dlg/present.src index 830e320ca4ba..74f6db89fe55 100644 --- a/sd/source/ui/dlg/present.src +++ b/sd/source/ui/dlg/present.src @@ -33,7 +33,7 @@ ModalDialog DLG_START_PRESENTATION { - HelpID = SID_PRESENTATION ; + HelpID = CMD_SID_PRESENTATION ; OutputSize = TRUE ; SVLook = TRUE ; Size = MAP_APPFONT ( 256, 205 ) ; diff --git a/sd/source/ui/dlg/sddlgfact.cxx b/sd/source/ui/dlg/sddlgfact.cxx index f95c4027d7f8..c8bc8f49a28e 100644 --- a/sd/source/ui/dlg/sddlgfact.cxx +++ b/sd/source/ui/dlg/sddlgfact.cxx @@ -268,11 +268,9 @@ void AbstractSdInsertLayerDlg_Impl::GetAttr( SfxItemSet& rOutAttrs ) { pDlg->GetAttr( rOutAttrs ); } -void AbstractSdInsertLayerDlg_Impl::SetHelpId( ULONG nHelpId ) +void AbstractSdInsertLayerDlg_Impl::SetHelpId( const rtl::OString& rHelpId ) { - // FIXME: HELPID - (void)nHelpId; - pDlg->SetHelpId( ""/*nHelpId*/ ); + pDlg->SetHelpId( rHelpId ); } // AbstractSdInsertLayerDlg_Impl end diff --git a/sd/source/ui/dlg/sddlgfact.hxx b/sd/source/ui/dlg/sddlgfact.hxx index 44f5b0813a04..c5c1489d0529 100644 --- a/sd/source/ui/dlg/sddlgfact.hxx +++ b/sd/source/ui/dlg/sddlgfact.hxx @@ -169,7 +169,7 @@ class AbstractSdInsertLayerDlg_Impl : public AbstractSdInsertLayerDlg DECL_ABSTDLG_BASE(AbstractSdInsertLayerDlg_Impl,SdInsertLayerDlg) virtual void GetAttr( SfxItemSet& rOutAttrs ) ; //from class Window - virtual void SetHelpId( ULONG nHelpId ) ; + virtual void SetHelpId( const rtl::OString& rHelpId ) ; }; // add for SdInsertPasteDlg diff --git a/sd/source/ui/dlg/sdpreslt.src b/sd/source/ui/dlg/sdpreslt.src index 3aad51674a46..c8b0ee73b135 100644 --- a/sd/source/ui/dlg/sdpreslt.src +++ b/sd/source/ui/dlg/sdpreslt.src @@ -27,9 +27,11 @@ #include "app.hrc" #include "sdpreslt.hrc" +#include "sdcommands.h" + ModalDialog DLG_PRESLT { - HelpID = SID_PRESENTATION_LAYOUT ; + HelpID = CMD_SID_PRESENTATION_LAYOUT ; OutputSize = TRUE ; SVLook = TRUE ; Size = MAP_APPFONT ( 212 , 185 ) ; diff --git a/sd/source/ui/dlg/tpaction.src b/sd/source/ui/dlg/tpaction.src index fa951644c580..92516026884b 100644 --- a/sd/source/ui/dlg/tpaction.src +++ b/sd/source/ui/dlg/tpaction.src @@ -32,7 +32,7 @@ TabPage TP_ANIMATION { - HelpID = SID_ANIMATION_EFFECTS ; + HelpID = CMD_SID_ANIMATION_EFFECTS ; Pos = MAP_APPFONT ( 0 , 0 ) ; Size = MAP_APPFONT ( 260 , 164 ) ; Hide = TRUE; diff --git a/sd/source/ui/dlg/vectdlg.src b/sd/source/ui/dlg/vectdlg.src index 53b77ad49eab..757233d9d33b 100644 --- a/sd/source/ui/dlg/vectdlg.src +++ b/sd/source/ui/dlg/vectdlg.src @@ -28,6 +28,7 @@ #include "app.hrc" #include "vectdlg.hrc" +#include "helpids.h" /****************************************************************************** |* @@ -37,7 +38,7 @@ ModalDialog DLG_VECTORIZE { - HelpID = SID_VECTORIZE; + HelpID = HID_VECTORIZE_DLG; OutputSize = TRUE ; SVLook = TRUE ; Size = MAP_APPFONT ( 200, 237 ) ; diff --git a/sd/source/ui/func/fuinsert.cxx b/sd/source/ui/func/fuinsert.cxx index 931ff3a10cb8..d28ac5afc1b8 100644 --- a/sd/source/ui/func/fuinsert.cxx +++ b/sd/source/ui/func/fuinsert.cxx @@ -42,7 +42,7 @@ #include #include - +#include #include #include #include @@ -431,12 +431,11 @@ void FuInsertOLE::DoExecute( SfxRequest& rReq ) // intentionally no break! } case SID_INSERT_PLUGIN : - case SID_INSERT_APPLET : case SID_INSERT_FLOATINGFRAME : { SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create(); SfxAbstractInsertObjectDialog* pDlg = - pFact->CreateInsertObjectDialog( mpViewShell->GetActiveWindow(), nSlotId, + pFact->CreateInsertObjectDialog( mpViewShell->GetActiveWindow(), SD_MOD()->GetSlotPool()->GetSlot(nSlotId)->GetCommandString(), xStorage, &aServerLst ); if ( pDlg ) { diff --git a/sd/source/ui/inc/PaneDockingWindow.hxx b/sd/source/ui/inc/PaneDockingWindow.hxx index 03e6cf96c0f0..f469e51c6826 100644 --- a/sd/source/ui/inc/PaneDockingWindow.hxx +++ b/sd/source/ui/inc/PaneDockingWindow.hxx @@ -91,7 +91,7 @@ public: callback to the value of GetCurItemId() when called at the given tool box. */ - USHORT AddMenu (const String& rsMenuName, ULONG nHelpId, const Link& rCallback); + USHORT AddMenu (const String& rsMenuName, const rtl::OString& rHelpId, const Link& rCallback); /** Set the title of the docking window to the given string. Use this method when the title is not yet known at the time of construction diff --git a/sd/source/ui/inc/taskpane/ScrollPanel.hxx b/sd/source/ui/inc/taskpane/ScrollPanel.hxx index 019e06d9dd44..b22b7bfbccbc 100644 --- a/sd/source/ui/inc/taskpane/ScrollPanel.hxx +++ b/sd/source/ui/inc/taskpane/ScrollPanel.hxx @@ -76,7 +76,7 @@ public: TitledControl* AddControl ( ::std::auto_ptr pControl, const String& rTitle, - ULONG nHelpId); + const rtl::OString& sHelpId); /** Add a control to the sub panel without a title bar. */ diff --git a/sd/source/ui/inc/taskpane/SubToolPanel.hxx b/sd/source/ui/inc/taskpane/SubToolPanel.hxx index 9524cdddf748..c9d691161b4d 100644 --- a/sd/source/ui/inc/taskpane/SubToolPanel.hxx +++ b/sd/source/ui/inc/taskpane/SubToolPanel.hxx @@ -79,7 +79,7 @@ public: void AddControl ( ::std::auto_ptr pControl, const String& rTitle, - ULONG nHelpId); + const rtl::OString& sHelpId); void AddControl (::std::auto_ptr pControl); virtual void Paint (const Rectangle& rRect); diff --git a/sd/source/ui/inc/taskpane/ToolPanel.hxx b/sd/source/ui/inc/taskpane/ToolPanel.hxx index f2c573a21c06..76d153b04de7 100644 --- a/sd/source/ui/inc/taskpane/ToolPanel.hxx +++ b/sd/source/ui/inc/taskpane/ToolPanel.hxx @@ -79,7 +79,7 @@ public: sal_uInt32 AddControl ( ::std::auto_ptr pControlFactory, const String& rTitle, - ULONG nHelpId, + const rtl::OString& sHelpId, const TitledControl::ClickHandler& rClickHandler); virtual void Resize (void); diff --git a/sd/source/ui/notes/NotesChildWindow.src b/sd/source/ui/notes/NotesChildWindow.src index f01a258bf812..14ac956ce9e3 100755 --- a/sd/source/ui/notes/NotesChildWindow.src +++ b/sd/source/ui/notes/NotesChildWindow.src @@ -27,10 +27,11 @@ #include "app.hrc" #include "NotesChildWindow.hrc" +#include "sdcommands.h" DockingWindow FLT_WIN_NOTES { - HelpID = SID_NOTES_WINDOW ; + HelpID = CMD_SID_NOTES_WINDOW ; Border = TRUE ; Hide = FALSE ; SVLook = TRUE ; diff --git a/sd/source/ui/slideshow/showwin.cxx b/sd/source/ui/slideshow/showwin.cxx index c81abe4b0931..fe6f9483b8b6 100644 --- a/sd/source/ui/slideshow/showwin.cxx +++ b/sd/source/ui/slideshow/showwin.cxx @@ -76,10 +76,8 @@ ShowWindow::ShowWindow( const ::rtl::Reference< SlideshowImpl >& xController, :: SetMapMode(aMap); // HelpId setzen - // FIXME: HELPID - SetHelpId( ""/*HID_SD_WIN_PRESENTATION*/ ); - // FIXME: HELPID - SetUniqueId( ""/*HID_SD_WIN_PRESENTATION*/ ); + SetHelpId( HID_SD_WIN_PRESENTATION ); + SetUniqueId( HID_SD_WIN_PRESENTATION ); maPauseTimer.SetTimeoutHdl( LINK( this, ShowWindow, PauseTimeoutHdl ) ); maPauseTimer.SetTimeout( 1000 ); diff --git a/sd/source/ui/table/tableobjectbar.cxx b/sd/source/ui/table/tableobjectbar.cxx index b46090f1e7eb..854009b00c7e 100644 --- a/sd/source/ui/table/tableobjectbar.cxx +++ b/sd/source/ui/table/tableobjectbar.cxx @@ -35,7 +35,7 @@ #include #include #include - +#include #include #include #include @@ -166,7 +166,7 @@ void TableObjectBar::Execute( SfxRequest& rReq ) case SID_TABLE_INSERT_COL_DLG: { SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create(); - ::std::auto_ptr pDlg( pFact ? pFact->CreateSvxInsRowColDlg( mpView->GetViewShell()->GetParentWindow(), nSlotId == SID_TABLE_INSERT_COL_DLG, nSlotId) : 0); + ::std::auto_ptr pDlg( pFact ? pFact->CreateSvxInsRowColDlg( mpView->GetViewShell()->GetParentWindow(), nSlotId == SID_TABLE_INSERT_COL_DLG, SD_MOD()->GetSlotPool()->GetSlot(nSlotId)->GetCommand()) : 0); if( pDlg.get() && (pDlg->Execute() == 1) ) { diff --git a/sd/source/ui/toolpanel/LayoutMenu.cxx b/sd/source/ui/toolpanel/LayoutMenu.cxx index 2ba3ac742d18..57db3e7c1345 100644 --- a/sd/source/ui/toolpanel/LayoutMenu.cxx +++ b/sd/source/ui/toolpanel/LayoutMenu.cxx @@ -261,8 +261,7 @@ LayoutMenu::LayoutMenu ( | ::sd::tools::EventMultiplexerEvent::EID_EDIT_MODE_NORMAL | ::sd::tools::EventMultiplexerEvent::EID_EDIT_MODE_MASTER); - // FIXME: HELPID - Window::SetHelpId(""/*HID_SD_TASK_PANE_PREVIEW_LAYOUTS*/); + Window::SetHelpId(HID_SD_TASK_PANE_PREVIEW_LAYOUTS); SetAccessibleName(SdResId(STR_TASKPANEL_LAYOUT_MENU_TITLE)); Link aStateChangeLink (LINK(this,LayoutMenu,StateChangeHandler)); @@ -272,7 +271,7 @@ LayoutMenu::LayoutMenu ( ::rtl::OUString::createFromAscii(".uno:VerticalTextState")); // Add this new object as shell to the shell factory. - GetShellManager()->AddSubShell(HID_SD_TASK_PANE_PREVIEW_LAYOUTS,this,this); + GetShellManager()->AddSubShell(SHELLID_SD_TASK_PANE_PREVIEW_LAYOUTS,this,this); } diff --git a/sd/source/ui/toolpanel/ScrollPanel.cxx b/sd/source/ui/toolpanel/ScrollPanel.cxx index 72b40e57e611..582c975dfbb8 100644 --- a/sd/source/ui/toolpanel/ScrollPanel.cxx +++ b/sd/source/ui/toolpanel/ScrollPanel.cxx @@ -122,7 +122,7 @@ void ScrollPanel::ListHasChanged (void) TitledControl* ScrollPanel::AddControl ( ::std::auto_ptr pControl, const String& rTitle, - ULONG nHelpId) + const rtl::OString& rHelpId) { // We are interested only in the title. The control itself is // managed by the content object. @@ -132,9 +132,7 @@ TitledControl* ScrollPanel::AddControl ( rTitle, TitledControlStandardClickHandler(GetControlContainer(), ControlContainer::ES_TOGGLE), TitleBar::TBT_SUB_CONTROL_HEADLINE); - // FIXME: HELPID - pTitledControl->GetTitleBar()->SetHelpId(""/*nHelpId*/); - (void)nHelpId; + pTitledControl->GetTitleBar()->SetHelpId(rHelpId); AddControl(::std::auto_ptr(pTitledControl)); diff --git a/sd/source/ui/toolpanel/SubToolPanel.cxx b/sd/source/ui/toolpanel/SubToolPanel.cxx index bb9a65a5b728..ecd5ac3b3b48 100644 --- a/sd/source/ui/toolpanel/SubToolPanel.cxx +++ b/sd/source/ui/toolpanel/SubToolPanel.cxx @@ -98,7 +98,7 @@ void SubToolPanel::ListHasChanged (void) void SubToolPanel::AddControl ( ::std::auto_ptr pControl, const String& rTitle, - ULONG nHelpId) + const rtl::OString& sHelpId) { pControl->GetWindow()->AddEventListener ( LINK(this,SubToolPanel,WindowEventListener)); @@ -112,9 +112,7 @@ void SubToolPanel::AddControl ( TitledControlStandardClickHandler(GetControlContainer(), ControlContainer::ES_TOGGLE), TitleBar::TBT_SUB_CONTROL_HEADLINE); pTitledControl->GetWindow()->SetParent(this); - // FIXME: HELPID - pTitledControl->GetWindow()->SetHelpId(""/*nHelpId*/); - (void)nHelpId; + pTitledControl->GetWindow()->SetHelpId(sHelpId); ::std::auto_ptr pChild (pTitledControl); // Add a down link only for the first control so that when diff --git a/sd/source/ui/toolpanel/TaskPaneViewShell.cxx b/sd/source/ui/toolpanel/TaskPaneViewShell.cxx index a00142fa81c1..d80beba7cd10 100644 --- a/sd/source/ui/toolpanel/TaskPaneViewShell.cxx +++ b/sd/source/ui/toolpanel/TaskPaneViewShell.cxx @@ -362,8 +362,7 @@ TaskPaneViewShell::TaskPaneViewShell ( GetParentWindow()->SetBackground(Wallpaper()); mpContentWindow->SetBackground(Wallpaper()); - // FIXME: HELPID - GetParentWindow()->SetHelpId(""/*HID_SD_TASK_PANE*/); + GetParentWindow()->SetHelpId(HID_SD_TASK_PANE); PaneDockingWindow* pDockingWindow = dynamic_cast(GetDockingWindow()); if (pDockingWindow != NULL) diff --git a/sd/source/ui/toolpanel/TestPanel.cxx b/sd/source/ui/toolpanel/TestPanel.cxx index e2786e23a0c5..dd11e025f285 100644 --- a/sd/source/ui/toolpanel/TestPanel.cxx +++ b/sd/source/ui/toolpanel/TestPanel.cxx @@ -128,7 +128,7 @@ TestPanel::TestPanel (TreeNode* pParent) ::std::auto_ptr(new Wrapper ( pScrollPanel, Size (200,300), pBox, true)), String::CreateFromAscii ("First ListBox"), - 0); + ""); pBox = new ListBox (pScrollPanel->GetWindow()); for (i=1; i<=20; i++) @@ -142,7 +142,7 @@ TestPanel::TestPanel (TreeNode* pParent) ::std::auto_ptr(new Wrapper ( pScrollPanel, Size (200,300), pBox, true)), String::CreateFromAscii ("Second ListBox"), - 0); + ""); AddControl (::std::auto_ptr(pScrollPanel)); @@ -152,7 +152,7 @@ TestPanel::TestPanel (TreeNode* pParent) ::std::auto_ptr(new Wrapper ( this, Size (100,30), pButton, false)), String::CreateFromAscii ("Button Area"), - 0); + ""); } diff --git a/sd/source/ui/toolpanel/ToolPanel.cxx b/sd/source/ui/toolpanel/ToolPanel.cxx index 7a640788f9c7..15747aeb9476 100644 --- a/sd/source/ui/toolpanel/ToolPanel.cxx +++ b/sd/source/ui/toolpanel/ToolPanel.cxx @@ -75,7 +75,7 @@ ToolPanel::~ToolPanel (void) sal_uInt32 ToolPanel::AddControl ( ::std::auto_ptr pControlFactory, const String& rTitle, - ULONG nHelpId, + const rtl::OString& sHelpId, const TitledControl::ClickHandler& rClickHandler) { TitledControl* pTitledControl = new TitledControl ( @@ -117,9 +117,7 @@ sal_uInt32 ToolPanel::AddControl ( rFocusManager.RegisterLink(pChild->GetWindow(),pFirst, KEY_DOWN); } - // FIXME: HELPID - pTitledControl->GetWindow()->SetHelpId(""/*nHelpId*/); - (void)nHelpId; + pTitledControl->GetWindow()->SetHelpId(sHelpId); return mpControlContainer->AddControl (pChild); } diff --git a/sd/source/ui/toolpanel/controls/MasterPagesPanel.cxx b/sd/source/ui/toolpanel/controls/MasterPagesPanel.cxx index b2e0048af64a..d2b63045c960 100644 --- a/sd/source/ui/toolpanel/controls/MasterPagesPanel.cxx +++ b/sd/source/ui/toolpanel/controls/MasterPagesPanel.cxx @@ -66,10 +66,9 @@ MasterPagesPanel::MasterPagesPanel (TreeNode* pParent, ViewShellBase& rBase) rBase, pContainer)); pSelector->LateInit(); - // FIXME: HELPID - pSelector->SetHelpId( ""/*HID_SD_TASK_PANE_PREVIEW_CURRENT*/ ); + pSelector->SetHelpId( HID_SD_TASK_PANE_PREVIEW_CURRENT ); GetShellManager()->AddSubShell( - HID_SD_TASK_PANE_PREVIEW_CURRENT, + SHELLID_SD_TASK_PANE_PREVIEW_CURRENT, pSelector.get(), pSelector->GetWindow()); pTitledControl = AddControl ( @@ -84,10 +83,9 @@ MasterPagesPanel::MasterPagesPanel (TreeNode* pParent, ViewShellBase& rBase) rBase, pContainer)); pSelector->LateInit(); - // FIXME: HELPID - pSelector->SetHelpId( ""/*HID_SD_TASK_PANE_PREVIEW_RECENT*/ ); + pSelector->SetHelpId( HID_SD_TASK_PANE_PREVIEW_RECENT ); GetShellManager()->AddSubShell( - HID_SD_TASK_PANE_PREVIEW_RECENT, + SHELLID_SD_TASK_PANE_PREVIEW_RECENT, pSelector.get(), pSelector->GetWindow()); pTitledControl = AddControl ( @@ -103,10 +101,9 @@ MasterPagesPanel::MasterPagesPanel (TreeNode* pParent, ViewShellBase& rBase) *pDrawViewShell, pContainer)); pSelector->LateInit(); - // FIXME: HELPID - pSelector->SetHelpId( ""/*HID_SD_TASK_PANE_PREVIEW_ALL*/ ); + pSelector->SetHelpId( HID_SD_TASK_PANE_PREVIEW_ALL ); GetShellManager()->AddSubShell( - HID_SD_TASK_PANE_PREVIEW_ALL, + SHELLID_SD_TASK_PANE_PREVIEW_ALL, pSelector.get(), pSelector->GetWindow()); pTitledControl = AddControl ( diff --git a/sd/source/ui/toolpanel/controls/MasterPagesSelector.cxx b/sd/source/ui/toolpanel/controls/MasterPagesSelector.cxx index d94e1dfd2b1f..ad12cbcf7870 100644 --- a/sd/source/ui/toolpanel/controls/MasterPagesSelector.cxx +++ b/sd/source/ui/toolpanel/controls/MasterPagesSelector.cxx @@ -791,7 +791,6 @@ void MasterPagesSelector::SetHelpId( const rtl::OString& aId ) { const ::osl::MutexGuard aGuard (maMutex); - // FIXME: HELPID mpPageSet->SetHelpId( aId ); } diff --git a/sd/source/ui/view/ViewShellImplementation.cxx b/sd/source/ui/view/ViewShellImplementation.cxx index c076b6680501..8193ae3004d2 100644 --- a/sd/source/ui/view/ViewShellImplementation.cxx +++ b/sd/source/ui/view/ViewShellImplementation.cxx @@ -95,10 +95,8 @@ ImpUndoDeleteWarning::ImpUndoDeleteWarning(Window* pParent) { FreeResource(); - // FIXME: HELPID - SetHelpId( ""/*HID_SD_UNDODELETEWARNING_DLG*/ ); - // FIXME: HELPID - maDisableCB.SetHelpId( ""/*HID_SD_UNDODELETEWARNING_CBX*/ ); + SetHelpId( HID_SD_UNDODELETEWARNING_DLG ); + maDisableCB.SetHelpId( HID_SD_UNDODELETEWARNING_CBX ); maYesBtn.SetText(Button::GetStandardText(BUTTON_YES)); maNoBtn.SetText(Button::GetStandardText(BUTTON_NO)); diff --git a/sd/source/ui/view/drviews2.cxx b/sd/source/ui/view/drviews2.cxx index f6591b15188c..aa1a0f53c15a 100644 --- a/sd/source/ui/view/drviews2.cxx +++ b/sd/source/ui/view/drviews2.cxx @@ -133,10 +133,8 @@ ImpUndoDeleteWarning::ImpUndoDeleteWarning(Window* pParent) { FreeResource(); - // FIXME: HELPID - SetHelpId( ""/*HID_SD_UNDODELETEWARNING_DLG*/ ); - // FIXME: HELPID - maDisableCB.SetHelpId( ""/*HID_SD_UNDODELETEWARNING_CBX*/ ); + SetHelpId( HID_SD_UNDODELETEWARNING_DLG ); + maDisableCB.SetHelpId( HID_SD_UNDODELETEWARNING_CBX ); maYesBtn.SetText(Button::GetStandardText(BUTTON_YES)); maNoBtn.SetText(Button::GetStandardText(BUTTON_NO)); diff --git a/sd/source/ui/view/drviews5.cxx b/sd/source/ui/view/drviews5.cxx index 54d8fa0bcd94..8d932c4be047 100644 --- a/sd/source/ui/view/drviews5.cxx +++ b/sd/source/ui/view/drviews5.cxx @@ -51,7 +51,7 @@ #include "res_bmp.hrc" #include "glob.hrc" #include "app.hrc" - +#include "helpids.h" #include "optsitem.hxx" #include "app.hxx" #include "FrameView.hxx" @@ -597,26 +597,20 @@ void DrawViewShell::ReadUserDataSequence ( const ::com::sun::star::uno::Sequence if (mePageKind == PK_NOTES) { SetHelpId( SID_NOTESMODE ); - // FIXME: HELPID - GetActiveWindow()->SetHelpId( ""/*SID_NOTESMODE*/ ); - // FIXME: HELPID - GetActiveWindow()->SetUniqueId( ""/*SID_NOTESMODE*/ ); + GetActiveWindow()->SetHelpId( HID_NOTESMODE ); + GetActiveWindow()->SetUniqueId( HID_NOTESMODE ); } else if (mePageKind == PK_HANDOUT) { SetHelpId( SID_HANDOUTMODE ); - // FIXME: HELPID - GetActiveWindow()->SetHelpId( ""/*SID_HANDOUTMODE*/ ); - // FIXME: HELPID - GetActiveWindow()->SetUniqueId( ""/*SID_HANDOUTMODE*/ ); + GetActiveWindow()->SetHelpId( HID_HANDOUTMODE ); + GetActiveWindow()->SetUniqueId( HID_HANDOUTMODE ); } else { SetHelpId( SD_IF_SDDRAWVIEWSHELL ); - // FIXME: HELPID - GetActiveWindow()->SetHelpId( ""/*SD_IF_SDDRAWVIEWSHELL*/ ); - // FIXME: HELPID - GetActiveWindow()->SetUniqueId( ""/*SD_IF_SDDRAWVIEWSHELL*/ ); + GetActiveWindow()->SetHelpId( HID_SDDRAWVIEWSHELL ); + GetActiveWindow()->SetUniqueId( HID_SDDRAWVIEWSHELL ); } } diff --git a/sd/source/ui/view/drviewsa.cxx b/sd/source/ui/view/drviewsa.cxx index 7071ea522002..629b712e4ad2 100644 --- a/sd/source/ui/view/drviewsa.cxx +++ b/sd/source/ui/view/drviewsa.cxx @@ -61,7 +61,7 @@ #include #include #include - +#include "helpids.h" #include "app.hrc" #include "helpids.h" #include "strings.hrc" @@ -347,20 +347,16 @@ void DrawViewShell::Construct(DrawDocShell* pDocSh, PageKind eInitialPageKind) if( eDocType == DOCUMENT_TYPE_DRAW ) { SetHelpId( SD_IF_SDGRAPHICVIEWSHELL ); - // FIXME: HELPID - GetActiveWindow()->SetHelpId( ""/*SD_IF_SDGRAPHICVIEWSHELL*/ ); - // FIXME: HELPID - GetActiveWindow()->SetUniqueId( ""/*SD_IF_SDGRAPHICVIEWSHELL*/ ); + GetActiveWindow()->SetHelpId( HID_SDGRAPHICVIEWSHELL ); + GetActiveWindow()->SetUniqueId( HID_SDGRAPHICVIEWSHELL ); } else { if (mePageKind == PK_NOTES) { SetHelpId( SID_NOTESMODE ); - // FIXME: HELPID - GetActiveWindow()->SetHelpId( ""/*SID_NOTESMODE*/ ); - // FIXME: HELPID - GetActiveWindow()->SetUniqueId( ""/*SID_NOTESMODE*/ ); + GetActiveWindow()->SetHelpId( HID_NOTESMODE ); + GetActiveWindow()->SetUniqueId( HID_NOTESMODE ); // AutoLayouts muessen erzeugt sein GetDoc()->StopWorkStartupDelay(); @@ -368,10 +364,8 @@ void DrawViewShell::Construct(DrawDocShell* pDocSh, PageKind eInitialPageKind) else if (mePageKind == PK_HANDOUT) { SetHelpId( SID_HANDOUTMODE ); - // FIXME: HELPID - GetActiveWindow()->SetHelpId( ""/*SID_HANDOUTMODE*/ ); - // FIXME: HELPID - GetActiveWindow()->SetUniqueId( ""/*SID_HANDOUTMODE*/ ); + GetActiveWindow()->SetHelpId( HID_HANDOUTMODE ); + GetActiveWindow()->SetUniqueId( HID_HANDOUTMODE ); // AutoLayouts muessen erzeugt sein GetDoc()->StopWorkStartupDelay(); @@ -379,10 +373,8 @@ void DrawViewShell::Construct(DrawDocShell* pDocSh, PageKind eInitialPageKind) else { SetHelpId( SD_IF_SDDRAWVIEWSHELL ); - // FIXME: HELPID - GetActiveWindow()->SetHelpId( ""/*SD_IF_SDDRAWVIEWSHELL*/ ); - // FIXME: HELPID - GetActiveWindow()->SetUniqueId( ""/*SD_IF_SDDRAWVIEWSHELL*/ ); + GetActiveWindow()->SetHelpId( HID_SDDRAWVIEWSHELL ); + GetActiveWindow()->SetUniqueId( HID_SDDRAWVIEWSHELL ); } } diff --git a/sd/source/ui/view/drviewsb.cxx b/sd/source/ui/view/drviewsb.cxx index 2574032e3d99..d7cc1fc1d84a 100644 --- a/sd/source/ui/view/drviewsb.cxx +++ b/sd/source/ui/view/drviewsb.cxx @@ -33,7 +33,7 @@ #ifndef _SVXIDS_HXX #include #endif - +#include #include #include #include @@ -127,7 +127,7 @@ void DrawViewShell::FuTemp02(SfxRequest& rReq) AbstractSdInsertLayerDlg* pDlg = pFact ? pFact->CreateSdInsertLayerDlg(NULL, aNewAttr, true, String( SdResId( STR_INSERTLAYER ) ) ) : 0; if( pDlg ) { - pDlg->SetHelpId( SID_INSERTLAYER ); + pDlg->SetHelpId( SD_MOD()->GetSlotPool()->GetSlot( SID_INSERTLAYER )->GetCommand() ); // Ueberpruefung auf schon vorhandene Namen BOOL bLoop = TRUE; @@ -293,7 +293,7 @@ void DrawViewShell::FuTemp02(SfxRequest& rReq) AbstractSdInsertLayerDlg* pDlg = pFact ? pFact->CreateSdInsertLayerDlg(NULL, aNewAttr, bDelete, String( SdResId( STR_MODIFYLAYER ) ) ) : 0; if( pDlg ) { - pDlg->SetHelpId( SID_MODIFYLAYER ); + pDlg->SetHelpId( SD_MOD()->GetSlotPool()->GetSlot( SID_MODIFYLAYER )->GetCommand() ); // Ueberpruefung auf schon vorhandene Namen BOOL bLoop = TRUE; diff --git a/sd/source/ui/view/outlnvsh.cxx b/sd/source/ui/view/outlnvsh.cxx index 53afc793786e..7feca5213a24 100644 --- a/sd/source/ui/view/outlnvsh.cxx +++ b/sd/source/ui/view/outlnvsh.cxx @@ -32,7 +32,7 @@ #include "ViewShellImplementation.hxx" #include - +#include "helpids.h" #include "app.hrc" #include #include @@ -179,10 +179,8 @@ void OutlineViewShell::Construct(DrawDocShell* ) SetName (aName); SetHelpId( SD_IF_SDOUTLINEVIEWSHELL ); - // FIXME: HELPID - GetActiveWindow()->SetHelpId( ""/*SD_IF_SDOUTLINEVIEWSHELL*/ ); - // FIXME: HELPID - GetActiveWindow()->SetUniqueId( ""/*SD_IF_SDOUTLINEVIEWSHELL*/ ); + GetActiveWindow()->SetHelpId( HID_SDOUTLINEVIEWSHELL ); + GetActiveWindow()->SetUniqueId( HID_SDOUTLINEVIEWSHELL ); } diff --git a/sd/source/ui/view/sdruler.cxx b/sd/source/ui/view/sdruler.cxx index 68ea51a9a914..679c28bb3a93 100644 --- a/sd/source/ui/view/sdruler.cxx +++ b/sd/source/ui/view/sdruler.cxx @@ -113,14 +113,12 @@ Ruler::Ruler( DrawViewShell& rViewSh, ::Window* pParent, ::sd::Window* pWin, USH if ( nWinStyle & WB_HSCROLL ) { bHorz = TRUE; - // FIXME: HELPID - SetHelpId( ""/*HID_SD_RULER_HORIZONTAL*/ ); + SetHelpId( HID_SD_RULER_HORIZONTAL ); } else { bHorz = FALSE; - // FIXME: HELPID - SetHelpId( ""/*HID_SD_RULER_VERTICAL*/ ); + SetHelpId( HID_SD_RULER_VERTICAL ); } } diff --git a/sd/source/ui/view/sdwindow.cxx b/sd/source/ui/view/sdwindow.cxx index 7092fcfc0b7e..7cae5d452a1b 100644 --- a/sd/source/ui/view/sdwindow.cxx +++ b/sd/source/ui/view/sdwindow.cxx @@ -100,8 +100,7 @@ Window::Window(::Window* pParent) // Hilfe-ID setzen // SetHelpId(HID_SD_WIN_DOCUMENT); - // FIXME: HELPID - SetUniqueId(""/*HID_SD_WIN_DOCUMENT*/); + SetUniqueId(HID_SD_WIN_DOCUMENT); // #i78183# Added after discussed with AF EnableRTL(FALSE); diff --git a/sd/source/ui/view/tabcontr.cxx b/sd/source/ui/view/tabcontr.cxx index 1350054bcdb5..d9d074eee395 100644 --- a/sd/source/ui/view/tabcontr.cxx +++ b/sd/source/ui/view/tabcontr.cxx @@ -102,8 +102,7 @@ TabControl::TabControl(DrawViewShell* pViewSh, Window* pParent) : EnableEditMode(); SetSizePixel(Size(0, 0)); SetMaxPageWidth( 150 ); - // FIXME: HELPID - SetHelpId( ""/*HID_SD_TABBAR_PAGES*/ ); + SetHelpId( HID_SD_TABBAR_PAGES ); } /************************************************************************* -- cgit v1.2.3 From 6ab9b3d3978cd90025986dc5dde3a42e0f602340 Mon Sep 17 00:00:00 2001 From: Mathias Bauer Date: Mon, 19 Jul 2010 22:04:23 +0200 Subject: CWS changehid: remove code dealing with obsolete SID_INSERT_APPLET --- sd/sdi/_drvwsh.sdi | 5 ----- sd/source/ui/view/drviews7.cxx | 14 -------------- sd/source/ui/view/drviews8.cxx | 1 - sd/source/ui/view/drviewsc.cxx | 4 ---- 4 files changed, 24 deletions(-) mode change 100644 => 100755 sd/source/ui/view/drviewsc.cxx (limited to 'sd/sdi') diff --git a/sd/sdi/_drvwsh.sdi b/sd/sdi/_drvwsh.sdi index 6d0d3ef33ce9..db06520a7513 100755 --- a/sd/sdi/_drvwsh.sdi +++ b/sd/sdi/_drvwsh.sdi @@ -336,11 +336,6 @@ interface DrawView ExecMethod = FuTemporary ; StateMethod = GetMenuState ; ] - SID_INSERT_APPLET // ole : yes, status : ? - [ - ExecMethod = FuTemporary ; - StateMethod = GetMenuState ; - ] SID_INSERT_PLUGIN // ole : yes, status : ? [ ExecMethod = FuTemporary ; diff --git a/sd/source/ui/view/drviews7.cxx b/sd/source/ui/view/drviews7.cxx index e853d3944ce0..2855bacb7069 100755 --- a/sd/source/ui/view/drviews7.cxx +++ b/sd/source/ui/view/drviews7.cxx @@ -957,11 +957,7 @@ void DrawViewShell::GetMenuState( SfxItemSet &rSet ) rSet.DisableItem( SID_INSERT_PLUGIN ); rSet.DisableItem( SID_INSERT_SOUND ); rSet.DisableItem( SID_INSERT_VIDEO ); - rSet.DisableItem( SID_INSERT_APPLET ); rSet.DisableItem( SID_INSERT_FLOATINGFRAME ); -#ifdef STARIMAGE_AVAILABLE - rSet.DisableItem( SID_INSERT_IMAGE ); -#endif rSet.DisableItem( SID_INSERT_MATH ); rSet.DisableItem( SID_INSERT_DIAGRAM ); rSet.DisableItem( SID_ATTR_TABLE ); @@ -970,7 +966,6 @@ void DrawViewShell::GetMenuState( SfxItemSet &rSet ) rSet.DisableItem( SID_SIZE_ALL ); rSet.DisableItem( SID_SIZE_PAGE_WIDTH ); rSet.DisableItem( SID_SIZE_PAGE ); -// rSet.DisableItem( SID_INSERTPAGE ); rSet.DisableItem( SID_DUPLICATE_PAGE ); rSet.DisableItem( SID_ZOOM_TOOLBOX ); } @@ -1061,12 +1056,8 @@ void DrawViewShell::GetMenuState( SfxItemSet &rSet ) rSet.DisableItem( SID_INSERT_PLUGIN ); rSet.DisableItem( SID_INSERT_SOUND ); rSet.DisableItem( SID_INSERT_VIDEO ); - rSet.DisableItem( SID_INSERT_APPLET ); rSet.DisableItem( SID_INSERT_FLOATINGFRAME ); -#ifdef STARIMAGE_AVAILABLE - rSet.DisableItem( SID_INSERT_IMAGE ); -#endif rSet.DisableItem( SID_INSERT_MATH ); rSet.DisableItem( SID_INSERT_FRAME ); rSet.DisableItem( SID_INSERTFILE ); @@ -1573,11 +1564,6 @@ void DrawViewShell::GetMenuState( SfxItemSet &rSet ) } #endif -// Fuer Win16 -#ifndef SOLAR_JAVA - rSet.DisableItem( SID_INSERT_APPLET ); -#endif - // Set the state of two entries in the 'Slide' context sub-menu // concerning the visibility of master page background and master page // shapes. diff --git a/sd/source/ui/view/drviews8.cxx b/sd/source/ui/view/drviews8.cxx index 54cd0c792c94..f4d8ca90687b 100755 --- a/sd/source/ui/view/drviews8.cxx +++ b/sd/source/ui/view/drviews8.cxx @@ -196,7 +196,6 @@ void DrawViewShell::FuTemp01(SfxRequest& rReq) case SID_INSERT_PLUGIN: case SID_INSERT_SOUND: case SID_INSERT_VIDEO: - case SID_INSERT_APPLET: case SID_INSERT_FLOATINGFRAME: case SID_INSERT_MATH: case SID_INSERT_DIAGRAM: diff --git a/sd/source/ui/view/drviewsc.cxx b/sd/source/ui/view/drviewsc.cxx old mode 100644 new mode 100755 index eefe0680d2d4..ae47111c8200 --- a/sd/source/ui/view/drviewsc.cxx +++ b/sd/source/ui/view/drviewsc.cxx @@ -788,9 +788,6 @@ USHORT DrawViewShell::GetIdBySubId( USHORT nSId ) break; case SID_INSERT_DIAGRAM: -#ifdef STARIMAGE_AVAILABLE - case SID_INSERT_IMAGE: -#endif case SID_ATTR_TABLE: case SID_INSERTFILE: case SID_INSERT_GRAPHIC: @@ -802,7 +799,6 @@ USHORT DrawViewShell::GetIdBySubId( USHORT nSId ) case SID_INSERT_PLUGIN: case SID_INSERT_SOUND: case SID_INSERT_VIDEO: - case SID_INSERT_APPLET: case SID_INSERT_TABLE: { nMappedSId = SID_DRAWTBX_INSERT; -- cgit v1.2.3