~ubuntu-branches/ubuntu/natty/kdenetwork/natty-proposed

« back to all changes in this revision

Viewing changes to filesharing/simple/krichtextlabel.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-02-21 14:26:58 UTC
  • Revision ID: package-import@ubuntu.com-20110221142658-mzt9flk82tzdunxj
Tags: 4:4.6.0-0ubuntu4
Update kubuntu_05_samba_sharing.diff to match master

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* This file is part of the KDE libraries
2
 
   Copyright (C) 2005 Waldo Bastian <bastian@kde.org>
3
 
 
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.
7
 
 
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.
12
 
 
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.
17
 
*/
18
 
 
19
 
#ifndef KRICHTEXTLABEL_H
20
 
#define KRICHTEXTLABEL_H
21
 
 
22
 
#include <qlabel.h>
23
 
 
24
 
/**
25
 
 * @short A replacement for QLabel that supports richtext and proper layout management
26
 
 *
27
 
 * @author Waldo Bastian <bastian@kde.org>
28
 
 */
29
 
 
30
 
/*
31
 
 * QLabel
32
 
 */
33
 
class KRichTextLabel : public QLabel {
34
 
  Q_OBJECT
35
 
 
36
 
public:
37
 
  /**
38
 
   * Default constructor.
39
 
   */
40
 
  KRichTextLabel( QWidget *parent );
41
 
  KRichTextLabel( const QString &text, QWidget *parent );
42
 
 
43
 
  int defaultWidth() const { return m_defaultWidth; }
44
 
  void setDefaultWidth(int defaultWidth);
45
 
 
46
 
  virtual QSize minimumSizeHint() const;
47
 
  virtual QSize sizeHint() const;
48
 
  QSizePolicy sizePolicy() const;
49
 
 
50
 
public slots:
51
 
  void setText( const QString & );
52
 
 
53
 
protected:
54
 
  int m_defaultWidth;
55
 
 
56
 
protected:
57
 
  virtual void virtual_hook( int id, void* data );
58
 
private:
59
 
  class KRichTextLabelPrivate;
60
 
  KRichTextLabelPrivate *d;
61
 
};
62
 
 
63
 
#endif // KRICHTEXTLABEL_H