Fixed minimum frequency on power kernels.
[qcpufreq] / src / mainwindow.h
1 /*
2  * QCPUFreq - a simple cpufreq GUI
3  * Copyright (C) 2010 Daniel Klaffenbach <daniel.klaffenbach@cs.tu-chemnitz.de>
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #ifndef MAINWINDOW_H
20 #define MAINWINDOW_H
21
22 #include <QMainWindow>
23 #include <QGraphicsScene>
24 #include <QTimer>
25 #include <QProcess>
26
27 #include "helpwindow.h"
28
29 namespace Ui {
30     class MainWindow;
31 }
32
33 class MainWindow : public QMainWindow
34 {
35     Q_OBJECT
36
37 public:
38     explicit MainWindow(QWidget *parent = 0);
39     ~MainWindow();
40
41 public slots:
42     void about();
43     void adjustFreq();
44     void orientationChanged();
45     void refresh();
46     void setAutoRotation();
47     void setSmartReflex();
48     void showHelp();
49
50
51 private:
52     Ui::MainWindow *ui;
53     int callHelper( QString action, QString param );
54     QString getCPUTemp();
55     int getMaxFreq();
56     int getMinFreq();
57     int getScalingFreq( int step );
58     QString getScalingGovernor();
59     int getScalingStep( int freq );
60     int getScalingSteps();
61     int getSmartReflexState();
62     //! The helper process
63     QProcess helperProcess;
64     //! The help window
65     HelpWindow helpWindow;
66     int minFreq;
67     QString readSysFile( QString sys_file );
68     //! the timer for refreshing the UI
69     QTimer refreshTimer;
70     //! the QGraphicsScene will contain the large chip icon displayed in the UI
71     QGraphicsScene scene;
72     bool showSudoError;
73     bool usePortrait();
74 };
75
76 #endif // MAINWINDOW_H