New release: 0.4.4
[qcpufreq] / src / mainwindow.cpp
index fd09327..cb396ca 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * QCPUFreq - a simple cpufreq GUI
- * Copyright (C) 2010 Daniel Klaffenbach <danielklaffenbach@gmail.com>
+ * Copyright (C) 2010-11 Daniel Klaffenbach <danielklaffenbach@gmail.com>
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -28,7 +28,7 @@
 #endif
 
 #define APPNAME "QCPUFreq"
-#define APPVERSION "0.4.1"
+#define APPVERSION "0.4.4"
 
 
 MainWindow::MainWindow(QWidget *parent) :
@@ -54,7 +54,21 @@ MainWindow::MainWindow(QWidget *parent) :
     settings = new Settings;
     settings->hide();
 
-    init();
+    //load preset dialog
+    loadPresetDialog = new LoadPreset;
+    loadPresetDialog->hide();
+
+    //enable save and load option on power kernels
+    if (settings->usePowerKernel() && settings->isKernelConfigInstalled()) {
+        ui->actionSave->setEnabled(true);
+        //loading presets may cause overclocking - only enable it if overclokcing is enabled
+        if (settings->useOverclocking()) {
+            ui->actionLoad->setEnabled(true);
+        }
+    }
+
+    //display the correct minimum frequency
+    calculateMinFreq();
 
     //applies the settings from the settings dialog
     applySettings();
@@ -77,19 +91,22 @@ MainWindow::MainWindow(QWidget *parent) :
     //connect signals and slots
     connect(ui->actionHelp, SIGNAL(triggered()), this, SLOT(showHelp()));
     connect( ui->actionAbout, SIGNAL(triggered()), this, SLOT(about()) );
-    connect( ui->freq_adjust, SIGNAL(valueChanged(int)), this, SLOT(adjustFreq()) );
+    connect( ui->freq_adjust, SIGNAL(sliderReleased()), this, SLOT(adjustFreq()) );
+    connect(ui->freq_adjust, SIGNAL(valueChanged(int)), this, SLOT(showTemporaryMaxFreq()));
     connect(QApplication::desktop(), SIGNAL(resized(int)), this, SLOT(orientationChanged()));
     connect(ui->sr_box, SIGNAL(clicked()), this, SLOT(setSmartReflex()));
     connect(&refreshTimer, SIGNAL(timeout()), this, SLOT(refresh()));
     connect(ui->actionSave, SIGNAL(triggered()), this, SLOT(save()));
-    connect(ui->actionLoad, SIGNAL(triggered()), this, SLOT(loadPreset()));
+    connect(ui->actionLoad, SIGNAL(triggered()), loadPresetDialog, SLOT(show()));
     connect(ui->actionSettings, SIGNAL(triggered()), this, SLOT(showSettings()));
     connect(settings, SIGNAL(settingsChanged()), this, SLOT(applySettings()));
+    connect(loadPresetDialog, SIGNAL(load(QString)), this, SLOT(loadPreset(QString)));
 
 }
 
 MainWindow::~MainWindow()
 {
+    delete loadPresetDialog;
     delete settings;
     delete ui;
 }
@@ -100,7 +117,7 @@ MainWindow::~MainWindow()
   */
 void MainWindow::about()
 {
-    QMessageBox::about(this, APPNAME " " APPVERSION, "<p style=\"align:center;\">&copy; 2010 Daniel Klaffenbach</p>" );
+    QMessageBox::about(this, APPNAME " " APPVERSION, "<p style=\"align:center;\">&copy; 2011 Daniel Klaffenbach</p>" );
     refresh();
 }
 
@@ -140,9 +157,28 @@ void MainWindow::adjustFreq()
         max = "599000";
     }
 
-    callHelper( "set_maxfreq", max );
+    if (settings->useConfirmation()) {
+        QMessageBox box;
+        #if defined(Q_WS_MAEMO_5)
+            box.setAttribute(Qt::WA_Maemo5AutoOrientation, settings->useAutoRotate());
+        #endif
+        box.setStandardButtons(QMessageBox::Apply | QMessageBox::Cancel);
+        box.setDefaultButton(QMessageBox::Apply);
+        box.setIcon(QMessageBox::Question);
+        QString verboseMax;
+        verboseMax.setNum( newmax/1000 );
+        box.setText( tr("Do you really want to use %1 MHz as the new maximum frequency?").arg(verboseMax) );
+        int ret = box.exec();
+
+        if (ret != QMessageBox::Apply) {
+            refresh();
+            return;
+        }
+    }
 
+    callHelper( "set_maxfreq", max );
     refresh();
+
 }
 
 
@@ -154,12 +190,60 @@ void MainWindow::applySettings()
     setAutoRotation();
     setAdvancedTemperature();
 
+    //if overclocking is/was enabled we can also enable the "Load preset" option
+    if (settings->useOverclocking() && settings->usePowerKernel() && settings->isKernelConfigInstalled()) {
+        ui->actionLoad->setEnabled(true);
+    } else {
+        ui->actionLoad->setEnabled(false);
+    }
+
     //refresh the GUI after applying the settings
     refresh();
 }
 
 
 /**
+  * Calculates the minimum frequency according to scaling_min_freq and avoid_frequencies.
+  *
+  * Since this is a somewhat complex calculation it sould only be performed when it is
+  * really necessary (on startup, after loading presets, etc.).
+  */
+void MainWindow::calculateMinFreq()
+{
+    this->minFreq = 0;
+    QString freqs = readSysFile( "devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies" );
+    QStringList freqList = freqs.split( " " );
+    //change the order of the QStringList - last element becomes first
+    for (int i=freqList.size() - 1; i>=0; --i) {
+        if (freqList.at(i) != "")
+            this->scalingFrequencies << freqList.at(i);
+    }
+    this->scalingSteps = (this->scalingFrequencies.size());
+
+    //set minFreq and check avoid_frequencies
+    QString min = readSysFile( "devices/system/cpu/cpu0/cpufreq/scaling_min_freq" );
+    //check if avoid file exists (only on power kernel)
+    QFile file( "/sys/devices/system/cpu/cpu0/cpufreq/ondemand/avoid_frequencies" );
+    if (file.exists()) {
+        QString avoid = readSysFile( "devices/system/cpu/cpu0/cpufreq/ondemand/avoid_frequencies" );
+        QStringList avoidList = avoid.split( " " );
+
+        //check if min is in avoid_frequencies
+        for (int i = getScalingStep( min.toInt() ); i <= this->scalingSteps; ++i) {
+            min.setNum( getScalingFreq(i) );
+            if (!avoidList.contains(min)) {
+                this->minFreq = min.toInt();
+                break;
+            }
+        }
+    } else {
+        this->minFreq = min.toInt();
+    }
+    file.close();
+}
+
+
+/**
   * Calls the QCPUFreq helper script with "sudo action param"
   *
   * @param  action : the action of the helper script
@@ -199,11 +283,15 @@ QString MainWindow::getCPUTemp()
 {
 #if defined(Q_WS_MAEMO_5)
     QFile file( "/sys/class/power_supply/bq27200-0/temp" );
+    //! The string containing the value of the temperature
+    QString tstring;
 
     //check if we can read a more accurate temperature (only for power kernel)
-    if (file.exists())
-        return QString( readSysFile( "class/power_supply/bq27200-0/temp" ) + " " + QString::fromUtf8("\302\260") + "C" );
-    else {
+    if (file.exists()) {
+        //this only works on kernel-power > 46
+        tstring = readSysFile( "class/power_supply/bq27200-0/temp" );
+        return tstring.left(tstring.length()-1) + " " + QString::fromUtf8("\302\260") + "C";
+    } else {
         /*
           We actually only need to read the raw temperature, but it appears that by also reading temp1_input
           the raw temperature (temp1_input_raw) is being updated more frequently.
@@ -211,7 +299,7 @@ QString MainWindow::getCPUTemp()
         readSysFile( "devices/platform/omap34xx_temp/temp1_input" );
 
         //read the current system temperature
-        QString tstring = readSysFile( "devices/platform/omap34xx_temp/temp1_input_raw" );
+        tstring = readSysFile( "devices/platform/omap34xx_temp/temp1_input_raw" );
         if (tstring == "0")
             return tr( "Unknown" );
 
@@ -321,57 +409,6 @@ int MainWindow::getSmartReflexState()
 
 
 /**
-  * Initializes internal variables, such as:
-  *  - scalingSteps
-  *  - scalingFrequencies
-  *  - minFreq
-  */
-void MainWindow::init()
-{
-    this->minFreq = 0;
-    QString freqs = readSysFile( "devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies" );
-    QStringList freqList = freqs.split( " " );
-    //change the order of the QStringList - last element becomes first
-    for (int i=freqList.size() - 1; i>=0; --i) {
-        if (freqList.at(i) != "")
-            this->scalingFrequencies << freqList.at(i);
-    }
-    this->scalingSteps = (this->scalingFrequencies.size());
-
-    //set minFreq and check avoid_frequencies
-    QString min = readSysFile( "devices/system/cpu/cpu0/cpufreq/scaling_min_freq" );
-    //check if avoid file exists (only on power kernel)
-    QFile file( "/sys/devices/system/cpu/cpu0/cpufreq/ondemand/avoid_frequencies" );
-    if (file.exists()) {
-        QString avoid = readSysFile( "devices/system/cpu/cpu0/cpufreq/ondemand/avoid_frequencies" );
-        QStringList avoidList = avoid.split( " " );
-
-        //check if min is in avoid_frequencies
-        for (int i = getScalingStep( min.toInt() ); i <= this->scalingSteps; ++i) {
-            min.setNum( getScalingFreq(i) );
-            if (!avoidList.contains(min)) {
-                this->minFreq = min.toInt();
-                break;
-            }
-        }
-    } else {
-        this->minFreq = min.toInt();
-    }
-
-    //enable save and load option on power kernels
-    if (settings->usePowerKernel()) {
-        //only enable save if /usr/sbin/kernel-config is present
-        file.close();
-        file.setFileName("/usr/sbin/kernel-config");
-        if (file.exists()) {
-            ui->actionSave->setEnabled(true);
-            ui->actionLoad->setEnabled(true);
-        }
-    }
-}
-
-
-/**
   * Loads a voltage preset by calling kernel-config.
   *
   * Available presets are:
@@ -380,12 +417,16 @@ void MainWindow::init()
   *  - lv
   *  - ulv
   *  - xlv
-  *  - starving
   *  - custom -> any preset named "custom"
   */
-void MainWindow::loadPreset()
+void MainWindow::loadPreset(QString presetName)
 {
-    return;
+    #if defined(Q_WS_MAEMO_5)
+        callHelper("loadpreset", presetName);
+        calculateMinFreq();
+        QMaemo5InformationBox::information(this, tr( "The preset was loaded." ), QMaemo5InformationBox::DefaultTimeout);
+        refresh();
+    #endif
 }
 
 
@@ -515,6 +556,7 @@ void MainWindow::setAutoRotation()
 {
 #if defined(Q_WS_MAEMO_5)
     setAttribute(Qt::WA_Maemo5AutoOrientation, settings->useAutoRotate());
+    loadPresetDialog->setAttribute(Qt::WA_Maemo5AutoOrientation, settings->useAutoRotate());
     settings->setAttribute(Qt::WA_Maemo5AutoOrientation, settings->useAutoRotate());
 #endif
 }
@@ -560,6 +602,22 @@ void MainWindow::showSettings()
 
 
 /**
+  * SLOT: This temporarily updates the maximum frequency while using the
+  * maxFreq slider.
+  */
+void MainWindow::showTemporaryMaxFreq()
+{
+    //calulate frequency from slider position
+    int newmax = getScalingFreq( ui->freq_adjust->sliderPosition() ) / 1000;
+    //convert it to a string and display it in the UI
+    QString display;
+    display.setNum( newmax );
+    display.append( " MHz" );
+    ui->freq_max->setText( display );
+}
+
+
+/**
   * Returns true when the device is in portrait mode
   */
 bool MainWindow::usePortrait()