mirror of
https://github.com/theCheeseboard/thedesk.git
synced 2025-01-23 19:02:06 -05:00
76 lines
2.6 KiB
C++
76 lines
2.6 KiB
C++
/****************************************
|
|
*
|
|
* INSERT-PROJECT-NAME-HERE - INSERT-GENERIC-NAME-HERE
|
|
* Copyright (C) 2020 Victor Tran
|
|
*
|
|
* 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
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* *************************************/
|
|
#include "screenbrightnesschunk.h"
|
|
#include "ui_screenbrightnesschunk.h"
|
|
|
|
#include <the-libs_global.h>
|
|
#include <QIcon>
|
|
#include <statemanager.h>
|
|
#include <barmanager.h>
|
|
#include <Screens/screendaemon.h>
|
|
#include <Screens/systemscreen.h>
|
|
|
|
ScreenBrightnessChunk::ScreenBrightnessChunk() :
|
|
Chunk(),
|
|
ui(new Ui::ScreenBrightnessChunk) {
|
|
ui->setupUi(this);
|
|
|
|
ui->iconLabel->setPixmap(QIcon::fromTheme("video-display").pixmap(SC_DPI_T(QSize(16, 16), QSize)));
|
|
ui->brightnessSlider->setFixedWidth(SC_DPI(200));
|
|
|
|
SystemScreen* screen = ScreenDaemon::instance()->primayScreen();
|
|
if (screen && screen->isScreenBrightnessAvailable()) {
|
|
StateManager::barManager()->addChunk(this);
|
|
connect(screen, &SystemScreen::screenBrightnessChanged, this, [ = ] {
|
|
ui->brightnessSlider->setValue(static_cast<int>(screen->screenBrightness() * 100));
|
|
});
|
|
ui->brightnessSlider->setValue(static_cast<int>(screen->screenBrightness() * 100));
|
|
}
|
|
|
|
connect(StateManager::barManager(), &BarManager::barHeightTransitioning, this, [ = ](qreal percentage) {
|
|
if (qFuzzyCompare(percentage, 1)) {
|
|
this->setFixedWidth(QWIDGETSIZE_MAX);
|
|
} else {
|
|
this->setFixedWidth(static_cast<int>(this->sizeHint().width() * percentage));
|
|
}
|
|
});
|
|
}
|
|
|
|
ScreenBrightnessChunk::~ScreenBrightnessChunk() {
|
|
StateManager::barManager()->removeChunk(this);
|
|
delete ui;
|
|
}
|
|
|
|
|
|
QString ScreenBrightnessChunk::name() {
|
|
return "Brightness";
|
|
}
|
|
|
|
int ScreenBrightnessChunk::expandedHeight() {
|
|
return this->sizeHint().height();
|
|
}
|
|
|
|
int ScreenBrightnessChunk::statusBarHeight() {
|
|
return 0;
|
|
}
|
|
|
|
void ScreenBrightnessChunk::on_brightnessSlider_sliderMoved(int position) {
|
|
ScreenDaemon::instance()->primayScreen()->setScreenBrightness(position / 100.0);
|
|
}
|