summaryrefslogtreecommitdiffstats
path: root/src/widget/wlabel.h
blob: d5459cc4355b5bbf3eedadaefee13ea7ba2fe921 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/***************************************************************************
                          wlabel.h  -  description
                             -------------------
    begin                : Wed Jan 5 2005
    copyright            : (C) 2003 by Tue Haste Andersen
    email                : haste@diku.dk
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef WLABEL_H
#define WLABEL_H

#include <QLabel>

#include "widget/wwidget.h"

/**
  *@author Tue Haste Andersen
  */
class WLabel : public WWidget {
    Q_OBJECT
  public:
    WLabel(QWidget *parent=0);
    virtual ~WLabel();

    void setup(QDomNode node);
    virtual QWidget* getComposedWidget() { return m_pLabel; }

  protected:
    QLabel *m_pLabel;
    QString m_qsText;
    /** Foreground and background colors */
    QColor m_qFgColor, m_qBgColor;
};

#endif