![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2008 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: Dt3DTextModel.h,v $ $Revision: 1.10 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00012 00013 #pragma once 00014 00015 #include <vrvCore/DtModel.h> 00016 00017 namespace makVrv 00018 { 00023 class DT_DLL_VRVCORE Dt3DTextModel : public DtModel 00024 { 00025 public: 00027 Dt3DTextModel(DtDe& de, DtUniqueID id); 00028 00030 virtual ~Dt3DTextModel(); 00031 00033 virtual void setColor( float r, float g, float b, float a ) = 0; 00034 00036 virtual void setFont( const std::string& fontName ) = 0; 00037 00039 virtual void setFontSize( double size ) = 0; 00040 00042 virtual void setText( const std::string& text ) = 0; 00043 }; 00044 }