xtd 0.2.0
copy_pixel_operation.h
Go to the documentation of this file.
1 #pragma once
5 #include <xtd/enum>
6 
8 namespace xtd {
10  namespace drawing {
18  enum class copy_pixel_operation {
20  blackness = 66,
22  capture_blt = 1073741824,
24  destination_invert = 5570569,
26  merge_copy = 12583114,
28  merge_paint = 12255782,
30  no_mirror_bitmap = -2147483648,
32  not_source_copy = 3342344,
34  not_source_erase = 1114278,
36  pat_copy = 15728673,
38  pat_invert = 5898313,
40  pat_paint = 16452105,
42  source_and = 8913094,
44  source_copy = 13369376,
46  source_erase = 4457256,
48  source_invert = 6684742,
50  source_paint = 15597702,
52  whiteness = 16711778,
53  };
54  }
55 }
56 
58 template<> struct xtd::enum_register<xtd::drawing::copy_pixel_operation> {
60 };
copy_pixel_operation
Determines how the source color in a copy pixel operation is combined with the destination color to r...
Definition: copy_pixel_operation.h:18
The colors of the source and destination areas are combined using the Boolean OR operator.
The colors of the source and destination areas are combined using the Boolean XOR operator...
The colors of the source and destination areas are combined using the Boolean AND operator...
The colors of the brush currently selected in the destination device context are combined with the co...
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
The colors of the brush currently selected in the destination device context are combined with the co...
The colors of the inverted source area are merged with the colors of the destination area by using th...
std::vector< std::pair< enum_t, xtd::ustring > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition: enum_collection.h:19
The colors of the source area are merged with the colors of the selected brush of the destination dev...
The brush currently selected in the destination device context is copied to the destination bitmap...
The inverted source area is copied to the destination.
The destination area is filled by using the color associated with index 0 in the physical palette...
The source and destination colors are combined using the Boolean OR operator, and then resultant colo...
The destination area is filled by using the color associated with index 1 in the physical palette...
The inverted colors of the destination area are combined with the colors of the source area using the...
The source area is copied directly to the destination area.
Windows that are layered on top of your window are included in the resulting image. By default, the image contains only your window. Note that this generally cannot be used for printing device contexts.
Provides the registration struct for enumerations.
Definition: enum_register.h:36