summaryrefslogtreecommitdiff
path: root/sd/source/ui/docshell
diff options
context:
space:
mode:
authorUrs Fässler <urs@bitzgi.ch>2013-03-10 16:46:07 +0100
committerUrs Fässler <urs@bitzgi.ch>2013-03-12 20:28:30 +0100
commitf16d3484a723e33c6fee56f34ec00981f0dbd5af (patch)
treeb6ed68c5790010ba064385adb14f431ad66dd157 /sd/source/ui/docshell
parent42bbe3a96ff4dfe4e2d34d522fd67c386a6c3647 (diff)
Translation and cleanup of comments in sd/source/ui/docshell/
Change-Id: I714b2d1ccdd5392a3ebc32788b203a8484c6cf0b
Diffstat (limited to 'sd/source/ui/docshell')
-rw-r--r--sd/source/ui/docshell/docshel2.cxx59
-rw-r--r--sd/source/ui/docshell/docshel3.cxx21
-rw-r--r--sd/source/ui/docshell/docshel4.cxx163
-rw-r--r--sd/source/ui/docshell/docshell.cxx96
-rw-r--r--sd/source/ui/docshell/sdclient.cxx31
5 files changed, 93 insertions, 277 deletions
diff --git a/sd/source/ui/docshell/docshel2.cxx b/sd/source/ui/docshell/docshel2.cxx
index 0295c2bce6d8..057749c6ad86 100644
--- a/sd/source/ui/docshell/docshel2.cxx
+++ b/sd/source/ui/docshell/docshel2.cxx
@@ -44,19 +44,14 @@
namespace sd {
-/*************************************************************************
-|*
-|* Zeichnen der DocShell (mittels der Hilfsklasse SdDrawViewShell)
-|*
-\************************************************************************/
-
+/**
+ * Drawing of DocShell (with the helper class SdDrawViewShell)
+ */
void DrawDocShell::Draw(OutputDevice* pOut, const JobSetup&, sal_uInt16 nAspect)
{
if (nAspect == ASPECT_THUMBNAIL)
{
- /**********************************************************************
- * THUMBNAIL: Hier koennte ev. einmal der Draft-Mode gesetzt werden
- **********************************************************************/
+ // THUMBNAIL: here we may can set the draft mode
}
ClientView* pView = new ClientView(this, pOut, NULL);
@@ -134,7 +129,7 @@ Rectangle DrawDocShell::GetVisArea(sal_uInt16 nAspect) const
if( ( ASPECT_THUMBNAIL == nAspect ) || ( ASPECT_DOCPRINT == nAspect ) )
{
- // Groesse der ersten Seite herausgeben
+ // provide size of first page
MapMode aSrcMapMode(MAP_PIXEL);
MapMode aDstMapMode(MAP_100TH_MM);
Size aSize = mpDoc->GetSdPage(0, PK_STANDARD)->GetSize();
@@ -161,23 +156,11 @@ Rectangle DrawDocShell::GetVisArea(sal_uInt16 nAspect) const
return (aVisArea);
}
-/*************************************************************************
-|*
-|* ViewShell anmelden
-|*
-\************************************************************************/
-
void DrawDocShell::Connect(ViewShell* pViewSh)
{
mpViewShell = pViewSh;
}
-/*************************************************************************
-|*
-|* ViewShell abmelden
-|*
-\************************************************************************/
-
void DrawDocShell::Disconnect(ViewShell* pViewSh)
{
if (mpViewShell == pViewSh)
@@ -198,23 +181,14 @@ FrameView* DrawDocShell::GetFrameView()
return(pFrameView);
}
-/*************************************************************************
-|*
-|* Groesse der ersten Seite zurueckgeben
-|*
-\************************************************************************/
-
Size DrawDocShell::GetFirstPageSize()
{
return SfxObjectShell::GetFirstPageSize();
}
-/*************************************************************************
-|*
-|* Bitmap einer beliebigen Seite erzeugen
-|*
-\************************************************************************/
-
+/**
+ * Creates a bitmap of an arbitrary page
+ */
Bitmap DrawDocShell::GetPagePreviewBitmap(SdPage* pPage, sal_uInt16 nMaxEdgePixel)
{
MapMode aMapMode( MAP_100TH_MM );
@@ -233,7 +207,7 @@ Bitmap DrawDocShell::GetPagePreviewBitmap(SdPage* pPage, sal_uInt16 nMaxEdgePixe
aVDev.SetMapMode( aMapMode );
aVDev.SetOutputSize( aSize );
- // damit die dunklen Linien am rechten und unteren Seitenrans mitkommen
+ // that we also get the dark lines at the right and bottom page margin
aFrac = Fraction( nMaxEdgePixel - 1, nMaxEdgePix );
aMapMode.SetScaleX( aFrac );
aMapMode.SetScaleY( aFrac );
@@ -245,7 +219,7 @@ Bitmap DrawDocShell::GetPagePreviewBitmap(SdPage* pPage, sal_uInt16 nMaxEdgePixe
if ( GetFrameView() )
{
- // Initialisierungen der Zeichen-(Bildschirm-)Attribute
+ // initialize the drawing-(screen) attributes
pView->SetGridCoarse( pFrameView->GetGridCoarse() );
pView->SetGridFine( pFrameView->GetGridFine() );
pView->SetSnapGridWidth(pFrameView->GetSnapGridWidthX(), pFrameView->GetSnapGridWidthY());
@@ -305,14 +279,11 @@ Bitmap DrawDocShell::GetPagePreviewBitmap(SdPage* pPage, sal_uInt16 nMaxEdgePixe
}
-/*************************************************************************
-|*
-|* Pruefen, ob die Seite vorhanden ist und dann den Anwender zwingen einen
-|* noch nicht vorhandenen Namen einzugeben. Wird sal_False zurueckgegeben,
-|* wurde die Aktion vom Anwender abgebrochen.
-|*
-\************************************************************************/
-
+/**
+ * Checks if the page exists. If so, we force the user to enter a not yet used
+ * name.
+ * @return sal_False if the user cancels the action.
+ */
sal_Bool DrawDocShell::CheckPageName (::Window* pWin, String& rName )
{
const String aStrForDlg( rName );
diff --git a/sd/source/ui/docshell/docshel3.cxx b/sd/source/ui/docshell/docshel3.cxx
index d6fd37d42d3d..70ef8e5f7cee 100644
--- a/sd/source/ui/docshell/docshel3.cxx
+++ b/sd/source/ui/docshell/docshel3.cxx
@@ -60,12 +60,9 @@ using namespace ::com::sun::star::uno;
namespace sd {
-/*************************************************************************
-|*
-|* SFX-Requests bearbeiten
-|*
-\************************************************************************/
-
+/**
+ * Handles SFX-Requests
+ */
void DrawDocShell::Execute( SfxRequest& rReq )
{
if(mpViewShell && SlideShow::IsRunning( mpViewShell->GetViewShellBase() ))
@@ -85,7 +82,7 @@ void DrawDocShell::Execute( SfxRequest& rReq )
const SvxSearchItem* pSearchItem =
(const SvxSearchItem*) &pReqArgs->Get(SID_SEARCH_ITEM);
- // ein Zuweisungsoperator am SearchItem waer nicht schlecht...
+ // would be nice to have an an assign operation at SearchItem
SvxSearchItem* pAppSearchItem = SD_MOD()->GetSearchItem();
delete pAppSearchItem;
pAppSearchItem = (SvxSearchItem*) pSearchItem->Clone();
@@ -98,7 +95,7 @@ void DrawDocShell::Execute( SfxRequest& rReq )
case FID_SEARCH_ON:
{
- // Keine Aktion noetig
+ // no action needed
rReq.Done();
}
break;
@@ -153,7 +150,7 @@ void DrawDocShell::Execute( SfxRequest& rReq )
const SvxSearchItem* pSearchItem =
(const SvxSearchItem*) &pReqArgs->Get(SID_SEARCH_ITEM);
- // ein Zuweisungsoperator am SearchItem waer nicht schlecht...
+ // would be nice to have an an assign operation at SearchItem
SvxSearchItem* pAppSearchItem = SD_MOD()->GetSearchItem();
delete pAppSearchItem;
pAppSearchItem = (SvxSearchItem*)pSearchItem->Clone();
@@ -215,12 +212,6 @@ void DrawDocShell::Execute( SfxRequest& rReq )
}
}
-/*************************************************************************
-|*
-|* Suchmaske fuer Organizer
-|*
-\************************************************************************/
-
void DrawDocShell::SetOrganizerSearchMask(SfxStyleSheetBasePool* pBasePool) const
{
pBasePool->SetSearchMask(SD_STYLE_FAMILY_GRAPHICS, SFXSTYLEBIT_USERDEF | SFXSTYLEBIT_USED);
diff --git a/sd/source/ui/docshell/docshel4.cxx b/sd/source/ui/docshell/docshel4.cxx
index dda95b195ffc..c5154fa1b7c4 100644
--- a/sd/source/ui/docshell/docshel4.cxx
+++ b/sd/source/ui/docshell/docshel4.cxx
@@ -82,23 +82,20 @@ using ::sd::framework::FrameworkHelper;
namespace sd {
-/*************************************************************************
-|*
-|* SfxPrinter ggf. erzeugen und zurueckgeben
-|*
-\************************************************************************/
-
+/**
+ * Creates (if necessary) and returns a SfxPrinter
+ */
SfxPrinter* DrawDocShell::GetPrinter(sal_Bool bCreate)
{
if (bCreate && !mpPrinter)
{
- // ItemSet mit speziellem Poolbereich anlegen
+ // create ItemSet with special pool area
SfxItemSet* pSet = new SfxItemSet( GetPool(),
SID_PRINTER_NOTFOUND_WARN, SID_PRINTER_NOTFOUND_WARN,
SID_PRINTER_CHANGESTODOC, SID_PRINTER_CHANGESTODOC,
ATTR_OPTIONS_PRINT, ATTR_OPTIONS_PRINT,
0 );
- // PrintOptionsSet setzen
+ // set PrintOptionsSet
SdOptionsPrintItem aPrintItem( ATTR_OPTIONS_PRINT,
SD_MOD()->GetSdOptions(mpDoc->GetDocumentType()));
SfxFlagItem aFlagItem( SID_PRINTER_CHANGESTODOC );
@@ -115,7 +112,7 @@ SfxPrinter* DrawDocShell::GetPrinter(sal_Bool bCreate)
mpPrinter = new SfxPrinter(pSet);
mbOwnPrinter = sal_True;
- // Ausgabequalitaet setzen
+ // set output quality
sal_uInt16 nQuality = aPrintItem.GetOptionsPrint().GetOutputQuality();
sal_uLong nMode = DRAWMODE_DEFAULT;
@@ -135,12 +132,9 @@ SfxPrinter* DrawDocShell::GetPrinter(sal_Bool bCreate)
return mpPrinter;
}
-/*************************************************************************
-|*
-|* neuen SfxPrinter setzen (Eigentuemeruebergang)
-|*
-\************************************************************************/
-
+/**
+ * Set new SfxPrinter (transfer of ownership)
+ */
void DrawDocShell::SetPrinter(SfxPrinter *pNewPrinter)
{
if ( mpViewShell )
@@ -197,10 +191,10 @@ void DrawDocShell::OnDocumentPrinterChanged(Printer* pNewPrinter)
// if (mpPrinter->IsA(SfxPrinter))
{
- // Da kein RTTI verfuegbar, wird hart gecasted (...)
+ // Since we do not have RTTI we use a hard cast (...)
SetPrinter((SfxPrinter*) pNewPrinter);
- // Printer gehoert dem Container
+ // container owns printer
mbOwnPrinter = sal_False;
}
}
@@ -244,12 +238,9 @@ void DrawDocShell::UpdateRefDevice()
}
}
-/*************************************************************************
-|*
-|* InitNew, (Dokument wird neu erzeugt): Streams oeffnen
-|*
-\************************************************************************/
-
+/**
+ * Creates new document, opens streams
+ */
sal_Bool DrawDocShell::InitNew( const ::com::sun::star::uno::Reference< ::com::sun::star::embed::XStorage >& xStorage )
{
sal_Bool bRet = sal_False;
@@ -270,12 +261,9 @@ sal_Bool DrawDocShell::InitNew( const ::com::sun::star::uno::Reference< ::com::s
return bRet;
}
-/*************************************************************************
-|*
-|* Load: Pools und Dokument laden
-|*
-\************************************************************************/
-
+/**
+ * loads pools and document
+ */
sal_Bool DrawDocShell::Load( SfxMedium& rMedium )
{
mbNewDocument = sal_False;
@@ -352,12 +340,9 @@ sal_Bool DrawDocShell::Load( SfxMedium& rMedium )
return bRet;
}
-/*************************************************************************
-|*
-|* LoadFrom: Inhalte fuer Organizer laden
-|*
-\************************************************************************/
-
+/**
+ * loads content for organizer
+ */
sal_Bool DrawDocShell::LoadFrom( SfxMedium& rMedium )
{
mbNewDocument = sal_False;
@@ -391,12 +376,9 @@ sal_Bool DrawDocShell::LoadFrom( SfxMedium& rMedium )
return bRet;
}
-/*************************************************************************
-|*
-|* ImportFrom: load from 3rd party format
-|*
-\************************************************************************/
-
+/**
+ * load from 3rd party format
+ */
sal_Bool DrawDocShell::ImportFrom( SfxMedium &rMedium, bool bInsert )
{
const sal_Bool bRet=SfxObjectShell::ImportFrom(rMedium, bInsert);
@@ -422,12 +404,9 @@ sal_Bool DrawDocShell::ImportFrom( SfxMedium &rMedium, bool bInsert )
return bRet;
}
-/*************************************************************************
-|*
-|* ConvertFrom: aus Fremdformat laden
-|*
-\************************************************************************/
-
+/**
+ * load from a foreign format
+ */
sal_Bool DrawDocShell::ConvertFrom( SfxMedium& rMedium )
{
mbNewDocument = sal_False;
@@ -516,12 +495,9 @@ sal_Bool DrawDocShell::ConvertFrom( SfxMedium& rMedium )
return bRet;
}
-/*************************************************************************
-|*
-|* Save: Pools und Dokument in die offenen Streams schreiben
-|*
-\************************************************************************/
-
+/**
+ * Writes pools and document to the open streams
+ */
sal_Bool DrawDocShell::Save()
{
mpDoc->StopWorkStartupDelay();
@@ -543,12 +519,9 @@ sal_Bool DrawDocShell::Save()
return bRet;
}
-/*************************************************************************
-|*
-|* SaveAs: Pools und Dokument in den angegebenen Storage sichern
-|*
-\************************************************************************/
-
+/**
+ * Writes pools and document to the provided storage
+ */
sal_Bool DrawDocShell::SaveAs( SfxMedium& rMedium )
{
mpDoc->StopWorkStartupDelay();
@@ -573,12 +546,9 @@ sal_Bool DrawDocShell::SaveAs( SfxMedium& rMedium )
return bRet;
}
-/*************************************************************************
-|*
-|* ConvertTo: im Fremdformat speichern
-|*
-\************************************************************************/
-
+/**
+ * save to foreign format
+ */
sal_Bool DrawDocShell::ConvertTo( SfxMedium& rMedium )
{
sal_Bool bRet = sal_False;
@@ -636,13 +606,10 @@ sal_Bool DrawDocShell::ConvertTo( SfxMedium& rMedium )
return bRet;
}
-/*************************************************************************
-|*
-|* SaveCompleted: die eigenen Streams wieder oeffnen, damit kein anderer
-|* sie "besetzt"
-|*
-\************************************************************************/
-
+/**
+ * Reopen own streams to ensure that nobody else can prevent use from opening
+ * them.
+ */
sal_Bool DrawDocShell::SaveCompleted( const ::com::sun::star::uno::Reference< ::com::sun::star::embed::XStorage >& xStorage )
{
sal_Bool bRet = sal_False;
@@ -680,34 +647,16 @@ sal_Bool DrawDocShell::SaveCompleted( const ::com::sun::star::uno::Reference< ::
return bRet;
}
-/*************************************************************************
-|*
-|* Referenz auf Dokument
-|*
-\************************************************************************/
-
SdDrawDocument* DrawDocShell::GetDoc()
{
return mpDoc;
}
-/*************************************************************************
-|*
-|* Referenz auf Dokument
-|*
-\************************************************************************/
-
SfxStyleSheetBasePool* DrawDocShell::GetStyleSheetPool()
{
return( (SfxStyleSheetBasePool*) mpDoc->GetStyleSheetPool() );
}
-/*************************************************************************
-|*
-|* Sprung zu Bookmark
-|*
-\************************************************************************/
-
sal_Bool DrawDocShell::GotoBookmark(const String& rBookmark)
{
sal_Bool bFound = sal_False;
@@ -756,12 +705,12 @@ sal_Bool DrawDocShell::GotoBookmark(const String& rBookmark)
{
String aBookmark( rBookmark );
- // Ist das Bookmark eine Seite?
+ // Is the bookmark a page?
nPageNumber = mpDoc->GetPageByName( aBookmark, bIsMasterPage );
if (nPageNumber == SDRPAGE_NOTFOUND)
{
- // Ist das Bookmark ein Objekt?
+ // Is the bookmark a object?
pObj = mpDoc->GetObj(aBookmark);
if (pObj)
@@ -790,7 +739,7 @@ sal_Bool DrawDocShell::GotoBookmark(const String& rBookmark)
if (eNewPageKind != pDrawViewShell->GetPageKind())
{
- // Arbeitsbereich wechseln
+ // change work area
GetFrameView()->SetPageKind(eNewPageKind);
::rtl::OUString sViewURL;
switch (eNewPageKind)
@@ -863,7 +812,7 @@ sal_Bool DrawDocShell::GotoBookmark(const String& rBookmark)
if (pObj != NULL)
{
- // Objekt einblenden und selektieren
+ // show and select object
pDrawViewShell->MakeVisible(pObj->GetLogicRect(),
*pDrawViewShell->GetActiveWindow());
pDrawViewShell->GetView()->UnmarkAll();
@@ -885,12 +834,9 @@ sal_Bool DrawDocShell::GotoBookmark(const String& rBookmark)
return (bFound);
}
-/*************************************************************************
-|*
-|* SaveAsOwnFormat: wenn es eine Dokumentvorlage werden soll,
-|*
-\************************************************************************/
-
+/**
+ * If it should become a document template.
+ */
sal_Bool DrawDocShell::SaveAsOwnFormat( SfxMedium& rMedium )
{
@@ -898,12 +844,12 @@ sal_Bool DrawDocShell::SaveAsOwnFormat( SfxMedium& rMedium )
if (pFilter->IsOwnTemplateFormat())
{
- // jetzt die StarDraw-Spezialitaeten:
- // die Layoutvorlagen der ersten Seite werden mit dem jetzt
- // bekannten Layoutnamen versehen, die Layoutnamen der betroffenen
- // Masterpages und Seiten werden gesetzt;
- // alle Textobjekte der betroffenen Standard-, Notiz- und
- // Masterpages werden ueber die Namensaenderung informiert
+ /* now the StarDraw specialty:
+ we assign known layout names to the layout template of the first
+ page, we set the layout names of the affected masterpages and pages.
+ We inform all text objects of the affected standard, note and
+ masterpages about the name change.
+ */
String aLayoutName;
@@ -929,11 +875,6 @@ sal_Bool DrawDocShell::SaveAsOwnFormat( SfxMedium& rMedium )
return SfxObjectShell::SaveAsOwnFormat(rMedium);
}
-/*************************************************************************
-|*
-|* FillClass
-|*
-\************************************************************************/
void DrawDocShell::FillClass(SvGlobalName* pClassName,
sal_uInt32* pFormat,
diff --git a/sd/source/ui/docshell/docshell.cxx b/sd/source/ui/docshell/docshell.cxx
index 3e66d518818f..b2ae452e24d4 100644
--- a/sd/source/ui/docshell/docshell.cxx
+++ b/sd/source/ui/docshell/docshell.cxx
@@ -83,11 +83,9 @@ namespace sd {
GraphicFilter* GetGrfFilter();
-/*************************************************************************
-|*
-|* SFX-Slotmaps und -Definitionen
-|*
-\************************************************************************/
+/**
+ * slotmaps and definitions of SFX
+ */
TYPEINIT1( DrawDocShell, SfxObjectShell );
SFX_IMPL_OBJECTFACTORY(
@@ -96,12 +94,6 @@ SFX_IMPL_OBJECTFACTORY(
SFXOBJECTSHELL_STD_NORMAL,
"simpress" )
-/*************************************************************************
-|*
-|* Construct
-|*
-\************************************************************************/
-
void DrawDocShell::Construct( bool bClipboard )
{
mbInDestruction = sal_False;
@@ -121,15 +113,9 @@ void DrawDocShell::Construct( bool bClipboard )
mpDoc->SetSdrUndoManager( mpUndoManager );
mpDoc->SetSdrUndoFactory( new sd::UndoFactory );
UpdateTablePointers();
- SetStyleFamily(5); //CL: eigentlich SFX_STYLE_FAMILY_PSEUDO
+ SetStyleFamily(5); //CL: actually SFX_STYLE_FAMILY_PSEUDO
}
-/*************************************************************************
-|*
-|* Konstruktor 1
-|*
-\************************************************************************/
-
DrawDocShell::DrawDocShell(SfxObjectCreateMode eMode,
sal_Bool bDataObject,
DocumentType eDocumentType) :
@@ -148,12 +134,6 @@ DrawDocShell::DrawDocShell(SfxObjectCreateMode eMode,
Construct( eMode == SFX_CREATE_MODE_INTERNAL );
}
-/*************************************************************************
-|*
-|* Konstruktor 2
-|*
-\************************************************************************/
-
DrawDocShell::DrawDocShell( const sal_uInt64 nModelCreationFlags, sal_Bool bDataObject, DocumentType eDocumentType ) :
SfxObjectShell( nModelCreationFlags ),
mpDoc(NULL),
@@ -170,12 +150,6 @@ DrawDocShell::DrawDocShell( const sal_uInt64 nModelCreationFlags, sal_Bool bData
Construct( sal_False );
}
-/*************************************************************************
-|*
-|* Konstruktor 3
-|*
-\************************************************************************/
-
DrawDocShell::DrawDocShell(SdDrawDocument* pDoc, SfxObjectCreateMode eMode,
sal_Bool bDataObject,
DocumentType eDocumentType) :
@@ -194,12 +168,6 @@ DrawDocShell::DrawDocShell(SdDrawDocument* pDoc, SfxObjectCreateMode eMode,
Construct( eMode == SFX_CREATE_MODE_INTERNAL );
}
-/*************************************************************************
-|*
-|* Destruktor
-|*
-\************************************************************************/
-
DrawDocShell::~DrawDocShell()
{
// Tell all listeners that the doc shell is about to be
@@ -224,7 +192,7 @@ DrawDocShell::~DrawDocShell()
if( mbOwnDocument )
delete mpDoc;
- // damit der Navigator das Verschwinden des Dokuments mitbekommt
+ // that the navigator get informed about the disappearance of the document
SfxBoolItem aItem(SID_NAVIGATOR_INIT, sal_True);
SfxViewFrame* pFrame = mpViewShell ? mpViewShell->GetFrame() : GetFrame();
@@ -236,12 +204,6 @@ DrawDocShell::~DrawDocShell()
SID_NAVIGATOR_INIT, SFX_CALLMODE_ASYNCHRON | SFX_CALLMODE_RECORD, &aItem, 0L);
}
-/*************************************************************************
-|*
-|* Slot-Stati setzen
-|*
-\************************************************************************/
-
void DrawDocShell::GetState(SfxItemSet &rSet)
{
@@ -344,7 +306,7 @@ void DrawDocShell::InPlaceActivate( sal_Bool bActive )
while (pSfxViewFrame)
{
- // Anzahl FrameViews ermitteln
+ // determine the number of FrameViews
pSfxViewSh = pSfxViewFrame->GetViewShell();
pViewSh = PTR_CAST( ViewShell, pSfxViewSh );
@@ -364,7 +326,7 @@ void DrawDocShell::InPlaceActivate( sal_Bool bActive )
{
for( sal_uInt32 i = 0; pSfxViewFrame && (i < rViews.size()); i++ )
{
- // Anzahl FrameViews ermitteln
+ // determine the number of FrameViews
pSfxViewSh = pSfxViewFrame->GetViewShell();
pViewSh = PTR_CAST( ViewShell, pSfxViewSh );
@@ -378,12 +340,6 @@ void DrawDocShell::InPlaceActivate( sal_Bool bActive )
}
}
-/*************************************************************************
-|*
-|* SFX-Aktivierung
-|*
-\************************************************************************/
-
void DrawDocShell::Activate( sal_Bool bMDI)
{
if (bMDI)
@@ -393,35 +349,15 @@ void DrawDocShell::Activate( sal_Bool bMDI)
}
}
-/*************************************************************************
-|*
-|* SFX-Deaktivierung
-|*
-\************************************************************************/
-
void DrawDocShell::Deactivate( sal_Bool )
{
}
-/*************************************************************************
-|*
-|* SFX-Undomanager zurueckgeben
-|*
-\************************************************************************/
-
::svl::IUndoManager* DrawDocShell::GetUndoManager()
{
return mpUndoManager;
}
-
-
-/*************************************************************************
-|*
-|* Tabellenzeiger auffrischen
-|*
-\************************************************************************/
-
void DrawDocShell::UpdateTablePointers()
{
PutItem( SvxColorListItem( mpDoc->GetColorList(), SID_COLOR_TABLE ) );
@@ -442,12 +378,9 @@ void DrawDocShell::CancelSearching()
}
}
-/*************************************************************************
-|*
-|* den eingestellten SlotFilter anwenden
-|*
-\************************************************************************/
-
+/**
+ * apply configured slot filters
+ */
void DrawDocShell::ApplySlotFilter() const
{
SfxViewShell* pTestViewShell = SfxViewShell::GetFirst();
@@ -489,12 +422,9 @@ void DrawDocShell::SetModified( sal_Bool bSet /* = sal_True */ )
}
}
-/*************************************************************************
-|*
-|* Callback fuer ExecuteSpellPopup()
-|*
-\************************************************************************/
-
+/**
+ * Callback for ExecuteSpellPopup()
+ */
// ExecuteSpellPopup now handled by DrawDocShell. This is necessary
// to get hands on the outliner and the text object.
IMPL_LINK(DrawDocShell, OnlineSpellCallback, SpellCallbackInfo*, pInfo)
diff --git a/sd/source/ui/docshell/sdclient.cxx b/sd/source/ui/docshell/sdclient.cxx
index e83097e722ba..192c1cd5d754 100644
--- a/sd/source/ui/docshell/sdclient.cxx
+++ b/sd/source/ui/docshell/sdclient.cxx
@@ -38,11 +38,6 @@ using namespace com::sun::star;
namespace sd {
-/*************************************************************************
-|*
-|* Ctor
-|*
-\************************************************************************/
Client::Client(SdrOle2Obj* pObj, ViewShell* pViewShell, ::Window* pWindow) :
SfxInPlaceClient(pViewShell->GetViewShell(), pWindow, pObj->GetAspect() ),
@@ -55,24 +50,15 @@ Client::Client(SdrOle2Obj* pObj, ViewShell* pViewShell, ::Window* pWindow) :
DBG_ASSERT( GetObject().is(), "No object connected!" );
}
-/*************************************************************************
-|*
-|* Dtor
-|*
-\************************************************************************/
-
Client::~Client()
{
}
-/*************************************************************************
-|*
-|* Wenn IP-aktiv, dann kommt diese Anforderung um Vergroesserung des
-|* sichtbaren Ausschnitts des Objektes
-|*
-\************************************************************************/
-
+/**
+ * If IP active, then we get this request to increase the visible section of the
+ * object.
+ */
void Client::RequestNewObjectArea( Rectangle& aObjRect )
{
::sd::View* pView = mpViewShell->GetView();
@@ -207,12 +193,9 @@ void Client::ViewChanged()
}
-/*************************************************************************
-|*
-|* Objekt in den sichtbaren Breich scrollen
-|*
-\************************************************************************/
-
+/**
+ * Scroll object into visible area.
+ */
void Client::MakeVisible()
{
if (mpViewShell->ISA(DrawViewShell))