You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
365 B
20 lines
365 B
/*
|
|
* 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
|
|
|