2015-08-16 18:49:04 +08:00
|
|
|
/*
|
2015-08-12 05:17:53 +08:00
|
|
|
* File: Settings.h
|
|
|
|
* Author: christian
|
|
|
|
*
|
|
|
|
* Created on 15. februar 2014, 11:44
|
|
|
|
*/
|
|
|
|
#ifndef POWER_MANAGEMENT_SETTINGS_H
|
|
|
|
#define POWER_MANAGEMENT_SETTINGS_H
|
|
|
|
|
|
|
|
#include <QComboBox>
|
|
|
|
|
|
|
|
void fillComboBox(QComboBox* comboBox);
|
|
|
|
|
|
|
|
void setComboBoxToValue(QComboBox* comboBox, int value);
|
|
|
|
|
|
|
|
int currentValue(QComboBox *comboBox);
|
|
|
|
|
|
|
|
#endif // POWER_MANAGEMENT_SETTINGS_H
|
|
|
|
|