6dc82c6aefbf263f4d07906a1850c11acd477376
[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 orientationChanged();
47     void refresh();
48     void setAutoRotation();
49     void setSmartReflex();
50     void showHelp();
51     void showSettings();
52
53
54 private:
55     Ui::MainWindow *ui;
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     QString readSysFile( QString sys_file );
73     //! the timer for refreshing the UI
74     QTimer refreshTimer;
75     //! The amount of scaling steps
76     int scalingSteps;
77     //! The available scaling frequencies
78     QStringList scalingFrequencies;
79     //! the QGraphicsScene will contain the large chip icon displayed in the UI
80     QGraphicsScene scene;
81     bool showSudoError;
82     Settings settings;
83     bool usePortrait();
84 };
85
86 #endif // MAINWINDOW_H