We hate uninitialized values
[quassel.git] / src / uisupport / styledlabel.h
1 /***************************************************************************
2  *   Copyright (C) 2005-09 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef STYLEDLABEL_H
22 #define STYLEDLABEL_H
23
24 #include <QFrame>
25
26 #include "clickable.h"
27 #include "uistyle.h"
28
29 class StyledLabel : public QFrame {
30   Q_OBJECT
31
32 public:
33   enum ResizeMode {
34     NoResize,
35     DynamicResize,
36     ResizeOnHover
37   };
38
39   StyledLabel(QWidget *parent = 0);
40
41   void setText(const QString &text);
42   void setCustomFont(const QFont &font);
43
44   virtual QSize sizeHint() const;
45   //virtual QSize minimumSizeHint() const;
46
47   inline QTextOption::WrapMode wrapMode() const { return _wrapMode; }
48   void setWrapMode(QTextOption::WrapMode mode);
49
50   inline Qt::Alignment alignment() const { return _alignment; }
51   void setAlignment(Qt::Alignment alignment);
52
53   inline bool toolTipEnabled() const { return _toolTipEnabled; }
54   void setToolTipEnabled(bool);
55
56   inline ResizeMode resizeMode() const { return _resizeMode; }
57   void setResizeMode(ResizeMode);
58
59 signals:
60   void clickableActivated(const Clickable &click);
61
62 protected:
63   virtual void paintEvent(QPaintEvent *event);
64   virtual void resizeEvent(QResizeEvent *event);
65   virtual void enterEvent(QEvent *);
66   virtual void leaveEvent(QEvent *);
67   virtual void mouseMoveEvent(QMouseEvent *event);
68   virtual void mousePressEvent(QMouseEvent *event);
69
70   int posToCursor(const QPointF &pos);
71
72 private:
73   QSize _sizeHint;
74   QTextOption::WrapMode _wrapMode;
75   Qt::Alignment _alignment;
76   QTextLayout _layout;
77   ClickableList _clickables;
78   bool _toolTipEnabled;
79   ResizeMode _resizeMode;
80
81   QList<QTextLayout::FormatRange> _layoutList;
82   QVector<QTextLayout::FormatRange> _extraLayoutList;
83
84   void layout();
85   void updateSizeHint();
86   void updateToolTip();
87
88   void setHoverMode(int start, int length);
89   void endHoverMode();
90 };
91
92 #endif