KDReportsTextElement.h

00001 /****************************************************************************
00002 ** Copyright (C) 2007-2011 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 
00029 class QColor;
00030 class QFont;
00031 
00032 namespace KDReports {
00033 
00038 class KDREPORTS_EXPORT TextElement : public Element
00039 {
00040 public:
00044     explicit TextElement( const QString& string = QString() );
00048     virtual ~TextElement();
00049 
00054     TextElement(const TextElement &other);
00058     TextElement &operator=(const TextElement &other);
00059 
00063     void setText( const QString& text );
00064 
00068     TextElement& operator<<( const QString& );
00069 
00071     void setFontFamily( const QString& family );
00073     void setBold( bool bold );
00075     void setItalic( bool italic );
00077     void setUnderline( bool underline );
00079     void setStrikeOut( bool strikeout );
00081     void setPointSize( qreal size );
00082 
00084     void setFont( const QFont& );
00085 
00090     void setTextColor( const QColor& color );
00091 
00096     void setId( const QString& id );
00097 
00102     QString id() const;
00103 
00108     void build( ReportBuilder& builder ) const;
00113     Element* clone() const;
00114 
00115 private:
00116     class Private;
00117     Private* const d;
00118 };
00119 
00120 }
00121 
00122 #endif /* KDREPORTSTEXTELEMENT_H */
00123 
•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/