xref: /haiku/src/apps/icon-o-matic/generic/gui/panel/color_picker/SelectedColorMode.h (revision f333ade30958169ee702db317a8197bebbad52f9)
1 /*
2  * Copyright 2001 Werner Freytag - please read to the LICENSE file
3  *
4  */
5 
6 #ifndef	_SELECTED_COLOR_MODE_H
7 #define _SELECTED_COLOR_MODE_H
8 
9 enum SelectedColorMode {
10 	R_SELECTED = 0x01,
11 	G_SELECTED = 0x02,
12 	B_SELECTED = 0x04,
13 	H_SELECTED = 0x10,
14 	S_SELECTED = 0x20,
15 	V_SELECTED = 0x40
16 };
17 
18 #endif // _SELECTED_COLOR_MODE_H
19