Fix two issues reported by Christoph Bartoschek ('Suspicious code in revision 867140...
[kdenetwork.git] / filesharing / simple / krichtextlabel.h
blobfc7dbace6b7c013f82db5245d0a757256fc96e36
1 /* This file is part of the KDE libraries
2 Copyright (C) 2005 Waldo Bastian <bastian@kde.org>
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public
6 License version 2 as published by the Free Software Foundation.
8 This library is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 Library General Public License for more details.
13 You should have received a copy of the GNU Library General Public License
14 along with this library; see the file COPYING.LIB. If not, write to
15 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
16 Boston, MA 02110-1301, USA.
19 #ifndef KRICHTEXTLABEL_H
20 #define KRICHTEXTLABEL_H
22 #include <qlabel.h>
24 /**
25 * @short A replacement for QLabel that supports richtext and proper layout management
27 * @author Waldo Bastian <bastian@kde.org>
31 * QLabel
33 class KRichTextLabel : public QLabel {
34 Q_OBJECT
36 public:
37 /**
38 * Default constructor.
40 KRichTextLabel( QWidget *parent );
41 KRichTextLabel( const QString &text, QWidget *parent );
43 int defaultWidth() const { return m_defaultWidth; }
44 void setDefaultWidth(int defaultWidth);
46 virtual QSize minimumSizeHint() const;
47 virtual QSize sizeHint() const;
48 QSizePolicy sizePolicy() const;
50 public slots:
51 void setText( const QString & );
53 protected:
54 int m_defaultWidth;
56 protected:
57 virtual void virtual_hook( int id, void* data );
58 private:
59 class KRichTextLabelPrivate;
60 KRichTextLabelPrivate *d;
63 #endif // KRICHTEXTLABEL_H