Make a branch to make krunner Good Enough For Aaron™.
[kdebase/uwolfer.git] / workspace / ksysguard / gui / SensorDisplayLib / SensorLoggerDlg.h
blobd497bd8ef3e263c5f3a52414c37da4f2c076ab8d
1 /* This file is part of the KDE project
2 Copyright ( C ) 2003 Nadeem Hasan <nhasan@kde.org>
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or ( at your option ) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; see the file COPYING. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
21 #ifndef SENSORLOGGERDLG_H
22 #define SENSORLOGGERDLG_H
24 #include <kdialog.h>
27 #include <QColor>
29 class Ui_SensorLoggerDlgWidget;
31 class SensorLoggerDlg : public KDialog
33 Q_OBJECT
35 public:
37 explicit SensorLoggerDlg( QWidget *parent=0, const char *name=0 );
38 ~SensorLoggerDlg();
40 QString fileName() const;
41 int timerInterval() const;
42 bool lowerLimitActive() const;
43 bool upperLimitActive() const;
44 double lowerLimit() const;
45 double upperLimit() const;
47 void setFileName( const QString & );
48 void setTimerInterval( int );
49 void setLowerLimitActive( bool );
50 void setUpperLimitActive( bool );
51 void setLowerLimit( double );
52 void setUpperLimit( double );
54 private:
56 Ui_SensorLoggerDlgWidget *m_loggerWidget;
59 #endif // SENSORLOGGERDLG_H
61 /* vim: et sw=2 ts=2