/***************************************************************************
dpms.h - description
-------------------
version :
begin : Fri Feb 5 1999
copyright : (C) 1999 by Didier Gaudin
email : gaudin@club-internet?fr
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#ifndef DPMS_H
#define DPMS_H
#include <qwidget.h>
#include <qcheckbox.h>
#include <qspinbox.h>
#include <qlabel.h>
/**
*@author Didier Gaudin
*/
class Dpms : public QWidget {
Q_OBJECT
public:
Dpms(QWidget *parent=NULL, const char *name=NULL);
~Dpms();
QCheckBox *ChkDpms;
QSpinBox * SpinSuspend,* SpinStandby, *SpinOff;
void writeconfig();
protected:
QLabel * LabelSuspend, *LabelSusMin;
QLabel * LabelStandby, *LabelStaMin;
QLabel * LabelOff, * LabelOffMin;
private slots:
void slotdpmsActive(bool);
};
#endif
Documentation generated by root@vmdiduz on sam fév 13 15:30:42 CET 1999