Searched refs:hue (Results 1 – 3 of 3) sorted by relevance
/GUIX-v6.4.1/guix_studio/ |
D | color_edit_dialog.h | 55 static void RgbToHsl(int red, int green, int blue, int &hue, int &saturation, int &luminance); 56 static void HslToRgb(double hue, double sat, double lum, int &red, int &green, int &blue); 58 void GetHSLColor(int *hue, int *sat, int *lum); 59 void SetHSLColor(int hue, int sat);
|
D | color_edit_dialog.cpp | 343 int sat, hue, lum; in GetSelectedPos() local 348 mpParent->GetHSLColor(&hue, &sat, &lum); in GetSelectedPos() 357 (*col) = (hue * (columns - 1) + 180) / 360; in GetSelectedPos() 397 int hue = (int)(huefloat + 0.5); in SetSelectedPos() local 400 dlg->SetHSLColor(hue, sat); in SetSelectedPos() 1225 int hue = GetDlgItemInt(IDC_EDIT_HUE); in UpdateRGBVals() local 1229 double huefloat = hue; in UpdateRGBVals() 1261 void color_edit_dialog::HslToRgb(double hue, double sat, double lum, in HslToRgb() argument 1265 double H = hue * 6; in HslToRgb() 1317 int &hue, int &saturation, int &luminance) in RgbToHsl() argument [all …]
|
/GUIX-v6.4.1/test/guix_studio_test/test_view/ |
D | test_utils.py | 2013 def set_color_hue(hue): argument 2014 logging.info('set hue value: %d', hue) 2015 send_to_color_edit_dialog('CMD_SET_COLOR_HUE', str(hue))
|