GeometryHandlerBuilder.h

Go to the documentation of this file.
00001 //
00002 //  Copyright (c) 1996-2006 by Autodesk, Inc.
00003 //
00004 //  By using this code, you are agreeing to the terms and conditions of
00005 //  the License Agreement included in the documentation for this code.
00006 //
00007 //  AUTODESK MAKES NO WARRANTIES, EXPRESS OR IMPLIED, AS TO THE CORRECTNESS
00008 //  OF THIS CODE OR ANY DERIVATIVE WORKS WHICH INCORPORATE IT. AUTODESK
00009 //  PROVIDES THE CODE ON AN "AS-IS" BASIS AND EXPLICITLY DISCLAIMS ANY
00010 //  LIABILITY, INCLUDING CONSEQUENTIAL AND INCIDENTAL DAMAGES FOR ERRORS,
00011 //  OMISSIONS, AND OTHER PROBLEMS IN THE CODE.
00012 //
00013 //  Use, duplication, or disclosure by the U.S. Government is subject to
00014 //  restrictions set forth in FAR 52.227-19 (Commercial Computer Software
00015 //  Restricted Rights) and DFAR 252.227-7013(c)(1)(ii) (Rights in Technical
00016 //  Data and Computer Software), as applicable.
00017 //
00018 
00019 #ifndef _DWFTK_GEOMETRY_HANDLER_BUILDER_H
00020 #define _DWFTK_GEOMETRY_HANDLER_BUILDER_H
00021 
00026 
00027 
00028 #include "dwfcore/Exception.h"
00029 #include "dwf/w3dtk/BOpcodeShell.h"
00030 #include "dwf/w3dtk/BOpcodeHandler.h"
00031 
00032 
00033 namespace DWFToolkit
00034 {
00035 
00045 class DWFGeometryHandlerBuilder _DWFTK_EXPORT_API_MEMORY_CONTROL_BASE
00046 {
00047 
00048 public:
00049 
00055     DWFGeometryHandlerBuilder()
00056         throw()
00057     {;}
00058 
00064     virtual ~DWFGeometryHandlerBuilder()
00065         throw()
00066     {;}
00067 
00073     DWFGeometryHandlerBuilder( const DWFGeometryHandlerBuilder& )
00074         throw()
00075     {;}
00076 
00082     DWFGeometryHandlerBuilder& operator=( const DWFGeometryHandlerBuilder& )
00083         throw()
00084     {
00085         return *this;
00086     }
00087 
00088 public:
00089 
00098     virtual TK_Area_Light& getAreaLightHandler()
00099         throw( DWFException )
00100     {
00101         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00102     }
00103 
00110     virtual TK_Circle& getCircleHandler()
00111         throw( DWFException )
00112     {
00113         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00114     }
00115 
00122     virtual TK_Circle& getCircularArcHandler()
00123         throw( DWFException )
00124     {
00125         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00126     }
00127 
00134     virtual TK_Circle& getCircularChordHandler()
00135         throw( DWFException )
00136     {
00137         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00138     }
00139 
00146     virtual TK_Circle& getCircularWedgeHandler()
00147         throw( DWFException )
00148     {
00149         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00150     }
00151 
00158     virtual TK_Clip_Rectangle& getClipRectangleHandler()
00159         throw( DWFException )
00160     {
00161         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00162     }
00163 
00170     virtual TK_Clip_Region& getClipRegionHandler()
00171         throw( DWFException )
00172     {
00173         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00174     }
00175 
00182     virtual TK_Cutting_Plane& getCuttingPlaneHandler()
00183         throw( DWFException )
00184     {
00185         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00186     }
00187 
00195     virtual TK_Cylinder& getCylinderHandler()
00196         throw( DWFException )
00197     {
00198         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00199     }
00200 
00209     virtual TK_Point& getDistantLightHandler()
00210         throw( DWFException )
00211     {
00212         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00213     }
00214 
00221     virtual TK_Ellipse& getEllipseHandler()
00222         throw( DWFException )
00223     {
00224         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00225     }
00226 
00233     virtual TK_Ellipse& getEllipticalArcHandler()
00234         throw( DWFException )
00235     {
00236         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00237     }
00238 
00245     virtual TK_Glyph_Definition& getGlyphDefinitionHandler()
00246         throw( DWFException )
00247     {
00248         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00249     }
00250 
00258     virtual TK_Grid& getGridHandler()
00259         throw( DWFException )
00260     {
00261         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00262     }
00263 
00272     virtual TK_Image& getImageHandler()
00273         throw( DWFException )
00274     {
00275         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00276     }
00277 
00284     virtual TK_Line& getLineHandler()
00285         throw( DWFException )
00286     {
00287         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00288     }
00289 
00298     virtual TK_Point& getLocalLightHandler()
00299         throw( DWFException )
00300     {
00301         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00302     }
00303 
00311     virtual TK_Point& getMarkerHandler()
00312         throw( DWFException )
00313     {
00314         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00315     }
00316 
00324     virtual TK_Mesh& getMeshHandler()
00325         throw( DWFException )
00326     {
00327         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00328     }
00329 
00336     virtual TK_NURBS_Curve& getNURBSCurveHandler()
00337         throw( DWFException )
00338     {
00339         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00340     }
00341 
00348     virtual TK_NURBS_Surface& getNURBSSurfaceHandler()
00349         throw( DWFException )
00350     {
00351         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00352     }
00353 
00360     virtual TK_PolyCylinder& getPolyCylinderHandler()
00361         throw( DWFException )
00362     {
00363         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00364     }
00365 
00372     virtual TK_Polypoint& getPolygonHandler()
00373         throw( DWFException )
00374     {
00375         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00376     }
00377 
00384     virtual TK_Polypoint& getPolylineHandler()
00385         throw( DWFException )
00386     {
00387         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00388     }
00389 
00409     virtual TK_Shell& getShellHandler( bool /*bTriStripsOnly = false*/,
00410                                        bool /*bDisableOptimization = false*/ )
00411     throw( DWFException )
00412     {
00413         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00414     }
00415 
00423     virtual TK_Sphere& getSphereHandler()
00424         throw( DWFException )
00425     {
00426         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00427     }
00428 
00437     virtual TK_Spot_Light& getSpotLightHandler()
00438         throw( DWFException )
00439     {
00440         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00441     }
00442 
00451     virtual TK_Text& getTextHandler()
00452         throw( DWFException )
00453     {
00454         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00455     }
00456 
00465     virtual TK_Text& getTextWithEncodingHandler()
00466         throw( DWFException )
00467     {
00468         _DWFCORE_THROW( DWFNotImplementedException, /*NOXLATE*/L"Handler not available in this builder" );
00469     }
00470 };
00471 
00472 
00473 }
00474 
00475 
00476 #endif

Generated on Tue Jan 6 22:40:03 2009 for Autodesk DWF Toolkit by  doxygen 1.4.5