93e0265e4e
Once in a while, we receive complaints from other fellow KDE developers about the file organization of kwin. This change addresses some of those complaints by moving all of source code in a separate directory, src/, thus making the project structure more traditional. Things such as tests are kept in their own toplevel directories. This change may wreak havoc on merge requests that add new files to kwin, but if a patch modifies an already existing file, git should be smart enough to figure out that the file has been relocated. We may potentially split the src/ directory further to make navigating the source code easier, but hopefully this is good enough already.
87 lines
1.8 KiB
C++
87 lines
1.8 KiB
C++
/*
|
|
SPDX-FileCopyrightText: 2020 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <kwinglobals.h>
|
|
|
|
#include <QObject>
|
|
|
|
namespace KWin
|
|
{
|
|
|
|
class AbstractOutput;
|
|
class ColorDevicePrivate;
|
|
|
|
/**
|
|
* The ColorDevice class represents a color managed device.
|
|
*/
|
|
class KWIN_EXPORT ColorDevice : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ColorDevice(AbstractOutput *output, QObject *parent = nullptr);
|
|
~ColorDevice() override;
|
|
|
|
/**
|
|
* Returns the underlying output for this color device.
|
|
*/
|
|
AbstractOutput *output() const;
|
|
|
|
/**
|
|
* Returns the current color brightness on this device, in percent.
|
|
*/
|
|
uint brightness() const;
|
|
|
|
/**
|
|
* Sets the color brightness on this device to @a brightness, in percent.
|
|
*/
|
|
void setBrightness(uint brightness);
|
|
|
|
/**
|
|
* Returns the current color temperature on this device, in Kelvins.
|
|
*/
|
|
uint temperature() const;
|
|
|
|
/**
|
|
* Sets the color temperature on this device to @a temperature, in Kelvins.
|
|
*/
|
|
void setTemperature(uint temperature);
|
|
|
|
/**
|
|
* Returns the color profile for this device.
|
|
*/
|
|
QString profile() const;
|
|
|
|
/**
|
|
* Sets the color profile for this device to @a profile.
|
|
*/
|
|
void setProfile(const QString &profile);
|
|
|
|
public Q_SLOTS:
|
|
void update();
|
|
void scheduleUpdate();
|
|
|
|
Q_SIGNALS:
|
|
/**
|
|
* This signal is emitted when the brightness of this device has changed.
|
|
*/
|
|
void brightnessChanged();
|
|
/**
|
|
* This signal is emitted when the color temperature of this device has changed.
|
|
*/
|
|
void temperatureChanged();
|
|
/**
|
|
* This signal is emitted when the color profile of this device has changed.
|
|
*/
|
|
void profileChanged();
|
|
|
|
private:
|
|
QScopedPointer<ColorDevicePrivate> d;
|
|
};
|
|
|
|
} // namespace KWin
|