KD Reports 1.4
KDReportsTextElement.h
00001 /****************************************************************************
00002 ** Copyright (C) 2007-2012 Klaralvdalens Datakonsult AB.  All rights reserved.
00003 **
00004 ** This file is part of the KD Reports library.
00005 **
00006 ** Licensees holding valid commercial KD Reports licenses may use this file in
00007 ** accordance with the KD Reports Commercial License Agreement provided with
00008 ** the Software.
00009 **
00010 **
00011 ** This file may be distributed and/or modified under the terms of the
00012 ** GNU General Public License version 2 and version 3 as published by the
00013 ** Free Software Foundation and appearing in the file LICENSE.GPL included.
00014 **
00015 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
00016 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
00017 **
00018 ** Contact info@kdab.com if any conditions of this licensing are not
00019 ** clear to you.
00020 **
00021 **********************************************************************/
00022 
00023 #ifndef KDREPORTSTEXTELEMENT_H
00024 #define KDREPORTSTEXTELEMENT_H
00025 
00026 #include "KDReportsElement.h"
00027 #include <QtCore/QString>
00028 #include <QTextCharFormat>
00029 
00030 class QColor;
00031 class QFont;
00032 
00033 namespace KDReports {
00034 
00039 class KDREPORTS_EXPORT TextElement : public Element
00040 {
00041 public:
00045     explicit TextElement( const QString& string = QString() );
00049     virtual ~TextElement();
00050 
00055     TextElement(const TextElement &other);
00059     TextElement &operator=(const TextElement &other);
00060 
00064     void setText( const QString& text );
00065 
00069     TextElement& operator<<( const QString& );
00070 
00072     void setFontFamily( const QString& family );
00074     void setBold( bool bold );
00076     void setItalic( bool italic );
00078     void setUnderline( bool underline );
00080     void setStrikeOut( bool strikeout );
00082     void setPointSize( qreal size );
00083 
00085     void setFont( const QFont& );
00086 
00091     QFont font() const;
00092 
00097     void setTextColor( const QColor& color );
00098 
00103     QColor textColor() const;
00104 
00109     void setId( const QString& id );
00110 
00115     QString id() const;
00116 
00121     QString text() const;
00122 
00127     void build( ReportBuilder& builder ) const;
00132     Element* clone() const;
00133 
00134 private:
00135 
00136     friend class ReportBuilder;
00137     void setCharFormat( const QTextCharFormat& format );
00138 
00139     class Private;
00140     Private* const d;
00141 };
00142 
00143 }
00144 
00145 #endif /* KDREPORTSTEXTELEMENT_H */
00146 
 All Classes Namespaces Functions Enumerations Enumerator

Klarälvdalens Datakonsult AB (KDAB)
Qt-related services and products
http://www.kdab.com/
http://www.kdab.com/products/kd-reports/