1*3334a7e6SAndrew Rist /************************************************************** 2*3334a7e6SAndrew Rist * 3*3334a7e6SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*3334a7e6SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*3334a7e6SAndrew Rist * distributed with this work for additional information 6*3334a7e6SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*3334a7e6SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*3334a7e6SAndrew Rist * "License"); you may not use this file except in compliance 9*3334a7e6SAndrew Rist * with the License. You may obtain a copy of the License at 10*3334a7e6SAndrew Rist * 11*3334a7e6SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 13*3334a7e6SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*3334a7e6SAndrew Rist * software distributed under the License is distributed on an 15*3334a7e6SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*3334a7e6SAndrew Rist * KIND, either express or implied. See the License for the 17*3334a7e6SAndrew Rist * specific language governing permissions and limitations 18*3334a7e6SAndrew Rist * under the License. 19*3334a7e6SAndrew Rist * 20*3334a7e6SAndrew Rist *************************************************************/ 21*3334a7e6SAndrew Rist 22*3334a7e6SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir #ifndef _E3D_SPHERE3D_HXX 25cdf0e10cSrcweir #define _E3D_SPHERE3D_HXX 26cdf0e10cSrcweir 27cdf0e10cSrcweir #include <svx/obj3d.hxx> 28cdf0e10cSrcweir #include "svx/svxdllapi.h" 29cdf0e10cSrcweir 30cdf0e10cSrcweir /************************************************************************* 31cdf0e10cSrcweir |* 32cdf0e10cSrcweir |* Kugelobjekt mit Durchmesser r3DSize; Anzahl der Flaechen wird durch 33cdf0e10cSrcweir |* die horizontale und vertikale Segmentanzahl vorgegeben 34cdf0e10cSrcweir |* 35cdf0e10cSrcweir \************************************************************************/ 36cdf0e10cSrcweir 37cdf0e10cSrcweir class SVX_DLLPUBLIC E3dSphereObj : public E3dCompoundObject 38cdf0e10cSrcweir { 39cdf0e10cSrcweir private: 40cdf0e10cSrcweir basegfx::B3DPoint aCenter; 41cdf0e10cSrcweir basegfx::B3DVector aSize; 42cdf0e10cSrcweir 43cdf0e10cSrcweir protected: 44cdf0e10cSrcweir virtual sdr::contact::ViewContact* CreateObjectSpecificViewContact(); 45cdf0e10cSrcweir virtual sdr::properties::BaseProperties* CreateObjectSpecificProperties(); 46cdf0e10cSrcweir void SetDefaultAttributes(E3dDefaultAttributes& rDefault); 47cdf0e10cSrcweir 48cdf0e10cSrcweir public: 49cdf0e10cSrcweir TYPEINFO(); 50cdf0e10cSrcweir E3dSphereObj(E3dDefaultAttributes& rDefault, const basegfx::B3DPoint& rCenter, const basegfx::B3DVector& r3DSize); 51cdf0e10cSrcweir E3dSphereObj(); 52cdf0e10cSrcweir 53cdf0e10cSrcweir // FG: Dieser Konstruktor wird nur von MakeObject aus der 3d-Objectfactory beim 54cdf0e10cSrcweir // Laden von Dokumenten mit Kugeln aufgerufen. Dieser Konstruktor ruft kein 55cdf0e10cSrcweir // CreateSphere auf, er erzeugt also keine Kugel. 56cdf0e10cSrcweir E3dSphereObj(int dummy); 57cdf0e10cSrcweir 58cdf0e10cSrcweir // HorizontalSegments: GetHorizontalSegments() const59cdf0e10cSrcweir sal_uInt32 GetHorizontalSegments() const 60cdf0e10cSrcweir { return ((const Svx3DHorizontalSegmentsItem&)GetObjectItemSet().Get(SDRATTR_3DOBJ_HORZ_SEGS)).GetValue(); } 61cdf0e10cSrcweir 62cdf0e10cSrcweir // VerticalSegments: GetVerticalSegments() const63cdf0e10cSrcweir sal_uInt32 GetVerticalSegments() const 64cdf0e10cSrcweir { return ((const Svx3DVerticalSegmentsItem&)GetObjectItemSet().Get(SDRATTR_3DOBJ_VERT_SEGS)).GetValue(); } 65cdf0e10cSrcweir 66cdf0e10cSrcweir virtual sal_uInt16 GetObjIdentifier() const; 67a5258243SPedro Giffuni virtual SdrObject* DoConvertToPolyObj(sal_Bool bBezier, bool bAddText) const; 68cdf0e10cSrcweir 69cdf0e10cSrcweir virtual void operator=(const SdrObject&); 70cdf0e10cSrcweir 71cdf0e10cSrcweir void ReSegment(sal_uInt32 nHorzSegments, sal_uInt32 nVertSegments); Center() const72cdf0e10cSrcweir const basegfx::B3DPoint& Center() const { return aCenter; } Size() const73cdf0e10cSrcweir const basegfx::B3DVector& Size() const { return aSize; } 74cdf0e10cSrcweir 75cdf0e10cSrcweir // Lokale Parameter setzen mit Geometrieneuerzeugung 76cdf0e10cSrcweir void SetCenter(const basegfx::B3DPoint& rNew); 77cdf0e10cSrcweir void SetSize(const basegfx::B3DVector& rNew); 78cdf0e10cSrcweir 79cdf0e10cSrcweir // TakeObjName...() ist fuer die Anzeige in der UI, z.B. "3 Rahmen selektiert". 80cdf0e10cSrcweir virtual void TakeObjNameSingul(String& rName) const; 81cdf0e10cSrcweir virtual void TakeObjNamePlural(String& rName) const; 82cdf0e10cSrcweir }; 83cdf0e10cSrcweir 84cdf0e10cSrcweir #endif // _E3D_SPHERE3D_HXX 85