chasewidget.cpp
上传用户:huahtool
上传日期:2015-12-10
资源大小:1089k
文件大小:4k
源码类别:

浏览器

开发平台:

Visual C++

  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 demonstration applications 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. #include "chasewidget.h"
  38. #include <QtCore/QPoint>
  39. #include <QtGui/QApplication>
  40. #include <QtGui/QHideEvent>
  41. #include <QtGui/QPainter>
  42. #include <QtGui/QPaintEvent>
  43. #include <QtGui/QShowEvent>
  44. ChaseWidget::ChaseWidget(QWidget *parent, QPixmap pixmap, bool pixmapEnabled)
  45.     : QWidget(parent)
  46.     , m_segment(0)
  47.     , m_delay(100)
  48.     , m_step(40)
  49.     , m_timerId(-1)
  50.     , m_animated(false)
  51.     , m_pixmap(pixmap)
  52.     , m_pixmapEnabled(pixmapEnabled)
  53. {
  54. }
  55. void ChaseWidget::setAnimated(bool value)
  56. {
  57.     if (m_animated == value)
  58.         return;
  59.     m_animated = value;
  60.     if (m_timerId != -1) {
  61.         killTimer(m_timerId);
  62.         m_timerId = -1;
  63.     }
  64.     if (m_animated) {
  65.         m_segment = 0;
  66.         m_timerId = startTimer(m_delay);
  67.     }
  68.     update();
  69. }
  70. void ChaseWidget::paintEvent(QPaintEvent *event)
  71. {
  72.     Q_UNUSED(event);
  73.     QPainter p(this);
  74.     if (m_pixmapEnabled && !m_pixmap.isNull()) {
  75.         p.drawPixmap(0, 0, m_pixmap);
  76.         return;
  77.     }
  78.     const int extent = qMin(width() - 8, height() - 8);
  79.     const int displ = extent / 4;
  80.     const int ext = extent / 4 - 1;
  81.     p.setRenderHint(QPainter::Antialiasing, true);
  82.     if(m_animated)
  83.         p.setPen(Qt::gray);
  84.     else
  85.         p.setPen(QPen(palette().dark().color()));
  86.     p.translate(width() / 2, height() / 2); // center
  87.     for (int segment = 0; segment < segmentCount(); ++segment) {
  88.         p.rotate(QApplication::isRightToLeft() ? m_step : -m_step);
  89.         if(m_animated)
  90.             p.setBrush(colorForSegment(segment));
  91.         else
  92.             p.setBrush(palette().background());
  93.         p.drawEllipse(QRect(displ, -ext / 2, ext, ext));
  94.     }
  95. }
  96. QSize ChaseWidget::sizeHint() const
  97. {
  98.     return QSize(32, 32);
  99. }
  100. void ChaseWidget::timerEvent(QTimerEvent *event)
  101. {
  102.     if (event->timerId() == m_timerId) {
  103.         ++m_segment;
  104.         update();
  105.     }
  106.     QWidget::timerEvent(event);
  107. }
  108. QColor ChaseWidget::colorForSegment(int seg) const
  109. {
  110.     int index = ((seg + m_segment) % segmentCount());
  111.     int comp = qMax(0, 255 - (index * (255 / segmentCount())));
  112.     return QColor(comp, comp, comp, 255);
  113. }
  114. int ChaseWidget::segmentCount() const
  115. {
  116.     return 360 / m_step;
  117. }
  118. void ChaseWidget::setPixmapEnabled(bool enable)
  119. {
  120.     m_pixmapEnabled = enable;
  121. }