You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

21 lines
358 B

#ifndef EALIGNMODE_H
#define EALIGNMODE_H
#define mkAlignMode(hPolicy, vPolicy) (AlignMode::AlignMode)(hPolicy | vPolicy)
namespace AlignMode
{
enum AlignMode : int
{
Left = 1,
Right = 2,
HCenter = 4,
Top = 8,
Bottom = 16,
VCenter = 32,
Default = Left | Top
};
}
#endif // EALIGNMODE_H