aae3b9da9f1a9c7d10e61e8294aa881faf79e8ac
[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 orientationChanged();
48     void refresh();
49     void save();
50     void setAdvancedTemperature();
51     void setAutoRotation();
52     void setSmartReflex();
53     void showHelp();
54     void showSettings();
55
56
57 private:
58     Ui::MainWindow *ui;
59     int callHelper( QString action, QString param );
60     QString getCPUTemp();
61     int getMaxFreq();
62     int getMinFreq();
63     int getScalingFreq( int step );
64     QString getScalingGovernor();
65     int getScalingStep( int freq );
66     int getScalingSteps();
67     int getSmartReflexState();
68     //! The helper process
69     QProcess helperProcess;
70     //! The help window
71     HelpWindow helpWindow;
72     //! Initializes the application
73     void init();
74     int minFreq;
75     QString readSysFile( QString sys_file );
76     //! the timer for refreshing the UI
77     QTimer refreshTimer;
78     //! The amount of scaling steps
79     int scalingSteps;
80     //! The available scaling frequencies
81     QStringList scalingFrequencies;
82     //! the QGraphicsScene will contain the large chip icon displayed in the UI
83     QGraphicsScene scene;
84     bool showSudoError;
85     Settings *settings;
86     bool usePortrait();
87 };
88
89 #endif // MAINWINDOW_H