genode/repos/libports/src/app/qt5/qt_launchpad/kbyte_loadbar.h

31 lines
531 B
C++

/*
* \brief KByte loadbar interface
* \author Christian Prochaska
* \date 2008-04-05
*/
/*
* Copyright (C) 2008-2013 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
#ifndef KBYTE_LOADBAR_H
#define KBYTE_LOADBAR_H
#include <QProgressBar>
class Kbyte_loadbar : public QProgressBar
{
Q_OBJECT
public:
Kbyte_loadbar(QWidget *parent = 0);
virtual QString text() const;
};
#endif /* KBYTE_LOADBAR_H */