You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.4 KiB
67 lines
1.4 KiB
/*
|
|
This file declares the KVaio module for KMilo.
|
|
|
|
$ Author: Mirko Boehm $
|
|
$ Copyright: (C) 1996-2003, Mirko Boehm $
|
|
$ Contact: mirko@kde.org
|
|
http://www.kde.org
|
|
http://www.hackerbuero.org $
|
|
$ License: LGPL with the following explicit clarification:
|
|
This code may be linked against any version of the TQt toolkit
|
|
from Troll Tech, Norway. $
|
|
|
|
$Id$
|
|
|
|
* Portions of this code are
|
|
* (C) 2001-2002 Stelian Pop <stelian@popies.net> and
|
|
* (C) 2001-2002 Alcove <www.alcove.com>.
|
|
* Thanks to Stelian for the implementation of the sonypi driver.
|
|
*/
|
|
|
|
#ifndef _KMILO_KVAIO_H_
|
|
#define _KMILO_KVAIO_H_
|
|
|
|
#include <tdemainwindow.h>
|
|
#include <kglobalaccel.h>
|
|
#include <dcopref.h>
|
|
#include <tdeapplication.h>
|
|
|
|
#include "kmilod.h"
|
|
#include "monitor.h"
|
|
#include "kmilointerface.h"
|
|
|
|
class KVaio;
|
|
|
|
class KMiloKVaio : public KMilo::Monitor {
|
|
// TQ_OBJECT
|
|
|
|
|
|
public:
|
|
KMiloKVaio(TQObject *parent,
|
|
const char *name, const TQStringList&);
|
|
virtual ~KMiloKVaio();
|
|
|
|
virtual bool init();
|
|
virtual DisplayType poll();
|
|
virtual int progress() const;
|
|
|
|
virtual void reconfigure(TDEConfig*);
|
|
|
|
|
|
bool showTextMsg(const TQString& msg) {
|
|
_interface->displayText(msg);
|
|
return true;
|
|
}
|
|
bool showProgressMsg(const TQString& msg, int progress) {
|
|
_interface->displayProgress(msg,progress);
|
|
return true;
|
|
}
|
|
|
|
private:
|
|
KVaio *m_kvaio;
|
|
Monitor::DisplayType m_displayType;
|
|
};
|
|
|
|
|
|
#endif
|