qlabel.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:6k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef QLABEL_H
  38. #define QLABEL_H
  39. #include <QtGui/qframe.h>
  40. QT_BEGIN_HEADER
  41. QT_BEGIN_NAMESPACE
  42. QT_MODULE(Gui)
  43. class QLabelPrivate;
  44. class Q_GUI_EXPORT QLabel : public QFrame
  45. {
  46.     Q_OBJECT
  47.     Q_PROPERTY(QString text READ text WRITE setText)
  48.     Q_PROPERTY(Qt::TextFormat textFormat READ textFormat WRITE setTextFormat)
  49.     Q_PROPERTY(QPixmap pixmap READ pixmap WRITE setPixmap)
  50.     Q_PROPERTY(bool scaledContents READ hasScaledContents WRITE setScaledContents)
  51.     Q_PROPERTY(Qt::Alignment alignment READ alignment WRITE setAlignment)
  52.     Q_PROPERTY(bool wordWrap READ wordWrap WRITE setWordWrap)
  53.     Q_PROPERTY(int margin READ margin WRITE setMargin)
  54.     Q_PROPERTY(int indent READ indent WRITE setIndent)
  55.     Q_PROPERTY(bool openExternalLinks READ openExternalLinks WRITE setOpenExternalLinks)
  56.     Q_PROPERTY(Qt::TextInteractionFlags textInteractionFlags READ textInteractionFlags WRITE setTextInteractionFlags)
  57. public:
  58.     explicit QLabel(QWidget *parent=0, Qt::WindowFlags f=0);
  59.     explicit QLabel(const QString &text, QWidget *parent=0, Qt::WindowFlags f=0);
  60.     ~QLabel();
  61.     QString text() const;
  62.     const QPixmap *pixmap() const;
  63. #ifndef QT_NO_PICTURE
  64.     const QPicture *picture() const;
  65. #endif
  66. #ifndef QT_NO_MOVIE
  67.     QMovie *movie() const;
  68. #endif
  69.     Qt::TextFormat textFormat() const;
  70.     void setTextFormat(Qt::TextFormat);
  71.     Qt::Alignment alignment() const;
  72.     void setAlignment(Qt::Alignment);
  73.     void setWordWrap(bool on);
  74.     bool wordWrap() const;
  75.     int indent() const;
  76.     void setIndent(int);
  77.     int margin() const;
  78.     void setMargin(int);
  79.     bool hasScaledContents() const;
  80.     void setScaledContents(bool);
  81.     QSize sizeHint() const;
  82.     QSize minimumSizeHint() const;
  83. #ifndef QT_NO_SHORTCUT
  84.     void setBuddy(QWidget *);
  85.     QWidget *buddy() const;
  86. #endif
  87.     int heightForWidth(int) const;
  88.     bool openExternalLinks() const;
  89.     void setOpenExternalLinks(bool open);
  90.     void setTextInteractionFlags(Qt::TextInteractionFlags flags);
  91.     Qt::TextInteractionFlags textInteractionFlags() const;
  92. public Q_SLOTS:
  93.     void setText(const QString &);
  94.     void setPixmap(const QPixmap &);
  95. #ifndef QT_NO_PICTURE
  96.     void setPicture(const QPicture &);
  97. #endif
  98. #ifndef QT_NO_MOVIE
  99.     void setMovie(QMovie *movie);
  100. #endif
  101.     void setNum(int);
  102.     void setNum(double);
  103.     void clear();
  104. Q_SIGNALS:
  105.     void linkActivated(const QString& link);
  106.     void linkHovered(const QString& link);
  107. protected:
  108.     bool event(QEvent *e);
  109.     void keyPressEvent(QKeyEvent *ev);
  110.     void paintEvent(QPaintEvent *);
  111.     void changeEvent(QEvent *);
  112.     void mousePressEvent(QMouseEvent *ev);
  113.     void mouseMoveEvent(QMouseEvent *ev);
  114.     void mouseReleaseEvent(QMouseEvent *ev);
  115.     void contextMenuEvent(QContextMenuEvent *ev);
  116.     void focusInEvent(QFocusEvent *ev);
  117.     void focusOutEvent(QFocusEvent *ev);
  118.     bool focusNextPrevChild(bool next);
  119. #ifdef QT3_SUPPORT
  120. public:
  121.     QT3_SUPPORT_CONSTRUCTOR QLabel(QWidget *parent, const char* name, Qt::WindowFlags f=0);
  122.     QT3_SUPPORT_CONSTRUCTOR QLabel(const QString &text, QWidget *parent, const char* name,
  123.            Qt::WindowFlags f=0);
  124.     QT3_SUPPORT_CONSTRUCTOR QLabel(QWidget *buddy, const QString &,
  125.            QWidget *parent=0, const char* name=0, Qt::WindowFlags f=0);
  126.     QT3_SUPPORT void setAlignment(int alignment);
  127.     // don't mark the next function with QT3_SUPPORT
  128.     inline void setAlignment(Qt::AlignmentFlag flag) { setAlignment((Qt::Alignment)flag); }
  129. #endif
  130. private:
  131.     Q_DISABLE_COPY(QLabel)
  132.     Q_DECLARE_PRIVATE(QLabel)
  133. #ifndef QT_NO_MOVIE
  134.     Q_PRIVATE_SLOT(d_func(), void _q_movieUpdated(const QRect&))
  135.     Q_PRIVATE_SLOT(d_func(), void _q_movieResized(const QSize&))
  136. #endif
  137.     Q_PRIVATE_SLOT(d_func(), void _q_linkHovered(const QString &))
  138.     friend class QTipLabel;
  139.     friend class QMessageBoxPrivate;
  140.     friend class QBalloonTip;
  141. };
  142. QT_END_NAMESPACE
  143. QT_END_HEADER
  144. #endif // QLABEL_H