2002-07-17 04:07:32 +08:00
|
|
|
//C++ header - Open Scene Graph - Copyright (C) 1998-2002 Robert Osfield
|
2001-11-12 18:04:57 +08:00
|
|
|
//Distributed under the terms of the GNU Library General Public License (LGPL)
|
|
|
|
//as published by the Free Software Foundation.
|
|
|
|
|
|
|
|
#ifndef OSGTEXT_PARAGRAPH
|
|
|
|
#define OSGTEXT_PARAGRAPH
|
|
|
|
|
|
|
|
#include <osg/Geode>
|
|
|
|
#include <osgText/Text>
|
|
|
|
|
|
|
|
namespace osgText {
|
|
|
|
|
|
|
|
class OSGTEXT_EXPORT Paragraph : public osg::Geode
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
Paragraph();
|
2002-01-29 22:04:06 +08:00
|
|
|
Paragraph(const Paragraph& paragraph,const osg::CopyOp& copyop=osg::CopyOp::SHALLOW_COPY);
|
2001-11-12 18:04:57 +08:00
|
|
|
Paragraph(const osg::Vec3& position,const std::string& text,osgText::Font* font);
|
|
|
|
|
2002-06-06 21:25:36 +08:00
|
|
|
META_Node(osgText,Paragraph)
|
2001-11-12 18:04:57 +08:00
|
|
|
|
|
|
|
|
|
|
|
void setFont(osgText::Font* font);
|
|
|
|
osgText::Font* getFont() { return _font.get(); }
|
|
|
|
const osgText::Font* getFont() const { return _font.get(); }
|
|
|
|
|
|
|
|
void setMaximumNoCharactersPerLine(unsigned int maxCharsPerLine);
|
2002-09-02 20:31:35 +08:00
|
|
|
unsigned int getMaximumNoCharactersPerLine() const { return _maxCharsPerLine; }
|
2001-11-12 18:04:57 +08:00
|
|
|
|
|
|
|
void setText(const std::string& text);
|
|
|
|
std::string& getText() { return _text; }
|
|
|
|
const std::string& getText() const { return _text; }
|
|
|
|
|
|
|
|
void setPosition(const osg::Vec3& position);
|
|
|
|
const osg::Vec3& getPosition() const { return _position; }
|
|
|
|
|
|
|
|
void setAlignment(int alignment);
|
2002-06-12 02:41:57 +08:00
|
|
|
int getAlignment() const { return _alignment; }
|
2001-11-12 18:04:57 +08:00
|
|
|
|
|
|
|
float getHeight() const;
|
|
|
|
|
2001-11-14 22:09:07 +08:00
|
|
|
static bool createFormatedText(unsigned int noCharsPerLine,const std::string& str,std::vector<std::string>& formatedText);
|
|
|
|
|
2001-11-12 18:04:57 +08:00
|
|
|
protected:
|
|
|
|
|
|
|
|
virtual ~Paragraph() {}
|
|
|
|
|
|
|
|
void createDrawables();
|
|
|
|
|
|
|
|
osg::Vec3 _position;
|
|
|
|
std::string _text;
|
|
|
|
osg::ref_ptr<osgText::Font> _font;
|
|
|
|
int _alignment;
|
|
|
|
unsigned int _maxCharsPerLine;
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2002-02-03 20:33:41 +08:00
|
|
|
}
|
2001-11-12 18:04:57 +08:00
|
|
|
|
|
|
|
#endif
|