qabstractbutton.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 QABSTRACTBUTTON_H
  38. #define QABSTRACTBUTTON_H
  39. #include <QtGui/qicon.h>
  40. #include <QtGui/qkeysequence.h>
  41. #include <QtGui/qwidget.h>
  42. QT_BEGIN_HEADER
  43. QT_BEGIN_NAMESPACE
  44. QT_MODULE(Gui)
  45. class QButtonGroup;
  46. class QAbstractButtonPrivate;
  47. class Q_GUI_EXPORT QAbstractButton : public QWidget
  48. {
  49.     Q_OBJECT
  50.     Q_PROPERTY(QString text READ text WRITE setText)
  51.     Q_PROPERTY(QIcon icon READ icon WRITE setIcon)
  52.     Q_PROPERTY(QSize iconSize READ iconSize WRITE setIconSize)
  53. #ifndef QT_NO_SHORTCUT
  54.     Q_PROPERTY(QKeySequence shortcut READ shortcut WRITE setShortcut)
  55. #endif
  56.     Q_PROPERTY(bool checkable READ isCheckable WRITE setCheckable)
  57.     Q_PROPERTY(bool checked READ isChecked WRITE setChecked DESIGNABLE isCheckable NOTIFY toggled USER true)
  58.     Q_PROPERTY(bool autoRepeat READ autoRepeat WRITE setAutoRepeat)
  59.     Q_PROPERTY(bool autoExclusive READ autoExclusive WRITE setAutoExclusive)
  60.     Q_PROPERTY(int autoRepeatDelay READ autoRepeatDelay WRITE setAutoRepeatDelay)
  61.     Q_PROPERTY(int autoRepeatInterval READ autoRepeatInterval WRITE setAutoRepeatInterval)
  62.     Q_PROPERTY(bool down READ isDown WRITE setDown DESIGNABLE false)
  63. public:
  64.     explicit QAbstractButton(QWidget* parent=0);
  65.     ~QAbstractButton();
  66.     void setText(const QString &text);
  67.     QString text() const;
  68.     void setIcon(const QIcon &icon);
  69.     QIcon icon() const;
  70.     QSize iconSize() const;
  71. #ifndef QT_NO_SHORTCUT
  72.     void setShortcut(const QKeySequence &key);
  73.     QKeySequence shortcut() const;
  74. #endif
  75.     void setCheckable(bool);
  76.     bool isCheckable() const;
  77.     bool isChecked() const;
  78.     void setDown(bool);
  79.     bool isDown() const;
  80.     void setAutoRepeat(bool);
  81.     bool autoRepeat() const;
  82.     void setAutoRepeatDelay(int);
  83.     int autoRepeatDelay() const;
  84.     void setAutoRepeatInterval(int);
  85.     int autoRepeatInterval() const;
  86.     void setAutoExclusive(bool);
  87.     bool autoExclusive() const;
  88. #ifndef QT_NO_BUTTONGROUP
  89.     QButtonGroup *group() const;
  90. #endif
  91. public Q_SLOTS:
  92.     void setIconSize(const QSize &size);
  93.     void animateClick(int msec = 100);
  94.     void click();
  95.     void toggle();
  96.     void setChecked(bool);
  97. Q_SIGNALS:
  98.     void pressed();
  99.     void released();
  100.     void clicked(bool checked = false);
  101.     void toggled(bool checked);
  102. protected:
  103.     virtual void paintEvent(QPaintEvent *e) = 0;
  104.     virtual bool hitButton(const QPoint &pos) const;
  105.     virtual void checkStateSet();
  106.     virtual void nextCheckState();
  107.     bool event(QEvent *e);
  108.     void keyPressEvent(QKeyEvent *e);
  109.     void keyReleaseEvent(QKeyEvent *e);
  110.     void mousePressEvent(QMouseEvent *e);
  111.     void mouseReleaseEvent(QMouseEvent *e);
  112.     void mouseMoveEvent(QMouseEvent *e);
  113.     void focusInEvent(QFocusEvent *e);
  114.     void focusOutEvent(QFocusEvent *e);
  115.     void changeEvent(QEvent *e);
  116.     void timerEvent(QTimerEvent *e);
  117. #ifdef QT3_SUPPORT
  118. public:
  119.     QT3_SUPPORT_CONSTRUCTOR QAbstractButton(QWidget *parent, const char *name, Qt::WindowFlags f=0);
  120.     inline QT3_SUPPORT bool isOn() const { return isChecked(); }
  121.     inline QT3_SUPPORT const QPixmap *pixmap() const { return 0; } // help styles compile
  122.     inline QT3_SUPPORT void setPixmap( const QPixmap &p ) {
  123.         setIcon(QIcon(p));
  124.         setIconSize(p.size());
  125.     }
  126.     QT3_SUPPORT QIcon *iconSet() const;
  127.     inline QT3_SUPPORT void setIconSet(const QIcon &icon) { setIcon(icon); }
  128.     inline QT3_SUPPORT bool isToggleButton() const { return isCheckable(); }
  129.     inline QT3_SUPPORT void setToggleButton(bool b) { setCheckable(b); }
  130.     inline QT3_SUPPORT void setAccel(const QKeySequence &key) { setShortcut(key); }
  131.     inline QT3_SUPPORT QKeySequence accel() const { return shortcut(); }
  132. public Q_SLOTS:
  133.     inline QT_MOC_COMPAT void setOn(bool b) { setChecked(b); }
  134. #endif
  135. protected:
  136.     QAbstractButton(QAbstractButtonPrivate &dd, QWidget* parent = 0);
  137. private:
  138.     Q_DECLARE_PRIVATE(QAbstractButton)
  139.     Q_DISABLE_COPY(QAbstractButton)
  140.     friend class QButtonGroup;
  141. };
  142. QT_END_NAMESPACE
  143. QT_END_HEADER
  144. #endif // QABSTRACTBUTTON_H