920f6a5882802451e59409f77f82dedf4f312086
[qcpufreq] / src / mainwindow.h
1 /*
2  * QCPUFreq - a simple cpufreq GUI
3  * Copyright (C) 2010 Daniel Klaffenbach <danielklaffenbach@gmail.com>
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 #include "settings.h"
30
31 namespace Ui {
32     class MainWindow;
33 }
34
35 class MainWindow : public QMainWindow
36 {
37     Q_OBJECT
38
39 public:
40     explicit MainWindow(QWidget *parent = 0);
41     ~MainWindow();
42
43 public slots:
44     void about();
45     void adjustFreq();
46     void applySettings();
47     void loadPreset();
48     void orientationChanged();
49     void refresh();
50     void save();
51     void setAdvancedTemperature();
52     void setAutoRotation();
53     void setSmartReflex();
54     void showHelp();
55     void showSettings();
56
57
58 private:
59     Ui::MainWindow *ui;
60     int callHelper( QString action, QString param );
61     QString getCPUTemp();
62     int getMaxFreq();
63     int getMinFreq();
64     int getScalingFreq( int step );
65     QString getScalingGovernor();
66     int getScalingStep( int freq );
67     int getScalingSteps();
68     int getSmartReflexState();
69     //! The helper process
70     QProcess helperProcess;
71     //! The help window
72     HelpWindow helpWindow;
73     //! Initializes the application
74     void init();
75     int minFreq;
76     QString readSysFile( QString sys_file );
77     //! the timer for refreshing the UI
78     QTimer refreshTimer;
79     //! The amount of scaling steps
80     int scalingSteps;
81     //! The available scaling frequencies
82     QStringList scalingFrequencies;
83     //! the QGraphicsScene will contain the large chip icon displayed in the UI
84     QGraphicsScene scene;
85     bool showSudoError;
86     Settings *settings;
87     bool usePortrait();
88 };
89
90 #endif // MAINWINDOW_H