X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=nageru%2Ftheme.h;h=8e4537351905ae02354010a0a51b86cc2c4dccc3;hb=f9024d141398e69e7b4011becd3ebbe37eaa1776;hp=37113b2b954d88a607087ca8e691df1aa082a8fd;hpb=948d715655a84b93d8292e64731ea3c32b45deb7;p=nageru diff --git a/nageru/theme.h b/nageru/theme.h index 37113b2..8e45373 100644 --- a/nageru/theme.h +++ b/nageru/theme.h @@ -2,6 +2,7 @@ #define _THEME_H 1 #include +#include #include #include #include @@ -39,6 +40,7 @@ enum EffectType { IDENTITY_EFFECT, WHITE_BALANCE_EFFECT, + AUTO_WHITE_BALANCE_EFFECT, // Same as WHITE_BALANCE_EFFECT, but sets its value automatically. RESAMPLE_EFFECT, PADDING_EFFECT, INTEGRAL_PADDING_EFFECT, @@ -102,9 +104,13 @@ public: std::string get_channel_name(unsigned channel); int get_channel_signal(unsigned channel); bool get_supports_set_wb(unsigned channel); - void set_wb(unsigned channel, double r, double g, double b); + void set_wb(unsigned channel, float r, float g, float b); + void set_wb_for_signal(int signal, float r, float g, float b); + movit::RGBTriplet get_white_balance_for_signal(int signal); std::string get_channel_color(unsigned channel); + std::unordered_map white_balance_for_signal; + std::vector get_transition_names(float t); void transition_clicked(int transition_num, float t); @@ -190,6 +196,7 @@ private: void register_class(const char *class_name, const luaL_Reg *funcs, EffectType effect_type = NO_EFFECT_TYPE); int set_theme_menu(lua_State *L); Chain get_chain_from_effect_chain(movit::EffectChain *effect_chain, unsigned num, const InputState &input_state); + void call_lua_wb_callback(unsigned channel, float r, float g, float b); std::string theme_path;