mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
Update Hyperion.h
Former-commit-id: c1bd4a7397e8ae2e72b9ef5dcc32ee3b866e2c36
This commit is contained in:
parent
b0d74b2dd8
commit
6e7157c571
@ -124,11 +124,17 @@ public slots:
|
|||||||
const std::vector<std::string> & getTransformIds() const;
|
const std::vector<std::string> & getTransformIds() const;
|
||||||
|
|
||||||
///
|
///
|
||||||
/// Returns the list with unique transform identifiers
|
/// Returns the list with unique correction identifiers
|
||||||
/// @return The list with correction identifiers
|
/// @return The list with correction identifiers
|
||||||
///
|
///
|
||||||
const std::vector<std::string> & getCorrectionIds() const;
|
const std::vector<std::string> & getCorrectionIds() const;
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Returns the list with unique correction identifiers
|
||||||
|
/// @return The list with correction identifiers
|
||||||
|
///
|
||||||
|
const std::vector<std::string> & getTemperatureIds() const;
|
||||||
|
|
||||||
///
|
///
|
||||||
/// Returns the ColorTransform with the given identifier
|
/// Returns the ColorTransform with the given identifier
|
||||||
/// @return The transform with the given identifier (or nullptr if the identifier does not exist)
|
/// @return The transform with the given identifier (or nullptr if the identifier does not exist)
|
||||||
@ -136,11 +142,17 @@ public slots:
|
|||||||
ColorTransform * getTransform(const std::string& id);
|
ColorTransform * getTransform(const std::string& id);
|
||||||
|
|
||||||
///
|
///
|
||||||
/// Returns the ColorTransform with the given identifier
|
/// Returns the ColorCorrection with the given identifier
|
||||||
/// @return The transform with the given identifier (or nullptr if the identifier does not exist)
|
/// @return The correction with the given identifier (or nullptr if the identifier does not exist)
|
||||||
///
|
///
|
||||||
ColorCorrection * getCorrection(const std::string& id);
|
ColorCorrection * getCorrection(const std::string& id);
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Returns the ColorCorrection with the given identifier
|
||||||
|
/// @return The correction with the given identifier (or nullptr if the identifier does not exist)
|
||||||
|
///
|
||||||
|
ColorCorrection * getTemperature(const std::string& id);
|
||||||
|
|
||||||
///
|
///
|
||||||
/// Returns MessageForwarder Object
|
/// Returns MessageForwarder Object
|
||||||
/// @return instance of message forwarder object
|
/// @return instance of message forwarder object
|
||||||
@ -152,6 +164,9 @@ public slots:
|
|||||||
|
|
||||||
/// Tell Hyperion that the corrections have changed and the leds need to be updated
|
/// Tell Hyperion that the corrections have changed and the leds need to be updated
|
||||||
void correctionsUpdated();
|
void correctionsUpdated();
|
||||||
|
|
||||||
|
/// Tell Hyperion that the corrections have changed and the leds need to be updated
|
||||||
|
void temperaturesUpdated();
|
||||||
|
|
||||||
///
|
///
|
||||||
/// Clears the given priority channel. This will switch the led-colors to the colors of the next
|
/// Clears the given priority channel. This will switch the led-colors to the colors of the next
|
||||||
|
Loading…
Reference in New Issue
Block a user