summaryrefslogtreecommitdiffstats
path: root/utils/wpseditor/gui/src/qwpsstate.cpp
blob: 4244bf629307942479d2904d2d9d1bbab8d4f71e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include "qwpsstate.h"

QWpsState::QWpsState(): QObject() {
    state.fontheight = 8;
    state.fontwidth = 5;
    state.volume = -30;
    state.battery_level = 50;

}

void QWpsState::setFontHeight(int val) {
    state.fontheight = val;
    emit stateChanged(state);
}

void QWpsState::setFontWidth(int val) {
    state.fontwidth = val;
    emit stateChanged(state);
}

void QWpsState::setVolume(int val) {
    state.volume = val;
    emit stateChanged(state);
}

void QWpsState::setBattery(int val) {
    state.battery_level = val;
    emit stateChanged(state);
}