Fix slider on PR 1.3
[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 #include <QStringList>
27
28 #include "helpwindow.h"
29
30 namespace Ui {
31     class MainWindow;
32 }
33
34 class MainWindow : public QMainWindow
35 {
36     Q_OBJECT
37
38 public:
39     explicit MainWindow(QWidget *parent = 0);
40     ~MainWindow();
41
42 public slots:
43     void about();
44     void adjustFreq();
45     void orientationChanged();
46     void refresh();
47     void setAutoRotation();
48     void setOverclocking();
49     void setSmartReflex();
50     void showHelp();
51
52
53 private:
54     Ui::MainWindow *ui;
55     bool allowOverclocking;
56     int callHelper( QString action, QString param );
57     QString getCPUTemp();
58     int getMaxFreq();
59     int getMinFreq();
60     int getScalingFreq( int step );
61     QString getScalingGovernor();
62     int getScalingStep( int freq );
63     int getScalingSteps();
64     int getSmartReflexState();
65     //! The helper process
66     QProcess helperProcess;
67     //! The help window
68     HelpWindow helpWindow;
69     //! Initializes the application
70     void init();
71     int minFreq;
72     //! Are we using a power kernel?
73     bool powerKernel;
74     QString readSysFile( QString sys_file );
75     //! the timer for refreshing the UI
76     QTimer refreshTimer;
77     //! The amount of scaling steps
78     int scalingSteps;
79     //! The available scaling frequencies
80     QStringList scalingFrequencies;
81     //! the QGraphicsScene will contain the large chip icon displayed in the UI
82     QGraphicsScene scene;
83     bool showSudoError;
84     bool usePortrait();
85 };
86
87 #endif // MAINWINDOW_H