diff options
author | Sven Wehner <wehner@informatik.uni-freiburg.de> | 2014-01-27 22:22:21 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-01-30 11:50:37 +0000 |
commit | a1d372085e77d587484821b64389f6fd3db3de96 (patch) | |
tree | 4ec9bc442ad828c40ee882db1c29d6d0f1916786 | |
parent | 424e957ab51687ece4d69984c482e608089e0e6f (diff) |
fdo#39468 Translate German comments (include/svx/(fmsearch|svdopath).hxx)
In include/svx/fmsearch.hxx and include/svx/svdopath.hxx.
Also remove some ASCII art, and redundant comments.
Change-Id: I766150c9d80ec087525713783a483a7057a7130c
Reviewed-on: https://gerrit.libreoffice.org/7705
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | include/svx/fmsearch.hxx | 15 | ||||
-rw-r--r-- | include/svx/svdopath.hxx | 34 |
2 files changed, 15 insertions, 34 deletions
diff --git a/include/svx/fmsearch.hxx b/include/svx/fmsearch.hxx index ce5a91c4d9d4..68a02da5064a 100644 --- a/include/svx/fmsearch.hxx +++ b/include/svx/fmsearch.hxx @@ -37,27 +37,24 @@ namespace com { namespace sun { namespace star { } }}} -// =================================================================================================== -// Hilfsmethoden +// Helper methods SVX_DLLPUBLIC sal_Bool IsSearchableControl( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface>& _xControl, OUString* pCurrentText = NULL); // check if the control has one of the interfaces we can use for searching // *pCurrentText will be filled with the current text of the control (as used when searching this control) -// =================================================================================================== -// Hilfsstrukturen + +// Helper structs struct FmFoundRecordInformation { ::com::sun::star::uno::Any aPosition; // bookmark of the record in which the text was found - sal_Int16 nFieldPos; // ditto : the relative position of the column (in the string name of the field list in the constructor) + sal_Int16 nFieldPos; // ditto: the relative position of the column (in the string name of the field list in the constructor) sal_Int16 nContext; // the context in which was searched and found (if the current search knows several contexts) }; -// =================================================================================================== -// = struct FmSearchContext - information for the search in different contexts -// =================================================================================================== +// FmSearchContext - information for the search in different contexts struct FmSearchContext { @@ -69,7 +66,7 @@ struct FmSearchContext OUString strUsedFields; // a list of field names separeted by ';' ::std::vector< css::uno::Reference< css::uno::XInterface > > arrFields; // the corresponding text interfaces for the fields in strUsedFields - OUString sFieldDisplayNames; // if not empty : names to be displayed for the searchable fields (must have the same token count as strUsedFields !) + OUString sFieldDisplayNames; // if not empty: names to be displayed for the searchable fields (must have the same token count as strUsedFields!) }; #endif // INCLUDED_SVX_FMSEARCH_HXX diff --git a/include/svx/svdopath.hxx b/include/svx/svdopath.hxx index dcf229ce82e6..9acd5bfadc35 100644 --- a/include/svx/svdopath.hxx +++ b/include/svx/svdopath.hxx @@ -25,18 +25,10 @@ #include <svx/svxdllapi.h> #include <basegfx/vector/b2enums.hxx> -//************************************************************ -// Vorausdeklarationen -//************************************************************ - class ImpPathForDragAndCreate; -//************************************************************ -// Hilfsklasse SdrPathObjGeoData -// -// fuer Undo/Redo -// -//************************************************************ +// Helper class SdrPathObjGeoData +// used for undo/redo class SdrPathObjGeoData : public SdrTextObjGeoData { @@ -48,9 +40,6 @@ public: virtual ~SdrPathObjGeoData(); }; -//************************************************************ -// SdrPathObj -//************************************************************ class SVX_DLLPUBLIC SdrPathObj : public SdrTextObj { @@ -70,7 +59,7 @@ protected: double mdBrightness; protected: - // Hilfsfunktion fuer GET/SET/INS/etc. PNT + // helper functions for GET, SET, INS etc. PNT void ImpSetClosed(sal_Bool bClose); void ImpForceKind(); void ImpForceLineWink(); @@ -138,11 +127,11 @@ public: virtual Point GetPoint(sal_uInt32 nHdlNum) const; virtual void NbcSetPoint(const Point& rPnt, sal_uInt32 nHdlNum); - // Punkt einfuegen + // insert point sal_uInt32 NbcInsPointOld(const Point& rPos, sal_Bool bNewObj, sal_Bool bHideHim); sal_uInt32 NbcInsPoint(sal_uInt32 i, const Point& rPos, sal_Bool bNewObj, sal_Bool bHideHim); - // An diesem Punkt auftrennen + // rip at given point SdrObject* RipPoint(sal_uInt32 nHdlNum, sal_uInt32& rNewPt0Index); protected: @@ -153,30 +142,27 @@ protected: public: virtual SdrObject* DoConvertToPolyObj(sal_Bool bBezier, bool bAddText) const; - // Bezierpolygon holen/setzen + // Bezier-polygon getter/setter const basegfx::B2DPolyPolygon& GetPathPoly() const { return maPathPolygon; } void SetPathPoly(const basegfx::B2DPolyPolygon& rPathPoly); void NbcSetPathPoly(const basegfx::B2DPolyPolygon& rPathPoly); - // Spezialfunktionen fuer Bezierpolygon-Bearbeitung + // special functions for Bezier-polygon handling sal_Bool IsClosed() const { return meKind==OBJ_POLY || meKind==OBJ_PATHPOLY || meKind==OBJ_PATHFILL || meKind==OBJ_FREEFILL || meKind==OBJ_SPLNFILL; } sal_Bool IsLine() const { return meKind==OBJ_PLIN || meKind==OBJ_PATHPLIN || meKind==OBJ_PATHLINE || meKind==OBJ_FREELINE || meKind==OBJ_SPLNLINE || meKind==OBJ_LINE; } sal_Bool IsFreeHand() const { return meKind==OBJ_FREELINE || meKind==OBJ_FREEFILL; } sal_Bool IsBezier() const { return meKind==OBJ_PATHLINE || meKind==OBJ_PATHFILL; } sal_Bool IsSpline() const { return meKind==OBJ_SPLNLINE || meKind==OBJ_SPLNFILL; } - // Pfad schliessen bzw. oeffnen; im letzteren Fall den Endpunkt um - // "nOpenDistance" verschieben + // close/open path + // if opening, move end point by "nOpenDistance" void ToggleClosed(); // long nOpenDistance); - //////////////////////////////////////////////////////////////////////////////////////////////////// - // // transformation interface for StarOfficeAPI. This implements support for // homogen 3x3 matrices containing the transformation of the SdrObject. At the // moment it contains a shearX, rotation and translation, but for setting all linear // transforms like Scale, ShearX, ShearY, Rotate and Translate are supported. // - //////////////////////////////////////////////////////////////////////////////////////////////////// // gets base transformation and rectangle of object. If it's an SdrPathObj it fills the PolyPolygon // with the base geometry and returns TRUE. Otherwise it returns FALSE. virtual sal_Bool TRGetBaseGeometry(basegfx::B2DHomMatrix& rMatrix, basegfx::B2DPolyPolygon& rPolyPolygon) const; @@ -186,8 +172,6 @@ public: virtual void TRSetBaseGeometry(const basegfx::B2DHomMatrix& rMatrix, const basegfx::B2DPolyPolygon& rPolyPolygon); }; -//////////////////////////////////////////////////////////////////////////////////////////////////// - #endif // INCLUDED_SVX_SVDOPATH_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |