xtd 0.2.0
Loading...
Searching...
No Matches
copy_pixel_operation.h
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/enum>
6
8namespace xtd {
10 namespace drawing {
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
60};
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
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
@ no_mirror_bitmap
The bitmap is not mirrored.
@ not_source_erase
The source and destination colors are combined using the Boolean OR operator, and then resultant colo...
@ destination_invert
The destination area is inverted.
@ pat_paint
The colors of the brush currently selected in the destination device context are combined with the co...
@ source_paint
The colors of the source and destination areas are combined using the Boolean OR operator.
@ source_erase
The inverted colors of the destination area are combined with the colors of the source area using the...
@ source_invert
The colors of the source and destination areas are combined using the Boolean XOR operator.
@ source_copy
The source area is copied directly to the destination area.
@ merge_copy
The colors of the source area are merged with the colors of the selected brush of the destination dev...
@ not_source_copy
The inverted source area is copied to the destination.
@ source_and
The colors of the source and destination areas are combined using the Boolean AND operator.
@ whiteness
The destination area is filled by using the color associated with index 1 in the physical palette....
@ blackness
The destination area is filled by using the color associated with index 0 in the physical palette....
@ pat_copy
The brush currently selected in the destination device context is copied to the destination bitmap.
@ capture_blt
Windows that are layered on top of your window are included in the resulting image....
@ pat_invert
The colors of the brush currently selected in the destination device context are combined with the co...
@ merge_paint
The colors of the inverted source area are merged with the colors of the destination area by using th...
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10
Provides the registration struct for enumerations.
Definition enum_register.h:36