dd2d172fbb10c016f8afe4f0e38f4d75a0a93015
[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 #include "settingswidget.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 setOverclocking();
50     void setSmartReflex();
51     void showHelp();
52     void showSettings();
53
54
55 private:
56     Ui::MainWindow *ui;
57     bool allowOverclocking;
58     int callHelper( QString action, QString param );
59     QString getCPUTemp();
60     int getMaxFreq();
61     int getMinFreq();
62     int getScalingFreq( int step );
63     QString getScalingGovernor();
64     int getScalingStep( int freq );
65     int getScalingSteps();
66     int getSmartReflexState();
67     //! The helper process
68     QProcess helperProcess;
69     //! The help window
70     HelpWindow helpWindow;
71     //! Initializes the application
72     void init();
73     int minFreq;
74     //! Are we using a power kernel?
75     bool powerKernel;
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     SettingsWidget settings;
87     bool usePortrait();
88 };
89
90 #endif // MAINWINDOW_H