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.
77 lines
1.8 KiB
77 lines
1.8 KiB
8 years ago
|
/*
|
||
|
Copyright (C) 2016 P.L. Lucas <selairi@gmail.com>
|
||
|
|
||
|
This library is free software; you can redistribute it and/or
|
||
|
modify it under the terms of the GNU Lesser General Public
|
||
|
License as published by the Free Software Foundation; either
|
||
|
version 2.1 of the License, or (at your option) any later version.
|
||
|
|
||
|
This library is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
Lesser General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU Lesser General Public
|
||
|
License along with this library; if not, write to the Free Software
|
||
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||
|
*/
|
||
|
|
||
|
#include "monitorinfo.h"
|
||
|
|
||
|
MonitorInfo::MonitorInfo(int id, QString name, long backlightMax)
|
||
|
{
|
||
|
mId = id;
|
||
|
mName = name;
|
||
|
mBacklightMax = backlightMax;
|
||
|
}
|
||
|
|
||
|
MonitorInfo::MonitorInfo(const MonitorInfo &monitor)
|
||
|
{
|
||
|
mId = monitor.mId;
|
||
|
mName = monitor.mName;
|
||
|
mBacklightMax = monitor.mBacklightMax;
|
||
|
mBacklight = monitor.mBacklight;
|
||
|
mBrightness = monitor.mBrightness;
|
||
|
}
|
||
|
|
||
|
bool MonitorInfo::isBacklightSupported() const
|
||
|
{
|
||
|
return mBacklightMax > 0;
|
||
|
}
|
||
|
|
||
|
long MonitorInfo::backlightMax() const
|
||
|
{
|
||
|
return mBacklightMax;
|
||
|
}
|
||
|
|
||
|
long MonitorInfo::backlight() const
|
||
|
{
|
||
|
return mBacklight;
|
||
|
}
|
||
|
|
||
|
void MonitorInfo::setBacklight(const long value)
|
||
|
{
|
||
|
mBacklight = value;
|
||
|
}
|
||
|
|
||
|
float MonitorInfo::brightness() const
|
||
|
{
|
||
|
return mBrightness;
|
||
|
}
|
||
|
|
||
|
void MonitorInfo::setBrightness(const float percent)
|
||
|
{
|
||
|
mBrightness = qMax(qMin((float)2.0, percent), (float)0.0);
|
||
|
}
|
||
|
|
||
|
int MonitorInfo::id() const
|
||
|
{
|
||
|
return mId;
|
||
|
}
|
||
|
|
||
|
QString MonitorInfo::name() const
|
||
|
{
|
||
|
return mName;
|
||
|
}
|
||
|
|