kmilo
kmilod.h
Go to the documentation of this file.00001 // -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: t; tab-width: 2; -*- 00002 /* 00003 This file is part of the KDE project 00004 00005 Copyright (c) 2003 George Staikos <staikos@kde.org> 00006 00007 This library is free software; you can redistribute it and/or 00008 modify it under the terms of the GNU Library General Public 00009 License as published by the Free Software Foundation; either 00010 version 2 of the License, or (at your option) any later version. 00011 00012 This library is distributed in the hope that it will be useful, 00013 but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00015 Library General Public License for more details. 00016 00017 You should have received a copy of the GNU Library General Public License 00018 along with this library; see the file COPYING.LIB. If not, write to 00019 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00020 Boston, MA 02110-1301, USA. 00021 00022 */ 00023 #ifndef _KMILOD_H_ 00024 #define _KMILOD_H_ 00025 00026 #include <kdedmodule.h> 00027 00028 #include <QTimer> 00029 #include <QList> 00030 //Added by qt3to4: 00031 #include <QPixmap> 00032 #include "monitor.h" 00033 #include "displayskin.h" 00034 00035 namespace KMilo { 00036 00037 class KMiloInterface; 00038 00039 class KMiloD : public KDEDModule { 00040 Q_OBJECT 00041 public: 00042 KMiloD(QObject* parent, const QList<QVariant>&); 00043 virtual ~KMiloD(); 00044 void displayProgress(const QString& text, int progress, const QPixmap& customPixmap ); 00045 void displayText(const QString& text, const QPixmap& customPixmap); 00046 public slots: 00047 void setEnabled(bool enabled); 00048 void enable(); 00049 void disable(); 00050 bool enabled() const; 00051 int pollMilliSeconds() const; 00052 bool setPollMilliSeconds(int ms); 00053 00054 void displayText(const QString& text); 00055 void displayText(const QString& text, const QByteArray& customPixmap); 00056 void displayProgress(const QString& text, int progress, const QByteArray& customPixmap); 00057 void displayProgress(const QString& text, int progress); 00058 00059 void reconfigure(); 00060 00061 private slots: 00062 virtual void doTimer(); 00063 00064 private: 00065 QTimer _timer; 00066 int _interval; 00067 QList<Monitor*> _monitors; 00068 DisplaySkin *_display; 00069 KMiloInterface *_miface; 00070 }; 00071 00072 } 00073 00074 #endif
KDE 4.0 API Reference