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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
/*************************************************************************
StatusWidget.cpp - little widget with status icons
-------------------
begin : Sat Apr 15 2006
copyright : (C) 2006 by Thomas Eschenbacher
email : Thomas.Eschenbacher@gmx.de
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#include "config.h"
#include <QPainter>
#include <QPixmap>
#include "libkwave/Utils.h"
#include "StatusWidget.h"
//***************************************************************************
Kwave::StatusWidget::StatusWidget(QWidget *parent)
:QWidget(parent), m_pixmaps(), m_index(0), m_timer()
{
connect(&m_timer, SIGNAL(timeout()),
this, SLOT(nextPixmap()));
}
//***************************************************************************
Kwave::StatusWidget::~StatusWidget()
{
m_timer.stop();
m_pixmaps.clear();
}
//***************************************************************************
void Kwave::StatusWidget::paintEvent(QPaintEvent *)
{
if (!m_pixmaps.count()) return;
QPixmap pixmap = m_pixmaps.at(m_index);
const int ww = width();
const int wh = height();
const int pw = pixmap.width();
const int ph = pixmap.height();
QPainter p(this);
p.drawPixmap((ww - pw) >> 1, (wh - ph) >> 1, pixmap);
}
//***************************************************************************
void Kwave::StatusWidget::setPixmaps(const QVector<QPixmap> &pixmaps,
unsigned int speed)
{
m_timer.stop();
m_pixmaps.clear();
m_pixmaps = pixmaps;
m_index = 0;
repaint();
m_timer.setSingleShot(false);
m_timer.setInterval(speed);
if (m_pixmaps.count() > 1) m_timer.start();
}
//***************************************************************************
void Kwave::StatusWidget::nextPixmap()
{
m_index++;
if (Kwave::toInt(m_index) >= m_pixmaps.count())
m_index = 0;
repaint();
}
//***************************************************************************
//***************************************************************************
#include "moc_StatusWidget.cpp"
|